diff --git a/lib/LTA-SIP.xsd b/lib/LTA-SIP.xsd
new file mode 100644
index 0000000000000000000000000000000000000000..957e2c3bf42791957df89b0e216db9e78ea8a2ff
--- /dev/null
+++ b/lib/LTA-SIP.xsd
@@ -0,0 +1,1211 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xs:schema targetNamespace="http://www.astron.nl/SIP-Lofar" version="2.6.1" xmlns="http://www.astron.nl/SIP-Lofar" xmlns:xs="http://www.w3.org/2001/XMLSchema">
+	<xs:annotation>
+		<xs:documentation>
+		XML Schema for data model Submission Information Package LOFAR Long Term Archive
+		
+		The basic layout of a SIP is to have the Project that owns the data described, the DataProduct
+		that is being ingested, and the process (Observation or PipelineRun) that generated it.
+		If the generating process is a PipelineRun, then it will usually have input DataProducts. These
+		will recursively be described in the relatedDataProduct entries, with the processes that generated
+		them. These relatedDataProducts do not need to have been ingested into the archive themselves. It is
+		sufficient that there are described, with their related Obsrvation/Pipelines in this document to
+		be able to recreate the full provenance of the DataProduct.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:annotation>
+		<xs:documentation>============================Generic Types============================
+		
+		Below are generic types that are used at various places within the document. It basically contains descriptions
+		of units like Frequency, Length, Time, astronomical entities like Equinox, Pointing and Angle
+		and some useful container types like lists and indentifiers.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:simpleType name="FrequencyUnit">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="Hz"/>
+			<xs:enumeration value="kHz"/>
+			<xs:enumeration value="MHz"/>
+			<xs:enumeration value="GHz"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:complexType name="Frequency">
+		<xs:simpleContent>
+			<xs:extension base="xs:double">
+				<xs:attribute name="units" type="FrequencyUnit" use="required"/>
+			</xs:extension>
+		</xs:simpleContent>
+	</xs:complexType>
+	<xs:simpleType name="LengthUnit">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="m"/>
+			<xs:enumeration value="km"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:complexType name="Length">
+		<xs:simpleContent>
+			<xs:extension base="xs:double">
+				<xs:attribute name="units" type="LengthUnit" use="required"/>
+			</xs:extension>
+		</xs:simpleContent>
+	</xs:complexType>
+	<xs:simpleType name="TimeUnit">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="s"/>
+			<xs:enumeration value="ms"/>
+			<xs:enumeration value="us"/>
+			<xs:enumeration value="ns"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:complexType name="Time">
+		<xs:simpleContent>
+			<xs:extension base="xs:double">
+				<xs:attribute name="units" type="TimeUnit" use="required"/>
+			</xs:extension>
+		</xs:simpleContent>
+	</xs:complexType>
+	<xs:simpleType name="AngleUnit">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="radians"/>
+			<xs:enumeration value="degrees"/>
+			<xs:enumeration value="arcsec"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:complexType name="Angle">
+		<xs:simpleContent>
+			<xs:extension base="xs:double">
+				<xs:attribute name="units" type="AngleUnit" use="required"/>
+			</xs:extension>
+		</xs:simpleContent>
+	</xs:complexType>
+	<xs:simpleType name="PixelUnit">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="Jy/beam"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:complexType name="Pixel">
+		<xs:simpleContent>
+			<xs:extension base="xs:double">
+				<xs:attribute name="units" type="PixelUnit" use="required"/>
+			</xs:extension>
+		</xs:simpleContent>
+	</xs:complexType>
+	<xs:simpleType name="ListOfDouble">
+		<xs:list itemType="xs:double"/>
+	</xs:simpleType>
+	<xs:simpleType name="ListOfString">
+		<xs:list itemType="xs:string"/>
+	</xs:simpleType>
+	<xs:simpleType name="ListOfSubbands">
+		<xs:list itemType="xs:unsignedShort"/>
+	</xs:simpleType>
+	<xs:complexType name="ListOfFrequencies">
+		<xs:sequence>
+			<xs:element name="frequencies" type="ListOfDouble"/>
+			<xs:element name="unit" type="FrequencyUnit"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>Generic identifier type. Currently two sources are supported: MoM and SAS
+		</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="IdentifierType">
+		<xs:sequence>
+			<xs:element name="source" type="xs:string"/>
+			<xs:element name="identifier" type="xs:integer"/>
+			<xs:element name="name" minOccurs="0" type="xs:string"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:simpleType name="EquinoxType">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="B1950"/>
+			<xs:enumeration value="J2000"/>
+			<xs:enumeration value="SUN"/>
+			<xs:enumeration value="JUPITER"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:annotation>
+		<xs:documentation>Pointing, either RA/DEC or AZ/EL, can't be coded as a choice due to Eclipse parser limitations.</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="Pointing">
+		<xs:sequence>
+			<xs:choice>
+				<xs:element name="rightAscension" type="Angle"/>
+				<xs:element name="azimuth" type="Angle"/>
+			</xs:choice>
+			<xs:choice>
+				<xs:element name="declination" type="Angle"/>
+				<xs:element name="altitude" type="Angle"/>
+			</xs:choice>
+			<xs:element name="equinox" type="EquinoxType"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>============================Stations============================
+	
+		Below is information related to Stations and AntennaFields. Stations have one or more AntennaFields, each of which is
+		a single sensing element within the array for most observation types. AntennaFields are the end points for baselines in
+		Interferometry mode, the array elements in Beam Formed mode, etc. Only Transient Buffer Mode reads the individual antennas.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:annotation>
+		<xs:documentation>Usually the coordinates of a station will by in x,y,z in ITRF, but we also have the option to use coordinates on a sphere.</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="Coordinates">
+		<xs:sequence>
+			<xs:element name="coordinateSystem">
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:enumeration value="WGS84"/>
+						<xs:enumeration value="ITRF2000"/>
+						<xs:enumeration value="ITRF2005"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:choice>
+				<xs:sequence>
+					<xs:element name="x" type="Length"/>
+					<xs:element name="y" type="Length"/>
+					<xs:element name="z" type="Length"/>
+				</xs:sequence>
+				<xs:sequence>
+					<xs:element name="radius" type="Length"/>
+					<xs:element name="longitude" type="Angle"/>
+					<xs:element name="latitude" type="Angle"/>
+				</xs:sequence>
+			</xs:choice>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>
+		AntennaFields per station are currently either 2 (HBA/LBA) or 3 for core stations (HBA0/HBA1/LBA).
+		When the signals from HBA0 and HBA1 are combined, they show up as HBA in the SIP, not HBA0+HBA1.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:simpleType name="AntennaFieldType">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="HBA0"/>
+			<xs:enumeration value="HBA1"/>
+			<xs:enumeration value="HBA"/>
+			<xs:enumeration value="LBA"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:annotation>
+		<xs:documentation>Currently Superterp is not a separate type here.</xs:documentation>
+	</xs:annotation>
+	<xs:simpleType name="StationTypeType">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="Core"/>
+			<xs:enumeration value="Remote"/>
+			<xs:enumeration value="International"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:complexType name="AntennaField">
+		<xs:sequence>
+			<xs:element name="name" type="AntennaFieldType"/>
+			<xs:element name="location" type="Coordinates"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="Stations">
+		<xs:sequence>
+			<xs:element maxOccurs="unbounded" name="station" type="Station"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>Currently only one (LBA/HBA/HBA0/HBA1) or two (HBA0+HBA1) antennafields can be active at the same time.</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="Station">
+		<xs:sequence>
+			<xs:element name="name" type="xs:string"/>
+			<xs:element name="stationType" type="StationTypeType"/>
+			<xs:element minOccurs="1" maxOccurs="2" name="antennaField" type="AntennaField"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>============================Process============================
+			
+		Below is the generic Process class. Currently it has two subclasses: Observation and PipelineRun.
+		All processes are currently run in Tier0, specified in MoM/Scheduler and controlled by SAS/MAC.
+		processIdentifier: MoM Id
+		observationId: SAS VIC Tree Id (Note that it's not called observationId-entifier)
+		strategyName/Description: Strategy template for observing/processing, known within SAS as the default template
+		</xs:documentation>
+	</xs:annotation>
+	<xs:annotation>
+		<xs:documentation>Currently only one relation type is defined (GroupID), but others are likely to be added, like Target-Calibrator, Slice.
+		Please note that this also can apply to Sub-Array Pointings.</xs:documentation>
+	</xs:annotation>
+	<xs:simpleType name="ProcessRelationType">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="GroupID"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:complexType name="ProcessRelation">
+		<xs:sequence>
+			<xs:element name="relationType" type="ProcessRelationType"/>
+			<xs:element name="identifier" type="IdentifierType"/>
+			<xs:element minOccurs="0" name="name" type="xs:string"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="ProcessRelations">
+		<xs:sequence>
+			<xs:element minOccurs="0" maxOccurs="unbounded" name="relation" type="ProcessRelation"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="Process">
+		<xs:sequence>
+			<xs:element name="processIdentifier" type="IdentifierType"/>
+			<xs:element name="observationId" type="IdentifierType"/>
+			<xs:element minOccurs="0" name="parset" type="IdentifierType"/>
+			<xs:element name="strategyName" type="xs:string"/>
+			<xs:element name="strategyDescription" type="xs:string"/>
+			<xs:element name="startTime" type="xs:dateTime"/>
+			<xs:element name="duration" type="xs:duration"/>
+			<xs:element name="relations" type="ProcessRelations"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>============================Observation============================
+			
+		Below is information related to the Observation process.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:simpleType name="FilterSelectionType">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="10-70 MHz"/>
+			<xs:enumeration value="10-90 MHz"/>
+			<xs:enumeration value="30-70 MHz"/>
+			<xs:enumeration value="30-90 MHz"/>
+			<xs:enumeration value="110-190 MHz"/>
+			<xs:enumeration value="170-230 MHz"/>
+			<xs:enumeration value="210-250 MHz"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:complexType name="ClockType">
+		<xs:simpleContent>
+			<xs:restriction base="Frequency">
+				<xs:enumeration value="160"/>
+				<xs:enumeration value="200"/>
+				<xs:attribute fixed="MHz" name="units" type="FrequencyUnit" use="required"/>
+			</xs:restriction>
+		</xs:simpleContent>
+	</xs:complexType>
+	<xs:simpleType name="AntennaSetType">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="HBA Zero"/>
+			<xs:enumeration value="HBA One"/>
+			<xs:enumeration value="HBA Dual"/>
+			<xs:enumeration value="HBA Joined"/>
+			<xs:enumeration value="LBA Outer"/>
+			<xs:enumeration value="LBA Inner"/>
+			<xs:enumeration value="LBA Sparse Even"/>
+			<xs:enumeration value="LBA Sparse Odd"/>
+			<xs:enumeration value="LBA X"/>
+			<xs:enumeration value="LBA Y"/>
+			<xs:enumeration value="HBA Zero Inner"/>
+			<xs:enumeration value="HBA One Inner"/>
+			<xs:enumeration value="HBA Dual Inner"/>
+			<xs:enumeration value="HBA Joined Inner"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="StationSelectionType">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="Single"/>
+			<xs:enumeration value="Core"/>
+			<xs:enumeration value="Dutch"/>
+			<xs:enumeration value="International"/>
+			<xs:enumeration value="Custom"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="ObservingModeType">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="Interferometer"/>
+			<xs:enumeration value="Beam Observation"/>
+			<xs:enumeration value="TBB (standalone)"/>
+			<xs:enumeration value="TBB (piggyback)"/>
+			<xs:enumeration value="Direct Data Storage"/>
+			<xs:enumeration value="Non Standard"/>
+			<xs:enumeration value="Unknown"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="TimeSystemType">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="UTC"/>
+			<xs:enumeration value="LST"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:annotation>
+		<xs:documentation>Observation is one of the core classes of the SIP. It describes one of the main datagenerating processes.
+		The big difference with a PipelineRun process is in that an Observation has no input dataproducts as it is a 
+		direct measurement of the physical process.
+	
+		Notes:Is unsignedShort enough for numberOftransientBufferBoardEvents?
+		Backward compatibility with the BlueGene: With old BG observations channelWidth and channelsPerSubband are set at Observation level and not at RealTimeProcess level.
+		For BG frequencyDownsamplingFactor and numberOfCollapsedChannels are set.
+		For Cobalt observations the reverse is true: channelWidth and channelsPerSubband are only set at RealTimeProcess level and not at Observation level.
+		For Cobalt frequencyDownsamplingFactor en numberOfCollapsedChannels are not set.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="Observation">
+		<xs:complexContent>
+			<xs:extension base="Process">
+				<xs:sequence>
+					<xs:element name="observingMode" type="ObservingModeType"/>
+					<xs:element minOccurs="0" name="observationDescription" type="xs:string"/>
+					<xs:element name="instrumentFilter" type="FilterSelectionType"/>
+					<xs:element name="clock" type="ClockType"/>
+					<xs:element name="stationSelection" type="StationSelectionType"/>
+					<xs:element name="antennaSet" type="AntennaSetType"/>
+					<xs:element name="timeSystem" type="TimeSystemType"/>
+					<xs:element minOccurs="0" name="channelWidth" type="Frequency"/><!--BlueGene compatibility-->
+					<xs:element minOccurs="0" name="channelsPerSubband" type="xs:unsignedShort"/><!--BlueGene compatibility-->
+					<xs:element name="numberOfStations" type="xs:unsignedByte"/>
+					<xs:element name="stations" type="Stations"/>
+					<xs:element name="numberOfSubArrayPointings" type="xs:unsignedShort"/>
+					<xs:element minOccurs="0" name="subArrayPointings" type="SubArrayPointings"/>
+					<xs:element name="numberOftransientBufferBoardEvents" type="xs:unsignedShort"/>
+					<xs:element minOccurs="0" name="transientBufferBoardEvents" type="TransientBufferBoardEvents"/>
+					<xs:element name="numberOfCorrelatedDataProducts" type="xs:unsignedShort"/>
+					<xs:element name="numberOfBeamFormedDataProducts" type="xs:unsignedShort"/>
+					<xs:element name="numberOfBitsPerSample" type="xs:unsignedShort"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="DirectDataMeasurement">
+		<xs:complexContent>
+			<xs:extension base="Process">
+				<xs:sequence>
+					<xs:element name="observingMode" type="ObservingModeType"/>
+					<xs:element name="station" type="Station"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>===================Generic/Unspecified======================
+	
+		Please note that the difference between Generic and Unspecified is that the first describes a non standard process, while the second describes an unknown
+		process. The latter is mostly used when there are partial errors during the ingest of data into the archive.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="GenericMeasurement">
+		<xs:complexContent>
+			<xs:extension base="Process">
+				<xs:sequence>
+					<xs:element name="observingMode" type="ObservingModeType"/>
+					<xs:element name="description" type="xs:string"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="UnspecifiedProcess">
+		<xs:complexContent>
+			<xs:extension base="Process">
+				<xs:sequence>
+					<xs:element name="observingMode" type="ObservingModeType"/>
+					<xs:element name="description" type="xs:string"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>============================Online Processing============================
+		
+		This describes the various types of realtime/online processing that can happen after the data is sent from the stations to
+		the central processing. It's still part of the Observation.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:simpleType name="ProcessingType">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="Correlator"/>
+			<xs:enumeration value="Coherent Stokes"/>
+			<xs:enumeration value="Incoherent Stokes"/>
+			<xs:enumeration value="Fly's Eye"/>
+			<xs:enumeration value="Non Standard"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="MeasurementType">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="Test"/>
+			<xs:enumeration value="Tune Up"/>
+			<xs:enumeration value="Calibration"/>
+			<xs:enumeration value="Target"/>
+			<xs:enumeration value="All Sky"/>
+			<xs:enumeration value="Miscellaneous"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:complexType name="Processing">
+		<xs:sequence>
+			<xs:element minOccurs="0" name="correlator" type="Correlator"/>
+			<xs:element minOccurs="0" name="coherentStokes" type="CoherentStokes"/>
+			<xs:element minOccurs="0" name="incoherentStokes" type="IncoherentStokes"/>
+			<xs:element minOccurs="0" name="flysEye" type="FlysEye"/>
+			<xs:element minOccurs="0" name="nonStandard" type="NonStandard"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="RealTimeProcess">
+		<xs:sequence>
+			<xs:element name="processingType" type="ProcessingType"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="Correlator">
+		<xs:complexContent>
+			<xs:extension base="RealTimeProcess">
+				<xs:sequence>
+					<xs:element name="integrationInterval" type="Time"/>
+					<xs:element minOccurs="0" name="channelWidth" type="Frequency"/><!--BlueGene compatibility-->
+					<xs:element minOccurs="0" name="channelsPerSubband" type="xs:unsignedShort"/><!--BlueGene compatibility-->
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>The CoherentStokes and IncoherentStokes do further processing on the data after the polyphase filter
+		on the BlueGene. The numberOfColapsedChannels is what is actually written to disk, the frequencyDownsamplingFactor is thus
+		Observation:channelsPerSubband divided by the numberOfcolapsedChannels.
+		There is also downsampling in time from the rawSamplingTime coming out of the polyphasefilter, usually in nanoseconds, using the timeDownsamplingFactor to
+		get to the samplingTime. The timeDownsamplingFactor can be quite large, with the resulting samplingtime in the miliseconds.
+		
+		Also note that within the same Observation, these settings can be different for CoherentStokes and IncoherentStokes. if both types are being generated.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="CoherentStokes">
+		<xs:complexContent>
+			<xs:extension base="RealTimeProcess">
+				<xs:sequence>
+					<xs:element name="rawSamplingTime" type="Time"/>
+					<xs:element name="timeDownsamplingFactor" type="xs:unsignedInt"/>
+					<xs:element name="samplingTime" type="Time"/>
+					<xs:element minOccurs="0" name="frequencyDownsamplingFactor" type="xs:unsignedShort"/><!--BlueGene compatibility-->
+					<xs:element minOccurs="0" name="numberOfCollapsedChannels" type="xs:unsignedShort"/><!--BlueGene compatibility-->
+					<xs:element name="stokes" type="PolarizationType" maxOccurs="4"/>
+					<xs:element name="numberOfStations" type="xs:unsignedByte"/>
+					<xs:element name="stations" type="Stations"/>
+					<xs:element minOccurs="0" name="channelWidth" type="Frequency"/><!--BlueGene compatibility-->
+					<xs:element minOccurs="0" name="channelsPerSubband" type="xs:unsignedShort"/><!--BlueGene compatibility-->
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="IncoherentStokes">
+		<xs:complexContent>
+			<xs:extension base="RealTimeProcess">
+				<xs:sequence>
+					<xs:element name="rawSamplingTime" type="Time"/>
+					<xs:element name="timeDownsamplingFactor" type="xs:unsignedInt"/>
+					<xs:element name="samplingTime" type="Time"/>
+					<xs:element minOccurs="0" name="frequencyDownsamplingFactor" type="xs:unsignedShort"/><!--BlueGene compatibility-->
+					<xs:element minOccurs="0" name="numberOfCollapsedChannels" type="xs:unsignedShort"/><!--BlueGene compatibility-->
+					<xs:element name="stokes" type="PolarizationType" maxOccurs="4"/>
+					<xs:element name="numberOfStations" type="xs:unsignedByte"/>
+					<xs:element name="stations" type="Stations"/>
+					<xs:element minOccurs="0" name="channelWidth" type="Frequency"/><!--BlueGene compatibility-->
+					<xs:element minOccurs="0" name="channelsPerSubband" type="xs:unsignedShort"/><!--BlueGene compatibility-->
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="FlysEye">
+		<xs:complexContent>
+			<xs:extension base="RealTimeProcess">
+				<xs:sequence>
+					<xs:element name="rawSamplingTime" type="Time"/>
+					<xs:element name="timeDownsamplingFactor" type="xs:unsignedInt"/>
+					<xs:element name="samplingTime" type="Time"/>
+					<xs:element name="stokes" type="PolarizationType" maxOccurs="4"/>
+					<xs:element minOccurs="0" name="channelWidth" type="Frequency"/><!--BlueGene compatibility-->
+					<xs:element minOccurs="0" name="channelsPerSubband" type="xs:unsignedShort"/><!--BlueGene compatibility-->
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="NonStandard">
+		<xs:complexContent>
+			<xs:extension base="RealTimeProcess">
+				<xs:sequence>
+					<xs:element name="channelWidth" type="Frequency"/>
+					<xs:element name="channelsPerSubband" type="xs:unsignedShort"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="TransientBufferBoardEvents">
+		<xs:sequence>
+			<xs:element maxOccurs="unbounded" name="transientBufferBoardEvent" type="TransientBufferBoardEvent"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="TransientBufferBoardEvent">
+		<xs:sequence>
+			<xs:element name="eventSource" type="xs:string"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="SubArrayPointings">
+		<xs:sequence>
+			<xs:element maxOccurs="unbounded" name="subArrayPointing" type="SubArrayPointing"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>SubArrayPointing is one of the core classes of the SIP. It contains important information on 
+		what direction the telescope is pointing and what object was the target as well as the length of time the patch
+		of sky was was observed.
+		
+		See the XML standard for the format of xs::duration.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="SubArrayPointing">
+		<xs:sequence>
+			<xs:element name="pointing" type="Pointing"/>
+			<xs:element name="beamNumber" type="xs:unsignedShort"/>
+			<xs:element minOccurs="0" name="measurementDescription" type="xs:string"/>
+			<xs:element name="subArrayPointingIdentifier" type="IdentifierType"/>
+			<xs:element name="measurementType" type="MeasurementType"/>
+			<xs:element name="targetName" type="xs:string"/>
+			<xs:element name="startTime" type="xs:dateTime"/>
+			<xs:element name="duration" type="xs:duration"/>
+			<xs:element name="numberOfProcessing" type="xs:unsignedShort"/>
+			<xs:element minOccurs="0" name="processing" type="Processing"/>
+			<xs:element name="numberOfCorrelatedDataProducts" type="xs:unsignedShort"/>
+			<xs:element name="numberOfBeamFormedDataProducts" type="xs:unsignedShort"/>
+			<xs:element name="relations" type="ProcessRelations"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="DataSources">
+		<xs:annotation>
+			<xs:documentation>============================Pipeline============================
+	
+			This section describes the various pipelines.
+			</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="dataProductIdentifier" type="IdentifierType" maxOccurs="unbounded"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="PipelineRun">
+		<xs:complexContent>
+			<xs:extension base="Process">
+				<xs:sequence>
+					<xs:element name="pipelineName" type="xs:string"/>
+					<xs:element name="pipelineVersion" type="xs:string"/>
+					<xs:element name="sourceData" type="DataSources"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>This definition might not be entirely finished as the ImagingPipeline is still being worked on.</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="ImagingPipeline">
+		<xs:complexContent>
+			<xs:extension base="PipelineRun">
+				<xs:sequence>
+					<xs:element minOccurs="0" name="frequencyIntegrationStep" type="xs:unsignedShort"/>
+					<xs:element minOccurs="0" name="timeIntegrationStep" type="xs:unsignedShort"/>
+					<xs:element minOccurs="0" name="skyModelDatabase" type="xs:string"/>
+					<xs:element minOccurs="0" name="demixing" type="xs:boolean"/>
+					<xs:element name="imagerIntegrationTime" type="Time"/>
+					<xs:element name="numberOfMajorCycles" type="xs:unsignedShort"/>
+					<xs:element name="numberOfInstrumentModels" type="xs:unsignedShort"/>
+					<xs:element name="numberOfCorrelatedDataProducts" type="xs:unsignedShort"/>
+					<xs:element name="numberOfSkyImages" type="xs:unsignedShort"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="CalibrationPipeline">
+		<xs:complexContent>
+			<xs:extension base="PipelineRun">
+				<xs:sequence>
+					<xs:element minOccurs="0" name="frequencyIntegrationStep" type="xs:unsignedShort"/>
+					<xs:element minOccurs="0" name="timeIntegrationStep" type="xs:unsignedShort"/>
+					<xs:element minOccurs="0" name="flagAutoCorrelations" type="xs:boolean"/>
+					<xs:element minOccurs="0" name="demixing" type="xs:boolean"/>
+					<xs:element name="skyModelDatabase" type="xs:string"/>
+					<xs:element name="numberOfInstrumentModels" type="xs:unsignedShort"/>
+					<xs:element name="numberOfCorrelatedDataProducts" type="xs:unsignedShort"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="AveragingPipeline">
+		<xs:complexContent>
+			<xs:extension base="PipelineRun">
+				<xs:sequence>
+					<xs:element name="frequencyIntegrationStep" type="xs:unsignedShort"/>
+					<xs:element name="timeIntegrationStep" type="xs:unsignedShort"/>
+					<xs:element name="flagAutoCorrelations" type="xs:boolean"/>
+					<xs:element name="demixing" type="xs:boolean"/>
+					<xs:element name="numberOfCorrelatedDataProducts" type="xs:unsignedShort"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>Pulsar pipeline. Which pulsars are selected for processing is a complex system</xs:documentation>
+	</xs:annotation>
+	<xs:simpleType name="PulsarSelectionType">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="Pulsars in observation specs, file or SAP"/><!--Default-->
+			<xs:enumeration value="Pulsars in observation specs"/><!--parset-->
+			<xs:enumeration value="Pulsar specified in dataproduct"/><!--meta-->
+			<xs:enumeration value="Brightest known pulsar in SAP"/><!--sapfind-->
+			<xs:enumeration value="Three brightest known pulsars in SAP"/><!--sapfind3-->
+			<xs:enumeration value="Brightest known pulsar in TAB"/><!--tabfind-->
+			<xs:enumeration value="Pulsars in observation specs, file and brightest in SAP and TAB"/><!--tabfind+-->
+			<xs:enumeration value="Specified pulsar list"/><!--given list, comma separated-->
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:complexType name="PulsarPipeline">
+		<xs:complexContent>
+			<xs:extension base="PipelineRun">
+				<xs:sequence>
+					<xs:element name="pulsarSelection" type="PulsarSelectionType"/>
+					<xs:element name="pulsars" type="ListOfString"/>
+					<xs:element name="doSinglePulseAnalysis" type="xs:boolean"/><!--single-pulse-->
+					<xs:element name="convertRawTo8bit" type="xs:boolean"/><!--raw-to-8bit-->
+					<xs:element name="subintegrationLength" type="Time"/><!--tsubint-->
+					<xs:element name="skipRFIExcision" type="xs:boolean"/><!--norfi-->
+					<xs:element name="skipDataFolding" type="xs:boolean"/><!--nofold-->
+					<xs:element name="skipOptimizePulsarProfile" type="xs:boolean"/><!--nopdmp-->
+					<xs:element name="skipConvertRawIntoFoldedPSRFITS" type="xs:boolean"/><!--skip-dspsr-->
+					<xs:element name="runRotationalRAdioTransientsAnalysis" type="xs:boolean"/><!--rrats RRAT capitals on purpose-->
+					<xs:element name="skipDynamicSpectrum" type="xs:boolean"/><!--skip-dynamic-spectrum-->
+					<xs:element name="skipPreFold" type="xs:boolean"/><!--skip-prefold-->
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="CosmicRayPipeline">
+		<xs:complexContent>
+			<xs:extension base="PipelineRun"/>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="LongBaselinePipeline">
+		<xs:complexContent>
+			<xs:extension base="PipelineRun">
+				<xs:sequence>
+					<xs:element name="subbandsPerSubbandGroup" type="xs:unsignedShort"/>
+					<xs:element name="subbandGroupsPerMS" type="xs:unsignedShort"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="GenericPipeline">
+		<xs:complexContent>
+			<xs:extension base="PipelineRun"/>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>============================DataProduct============================
+	
+		This section describes the dataproducts.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:simpleType name="DataProductType">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="Correlator data"/>
+			<xs:enumeration value="Beam Formed data"/>
+			<xs:enumeration value="Transient Buffer Board data"/>
+			<xs:enumeration value="Sky Image"/>
+			<xs:enumeration value="Pixel Map"/>
+			<xs:enumeration value="Direct Data Storage data"/>
+			<xs:enumeration value="Dynamic Spectra data"/>
+			<xs:enumeration value="Instrument Model"/>
+			<xs:enumeration value="Sky Model"/>
+			<xs:enumeration value="Pulsar pipeline output"/>
+			<xs:enumeration value="Pulsar pipeline summary output"/>
+			<xs:enumeration value="Non Standard"/>
+			<xs:enumeration value="Unknown"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="ChecksumAlgorithm">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="MD5"/>
+			<xs:enumeration value="Adler32"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:complexType name="ChecksumType">
+		<xs:sequence>
+			<xs:element name="algorithm" type="ChecksumAlgorithm"/>
+			<xs:element name="value" type="xs:string"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>We plan to support three types of file formats currently in the LTA.</xs:documentation>
+	</xs:annotation>
+	<xs:simpleType name="FileFormatType">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="FITS"/>
+			<xs:enumeration value="AIPS++/CASA"/>
+			<xs:enumeration value="HDF5"/>
+			<xs:enumeration value="PULP"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:annotation>
+		<xs:documentation>This very well defined yet! type probably needs to be an enumeration</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="TBBTrigger">
+		<xs:sequence>
+			<xs:element name="type" type="xs:string"/>
+			<xs:element name="value" type="xs:string"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>From AIPS++/CASA: None=0,I=1,Q=2,U=3,V=4,RR=5,RL=6,LR=7,LL=8,XX=9,XY=10,YX=11,YY=12</xs:documentation>
+	</xs:annotation>
+	<xs:simpleType name="PolarizationType">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="None"/>
+			<xs:enumeration value="I"/>
+			<xs:enumeration value="Q"/>
+			<xs:enumeration value="U"/>
+			<xs:enumeration value="V"/>
+			<xs:enumeration value="RR"/>
+			<xs:enumeration value="RL"/>
+			<xs:enumeration value="LR"/>
+			<xs:enumeration value="LL"/>
+			<xs:enumeration value="XX"/>
+			<xs:enumeration value="XY"/>
+			<xs:enumeration value="YX"/>
+			<xs:enumeration value="YY"/>
+			<xs:enumeration value="Xre"/>
+			<xs:enumeration value="Xim"/>
+			<xs:enumeration value="Yre"/>
+			<xs:enumeration value="Yim"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:annotation>
+		<xs:documentation>Base class of the various DataProducts</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="DataProduct">
+		<xs:sequence>
+			<xs:element name="dataProductType" type="DataProductType"/>
+			<xs:element name="dataProductIdentifier" type="IdentifierType"/>
+			<xs:element minOccurs="0" name="storageTicket" type="xs:string"/>
+			<xs:element name="size" type="xs:unsignedLong"/><!--Bytes-->
+			<xs:element maxOccurs="unbounded" minOccurs="0" name="checksum" type="ChecksumType"/>
+			<xs:element name="fileName" type="xs:string"/>
+			<xs:element name="fileFormat" type="FileFormatType"/>
+			<xs:element name="processIdentifier" type="IdentifierType"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>======================Interferometer===========================
+	
+		subArrayPointingIdentifier (also knows as MeasurementIdentifier within MoM) is not an optional parameter as the
+		LTA catalog needs it because it can't otherwise find this information because of limits in the PipelineRun model.
+		See the XML standard for the format of xs::duration.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="CorrelatedDataProduct">
+		<xs:complexContent>
+			<xs:extension base="DataProduct">
+				<xs:sequence>
+					<xs:element name="subArrayPointingIdentifier" type="IdentifierType"/>
+					<xs:element name="subband" type="xs:unsignedShort"/>
+					<xs:element minOccurs="0" name="stationSubband" type="xs:unsignedShort"/>
+					<xs:element name="startTime" type="xs:dateTime"/>
+					<xs:element name="duration" type="xs:duration"/>
+					<xs:element name="integrationInterval" type="Time"/>
+					<xs:element name="centralFrequency" type="Frequency"/>
+					<xs:element name="channelWidth" type="Frequency"/>
+					<xs:element name="channelsPerSubband" type="xs:unsignedShort"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>This currently describes the ParmDB. No fields are defined because in the model is functions
+		as a link between Calibrator and Target observations and doesn't contain any searchable metadata at the moment.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="InstrumentModelDataProduct">
+		<xs:complexContent>
+			<xs:extension base="DataProduct"/>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>This currently describes the SourceDB. No fields are defined because in the model is functions
+		as a link between Calibrator and Target observations and doesn't contain any searchable metadata at the moment.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="SkyModelDataProduct">
+		<xs:complexContent>
+			<xs:extension base="DataProduct"/>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>=====================TransientBufferBoard=====================
+		
+		The timeStamp contains the exact number of seconds from Observation::startTime
+		</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="TransientBufferBoardDataProduct">
+		<xs:complexContent>
+			<xs:extension base="DataProduct">
+				<xs:sequence>
+					<xs:element name="numberOfSamples" type="xs:unsignedInt"/>
+					<xs:element name="timeStamp" type="xs:unsignedInt"/>
+					<xs:element name="triggerParameters" type="TBBTrigger"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>=====================BeamFormed=====================
+	
+		This section describes BeamFormed dataproducts. The important part is that this is where all the individual ArrayBeams are
+		described, the actual BeamFormedDataProduct is basically just a container.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="ArrayBeams">
+		<xs:sequence>
+			<xs:element maxOccurs="unbounded" name="arrayBeam" type="ArrayBeam"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>SamplingTime is the duration of a single sample usually in ms or ns.</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="ArrayBeam">
+		<xs:sequence>
+			<xs:element name="subArrayPointingIdentifier" type="IdentifierType"/>
+			<xs:element name="beamNumber" type="xs:unsignedShort"/>
+			<xs:element name="dispersionMeasure" type="xs:double"/>
+			<xs:element name="numberOfSubbands" type="xs:unsignedShort"/>
+			<xs:element name="stationSubbands" type="ListOfSubbands"/>
+			<xs:element name="samplingTime" type="Time"/>
+			<xs:element name="centralFrequencies" type="ListOfFrequencies"/>
+			<xs:element name="channelWidth" type="Frequency"/>
+			<xs:element name="channelsPerSubband" type="xs:unsignedShort"/>
+			<xs:element name="stokes" type="PolarizationType" maxOccurs="4"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>The pointing is the actual pointing of the ArrayBeam
+		The offset is the difference in the pointing of the ArrayBeam and the SubArrayPointing
+		</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="CoherentStokesBeam">
+		<xs:complexContent>
+			<xs:extension base="ArrayBeam">
+				<xs:sequence>
+					<xs:element name="pointing" type="Pointing"/>
+					<xs:element name="offset" type="Pointing"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="IncoherentStokesBeam">
+		<xs:complexContent>
+			<xs:extension base="ArrayBeam">
+				<xs:sequence/>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="FlysEyeBeam">
+		<xs:complexContent>
+			<xs:extension base="ArrayBeam">
+				<xs:sequence>
+					<xs:element name="station" type="Station"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="BeamFormedDataProduct">
+		<xs:complexContent>
+			<xs:extension base="DataProduct">
+				<xs:sequence>
+					<xs:element name="numberOfBeams" type="xs:unsignedShort"/>
+					<xs:element minOccurs="0" name="beams" type="ArrayBeams"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>=====================Pulsar Pipeline Dataproducts=====================
+		
+		PULP is a name for the output of the pulsar pipeline, it contains a list of small files.
+		It also contains pointers back to the observation/SAP/beam that the raw data came out of.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:simpleType name="PulsarPipelineDataType">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="CoherentStokes"/>
+			<xs:enumeration value="IncoherentStokes"/>
+			<xs:enumeration value="ComplexVoltages"/>
+			<xs:enumeration value="SummaryCoherentStokes"/>
+			<xs:enumeration value="SummaryIncoherentStokes"/>
+			<xs:enumeration value="SummaryComplexVoltages"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:complexType name="PulpSummaryDataProduct">
+		<xs:complexContent>
+			<xs:extension base="DataProduct">
+				<xs:sequence>
+					<xs:element name="fileContent" type="ListOfString"/>
+					<xs:element name="dataType" type="PulsarPipelineDataType"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="PulpDataProduct">
+		<xs:complexContent>
+			<xs:extension base="DataProduct">
+				<xs:sequence>
+					<xs:element name="fileContent" type="ListOfString"/>
+					<xs:element name="dataType" type="PulsarPipelineDataType"/>
+					<xs:element name="arrayBeam" type="ArrayBeam"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>===================Generic/Unspecified======================
+	
+		Please note that the difference between Generic and Unspecified is that the first describes a non standard dataproduct, while the second describes an unknown
+		dataproduct. The latter is mostly used when there are partial errors during the ingest of data into the archive.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="GenericDataProduct">
+		<xs:complexContent>
+			<xs:extension base="DataProduct"/>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="UnspecifiedDataProduct">
+		<xs:complexContent>
+			<xs:extension base="DataProduct"/>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>===================Images======================
+	
+		Below are structures related to image type dataproducts. The main dataproduct here is the SkyImage, which contains three levels
+		of data. At the top there is the general information, below that there are coordinate types and those have one or more axes.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="Axis">
+		<xs:sequence>
+			<xs:element name="number" type="xs:unsignedShort"/>
+			<xs:element name="name" type="xs:string"/>
+			<xs:element name="units" type="xs:string"/>
+			<xs:element name="length" type="xs:unsignedInt"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="LinearAxis">
+		<xs:complexContent>
+			<xs:extension base="Axis">
+				<xs:sequence>
+					<xs:element name="increment" type="xs:double"/>
+					<xs:element name="referencePixel" type="xs:double"/>
+					<xs:element name="referenceValue" type="xs:double"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="TabularAxis">
+		<xs:complexContent>
+			<xs:extension base="Axis">
+				<xs:sequence/>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="Coordinate">
+		<xs:sequence/>
+	</xs:complexType>
+	<xs:simpleType name="RaDecSystem">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="ICRS"/>
+			<xs:enumeration value="FK5"/>
+			<xs:enumeration value="FK4"/>
+			<xs:enumeration value="FK4-NO-E"/>
+			<xs:enumeration value="GAPPT"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="LocationFrame">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="GEOCENTER"/>
+			<xs:enumeration value="BARYCENTER"/>
+			<xs:enumeration value="HELIOCENTER"/>
+			<xs:enumeration value="TOPOCENTER"/>
+			<xs:enumeration value="LSRK"/>
+			<xs:enumeration value="LSRD"/>
+			<xs:enumeration value="GALACTIC"/>
+			<xs:enumeration value="LOCAL_GROUP"/>
+			<xs:enumeration value="RELOCATABLE"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:annotation>
+		<xs:documentation>The DirectionCoordinate defines the RA and DEC axes and their projection on the celestial sphere.</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="DirectionCoordinate">
+		<xs:complexContent>
+			<xs:extension base="Coordinate">
+				<xs:sequence>
+					<xs:element minOccurs="2" maxOccurs="2" name="directionLinearAxis" type="LinearAxis"/>
+					<xs:element name="PC0_0" type="xs:double"/>
+					<xs:element name="PC0_1" type="xs:double"/>
+					<xs:element name="PC1_0" type="xs:double"/>
+					<xs:element name="PC1_1" type="xs:double"/>
+					<xs:element name="equinox" type="xs:string"/>
+					<xs:element name="raDecSystem" type="RaDecSystem"/>
+					<xs:element name="projection" type="xs:string"/>
+					<xs:element name="projectionParameters" type="ListOfDouble"/>
+					<xs:element name="longitudePole" type="Angle"/>
+					<xs:element name="latitudePole" type="Angle"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:simpleType name="SpectralQuantityType">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="Frequency"/>
+			<xs:enumeration value="Energy"/>
+			<xs:enumeration value="Wavenumber"/>
+			<xs:enumeration value="VelocityRadio"/>
+			<xs:enumeration value="VelocityOptical"/>
+			<xs:enumeration value="VelocityAppRadial"/>
+			<xs:enumeration value="Redshift"/>
+			<xs:enumeration value="WaveLengthVacuum"/>
+			<xs:enumeration value="WaveLengthAir"/>
+			<xs:enumeration value="BetaFactor"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:complexType name="SpectralQuantity">
+		<xs:sequence>
+			<xs:element name="type" type="SpectralQuantityType"/>
+			<xs:element name="value" type="xs:double"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="SpectralCoordinate">
+		<xs:complexContent>
+			<xs:extension base="Coordinate">
+				<xs:sequence>
+					<xs:choice>
+						<xs:element name="spectralLinearAxis" type="LinearAxis"/>
+						<xs:element name="spectralTabularAxis" type="TabularAxis"/>
+					</xs:choice>
+					<xs:element name="spectralQuantity" type="SpectralQuantity"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="TimeCoordinate">
+		<xs:complexContent>
+			<xs:extension base="Coordinate">
+				<xs:sequence>
+					<xs:choice>
+						<xs:element name="timeLinearAxis" type="LinearAxis"/>
+						<xs:element name="timeTabularAxis" type="TabularAxis"/>
+					</xs:choice>
+					<xs:element name="equinox" type="EquinoxType"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="PolarizationCoordinate">
+		<xs:complexContent>
+			<xs:extension base="Coordinate">
+				<xs:sequence>
+					<xs:element name="polarizationTabularAxis" type="TabularAxis"/>
+					<xs:element maxOccurs="4" name="polarization" type="PolarizationType"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>PixelMap is a generic base class. Currently only SkyImage is derived from it, but in the future others will be, lik DynamicSpectra
+		The limit of 999 is based on the limits in the FITS standard. In practice it's not likely to be reached.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="PixelMapDataProduct">
+		<xs:complexContent>
+			<xs:extension base="DataProduct">
+				<xs:sequence>
+					<xs:element name="numberOfAxes" type="xs:unsignedShort"/>
+					<xs:element name="numberOfCoordinates" type="xs:unsignedShort"/>
+					<xs:element maxOccurs="999" name="coordinate" type="Coordinate"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>The SkyImage has two pointings: One for the actual image, encoded in the axes of 
+		the DirectionCoordinate, and an observationPointing, which is the direction the telescope was actually facing. This need not
+		be the same although it often will be.
+		
+		Usually a SkyImage will have one DirectionCoordinate, one PolarizationCoordinate and one SpectralCoordinate.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="SkyImageDataProduct">
+		<xs:complexContent>
+			<xs:extension base="PixelMapDataProduct">
+				<xs:sequence>
+					<xs:element name="locationFrame" type="LocationFrame"/>
+					<xs:element name="timeFrame" type="xs:string"/>
+					<xs:element name="observationPointing" type="Pointing"/>
+					<xs:element name="restoringBeamMajor" type="Angle"/>
+					<xs:element name="restoringBeamMinor" type="Angle"/>
+					<xs:element name="rmsNoise" type="Pixel"/>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>============================Parset============================
+	
+		This section describes the Parset. It's an optional section, given that not all processes that will be run to generate data might have
+		been run from SAS/MAC in the future. At the moment practically all processes should have a parset as we only run stuff on CEP/Tier 0.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="Parset">
+		<xs:sequence>
+			<xs:element name="identifier" type="IdentifierType"/>
+			<xs:element name="contents" type="xs:string"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>============================Project============================
+		
+		This section describes Project information.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:simpleType name="Telescope">
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="LOFAR"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:annotation>
+		<xs:documentation>The assumption is that all processes leading to the dataproduct are in the same project or public.
+		A dataproduct that would be created from non-public data from different projects is not modelled in the archive.</xs:documentation>
+	</xs:annotation>
+	<xs:complexType name="Project">
+		<xs:sequence>
+			<xs:element name="projectCode" type="xs:string"/>
+			<xs:element name="primaryInvestigator" type="xs:string"/>
+			<xs:element name="coInvestigator" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
+			<xs:element name="contactAuthor" type="xs:string"/>
+			<xs:element name="telescope" type="Telescope"/>
+			<xs:element name="projectDescription" type="xs:string"/>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:annotation>
+		<xs:documentation>============================LTASip root element============================
+	
+		This is the root of the LTA SIP. It should have at least one Observation or PipelineRun, describing the process that generated the
+		dataProduct.
+		</xs:documentation>
+	</xs:annotation>
+	<xs:element name="ltaSip" type="LTASip"/>
+	<xs:complexType name="LTASip">
+		<xs:sequence>
+			<xs:element name="sipGeneratorVersion" type="xs:string"/>
+			<xs:element name="project" type="Project"/>
+			<xs:element name="dataProduct" type="DataProduct"/>
+			<xs:element maxOccurs="unbounded" minOccurs="0" name="observation" type="Observation"/>
+			<xs:element maxOccurs="unbounded" minOccurs="0" name="pipelineRun" type="PipelineRun"/>
+			<xs:element maxOccurs="unbounded" minOccurs="0" name="unspecifiedProcess" type="UnspecifiedProcess"/>
+			<xs:element name="relatedDataProduct" type="DataProduct" minOccurs="0" maxOccurs="unbounded"/>
+			<xs:element maxOccurs="unbounded" minOccurs="0" name="parset" type="Parset"/>
+		</xs:sequence>
+	</xs:complexType>
+</xs:schema>
diff --git a/lib/visualizer.py b/lib/visualizer.py
new file mode 100755
index 0000000000000000000000000000000000000000..0f288445aa69189d9102f22da2c4f73cf8d90392
--- /dev/null
+++ b/lib/visualizer.py
@@ -0,0 +1,175 @@
+#!/usr/bin/python
+
+from graphviz import Digraph
+import sys
+import siplib
+import ltasip
+
+ltasip.Namespace.setPrefix('sip')
+
+def visualize_sip(sip, path="sip.visualize", format="svg", view=False):
+    if type(sip) == siplib.Sip:
+        sip = sip.sip
+
+    linkstodataproduct = {}
+    linkstoprocess = {}
+
+    dot_wrapper = Digraph('cluster_wrapper')
+
+    # ---
+    # create legend
+    dot_legend = Digraph('cluster_legend') # graphviz needs a label starting with cluster to render styles, oh boy...
+    dot_legend.body.append('style=filled')
+    dot_legend.body.append('bgcolor=lightgrey')
+    dot_legend.body.append('label="Legend\n\n"')
+
+    dot_legend.node('A',"Described Dataproduct",style="filled",fillcolor="cadetblue", shape="note")
+    dot_legend.node('B',"Related Dataproduct",style="filled",fillcolor="cadetblue2", shape="note")
+    dot_legend.node('C',"Observation", style="filled", fillcolor="gold",shape="octagon")
+    dot_legend.node('D',"Pipeline/Process ",style="filled",fillcolor="chartreuse", shape="cds")
+    dot_legend.node('E', "Unspec. Process", style="filled", fillcolor="orange", shape="hexagon")
+    dot_legend.edge('A','B',color="invis")
+    dot_legend.edge('B','C',color="invis")
+    dot_legend.edge('C','D',color="invis")
+    dot_legend.edge('D','E',color="invis")
+
+    # ---
+    # create the actual sip graph
+    dot = Digraph('cluster_sip')
+    dot.body.append('style=filled')
+    dot.body.append('bgcolor=lightgrey')
+    dot.body.append('label = "'+str(sip.project.projectCode+" - "+sip.project.projectDescription)+'\n\n"')
+
+    # the dataproduct that is described by the sip
+    data_out =  sip.dataProduct
+    id_out = str(data_out.dataProductIdentifier.identifier)
+    dot.node(id_out, id_out +": "+data_out.fileName,style="filled",fillcolor="cadetblue", shape="note")
+    print "adding node for final dataproduct ", id_out
+    id_process = str(data_out.processIdentifier.identifier)
+    # keep reference to originating pipeline run / observation:
+    linkstodataproduct.setdefault(id_out,[]).append(id_process)
+
+    # the input / intermediate dataproducts
+    for data_in in sip.relatedDataProduct:
+        id_in = str(data_in.dataProductIdentifier.identifier)
+        dot.node(id_in, id_in +": "+data_in.fileName, style="filled", shape="note",fillcolor="cadetblue2")
+        print "adding node for dataproduct ", id_in
+        id_process = str(data_in.processIdentifier.identifier)
+        # keep reference to originating pipeline run / observation:
+        linkstodataproduct.setdefault(id_in,[]).append(id_process)
+
+    # the observations
+    for obs in sip.observation:
+        id_obs = str(obs.observationId.identifier)
+        id_process = str(obs.processIdentifier.identifier)
+        dot.node(id_process, id_process + ": "+ id_obs, style="filled", fillcolor="gold",shape="octagon")
+        print "adding node for observation ", id_process
+        # no incoming data here, but register node as present:
+        linkstoprocess.setdefault(id_process,[])
+
+    # the data processing steps
+    for pipe in sip.pipelineRun:
+        id_pipe = str(pipe.processIdentifier.identifier)
+        dot.node(id_pipe, id_pipe+" ", style="filled", fillcolor="chartreuse", shape="cds")
+        print "adding node for pipelinerun ", id_pipe
+        # keep reference to input dataproducts:
+        id_in = []
+        for id in pipe.sourceData.content():
+            id_in.append(str(id.identifier))
+        linkstoprocess.setdefault(id_pipe,[]).append(id_in)
+
+    # the data processing steps
+    for unspec in sip.unspecifiedProcess:
+        id_unspec = str(unspec.processIdentifier.identifier)
+        dot.node(id_unspec, id_unspec, style="filled", fillcolor="orange", shape="hexagon")
+        print "adding node for unspecified process ", id_unspec
+        # no incoming data here, but register node as present:
+        linkstoprocess.setdefault(id_unspec,[])
+
+
+    # todo: online processing
+    # todo: parsets (?)
+
+#    print linkstoprocess
+#    print linkstodataproduct
+
+    # add edges:
+    for id in linkstodataproduct:
+        for id_from in linkstodataproduct.get(id):
+            if id_from in linkstoprocess:
+                dot.edge(id_from, id)
+                #print id_from,"->", id
+            else:
+                print "Error: The pipeline or observation that created dataproduct '"+ id + "' seems to be missing! -> ", id_from
+
+    for id in linkstoprocess:
+        for ids_from in linkstoprocess.get(id):
+            for id_from in ids_from:
+                if id_from in linkstodataproduct:
+                    dot.edge(id_from, id)
+                    #print id_from,"->", id
+                else:
+                    print "Error: The input dataproduct for pipeline '"+ id +"' seems to be missing! -> ", id_from
+
+
+    # ----
+    # render graph:
+    dot_wrapper.subgraph(dot_legend)
+    dot_wrapper.subgraph(dot)
+    dot_wrapper = stylize(dot_wrapper)
+    dot_wrapper.format = format
+    print "writing rendering to", path
+    dot_wrapper.render(path, view=view)
+
+
+
+
+
+def stylize(graph):
+    styles = {
+    'graph': {
+        'fontname': 'Helvetica',
+        'fontsize': '18',
+        'fontcolor': 'grey8',
+        'bgcolor': 'grey90',
+        'rankdir': 'TB',
+    },
+    'nodes': {
+        'fontname': 'Helvetica',
+        'fontcolor': 'grey8',
+        'color': 'grey8',
+    },
+    'edges': {
+        'arrowhead': 'open',
+        'fontname': 'Courier',
+        'fontsize': '12',
+        'fontcolor': 'grey8',
+    }
+    }
+
+    graph.graph_attr.update(
+        ('graph' in styles and styles['graph']) or {}
+    )
+    graph.node_attr.update(
+        ('nodes' in styles and styles['nodes']) or {}
+    )
+    graph.edge_attr.update(
+        ('edges' in styles and styles['edges']) or {}
+    )
+    return graph
+
+
+
+
+def main(argv):
+    print "Reading xml from file", argv[1]
+    with open(argv[1]) as f:
+        xml = f.read()
+    sip = ltasip.CreateFromDocument(xml)
+    path = argv[1]+".visualize"
+    format = 'svg'
+    visualize_sip(sip, path, format)
+
+
+if __name__ == '__main__':
+    main(sys.argv)
\ No newline at end of file
diff --git a/test/sipfrommom.xml b/test/sipfrommom.xml
new file mode 100644
index 0000000000000000000000000000000000000000..85d46f18da0c8f8d7dcf79e24cd6590398a43d5a
--- /dev/null
+++ b/test/sipfrommom.xml
@@ -0,0 +1,20481 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<sip:ltaSip xmlns:sip="http://www.astron.nl/SIP-Lofar"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.astron.nl/SIP-Lofar LTA-SIP-2.6.0.xsd ">
+    <sipGeneratorVersion>Version v2.17.5 (29-08-2016)</sipGeneratorVersion>
+    <project>
+        <projectCode>LC6_016</projectCode>
+        <primaryInvestigator>Arias de Saavedra Benitez,  Maria</primaryInvestigator>
+        <coInvestigator>White, Prof Glenn</coInvestigator>
+        <coInvestigator>Jacco Vink</coInvestigator>
+        <coInvestigator>Jess Broderick</coInvestigator>
+        <coInvestigator>Jon Gregson</coInvestigator>
+        <coInvestigator>Raymond Oonk</coInvestigator>
+        <contactAuthor>Arias de Saavedra Benitez,  Maria</contactAuthor>
+        <telescope>LOFAR</telescope>
+        <projectDescription>Investigating the peculiar nature of mixed morphology supernova remnants: W63 and HB9</projectDescription>
+    </project>
+    <dataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544622</identifier>
+            <name>L527639_SB000_uv.dppp.MS</name>
+        </dataProductIdentifier>
+        <storageTicket>392846B93D490BC2E053B316A9C3B0FE</storageTicket>
+        <size>5798051840</size>
+        <checksum>
+            <algorithm>MD5</algorithm>
+            <value>62d176137f2da68ade30b22ce42b016b</value>
+        </checksum>
+        <checksum>
+            <algorithm>Adler32</algorithm>
+            <value>5e7103ad</value>
+        </checksum>
+        <fileName>L527639_SB000_uv.dppp.MS_f43104ae.tar</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697902</identifier>
+            <name>CygA/1.0/TP</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>0</subband>
+        <stationSubband>0</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278016</integrationInterval>
+        <centralFrequency units="MHz">147.8515625</centralFrequency>
+        <channelWidth units="kHz">24.4140625</channelWidth>
+        <channelsPerSubband>8</channelsPerSubband>
+    </dataProduct>
+    <observation xsi:type="sip:Observation">
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <observationId>
+            <source>SAS</source>
+            <identifier>527637</identifier>
+        </observationId>
+        <parset>
+            <source>SAS</source>
+            <identifier>527637</identifier>
+        </parset>
+        <strategyName>BeamObservation</strategyName>
+        <strategyDescription>default</strategyDescription>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H51M30S</duration>
+        <relations>
+            <relation>
+                <relationType>GroupID</relationType>
+                <identifier>
+                    <source>MoM</source>
+                    <identifier>697898</identifier>
+                    <name>W63+CygA</name>
+                </identifier>
+            </relation>
+        </relations>
+        <observingMode>Beam Observation</observingMode>
+        <observationDescription>CygA/1/TO (Target Observation)</observationDescription>
+        <instrumentFilter>110-190 MHz</instrumentFilter>
+        <clock units="MHz">200</clock>
+        <stationSelection>Custom</stationSelection>
+        <antennaSet>HBA Dual</antennaSet>
+        <timeSystem>UTC</timeSystem>
+        <numberOfStations>38</numberOfStations>
+        <stations>
+            <station>
+                <name>RS210</name>
+                <stationType>Remote</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3877827.56186</x>
+                        <y units="m">467536.604956</y>
+                        <z units="m">5025445.584</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>RS205</name>
+                <stationType>Remote</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3831479.67</x>
+                        <y units="m">463487.529</y>
+                        <z units="m">5060989.903</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>RS310</name>
+                <stationType>Remote</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3845376.29</x>
+                        <y units="m">413616.564</y>
+                        <z units="m">5054796.341</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS032</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3826905.837</x>
+                        <y units="m">460410.995</y>
+                        <z units="m">5064702.499</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>RS307</name>
+                <stationType>Remote</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3837964.52</x>
+                        <y units="m">449627.261</y>
+                        <z units="m">5057357.585</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS302</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3827931.652</x>
+                        <y units="m">459769.554</y>
+                        <z units="m">5064002.807</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>RS305</name>
+                <stationType>Remote</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3828732.712</x>
+                        <y units="m">454692.404</y>
+                        <z units="m">5063850.315</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS005</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3826666.177</x>
+                        <y units="m">461005.533</y>
+                        <z units="m">5064827.472</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS003</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3826494.58</x>
+                        <y units="m">461017.698</y>
+                        <z units="m">5064955.176</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS030</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3826000.003</x>
+                        <y units="m">460364.303</y>
+                        <z units="m">5065385.121</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS002</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3826583.278</x>
+                        <y units="m">460955.756</y>
+                        <z units="m">5064894.197</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>RS406</name>
+                <stationType>Remote</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3818424.939</x>
+                        <y units="m">452020.269</y>
+                        <z units="m">5071817.644</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS031</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3826430.381</x>
+                        <y units="m">460301.862</y>
+                        <z units="m">5065068.278</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS021</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3826416.158</x>
+                        <y units="m">460510.576</y>
+                        <z units="m">5065060.187</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS103</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3826290.016</x>
+                        <y units="m">462800.003</y>
+                        <z units="m">5064947.127</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS024</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3827170.849</x>
+                        <y units="m">461381.379</y>
+                        <z units="m">5064416.362</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS013</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3826360.529</x>
+                        <y units="m">460815.196</y>
+                        <z units="m">5065074.343</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS401</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3826789.982</x>
+                        <y units="m">460095.444</y>
+                        <z units="m">5064818.996</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>RS409</name>
+                <stationType>Remote</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3824812.621</x>
+                        <y units="m">426130.33</y>
+                        <z units="m">5069251.754</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS201</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3826685.051</x>
+                        <y units="m">461918.691</y>
+                        <z units="m">5064731.315</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>RS503</name>
+                <stationType>Remote</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3824138.566</x>
+                        <y units="m">459476.972</y>
+                        <z units="m">5066858.578</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS004</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3826582.556</x>
+                        <y units="m">460891.662</y>
+                        <z units="m">5064900.532</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS001</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3826937.81</x>
+                        <y units="m">460938.526</y>
+                        <z units="m">5064630.696</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>RS509</name>
+                <stationType>Remote</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3783537.525</x>
+                        <y units="m">450130.064</y>
+                        <z units="m">5097866.146</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>RS106</name>
+                <stationType>Remote</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3829205.598</x>
+                        <y units="m">469142.533</y>
+                        <z units="m">5062181.002</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS026</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3826376.653</x>
+                        <y units="m">461846.767</y>
+                        <z units="m">5064968.706</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS501</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3825616.164</x>
+                        <y units="m">460670.139</y>
+                        <z units="m">5065645.456</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS301</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3827436.743</x>
+                        <y units="m">460987.4</y>
+                        <z units="m">5064252.468</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>RS508</name>
+                <stationType>Remote</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3797136.484</x>
+                        <y units="m">463114.447</y>
+                        <z units="m">5086651.286</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>RS306</name>
+                <stationType>Remote</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3829771.249</x>
+                        <y units="m">452761.702</y>
+                        <z units="m">5063243.181</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS017</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3826452.439</x>
+                        <y units="m">461529.979</y>
+                        <z units="m">5064940.511</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS028</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3825614.709</x>
+                        <y units="m">461283.678</y>
+                        <z units="m">5065591.532</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>RS407</name>
+                <stationType>Remote</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3811649.455</x>
+                        <y units="m">453459.894</y>
+                        <z units="m">5076728.952</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>RS208</name>
+                <stationType>Remote</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3847753.31</x>
+                        <y units="m">466962.809</y>
+                        <z units="m">5048397.244</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS006</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3826633.141</x>
+                        <y units="m">461108.369</y>
+                        <z units="m">5064842.975</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS101</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3825852.581</x>
+                        <y units="m">461676.421</y>
+                        <z units="m">5065376.79</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS007</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3826508.368</x>
+                        <y units="m">461126.726</y>
+                        <z units="m">5064934.972</z>
+                    </location>
+                </antennaField>
+            </station>
+            <station>
+                <name>CS011</name>
+                <stationType>Core</stationType>
+                <antennaField>
+                    <name>HBA</name>
+                    <location>
+                        <coordinateSystem>ITRF2005</coordinateSystem>
+                        <x units="m">3826643.191</x>
+                        <y units="m">461290.793</y>
+                        <z units="m">5064819.069</z>
+                    </location>
+                </antennaField>
+            </station>
+        </stations>
+        <numberOfSubArrayPointings>2</numberOfSubArrayPointings>
+        <subArrayPointings>
+            <subArrayPointing>
+                <pointing>
+                    <rightAscension units="degrees">299.868166667</rightAscension>
+                    <declination units="degrees">40.7338888889</declination>
+                    <equinox>J2000</equinox>
+                </pointing>
+                <beamNumber>0</beamNumber>
+                <measurementDescription>CygA</measurementDescription>
+                <subArrayPointingIdentifier>
+                    <source>MoM</source>
+                    <identifier>697900</identifier>
+                    <name>CygA</name>
+                </subArrayPointingIdentifier>
+                <measurementType>Target</measurementType>
+                <targetName>CygA</targetName>
+                <startTime>2016-07-30T00:09:00</startTime>
+                <duration>PT0S</duration>
+                <numberOfProcessing>1</numberOfProcessing>
+                <processing>
+                    <correlator>
+                        <processingType>Correlator</processingType>
+                        <integrationInterval units="s">2.00278016</integrationInterval>
+                        <channelWidth units="kHz">3.0517578125</channelWidth>
+                        <channelsPerSubband>64</channelsPerSubband>
+                    </correlator>
+                </processing>
+                <numberOfCorrelatedDataProducts>244</numberOfCorrelatedDataProducts>
+                <numberOfBeamFormedDataProducts>0</numberOfBeamFormedDataProducts>
+                <relations>
+                    <relation>
+                        <relationType>GroupID</relationType>
+                        <identifier>
+                            <source>MoM</source>
+                            <identifier>697898</identifier>
+                            <name>W63+CygA</name>
+                        </identifier>
+                    </relation>
+                </relations>
+            </subArrayPointing>
+            <subArrayPointing>
+                <pointing>
+                    <rightAscension units="degrees">304.75</rightAscension>
+                    <declination units="degrees">45.5</declination>
+                    <equinox>J2000</equinox>
+                </pointing>
+                <beamNumber>1</beamNumber>
+                <measurementDescription>W63</measurementDescription>
+                <subArrayPointingIdentifier>
+                    <source>MoM</source>
+                    <identifier>697901</identifier>
+                    <name>W63</name>
+                </subArrayPointingIdentifier>
+                <measurementType>Target</measurementType>
+                <targetName>W63</targetName>
+                <startTime>2016-07-30T00:09:00</startTime>
+                <duration>PT0S</duration>
+                <numberOfProcessing>1</numberOfProcessing>
+                <processing>
+                    <correlator>
+                        <processingType>Correlator</processingType>
+                        <integrationInterval units="s">2.00278016</integrationInterval>
+                        <channelWidth units="kHz">3.0517578125</channelWidth>
+                        <channelsPerSubband>64</channelsPerSubband>
+                    </correlator>
+                </processing>
+                <numberOfCorrelatedDataProducts>244</numberOfCorrelatedDataProducts>
+                <numberOfBeamFormedDataProducts>0</numberOfBeamFormedDataProducts>
+                <relations>
+                    <relation>
+                        <relationType>GroupID</relationType>
+                        <identifier>
+                            <source>MoM</source>
+                            <identifier>697898</identifier>
+                            <name>W63+CygA</name>
+                        </identifier>
+                    </relation>
+                </relations>
+            </subArrayPointing>
+        </subArrayPointings>
+        <numberOftransientBufferBoardEvents>0</numberOftransientBufferBoardEvents>
+        <numberOfCorrelatedDataProducts>488</numberOfCorrelatedDataProducts>
+        <numberOfBeamFormedDataProducts>0</numberOfBeamFormedDataProducts>
+        <numberOfBitsPerSample>8</numberOfBitsPerSample>
+    </observation>
+    <pipelineRun xsi:type="sip:AveragingPipeline">
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697902</identifier>
+            <name>CygA/1.0/TP</name>
+        </processIdentifier>
+        <observationId>
+            <source>SAS</source>
+            <identifier>527639</identifier>
+        </observationId>
+        <parset>
+            <source>SAS</source>
+            <identifier>527639</identifier>
+        </parset>
+        <strategyName>Preprocessing Pipeline</strategyName>
+        <strategyDescription>Preprocessing only</strategyDescription>
+        <startTime>2016-07-30T04:01:02</startTime>
+        <duration>PT1H7M3S</duration>
+        <relations>
+            <relation>
+                <relationType>GroupID</relationType>
+                <identifier>
+                    <source>MoM</source>
+                    <identifier>697898</identifier>
+                    <name>W63+CygA</name>
+                </identifier>
+            </relation>
+        </relations>
+        <pipelineName>CygA/1.0/TP</pipelineName>
+        <pipelineVersion>n/a</pipelineVersion>
+        <sourceData>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543890</identifier>
+                <name>L527637_SAP000_SB000_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543891</identifier>
+                <name>L527637_SAP000_SB001_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543892</identifier>
+                <name>L527637_SAP000_SB002_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543893</identifier>
+                <name>L527637_SAP000_SB003_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543894</identifier>
+                <name>L527637_SAP000_SB004_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543895</identifier>
+                <name>L527637_SAP000_SB005_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543896</identifier>
+                <name>L527637_SAP000_SB006_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543897</identifier>
+                <name>L527637_SAP000_SB007_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543898</identifier>
+                <name>L527637_SAP000_SB008_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543899</identifier>
+                <name>L527637_SAP000_SB009_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543900</identifier>
+                <name>L527637_SAP000_SB010_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543901</identifier>
+                <name>L527637_SAP000_SB011_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543902</identifier>
+                <name>L527637_SAP000_SB012_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543903</identifier>
+                <name>L527637_SAP000_SB013_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543904</identifier>
+                <name>L527637_SAP000_SB014_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543905</identifier>
+                <name>L527637_SAP000_SB015_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543906</identifier>
+                <name>L527637_SAP000_SB016_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543907</identifier>
+                <name>L527637_SAP000_SB017_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543908</identifier>
+                <name>L527637_SAP000_SB018_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543909</identifier>
+                <name>L527637_SAP000_SB019_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543910</identifier>
+                <name>L527637_SAP000_SB020_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543911</identifier>
+                <name>L527637_SAP000_SB021_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543912</identifier>
+                <name>L527637_SAP000_SB022_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543913</identifier>
+                <name>L527637_SAP000_SB023_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543914</identifier>
+                <name>L527637_SAP000_SB024_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543915</identifier>
+                <name>L527637_SAP000_SB025_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543916</identifier>
+                <name>L527637_SAP000_SB026_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543917</identifier>
+                <name>L527637_SAP000_SB027_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543918</identifier>
+                <name>L527637_SAP000_SB028_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543919</identifier>
+                <name>L527637_SAP000_SB029_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543920</identifier>
+                <name>L527637_SAP000_SB030_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543921</identifier>
+                <name>L527637_SAP000_SB031_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543922</identifier>
+                <name>L527637_SAP000_SB032_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543923</identifier>
+                <name>L527637_SAP000_SB033_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543924</identifier>
+                <name>L527637_SAP000_SB034_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543925</identifier>
+                <name>L527637_SAP000_SB035_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543926</identifier>
+                <name>L527637_SAP000_SB036_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543927</identifier>
+                <name>L527637_SAP000_SB037_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543928</identifier>
+                <name>L527637_SAP000_SB038_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543929</identifier>
+                <name>L527637_SAP000_SB039_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543930</identifier>
+                <name>L527637_SAP000_SB040_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543931</identifier>
+                <name>L527637_SAP000_SB041_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543932</identifier>
+                <name>L527637_SAP000_SB042_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543933</identifier>
+                <name>L527637_SAP000_SB043_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543934</identifier>
+                <name>L527637_SAP000_SB044_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543935</identifier>
+                <name>L527637_SAP000_SB045_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543936</identifier>
+                <name>L527637_SAP000_SB046_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543937</identifier>
+                <name>L527637_SAP000_SB047_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543938</identifier>
+                <name>L527637_SAP000_SB048_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543939</identifier>
+                <name>L527637_SAP000_SB049_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543940</identifier>
+                <name>L527637_SAP000_SB050_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543941</identifier>
+                <name>L527637_SAP000_SB051_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543942</identifier>
+                <name>L527637_SAP000_SB052_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543943</identifier>
+                <name>L527637_SAP000_SB053_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543944</identifier>
+                <name>L527637_SAP000_SB054_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543945</identifier>
+                <name>L527637_SAP000_SB055_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543946</identifier>
+                <name>L527637_SAP000_SB056_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543947</identifier>
+                <name>L527637_SAP000_SB057_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543948</identifier>
+                <name>L527637_SAP000_SB058_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543949</identifier>
+                <name>L527637_SAP000_SB059_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543950</identifier>
+                <name>L527637_SAP000_SB060_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543951</identifier>
+                <name>L527637_SAP000_SB061_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543952</identifier>
+                <name>L527637_SAP000_SB062_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543953</identifier>
+                <name>L527637_SAP000_SB063_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543954</identifier>
+                <name>L527637_SAP000_SB064_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543955</identifier>
+                <name>L527637_SAP000_SB065_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543956</identifier>
+                <name>L527637_SAP000_SB066_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543957</identifier>
+                <name>L527637_SAP000_SB067_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543958</identifier>
+                <name>L527637_SAP000_SB068_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543959</identifier>
+                <name>L527637_SAP000_SB069_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543960</identifier>
+                <name>L527637_SAP000_SB070_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543961</identifier>
+                <name>L527637_SAP000_SB071_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543962</identifier>
+                <name>L527637_SAP000_SB072_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543963</identifier>
+                <name>L527637_SAP000_SB073_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543964</identifier>
+                <name>L527637_SAP000_SB074_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543965</identifier>
+                <name>L527637_SAP000_SB075_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543966</identifier>
+                <name>L527637_SAP000_SB076_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543967</identifier>
+                <name>L527637_SAP000_SB077_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543968</identifier>
+                <name>L527637_SAP000_SB078_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543969</identifier>
+                <name>L527637_SAP000_SB079_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543970</identifier>
+                <name>L527637_SAP000_SB080_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543971</identifier>
+                <name>L527637_SAP000_SB081_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543972</identifier>
+                <name>L527637_SAP000_SB082_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543973</identifier>
+                <name>L527637_SAP000_SB083_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543974</identifier>
+                <name>L527637_SAP000_SB084_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543975</identifier>
+                <name>L527637_SAP000_SB085_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543976</identifier>
+                <name>L527637_SAP000_SB086_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543977</identifier>
+                <name>L527637_SAP000_SB087_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543978</identifier>
+                <name>L527637_SAP000_SB088_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543979</identifier>
+                <name>L527637_SAP000_SB089_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543980</identifier>
+                <name>L527637_SAP000_SB090_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543981</identifier>
+                <name>L527637_SAP000_SB091_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543982</identifier>
+                <name>L527637_SAP000_SB092_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543983</identifier>
+                <name>L527637_SAP000_SB093_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543984</identifier>
+                <name>L527637_SAP000_SB094_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543985</identifier>
+                <name>L527637_SAP000_SB095_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543986</identifier>
+                <name>L527637_SAP000_SB096_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543987</identifier>
+                <name>L527637_SAP000_SB097_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543988</identifier>
+                <name>L527637_SAP000_SB098_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543989</identifier>
+                <name>L527637_SAP000_SB099_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543990</identifier>
+                <name>L527637_SAP000_SB100_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543991</identifier>
+                <name>L527637_SAP000_SB101_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543992</identifier>
+                <name>L527637_SAP000_SB102_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543993</identifier>
+                <name>L527637_SAP000_SB103_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543994</identifier>
+                <name>L527637_SAP000_SB104_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543995</identifier>
+                <name>L527637_SAP000_SB105_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543996</identifier>
+                <name>L527637_SAP000_SB106_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543997</identifier>
+                <name>L527637_SAP000_SB107_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543998</identifier>
+                <name>L527637_SAP000_SB108_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19543999</identifier>
+                <name>L527637_SAP000_SB109_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544000</identifier>
+                <name>L527637_SAP000_SB110_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544001</identifier>
+                <name>L527637_SAP000_SB111_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544002</identifier>
+                <name>L527637_SAP000_SB112_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544003</identifier>
+                <name>L527637_SAP000_SB113_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544004</identifier>
+                <name>L527637_SAP000_SB114_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544005</identifier>
+                <name>L527637_SAP000_SB115_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544006</identifier>
+                <name>L527637_SAP000_SB116_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544007</identifier>
+                <name>L527637_SAP000_SB117_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544008</identifier>
+                <name>L527637_SAP000_SB118_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544009</identifier>
+                <name>L527637_SAP000_SB119_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544010</identifier>
+                <name>L527637_SAP000_SB120_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544011</identifier>
+                <name>L527637_SAP000_SB121_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544012</identifier>
+                <name>L527637_SAP000_SB122_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544013</identifier>
+                <name>L527637_SAP000_SB123_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544014</identifier>
+                <name>L527637_SAP000_SB124_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544015</identifier>
+                <name>L527637_SAP000_SB125_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544016</identifier>
+                <name>L527637_SAP000_SB126_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544017</identifier>
+                <name>L527637_SAP000_SB127_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544018</identifier>
+                <name>L527637_SAP000_SB128_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544019</identifier>
+                <name>L527637_SAP000_SB129_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544020</identifier>
+                <name>L527637_SAP000_SB130_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544021</identifier>
+                <name>L527637_SAP000_SB131_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544022</identifier>
+                <name>L527637_SAP000_SB132_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544023</identifier>
+                <name>L527637_SAP000_SB133_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544024</identifier>
+                <name>L527637_SAP000_SB134_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544025</identifier>
+                <name>L527637_SAP000_SB135_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544026</identifier>
+                <name>L527637_SAP000_SB136_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544027</identifier>
+                <name>L527637_SAP000_SB137_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544028</identifier>
+                <name>L527637_SAP000_SB138_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544029</identifier>
+                <name>L527637_SAP000_SB139_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544030</identifier>
+                <name>L527637_SAP000_SB140_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544031</identifier>
+                <name>L527637_SAP000_SB141_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544032</identifier>
+                <name>L527637_SAP000_SB142_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544033</identifier>
+                <name>L527637_SAP000_SB143_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544034</identifier>
+                <name>L527637_SAP000_SB144_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544035</identifier>
+                <name>L527637_SAP000_SB145_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544036</identifier>
+                <name>L527637_SAP000_SB146_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544037</identifier>
+                <name>L527637_SAP000_SB147_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544038</identifier>
+                <name>L527637_SAP000_SB148_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544039</identifier>
+                <name>L527637_SAP000_SB149_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544040</identifier>
+                <name>L527637_SAP000_SB150_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544041</identifier>
+                <name>L527637_SAP000_SB151_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544042</identifier>
+                <name>L527637_SAP000_SB152_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544043</identifier>
+                <name>L527637_SAP000_SB153_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544044</identifier>
+                <name>L527637_SAP000_SB154_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544045</identifier>
+                <name>L527637_SAP000_SB155_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544046</identifier>
+                <name>L527637_SAP000_SB156_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544047</identifier>
+                <name>L527637_SAP000_SB157_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544048</identifier>
+                <name>L527637_SAP000_SB158_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544049</identifier>
+                <name>L527637_SAP000_SB159_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544050</identifier>
+                <name>L527637_SAP000_SB160_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544051</identifier>
+                <name>L527637_SAP000_SB161_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544052</identifier>
+                <name>L527637_SAP000_SB162_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544053</identifier>
+                <name>L527637_SAP000_SB163_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544054</identifier>
+                <name>L527637_SAP000_SB164_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544055</identifier>
+                <name>L527637_SAP000_SB165_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544056</identifier>
+                <name>L527637_SAP000_SB166_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544057</identifier>
+                <name>L527637_SAP000_SB167_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544058</identifier>
+                <name>L527637_SAP000_SB168_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544059</identifier>
+                <name>L527637_SAP000_SB169_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544060</identifier>
+                <name>L527637_SAP000_SB170_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544061</identifier>
+                <name>L527637_SAP000_SB171_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544062</identifier>
+                <name>L527637_SAP000_SB172_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544063</identifier>
+                <name>L527637_SAP000_SB173_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544064</identifier>
+                <name>L527637_SAP000_SB174_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544065</identifier>
+                <name>L527637_SAP000_SB175_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544066</identifier>
+                <name>L527637_SAP000_SB176_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544067</identifier>
+                <name>L527637_SAP000_SB177_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544068</identifier>
+                <name>L527637_SAP000_SB178_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544069</identifier>
+                <name>L527637_SAP000_SB179_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544070</identifier>
+                <name>L527637_SAP000_SB180_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544071</identifier>
+                <name>L527637_SAP000_SB181_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544072</identifier>
+                <name>L527637_SAP000_SB182_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544073</identifier>
+                <name>L527637_SAP000_SB183_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544074</identifier>
+                <name>L527637_SAP000_SB184_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544075</identifier>
+                <name>L527637_SAP000_SB185_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544076</identifier>
+                <name>L527637_SAP000_SB186_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544077</identifier>
+                <name>L527637_SAP000_SB187_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544078</identifier>
+                <name>L527637_SAP000_SB188_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544079</identifier>
+                <name>L527637_SAP000_SB189_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544080</identifier>
+                <name>L527637_SAP000_SB190_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544081</identifier>
+                <name>L527637_SAP000_SB191_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544082</identifier>
+                <name>L527637_SAP000_SB192_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544083</identifier>
+                <name>L527637_SAP000_SB193_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544084</identifier>
+                <name>L527637_SAP000_SB194_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544085</identifier>
+                <name>L527637_SAP000_SB195_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544086</identifier>
+                <name>L527637_SAP000_SB196_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544087</identifier>
+                <name>L527637_SAP000_SB197_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544088</identifier>
+                <name>L527637_SAP000_SB198_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544089</identifier>
+                <name>L527637_SAP000_SB199_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544090</identifier>
+                <name>L527637_SAP000_SB200_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544091</identifier>
+                <name>L527637_SAP000_SB201_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544092</identifier>
+                <name>L527637_SAP000_SB202_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544093</identifier>
+                <name>L527637_SAP000_SB203_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544094</identifier>
+                <name>L527637_SAP000_SB204_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544095</identifier>
+                <name>L527637_SAP000_SB205_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544096</identifier>
+                <name>L527637_SAP000_SB206_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544097</identifier>
+                <name>L527637_SAP000_SB207_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544098</identifier>
+                <name>L527637_SAP000_SB208_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544099</identifier>
+                <name>L527637_SAP000_SB209_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544100</identifier>
+                <name>L527637_SAP000_SB210_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544101</identifier>
+                <name>L527637_SAP000_SB211_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544102</identifier>
+                <name>L527637_SAP000_SB212_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544103</identifier>
+                <name>L527637_SAP000_SB213_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544104</identifier>
+                <name>L527637_SAP000_SB214_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544105</identifier>
+                <name>L527637_SAP000_SB215_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544106</identifier>
+                <name>L527637_SAP000_SB216_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544107</identifier>
+                <name>L527637_SAP000_SB217_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544108</identifier>
+                <name>L527637_SAP000_SB218_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544109</identifier>
+                <name>L527637_SAP000_SB219_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544110</identifier>
+                <name>L527637_SAP000_SB220_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544111</identifier>
+                <name>L527637_SAP000_SB221_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544112</identifier>
+                <name>L527637_SAP000_SB222_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544113</identifier>
+                <name>L527637_SAP000_SB223_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544114</identifier>
+                <name>L527637_SAP000_SB224_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544115</identifier>
+                <name>L527637_SAP000_SB225_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544116</identifier>
+                <name>L527637_SAP000_SB226_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544117</identifier>
+                <name>L527637_SAP000_SB227_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544118</identifier>
+                <name>L527637_SAP000_SB228_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544119</identifier>
+                <name>L527637_SAP000_SB229_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544120</identifier>
+                <name>L527637_SAP000_SB230_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544121</identifier>
+                <name>L527637_SAP000_SB231_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544122</identifier>
+                <name>L527637_SAP000_SB232_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544123</identifier>
+                <name>L527637_SAP000_SB233_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544124</identifier>
+                <name>L527637_SAP000_SB234_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544125</identifier>
+                <name>L527637_SAP000_SB235_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544126</identifier>
+                <name>L527637_SAP000_SB236_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544127</identifier>
+                <name>L527637_SAP000_SB237_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544128</identifier>
+                <name>L527637_SAP000_SB238_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544129</identifier>
+                <name>L527637_SAP000_SB239_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544130</identifier>
+                <name>L527637_SAP000_SB240_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544131</identifier>
+                <name>L527637_SAP000_SB241_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544132</identifier>
+                <name>L527637_SAP000_SB242_uv.MS</name>
+            </dataProductIdentifier>
+            <dataProductIdentifier>
+                <source>MoM</source>
+                <identifier>19544133</identifier>
+                <name>L527637_SAP000_SB243_uv.MS</name>
+            </dataProductIdentifier>
+        </sourceData>
+        <frequencyIntegrationStep>8</frequencyIntegrationStep>
+        <timeIntegrationStep>1</timeIntegrationStep>
+        <flagAutoCorrelations>true</flagAutoCorrelations>
+        <demixing>true</demixing>
+        <numberOfCorrelatedDataProducts>244</numberOfCorrelatedDataProducts>
+    </pipelineRun>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543890</identifier>
+            <name>L527637_SAP000_SB000_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB000_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>0</subband>
+        <stationSubband>245</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">147.8515625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543891</identifier>
+            <name>L527637_SAP000_SB001_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB001_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>1</subband>
+        <stationSubband>246</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">148.046875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543892</identifier>
+            <name>L527637_SAP000_SB002_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB002_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>2</subband>
+        <stationSubband>247</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">148.2421875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543893</identifier>
+            <name>L527637_SAP000_SB003_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB003_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>3</subband>
+        <stationSubband>248</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">148.4375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543894</identifier>
+            <name>L527637_SAP000_SB004_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB004_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>4</subband>
+        <stationSubband>249</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">148.6328125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543895</identifier>
+            <name>L527637_SAP000_SB005_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB005_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>5</subband>
+        <stationSubband>250</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">148.828125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543896</identifier>
+            <name>L527637_SAP000_SB006_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB006_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>6</subband>
+        <stationSubband>251</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">149.0234375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543897</identifier>
+            <name>L527637_SAP000_SB007_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB007_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>7</subband>
+        <stationSubband>252</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">149.21875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543898</identifier>
+            <name>L527637_SAP000_SB008_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB008_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>8</subband>
+        <stationSubband>253</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">149.4140625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543899</identifier>
+            <name>L527637_SAP000_SB009_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB009_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>9</subband>
+        <stationSubband>254</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">149.609375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543900</identifier>
+            <name>L527637_SAP000_SB010_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB010_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>10</subband>
+        <stationSubband>255</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">149.8046875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543901</identifier>
+            <name>L527637_SAP000_SB011_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB011_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>11</subband>
+        <stationSubband>256</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">150</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543902</identifier>
+            <name>L527637_SAP000_SB012_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB012_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>12</subband>
+        <stationSubband>257</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">150.1953125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543903</identifier>
+            <name>L527637_SAP000_SB013_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB013_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>13</subband>
+        <stationSubband>258</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">150.390625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543904</identifier>
+            <name>L527637_SAP000_SB014_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB014_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>14</subband>
+        <stationSubband>259</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">150.5859375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543905</identifier>
+            <name>L527637_SAP000_SB015_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB015_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>15</subband>
+        <stationSubband>260</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">150.78125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543906</identifier>
+            <name>L527637_SAP000_SB016_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB016_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>16</subband>
+        <stationSubband>261</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">150.9765625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543907</identifier>
+            <name>L527637_SAP000_SB017_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB017_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>17</subband>
+        <stationSubband>262</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">151.171875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543908</identifier>
+            <name>L527637_SAP000_SB018_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB018_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>18</subband>
+        <stationSubband>263</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">151.3671875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543909</identifier>
+            <name>L527637_SAP000_SB019_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB019_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>19</subband>
+        <stationSubband>264</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">151.5625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543910</identifier>
+            <name>L527637_SAP000_SB020_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB020_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>20</subband>
+        <stationSubband>265</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">151.7578125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543911</identifier>
+            <name>L527637_SAP000_SB021_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB021_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>21</subband>
+        <stationSubband>266</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">151.953125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543912</identifier>
+            <name>L527637_SAP000_SB022_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB022_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>22</subband>
+        <stationSubband>267</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">152.1484375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543913</identifier>
+            <name>L527637_SAP000_SB023_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB023_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>23</subband>
+        <stationSubband>268</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">152.34375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543914</identifier>
+            <name>L527637_SAP000_SB024_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB024_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>24</subband>
+        <stationSubband>269</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">152.5390625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543915</identifier>
+            <name>L527637_SAP000_SB025_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB025_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>25</subband>
+        <stationSubband>270</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">152.734375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543916</identifier>
+            <name>L527637_SAP000_SB026_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB026_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>26</subband>
+        <stationSubband>271</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">152.9296875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543917</identifier>
+            <name>L527637_SAP000_SB027_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB027_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>27</subband>
+        <stationSubband>272</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">153.125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543918</identifier>
+            <name>L527637_SAP000_SB028_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB028_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>28</subband>
+        <stationSubband>273</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">153.3203125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543919</identifier>
+            <name>L527637_SAP000_SB029_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB029_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>29</subband>
+        <stationSubband>274</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">153.515625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543920</identifier>
+            <name>L527637_SAP000_SB030_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB030_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>30</subband>
+        <stationSubband>275</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">153.7109375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543921</identifier>
+            <name>L527637_SAP000_SB031_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB031_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>31</subband>
+        <stationSubband>276</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">153.90625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543922</identifier>
+            <name>L527637_SAP000_SB032_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB032_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>32</subband>
+        <stationSubband>277</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">154.1015625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543923</identifier>
+            <name>L527637_SAP000_SB033_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB033_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>33</subband>
+        <stationSubband>278</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">154.296875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543924</identifier>
+            <name>L527637_SAP000_SB034_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB034_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>34</subband>
+        <stationSubband>279</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">154.4921875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543925</identifier>
+            <name>L527637_SAP000_SB035_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB035_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>35</subband>
+        <stationSubband>280</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">154.6875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543926</identifier>
+            <name>L527637_SAP000_SB036_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB036_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>36</subband>
+        <stationSubband>281</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">154.8828125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543927</identifier>
+            <name>L527637_SAP000_SB037_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB037_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>37</subband>
+        <stationSubband>282</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">155.078125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543928</identifier>
+            <name>L527637_SAP000_SB038_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB038_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>38</subband>
+        <stationSubband>283</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">155.2734375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543929</identifier>
+            <name>L527637_SAP000_SB039_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB039_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>39</subband>
+        <stationSubband>284</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">155.46875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543930</identifier>
+            <name>L527637_SAP000_SB040_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB040_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>40</subband>
+        <stationSubband>285</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">155.6640625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543931</identifier>
+            <name>L527637_SAP000_SB041_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB041_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>41</subband>
+        <stationSubband>286</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">155.859375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543932</identifier>
+            <name>L527637_SAP000_SB042_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB042_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>42</subband>
+        <stationSubband>287</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">156.0546875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543933</identifier>
+            <name>L527637_SAP000_SB043_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB043_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>43</subband>
+        <stationSubband>288</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">156.25</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543934</identifier>
+            <name>L527637_SAP000_SB044_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB044_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>44</subband>
+        <stationSubband>289</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">156.4453125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543935</identifier>
+            <name>L527637_SAP000_SB045_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB045_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>45</subband>
+        <stationSubband>290</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">156.640625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543936</identifier>
+            <name>L527637_SAP000_SB046_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB046_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>46</subband>
+        <stationSubband>291</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">156.8359375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543937</identifier>
+            <name>L527637_SAP000_SB047_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB047_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>47</subband>
+        <stationSubband>292</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">157.03125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543938</identifier>
+            <name>L527637_SAP000_SB048_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB048_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>48</subband>
+        <stationSubband>293</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">157.2265625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543939</identifier>
+            <name>L527637_SAP000_SB049_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB049_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>49</subband>
+        <stationSubband>294</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">157.421875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543940</identifier>
+            <name>L527637_SAP000_SB050_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB050_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>50</subband>
+        <stationSubband>295</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">157.6171875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543941</identifier>
+            <name>L527637_SAP000_SB051_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB051_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>51</subband>
+        <stationSubband>296</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">157.8125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543942</identifier>
+            <name>L527637_SAP000_SB052_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB052_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>52</subband>
+        <stationSubband>297</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">158.0078125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543943</identifier>
+            <name>L527637_SAP000_SB053_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB053_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>53</subband>
+        <stationSubband>298</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">158.203125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543944</identifier>
+            <name>L527637_SAP000_SB054_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB054_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>54</subband>
+        <stationSubband>299</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">158.3984375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543945</identifier>
+            <name>L527637_SAP000_SB055_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB055_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>55</subband>
+        <stationSubband>300</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">158.59375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543946</identifier>
+            <name>L527637_SAP000_SB056_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB056_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>56</subband>
+        <stationSubband>301</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">158.7890625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543947</identifier>
+            <name>L527637_SAP000_SB057_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB057_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>57</subband>
+        <stationSubband>302</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">158.984375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543948</identifier>
+            <name>L527637_SAP000_SB058_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB058_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>58</subband>
+        <stationSubband>303</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">159.1796875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543949</identifier>
+            <name>L527637_SAP000_SB059_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB059_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>59</subband>
+        <stationSubband>304</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">159.375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543950</identifier>
+            <name>L527637_SAP000_SB060_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB060_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>60</subband>
+        <stationSubband>305</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">159.5703125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543951</identifier>
+            <name>L527637_SAP000_SB061_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB061_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>61</subband>
+        <stationSubband>306</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">159.765625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543952</identifier>
+            <name>L527637_SAP000_SB062_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB062_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>62</subband>
+        <stationSubband>307</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">159.9609375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543953</identifier>
+            <name>L527637_SAP000_SB063_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB063_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>63</subband>
+        <stationSubband>308</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">160.15625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543954</identifier>
+            <name>L527637_SAP000_SB064_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB064_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>64</subband>
+        <stationSubband>309</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">160.3515625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543955</identifier>
+            <name>L527637_SAP000_SB065_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB065_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>65</subband>
+        <stationSubband>310</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">160.546875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543956</identifier>
+            <name>L527637_SAP000_SB066_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB066_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>66</subband>
+        <stationSubband>311</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">160.7421875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543957</identifier>
+            <name>L527637_SAP000_SB067_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB067_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>67</subband>
+        <stationSubband>312</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">160.9375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543958</identifier>
+            <name>L527637_SAP000_SB068_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB068_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>68</subband>
+        <stationSubband>313</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">161.1328125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543959</identifier>
+            <name>L527637_SAP000_SB069_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB069_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>69</subband>
+        <stationSubband>314</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">161.328125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543960</identifier>
+            <name>L527637_SAP000_SB070_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB070_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>70</subband>
+        <stationSubband>315</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">161.5234375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543961</identifier>
+            <name>L527637_SAP000_SB071_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB071_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>71</subband>
+        <stationSubband>316</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">161.71875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543962</identifier>
+            <name>L527637_SAP000_SB072_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB072_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>72</subband>
+        <stationSubband>317</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">161.9140625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543963</identifier>
+            <name>L527637_SAP000_SB073_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB073_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>73</subband>
+        <stationSubband>318</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">162.109375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543964</identifier>
+            <name>L527637_SAP000_SB074_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB074_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>74</subband>
+        <stationSubband>319</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">162.3046875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543965</identifier>
+            <name>L527637_SAP000_SB075_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB075_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>75</subband>
+        <stationSubband>320</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">162.5</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543966</identifier>
+            <name>L527637_SAP000_SB076_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB076_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>76</subband>
+        <stationSubband>321</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">162.6953125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543967</identifier>
+            <name>L527637_SAP000_SB077_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB077_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>77</subband>
+        <stationSubband>322</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">162.890625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543968</identifier>
+            <name>L527637_SAP000_SB078_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB078_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>78</subband>
+        <stationSubband>323</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">163.0859375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543969</identifier>
+            <name>L527637_SAP000_SB079_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB079_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>79</subband>
+        <stationSubband>324</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">163.28125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543970</identifier>
+            <name>L527637_SAP000_SB080_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB080_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>80</subband>
+        <stationSubband>325</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">163.4765625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543971</identifier>
+            <name>L527637_SAP000_SB081_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB081_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>81</subband>
+        <stationSubband>326</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">163.671875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543972</identifier>
+            <name>L527637_SAP000_SB082_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB082_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>82</subband>
+        <stationSubband>327</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">163.8671875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543973</identifier>
+            <name>L527637_SAP000_SB083_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB083_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>83</subband>
+        <stationSubband>328</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">164.0625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543974</identifier>
+            <name>L527637_SAP000_SB084_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB084_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>84</subband>
+        <stationSubband>329</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">164.2578125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543975</identifier>
+            <name>L527637_SAP000_SB085_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB085_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>85</subband>
+        <stationSubband>330</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">164.453125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543976</identifier>
+            <name>L527637_SAP000_SB086_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB086_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>86</subband>
+        <stationSubband>331</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">164.6484375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543977</identifier>
+            <name>L527637_SAP000_SB087_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB087_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>87</subband>
+        <stationSubband>332</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">164.84375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543978</identifier>
+            <name>L527637_SAP000_SB088_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB088_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>88</subband>
+        <stationSubband>333</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">165.0390625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543979</identifier>
+            <name>L527637_SAP000_SB089_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB089_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>89</subband>
+        <stationSubband>334</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">165.234375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543980</identifier>
+            <name>L527637_SAP000_SB090_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB090_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>90</subband>
+        <stationSubband>335</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">165.4296875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543981</identifier>
+            <name>L527637_SAP000_SB091_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB091_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>91</subband>
+        <stationSubband>336</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">165.625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543982</identifier>
+            <name>L527637_SAP000_SB092_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB092_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>92</subband>
+        <stationSubband>337</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">165.8203125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543983</identifier>
+            <name>L527637_SAP000_SB093_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB093_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>93</subband>
+        <stationSubband>338</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">166.015625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543984</identifier>
+            <name>L527637_SAP000_SB094_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB094_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>94</subband>
+        <stationSubband>339</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">166.2109375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543985</identifier>
+            <name>L527637_SAP000_SB095_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB095_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>95</subband>
+        <stationSubband>340</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">166.40625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543986</identifier>
+            <name>L527637_SAP000_SB096_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB096_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>96</subband>
+        <stationSubband>341</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">166.6015625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543987</identifier>
+            <name>L527637_SAP000_SB097_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB097_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>97</subband>
+        <stationSubband>342</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">166.796875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543988</identifier>
+            <name>L527637_SAP000_SB098_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB098_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>98</subband>
+        <stationSubband>343</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">166.9921875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543989</identifier>
+            <name>L527637_SAP000_SB099_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB099_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>99</subband>
+        <stationSubband>344</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">167.1875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543990</identifier>
+            <name>L527637_SAP000_SB100_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB100_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>100</subband>
+        <stationSubband>345</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">167.3828125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543991</identifier>
+            <name>L527637_SAP000_SB101_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB101_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>101</subband>
+        <stationSubband>346</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">167.578125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543992</identifier>
+            <name>L527637_SAP000_SB102_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB102_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>102</subband>
+        <stationSubband>347</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">167.7734375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543993</identifier>
+            <name>L527637_SAP000_SB103_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB103_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>103</subband>
+        <stationSubband>348</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">167.96875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543994</identifier>
+            <name>L527637_SAP000_SB104_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB104_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>104</subband>
+        <stationSubband>349</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">168.1640625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543995</identifier>
+            <name>L527637_SAP000_SB105_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB105_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>105</subband>
+        <stationSubband>350</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">168.359375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543996</identifier>
+            <name>L527637_SAP000_SB106_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB106_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>106</subband>
+        <stationSubband>351</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">168.5546875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543997</identifier>
+            <name>L527637_SAP000_SB107_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB107_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>107</subband>
+        <stationSubband>352</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">168.75</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543998</identifier>
+            <name>L527637_SAP000_SB108_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB108_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>108</subband>
+        <stationSubband>353</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">168.9453125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19543999</identifier>
+            <name>L527637_SAP000_SB109_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB109_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>109</subband>
+        <stationSubband>354</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">169.140625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544000</identifier>
+            <name>L527637_SAP000_SB110_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB110_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>110</subband>
+        <stationSubband>355</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">169.3359375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544001</identifier>
+            <name>L527637_SAP000_SB111_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB111_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>111</subband>
+        <stationSubband>356</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">169.53125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544002</identifier>
+            <name>L527637_SAP000_SB112_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB112_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>112</subband>
+        <stationSubband>357</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">169.7265625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544003</identifier>
+            <name>L527637_SAP000_SB113_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB113_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>113</subband>
+        <stationSubband>358</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">169.921875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544004</identifier>
+            <name>L527637_SAP000_SB114_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB114_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>114</subband>
+        <stationSubband>359</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">170.1171875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544005</identifier>
+            <name>L527637_SAP000_SB115_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB115_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>115</subband>
+        <stationSubband>360</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">170.3125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544006</identifier>
+            <name>L527637_SAP000_SB116_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB116_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>116</subband>
+        <stationSubband>361</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">170.5078125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544007</identifier>
+            <name>L527637_SAP000_SB117_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB117_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>117</subband>
+        <stationSubband>362</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">170.703125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544008</identifier>
+            <name>L527637_SAP000_SB118_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB118_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>118</subband>
+        <stationSubband>363</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">170.8984375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544009</identifier>
+            <name>L527637_SAP000_SB119_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB119_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>119</subband>
+        <stationSubband>364</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">171.09375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544010</identifier>
+            <name>L527637_SAP000_SB120_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB120_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>120</subband>
+        <stationSubband>365</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">171.2890625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544011</identifier>
+            <name>L527637_SAP000_SB121_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB121_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>121</subband>
+        <stationSubband>366</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">171.484375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544012</identifier>
+            <name>L527637_SAP000_SB122_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB122_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>122</subband>
+        <stationSubband>367</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">171.6796875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544013</identifier>
+            <name>L527637_SAP000_SB123_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB123_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>123</subband>
+        <stationSubband>368</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">171.875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544014</identifier>
+            <name>L527637_SAP000_SB124_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB124_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>124</subband>
+        <stationSubband>369</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">172.0703125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544015</identifier>
+            <name>L527637_SAP000_SB125_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB125_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>125</subband>
+        <stationSubband>370</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">172.265625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544016</identifier>
+            <name>L527637_SAP000_SB126_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB126_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>126</subband>
+        <stationSubband>371</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">172.4609375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544017</identifier>
+            <name>L527637_SAP000_SB127_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB127_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>127</subband>
+        <stationSubband>372</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">172.65625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544018</identifier>
+            <name>L527637_SAP000_SB128_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB128_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>128</subband>
+        <stationSubband>373</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">172.8515625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544019</identifier>
+            <name>L527637_SAP000_SB129_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB129_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>129</subband>
+        <stationSubband>374</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">173.046875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544020</identifier>
+            <name>L527637_SAP000_SB130_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB130_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>130</subband>
+        <stationSubband>375</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">173.2421875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544021</identifier>
+            <name>L527637_SAP000_SB131_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB131_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>131</subband>
+        <stationSubband>376</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">173.4375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544022</identifier>
+            <name>L527637_SAP000_SB132_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB132_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>132</subband>
+        <stationSubband>377</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">173.6328125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544023</identifier>
+            <name>L527637_SAP000_SB133_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB133_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>133</subband>
+        <stationSubband>378</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">173.828125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544024</identifier>
+            <name>L527637_SAP000_SB134_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB134_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>134</subband>
+        <stationSubband>379</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">174.0234375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544025</identifier>
+            <name>L527637_SAP000_SB135_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB135_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>135</subband>
+        <stationSubband>380</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">174.21875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544026</identifier>
+            <name>L527637_SAP000_SB136_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB136_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>136</subband>
+        <stationSubband>381</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">174.4140625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544027</identifier>
+            <name>L527637_SAP000_SB137_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB137_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>137</subband>
+        <stationSubband>382</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">174.609375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544028</identifier>
+            <name>L527637_SAP000_SB138_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB138_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>138</subband>
+        <stationSubband>383</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">174.8046875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544029</identifier>
+            <name>L527637_SAP000_SB139_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB139_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>139</subband>
+        <stationSubband>384</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">175</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544030</identifier>
+            <name>L527637_SAP000_SB140_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB140_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>140</subband>
+        <stationSubband>385</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">175.1953125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544031</identifier>
+            <name>L527637_SAP000_SB141_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB141_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>141</subband>
+        <stationSubband>386</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">175.390625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544032</identifier>
+            <name>L527637_SAP000_SB142_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB142_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>142</subband>
+        <stationSubband>387</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">175.5859375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544033</identifier>
+            <name>L527637_SAP000_SB143_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB143_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>143</subband>
+        <stationSubband>388</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">175.78125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544034</identifier>
+            <name>L527637_SAP000_SB144_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB144_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>144</subband>
+        <stationSubband>389</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">175.9765625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544035</identifier>
+            <name>L527637_SAP000_SB145_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB145_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>145</subband>
+        <stationSubband>390</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">176.171875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544036</identifier>
+            <name>L527637_SAP000_SB146_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB146_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>146</subband>
+        <stationSubband>391</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">176.3671875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544037</identifier>
+            <name>L527637_SAP000_SB147_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB147_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>147</subband>
+        <stationSubband>392</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">176.5625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544038</identifier>
+            <name>L527637_SAP000_SB148_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB148_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>148</subband>
+        <stationSubband>393</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">176.7578125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544039</identifier>
+            <name>L527637_SAP000_SB149_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB149_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>149</subband>
+        <stationSubband>394</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">176.953125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544040</identifier>
+            <name>L527637_SAP000_SB150_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB150_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>150</subband>
+        <stationSubband>395</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">177.1484375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544041</identifier>
+            <name>L527637_SAP000_SB151_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB151_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>151</subband>
+        <stationSubband>396</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">177.34375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544042</identifier>
+            <name>L527637_SAP000_SB152_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB152_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>152</subband>
+        <stationSubband>397</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">177.5390625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544043</identifier>
+            <name>L527637_SAP000_SB153_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB153_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>153</subband>
+        <stationSubband>398</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">177.734375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544044</identifier>
+            <name>L527637_SAP000_SB154_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB154_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>154</subband>
+        <stationSubband>399</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">177.9296875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544045</identifier>
+            <name>L527637_SAP000_SB155_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB155_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>155</subband>
+        <stationSubband>400</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">178.125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544046</identifier>
+            <name>L527637_SAP000_SB156_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB156_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>156</subband>
+        <stationSubband>401</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">178.3203125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544047</identifier>
+            <name>L527637_SAP000_SB157_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB157_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>157</subband>
+        <stationSubband>402</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">178.515625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544048</identifier>
+            <name>L527637_SAP000_SB158_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB158_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>158</subband>
+        <stationSubband>403</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">178.7109375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544049</identifier>
+            <name>L527637_SAP000_SB159_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB159_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>159</subband>
+        <stationSubband>404</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">178.90625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544050</identifier>
+            <name>L527637_SAP000_SB160_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB160_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>160</subband>
+        <stationSubband>405</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">179.1015625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544051</identifier>
+            <name>L527637_SAP000_SB161_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB161_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>161</subband>
+        <stationSubband>406</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">179.296875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544052</identifier>
+            <name>L527637_SAP000_SB162_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB162_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>162</subband>
+        <stationSubband>407</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">179.4921875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544053</identifier>
+            <name>L527637_SAP000_SB163_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB163_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>163</subband>
+        <stationSubband>408</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">179.6875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544054</identifier>
+            <name>L527637_SAP000_SB164_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB164_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>164</subband>
+        <stationSubband>409</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">179.8828125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544055</identifier>
+            <name>L527637_SAP000_SB165_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB165_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>165</subband>
+        <stationSubband>410</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">180.078125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544056</identifier>
+            <name>L527637_SAP000_SB166_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB166_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>166</subband>
+        <stationSubband>411</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">180.2734375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544057</identifier>
+            <name>L527637_SAP000_SB167_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB167_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>167</subband>
+        <stationSubband>412</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">180.46875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544058</identifier>
+            <name>L527637_SAP000_SB168_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB168_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>168</subband>
+        <stationSubband>413</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">180.6640625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544059</identifier>
+            <name>L527637_SAP000_SB169_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB169_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>169</subband>
+        <stationSubband>414</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">180.859375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544060</identifier>
+            <name>L527637_SAP000_SB170_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB170_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>170</subband>
+        <stationSubband>415</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">181.0546875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544061</identifier>
+            <name>L527637_SAP000_SB171_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB171_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>171</subband>
+        <stationSubband>416</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">181.25</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544062</identifier>
+            <name>L527637_SAP000_SB172_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB172_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>172</subband>
+        <stationSubband>417</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">181.4453125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544063</identifier>
+            <name>L527637_SAP000_SB173_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB173_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>173</subband>
+        <stationSubband>418</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">181.640625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544064</identifier>
+            <name>L527637_SAP000_SB174_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB174_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>174</subband>
+        <stationSubband>419</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">181.8359375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544065</identifier>
+            <name>L527637_SAP000_SB175_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB175_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>175</subband>
+        <stationSubband>420</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">182.03125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544066</identifier>
+            <name>L527637_SAP000_SB176_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB176_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>176</subband>
+        <stationSubband>421</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">182.2265625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544067</identifier>
+            <name>L527637_SAP000_SB177_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB177_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>177</subband>
+        <stationSubband>422</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">182.421875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544068</identifier>
+            <name>L527637_SAP000_SB178_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB178_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>178</subband>
+        <stationSubband>423</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">182.6171875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544069</identifier>
+            <name>L527637_SAP000_SB179_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB179_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>179</subband>
+        <stationSubband>424</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">182.8125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544070</identifier>
+            <name>L527637_SAP000_SB180_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB180_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>180</subband>
+        <stationSubband>425</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">183.0078125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544071</identifier>
+            <name>L527637_SAP000_SB181_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB181_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>181</subband>
+        <stationSubband>426</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">183.203125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544072</identifier>
+            <name>L527637_SAP000_SB182_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB182_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>182</subband>
+        <stationSubband>427</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">183.3984375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544073</identifier>
+            <name>L527637_SAP000_SB183_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB183_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>183</subband>
+        <stationSubband>428</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">183.59375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544074</identifier>
+            <name>L527637_SAP000_SB184_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB184_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>184</subband>
+        <stationSubband>429</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">183.7890625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544075</identifier>
+            <name>L527637_SAP000_SB185_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB185_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>185</subband>
+        <stationSubband>430</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">183.984375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544076</identifier>
+            <name>L527637_SAP000_SB186_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB186_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>186</subband>
+        <stationSubband>431</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">184.1796875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544077</identifier>
+            <name>L527637_SAP000_SB187_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB187_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>187</subband>
+        <stationSubband>432</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">184.375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544078</identifier>
+            <name>L527637_SAP000_SB188_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB188_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>188</subband>
+        <stationSubband>433</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">184.5703125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544079</identifier>
+            <name>L527637_SAP000_SB189_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB189_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>189</subband>
+        <stationSubband>434</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">184.765625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544080</identifier>
+            <name>L527637_SAP000_SB190_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB190_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>190</subband>
+        <stationSubband>435</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">184.9609375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544081</identifier>
+            <name>L527637_SAP000_SB191_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB191_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>191</subband>
+        <stationSubband>436</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">185.15625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544082</identifier>
+            <name>L527637_SAP000_SB192_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB192_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>192</subband>
+        <stationSubband>437</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">185.3515625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544083</identifier>
+            <name>L527637_SAP000_SB193_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB193_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>193</subband>
+        <stationSubband>438</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">185.546875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544084</identifier>
+            <name>L527637_SAP000_SB194_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB194_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>194</subband>
+        <stationSubband>439</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">185.7421875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544085</identifier>
+            <name>L527637_SAP000_SB195_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB195_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>195</subband>
+        <stationSubband>440</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">185.9375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544086</identifier>
+            <name>L527637_SAP000_SB196_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB196_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>196</subband>
+        <stationSubband>441</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">186.1328125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544087</identifier>
+            <name>L527637_SAP000_SB197_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB197_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>197</subband>
+        <stationSubband>442</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">186.328125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544088</identifier>
+            <name>L527637_SAP000_SB198_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB198_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>198</subband>
+        <stationSubband>443</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">186.5234375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544089</identifier>
+            <name>L527637_SAP000_SB199_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB199_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>199</subband>
+        <stationSubband>444</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">186.71875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544090</identifier>
+            <name>L527637_SAP000_SB200_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB200_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>200</subband>
+        <stationSubband>445</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">186.9140625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544091</identifier>
+            <name>L527637_SAP000_SB201_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB201_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>201</subband>
+        <stationSubband>446</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">187.109375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544092</identifier>
+            <name>L527637_SAP000_SB202_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB202_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>202</subband>
+        <stationSubband>447</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">187.3046875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544093</identifier>
+            <name>L527637_SAP000_SB203_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB203_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>203</subband>
+        <stationSubband>448</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">187.5</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544094</identifier>
+            <name>L527637_SAP000_SB204_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB204_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>204</subband>
+        <stationSubband>449</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">187.6953125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544095</identifier>
+            <name>L527637_SAP000_SB205_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB205_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>205</subband>
+        <stationSubband>450</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">187.890625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544096</identifier>
+            <name>L527637_SAP000_SB206_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB206_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>206</subband>
+        <stationSubband>451</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">188.0859375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544097</identifier>
+            <name>L527637_SAP000_SB207_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB207_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>207</subband>
+        <stationSubband>452</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">188.28125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544098</identifier>
+            <name>L527637_SAP000_SB208_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB208_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>208</subband>
+        <stationSubband>453</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">188.4765625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544099</identifier>
+            <name>L527637_SAP000_SB209_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB209_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>209</subband>
+        <stationSubband>454</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">188.671875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544100</identifier>
+            <name>L527637_SAP000_SB210_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB210_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>210</subband>
+        <stationSubband>455</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">188.8671875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544101</identifier>
+            <name>L527637_SAP000_SB211_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB211_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>211</subband>
+        <stationSubband>456</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">189.0625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544102</identifier>
+            <name>L527637_SAP000_SB212_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB212_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>212</subband>
+        <stationSubband>457</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">189.2578125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544103</identifier>
+            <name>L527637_SAP000_SB213_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB213_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>213</subband>
+        <stationSubband>458</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">189.453125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544104</identifier>
+            <name>L527637_SAP000_SB214_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB214_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>214</subband>
+        <stationSubband>459</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">189.6484375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544105</identifier>
+            <name>L527637_SAP000_SB215_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB215_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>215</subband>
+        <stationSubband>460</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">189.84375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544106</identifier>
+            <name>L527637_SAP000_SB216_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB216_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>216</subband>
+        <stationSubband>461</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">190.0390625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544107</identifier>
+            <name>L527637_SAP000_SB217_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB217_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>217</subband>
+        <stationSubband>462</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">190.234375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544108</identifier>
+            <name>L527637_SAP000_SB218_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB218_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>218</subband>
+        <stationSubband>463</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">190.4296875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544109</identifier>
+            <name>L527637_SAP000_SB219_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB219_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>219</subband>
+        <stationSubband>464</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">190.625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544110</identifier>
+            <name>L527637_SAP000_SB220_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB220_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>220</subband>
+        <stationSubband>465</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">190.8203125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544111</identifier>
+            <name>L527637_SAP000_SB221_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB221_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>221</subband>
+        <stationSubband>466</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">191.015625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544112</identifier>
+            <name>L527637_SAP000_SB222_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB222_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>222</subband>
+        <stationSubband>467</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">191.2109375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544113</identifier>
+            <name>L527637_SAP000_SB223_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB223_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>223</subband>
+        <stationSubband>468</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">191.40625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544114</identifier>
+            <name>L527637_SAP000_SB224_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB224_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>224</subband>
+        <stationSubband>469</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">191.6015625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544115</identifier>
+            <name>L527637_SAP000_SB225_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB225_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>225</subband>
+        <stationSubband>470</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">191.796875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544116</identifier>
+            <name>L527637_SAP000_SB226_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB226_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>226</subband>
+        <stationSubband>471</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">191.9921875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544117</identifier>
+            <name>L527637_SAP000_SB227_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB227_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>227</subband>
+        <stationSubband>472</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">192.1875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544118</identifier>
+            <name>L527637_SAP000_SB228_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB228_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>228</subband>
+        <stationSubband>473</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">192.3828125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544119</identifier>
+            <name>L527637_SAP000_SB229_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB229_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>229</subband>
+        <stationSubband>474</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">192.578125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544120</identifier>
+            <name>L527637_SAP000_SB230_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB230_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>230</subband>
+        <stationSubband>475</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">192.7734375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544121</identifier>
+            <name>L527637_SAP000_SB231_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB231_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>231</subband>
+        <stationSubband>476</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">192.96875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544122</identifier>
+            <name>L527637_SAP000_SB232_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB232_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>232</subband>
+        <stationSubband>477</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">193.1640625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544123</identifier>
+            <name>L527637_SAP000_SB233_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB233_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>233</subband>
+        <stationSubband>478</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">193.359375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544124</identifier>
+            <name>L527637_SAP000_SB234_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB234_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>234</subband>
+        <stationSubband>479</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">193.5546875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544125</identifier>
+            <name>L527637_SAP000_SB235_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB235_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>235</subband>
+        <stationSubband>480</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">193.75</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544126</identifier>
+            <name>L527637_SAP000_SB236_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB236_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>236</subband>
+        <stationSubband>481</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">193.9453125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544127</identifier>
+            <name>L527637_SAP000_SB237_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB237_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>237</subband>
+        <stationSubband>482</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">194.140625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544128</identifier>
+            <name>L527637_SAP000_SB238_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB238_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>238</subband>
+        <stationSubband>483</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">194.3359375</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544129</identifier>
+            <name>L527637_SAP000_SB239_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB239_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>239</subband>
+        <stationSubband>484</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">194.53125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544130</identifier>
+            <name>L527637_SAP000_SB240_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB240_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>240</subband>
+        <stationSubband>485</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">194.7265625</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544131</identifier>
+            <name>L527637_SAP000_SB241_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB241_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>241</subband>
+        <stationSubband>486</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">194.921875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544132</identifier>
+            <name>L527637_SAP000_SB242_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB242_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>242</subband>
+        <stationSubband>487</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">195.1171875</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <relatedDataProduct xsi:type="sip:CorrelatedDataProduct">
+        <dataProductType>Correlator data</dataProductType>
+        <dataProductIdentifier>
+            <source>MoM</source>
+            <identifier>19544133</identifier>
+            <name>L527637_SAP000_SB243_uv.MS</name>
+        </dataProductIdentifier>
+        <storageTicket/>
+        <size>29414318080</size>
+        <fileName>L527637_SAP000_SB243_uv.MS</fileName>
+        <fileFormat>AIPS++/CASA</fileFormat>
+        <processIdentifier>
+            <source>MoM</source>
+            <identifier>697899</identifier>
+            <name>CygA/1/TO</name>
+        </processIdentifier>
+        <subArrayPointingIdentifier>
+            <source>MoM</source>
+            <identifier>697900</identifier>
+            <name>CygA</name>
+        </subArrayPointingIdentifier>
+        <subband>243</subband>
+        <stationSubband>488</stationSubband>
+        <startTime>2016-07-30T00:09:00</startTime>
+        <duration>PT3H50M59S</duration>
+        <integrationInterval units="s">2.00278</integrationInterval>
+        <centralFrequency units="MHz">195.3125</centralFrequency>
+        <channelWidth units="kHz">3.051757812</channelWidth>
+        <channelsPerSubband>64</channelsPerSubband>
+    </relatedDataProduct>
+    <parset>
+        <identifier>
+            <source>SAS</source>
+            <identifier>527637</identifier>
+        </identifier>
+        <contents>prefix=LOFAR.
+Clock160.channelWidth=610.3515625
+Clock160.samplesPerSecond=155648
+Clock160.subbandWidth=156.250
+Clock160.systemClock=160
+Clock200.channelWidth=762.939453125
+Clock200.samplesPerSecond=196608
+Clock200.subbandWidth=195.3125
+Clock200.systemClock=200
+ObsSW.Observation.antennaArray=HBA
+ObsSW.Observation.antennaSet=HBA_DUAL
+ObsSW.Observation.bandFilter=HBA_110_190
+ObsSW.Observation.claimPeriod=35
+ObsSW.Observation.clockMode=&lt;&lt;Clock200
+ObsSW.Observation.nrAnaBeams=1
+ObsSW.Observation.nrBeams=2
+ObsSW.Observation.nrBitsPerSample=8
+ObsSW.Observation.nrTBBSettings=0
+ObsSW.Observation.preparePeriod=20
+ObsSW.Observation.sampleClock=200
+ObsSW.Observation.startTime=2016-07-30 00:09:00
+ObsSW.Observation.stopTime=2016-07-30 04:00:00
+ObsSW.Observation.topologyID=mom.G697898.B4.1.T
+ObsSW.Observation.AnaBeam[0].angle1=5.233686830258261
+ObsSW.Observation.AnaBeam[0].angle2=0.7109404782528396
+ObsSW.Observation.AnaBeam[0].directionType=J2000
+ObsSW.Observation.AnaBeam[0].duration=0
+ObsSW.Observation.AnaBeam[0].rank=1
+ObsSW.Observation.AnaBeam[0].startTime=
+ObsSW.Observation.AnaBeam[0].target=
+ObsSW.Observation.Beam[0].angle1=5.233686830258261
+ObsSW.Observation.Beam[0].angle2=0.7109404782528396
+ObsSW.Observation.Beam[0].directionType=J2000
+ObsSW.Observation.Beam[0].duration=0
+ObsSW.Observation.Beam[0].momID=697900
+ObsSW.Observation.Beam[0].nrTabRings=0
+ObsSW.Observation.Beam[0].nrTiedArrayBeams=0
+ObsSW.Observation.Beam[0].startTime=
+ObsSW.Observation.Beam[0].subbandList=[245..488]
+ObsSW.Observation.Beam[0].tabRingSize=0
+ObsSW.Observation.Beam[0].target=CygA
+ObsSW.Observation.Beam[1].angle1=5.318890895452719
+ObsSW.Observation.Beam[1].angle2=0.7941248096574199
+ObsSW.Observation.Beam[1].directionType=J2000
+ObsSW.Observation.Beam[1].duration=0
+ObsSW.Observation.Beam[1].momID=697901
+ObsSW.Observation.Beam[1].nrTabRings=0
+ObsSW.Observation.Beam[1].nrTiedArrayBeams=0
+ObsSW.Observation.Beam[1].startTime=
+ObsSW.Observation.Beam[1].subbandList=[245..488]
+ObsSW.Observation.Beam[1].tabRingSize=0
+ObsSW.Observation.Beam[1].target=W63
+ObsSW.Observation.Cluster.ProcessingCluster.clusterName=
+ObsSW.Observation.Cluster.ProcessingCluster.clusterPartition=
+ObsSW.Observation.Cluster.ProcessingCluster.maxDurationPerTask=
+ObsSW.Observation.Cluster.ProcessingCluster.minRAMPerTask=0
+ObsSW.Observation.Cluster.ProcessingCluster.minScratchPerTask=0
+ObsSW.Observation.Cluster.ProcessingCluster.numberOfCoresPerTask=1
+ObsSW.Observation.Cluster.ProcessingCluster.numberOfTasks=0
+ObsSW.Observation.Cluster.ProcessingCluster.runSimultaneous=false
+ObsSW.Observation.DataProducts.Input_CoherentStokes.clustername=
+ObsSW.Observation.DataProducts.Input_CoherentStokes.clusterpartition=
+ObsSW.Observation.DataProducts.Input_CoherentStokes.dirmask=
+ObsSW.Observation.DataProducts.Input_CoherentStokes.enabled=false
+ObsSW.Observation.DataProducts.Input_CoherentStokes.filenames=[]
+ObsSW.Observation.DataProducts.Input_CoherentStokes.identifications=[]
+ObsSW.Observation.DataProducts.Input_CoherentStokes.locations=[]
+ObsSW.Observation.DataProducts.Input_CoherentStokes.mountpoints=[]
+ObsSW.Observation.DataProducts.Input_CoherentStokes.namemask=
+ObsSW.Observation.DataProducts.Input_CoherentStokes.skip=[]
+ObsSW.Observation.DataProducts.Input_Correlated.clustername=
+ObsSW.Observation.DataProducts.Input_Correlated.clusterpartition=
+ObsSW.Observation.DataProducts.Input_Correlated.dirmask=
+ObsSW.Observation.DataProducts.Input_Correlated.enabled=false
+ObsSW.Observation.DataProducts.Input_Correlated.filenames=[]
+ObsSW.Observation.DataProducts.Input_Correlated.identifications=[]
+ObsSW.Observation.DataProducts.Input_Correlated.locations=[]
+ObsSW.Observation.DataProducts.Input_Correlated.mountpoints=[]
+ObsSW.Observation.DataProducts.Input_Correlated.namemask=
+ObsSW.Observation.DataProducts.Input_Correlated.skip=[]
+ObsSW.Observation.DataProducts.Input_IncoherentStokes.clustername=
+ObsSW.Observation.DataProducts.Input_IncoherentStokes.clusterpartition=
+ObsSW.Observation.DataProducts.Input_IncoherentStokes.dirmask=
+ObsSW.Observation.DataProducts.Input_IncoherentStokes.enabled=false
+ObsSW.Observation.DataProducts.Input_IncoherentStokes.filenames=[]
+ObsSW.Observation.DataProducts.Input_IncoherentStokes.identifications=[]
+ObsSW.Observation.DataProducts.Input_IncoherentStokes.locations=[]
+ObsSW.Observation.DataProducts.Input_IncoherentStokes.mountpoints=[]
+ObsSW.Observation.DataProducts.Input_IncoherentStokes.namemask=
+ObsSW.Observation.DataProducts.Input_IncoherentStokes.skip=[]
+ObsSW.Observation.DataProducts.Input_InstrumentModel.clustername=
+ObsSW.Observation.DataProducts.Input_InstrumentModel.clusterpartition=
+ObsSW.Observation.DataProducts.Input_InstrumentModel.dirmask=
+ObsSW.Observation.DataProducts.Input_InstrumentModel.enabled=false
+ObsSW.Observation.DataProducts.Input_InstrumentModel.filenames=[]
+ObsSW.Observation.DataProducts.Input_InstrumentModel.identifications=[]
+ObsSW.Observation.DataProducts.Input_InstrumentModel.locations=[]
+ObsSW.Observation.DataProducts.Input_InstrumentModel.mountpoints=[]
+ObsSW.Observation.DataProducts.Input_InstrumentModel.namemask=
+ObsSW.Observation.DataProducts.Input_InstrumentModel.skip=[]
+ObsSW.Observation.DataProducts.Input_SkyImage.clustername=
+ObsSW.Observation.DataProducts.Input_SkyImage.clusterpartition=
+ObsSW.Observation.DataProducts.Input_SkyImage.dirmask=
+ObsSW.Observation.DataProducts.Input_SkyImage.enabled=false
+ObsSW.Observation.DataProducts.Input_SkyImage.filenames=[]
+ObsSW.Observation.DataProducts.Input_SkyImage.identifications=[]
+ObsSW.Observation.DataProducts.Input_SkyImage.locations=[]
+ObsSW.Observation.DataProducts.Input_SkyImage.mountpoints=[]
+ObsSW.Observation.DataProducts.Input_SkyImage.namemask=
+ObsSW.Observation.DataProducts.Input_SkyImage.skip=[]
+ObsSW.Observation.DataProducts.Output_CoherentStokes.archived=false
+ObsSW.Observation.DataProducts.Output_CoherentStokes.deleted=false
+ObsSW.Observation.DataProducts.Output_CoherentStokes.dirmask=
+ObsSW.Observation.DataProducts.Output_CoherentStokes.enabled=false
+ObsSW.Observation.DataProducts.Output_CoherentStokes.filenames=[]
+ObsSW.Observation.DataProducts.Output_CoherentStokes.identifications=[]
+ObsSW.Observation.DataProducts.Output_CoherentStokes.locations=[]
+ObsSW.Observation.DataProducts.Output_CoherentStokes.mountpoints=[]
+ObsSW.Observation.DataProducts.Output_CoherentStokes.namemask=
+ObsSW.Observation.DataProducts.Output_CoherentStokes.percentageWritten=[]
+ObsSW.Observation.DataProducts.Output_CoherentStokes.retentiontime=14
+ObsSW.Observation.DataProducts.Output_CoherentStokes.skip=[]
+ObsSW.Observation.DataProducts.Output_CoherentStokes.storageClusterName=
+ObsSW.Observation.DataProducts.Output_CoherentStokes.storageClusterPartition=
+ObsSW.Observation.DataProducts.Output_Correlated.archived=false
+ObsSW.Observation.DataProducts.Output_Correlated.deleted=false
+ObsSW.Observation.DataProducts.Output_Correlated.dirmask=L${OBSID}
+ObsSW.Observation.DataProducts.Output_Correlated.enabled=true
+ObsSW.Observation.DataProducts.Output_Correlated.filenames=[L527637_SAP000_SB000_uv.MS,L527637_SAP000_SB001_uv.MS,L527637_SAP000_SB002_uv.MS,L527637_SAP000_SB003_uv.MS,L527637_SAP000_SB004_uv.MS,L527637_SAP000_SB005_uv.MS,L527637_SAP000_SB006_uv.MS,L527637_SAP000_SB007_uv.MS,L527637_SAP000_SB008_uv.MS,L527637_SAP000_SB009_uv.MS,L527637_SAP000_SB010_uv.MS,L527637_SAP000_SB011_uv.MS,L527637_SAP000_SB012_uv.MS,L527637_SAP000_SB013_uv.MS,L527637_SAP000_SB014_uv.MS,L527637_SAP000_SB015_uv.MS,L527637_SAP000_SB016_uv.MS,L527637_SAP000_SB017_uv.MS,L527637_SAP000_SB018_uv.MS,L527637_SAP000_SB019_uv.MS,L527637_SAP000_SB020_uv.MS,L527637_SAP000_SB021_uv.MS,L527637_SAP000_SB022_uv.MS,L527637_SAP000_SB023_uv.MS,L527637_SAP000_SB024_uv.MS,L527637_SAP000_SB025_uv.MS,L527637_SAP000_SB026_uv.MS,L527637_SAP000_SB027_uv.MS,L527637_SAP000_SB028_uv.MS,L527637_SAP000_SB029_uv.MS,L527637_SAP000_SB030_uv.MS,L527637_SAP000_SB031_uv.MS,L527637_SAP000_SB032_uv.MS,L527637_SAP000_SB033_uv.MS,L527637_SAP000_SB034_uv.MS,L527637_SAP000_SB035_uv.MS,L527637_SAP000_SB036_uv.MS,L527637_SAP000_SB037_uv.MS,L527637_SAP000_SB038_uv.MS,L527637_SAP000_SB039_uv.MS,L527637_SAP000_SB040_uv.MS,L527637_SAP000_SB041_uv.MS,L527637_SAP000_SB042_uv.MS,L527637_SAP000_SB043_uv.MS,L527637_SAP000_SB044_uv.MS,L527637_SAP000_SB045_uv.MS,L527637_SAP000_SB046_uv.MS,L527637_SAP000_SB047_uv.MS,L527637_SAP000_SB048_uv.MS,L527637_SAP000_SB049_uv.MS,L527637_SAP000_SB050_uv.MS,L527637_SAP000_SB051_uv.MS,L527637_SAP000_SB052_uv.MS,L527637_SAP000_SB053_uv.MS,L527637_SAP000_SB054_uv.MS,L527637_SAP000_SB055_uv.MS,L527637_SAP000_SB056_uv.MS,L527637_SAP000_SB057_uv.MS,L527637_SAP000_SB058_uv.MS,L527637_SAP000_SB059_uv.MS,L527637_SAP000_SB060_uv.MS,L527637_SAP000_SB061_uv.MS,L527637_SAP000_SB062_uv.MS,L527637_SAP000_SB063_uv.MS,L527637_SAP000_SB064_uv.MS,L527637_SAP000_SB065_uv.MS,L527637_SAP000_SB066_uv.MS,L527637_SAP000_SB067_uv.MS,L527637_SAP000_SB068_uv.MS,L527637_SAP000_SB069_uv.MS,L527637_SAP000_SB070_uv.MS,L527637_SAP000_SB071_uv.MS,L527637_SAP000_SB072_uv.MS,L527637_SAP000_SB073_uv.MS,L527637_SAP000_SB074_uv.MS,L527637_SAP000_SB075_uv.MS,L527637_SAP000_SB076_uv.MS,L527637_SAP000_SB077_uv.MS,L527637_SAP000_SB078_uv.MS,L527637_SAP000_SB079_uv.MS,L527637_SAP000_SB080_uv.MS,L527637_SAP000_SB081_uv.MS,L527637_SAP000_SB082_uv.MS,L527637_SAP000_SB083_uv.MS,L527637_SAP000_SB084_uv.MS,L527637_SAP000_SB085_uv.MS,L527637_SAP000_SB086_uv.MS,L527637_SAP000_SB087_uv.MS,L527637_SAP000_SB088_uv.MS,L527637_SAP000_SB089_uv.MS,L527637_SAP000_SB090_uv.MS,L527637_SAP000_SB091_uv.MS,L527637_SAP000_SB092_uv.MS,L527637_SAP000_SB093_uv.MS,L527637_SAP000_SB094_uv.MS,L527637_SAP000_SB095_uv.MS,L527637_SAP000_SB096_uv.MS,L527637_SAP000_SB097_uv.MS,L527637_SAP000_SB098_uv.MS,L527637_SAP000_SB099_uv.MS,L527637_SAP000_SB100_uv.MS,L527637_SAP000_SB101_uv.MS,L527637_SAP000_SB102_uv.MS,L527637_SAP000_SB103_uv.MS,L527637_SAP000_SB104_uv.MS,L527637_SAP000_SB105_uv.MS,L527637_SAP000_SB106_uv.MS,L527637_SAP000_SB107_uv.MS,L527637_SAP000_SB108_uv.MS,L527637_SAP000_SB109_uv.MS,L527637_SAP000_SB110_uv.MS,L527637_SAP000_SB111_uv.MS,L527637_SAP000_SB112_uv.MS,L527637_SAP000_SB113_uv.MS,L527637_SAP000_SB114_uv.MS,L527637_SAP000_SB115_uv.MS,L527637_SAP000_SB116_uv.MS,L527637_SAP000_SB117_uv.MS,L527637_SAP000_SB118_uv.MS,L527637_SAP000_SB119_uv.MS,L527637_SAP000_SB120_uv.MS,L527637_SAP000_SB121_uv.MS,L527637_SAP000_SB122_uv.MS,L527637_SAP000_SB123_uv.MS,L527637_SAP000_SB124_uv.MS,L527637_SAP000_SB125_uv.MS,L527637_SAP000_SB126_uv.MS,L527637_SAP000_SB127_uv.MS,L527637_SAP000_SB128_uv.MS,L527637_SAP000_SB129_uv.MS,L527637_SAP000_SB130_uv.MS,L527637_SAP000_SB131_uv.MS,L527637_SAP000_SB132_uv.MS,L527637_SAP000_SB133_uv.MS,L527637_SAP000_SB134_uv.MS,L527637_SAP000_SB135_uv.MS,L527637_SAP000_SB136_uv.MS,L527637_SAP000_SB137_uv.MS,L527637_SAP000_SB138_uv.MS,L527637_SAP000_SB139_uv.MS,L527637_SAP000_SB140_uv.MS,L527637_SAP000_SB141_uv.MS,L527637_SAP000_SB142_uv.MS,L527637_SAP000_SB143_uv.MS,L527637_SAP000_SB144_uv.MS,L527637_SAP000_SB145_uv.MS,L527637_SAP000_SB146_uv.MS,L527637_SAP000_SB147_uv.MS,L527637_SAP000_SB148_uv.MS,L527637_SAP000_SB149_uv.MS,L527637_SAP000_SB150_uv.MS,L527637_SAP000_SB151_uv.MS,L527637_SAP000_SB152_uv.MS,L527637_SAP000_SB153_uv.MS,L527637_SAP000_SB154_uv.MS,L527637_SAP000_SB155_uv.MS,L527637_SAP000_SB156_uv.MS,L527637_SAP000_SB157_uv.MS,L527637_SAP000_SB158_uv.MS,L527637_SAP000_SB159_uv.MS,L527637_SAP000_SB160_uv.MS,L527637_SAP000_SB161_uv.MS,L527637_SAP000_SB162_uv.MS,L527637_SAP000_SB163_uv.MS,L527637_SAP000_SB164_uv.MS,L527637_SAP000_SB165_uv.MS,L527637_SAP000_SB166_uv.MS,L527637_SAP000_SB167_uv.MS,L527637_SAP000_SB168_uv.MS,L527637_SAP000_SB169_uv.MS,L527637_SAP000_SB170_uv.MS,L527637_SAP000_SB171_uv.MS,L527637_SAP000_SB172_uv.MS,L527637_SAP000_SB173_uv.MS,L527637_SAP000_SB174_uv.MS,L527637_SAP000_SB175_uv.MS,L527637_SAP000_SB176_uv.MS,L527637_SAP000_SB177_uv.MS,L527637_SAP000_SB178_uv.MS,L527637_SAP000_SB179_uv.MS,L527637_SAP000_SB180_uv.MS,L527637_SAP000_SB181_uv.MS,L527637_SAP000_SB182_uv.MS,L527637_SAP000_SB183_uv.MS,L527637_SAP000_SB184_uv.MS,L527637_SAP000_SB185_uv.MS,L527637_SAP000_SB186_uv.MS,L527637_SAP000_SB187_uv.MS,L527637_SAP000_SB188_uv.MS,L527637_SAP000_SB189_uv.MS,L527637_SAP000_SB190_uv.MS,L527637_SAP000_SB191_uv.MS,L527637_SAP000_SB192_uv.MS,L527637_SAP000_SB193_uv.MS,L527637_SAP000_SB194_uv.MS,L527637_SAP000_SB195_uv.MS,L527637_SAP000_SB196_uv.MS,L527637_SAP000_SB197_uv.MS,L527637_SAP000_SB198_uv.MS,L527637_SAP000_SB199_uv.MS,L527637_SAP000_SB200_uv.MS,L527637_SAP000_SB201_uv.MS,L527637_SAP000_SB202_uv.MS,L527637_SAP000_SB203_uv.MS,L527637_SAP000_SB204_uv.MS,L527637_SAP000_SB205_uv.MS,L527637_SAP000_SB206_uv.MS,L527637_SAP000_SB207_uv.MS,L527637_SAP000_SB208_uv.MS,L527637_SAP000_SB209_uv.MS,L527637_SAP000_SB210_uv.MS,L527637_SAP000_SB211_uv.MS,L527637_SAP000_SB212_uv.MS,L527637_SAP000_SB213_uv.MS,L527637_SAP000_SB214_uv.MS,L527637_SAP000_SB215_uv.MS,L527637_SAP000_SB216_uv.MS,L527637_SAP000_SB217_uv.MS,L527637_SAP000_SB218_uv.MS,L527637_SAP000_SB219_uv.MS,L527637_SAP000_SB220_uv.MS,L527637_SAP000_SB221_uv.MS,L527637_SAP000_SB222_uv.MS,L527637_SAP000_SB223_uv.MS,L527637_SAP000_SB224_uv.MS,L527637_SAP000_SB225_uv.MS,L527637_SAP000_SB226_uv.MS,L527637_SAP000_SB227_uv.MS,L527637_SAP000_SB228_uv.MS,L527637_SAP000_SB229_uv.MS,L527637_SAP000_SB230_uv.MS,L527637_SAP000_SB231_uv.MS,L527637_SAP000_SB232_uv.MS,L527637_SAP000_SB233_uv.MS,L527637_SAP000_SB234_uv.MS,L527637_SAP000_SB235_uv.MS,L527637_SAP000_SB236_uv.MS,L527637_SAP000_SB237_uv.MS,L527637_SAP000_SB238_uv.MS,L527637_SAP000_SB239_uv.MS,L527637_SAP000_SB240_uv.MS,L527637_SAP000_SB241_uv.MS,L527637_SAP000_SB242_uv.MS,L527637_SAP000_SB243_uv.MS,L527637_SAP001_SB244_uv.MS,L527637_SAP001_SB245_uv.MS,L527637_SAP001_SB246_uv.MS,L527637_SAP001_SB247_uv.MS,L527637_SAP001_SB248_uv.MS,L527637_SAP001_SB249_uv.MS,L527637_SAP001_SB250_uv.MS,L527637_SAP001_SB251_uv.MS,L527637_SAP001_SB252_uv.MS,L527637_SAP001_SB253_uv.MS,L527637_SAP001_SB254_uv.MS,L527637_SAP001_SB255_uv.MS,L527637_SAP001_SB256_uv.MS,L527637_SAP001_SB257_uv.MS,L527637_SAP001_SB258_uv.MS,L527637_SAP001_SB259_uv.MS,L527637_SAP001_SB260_uv.MS,L527637_SAP001_SB261_uv.MS,L527637_SAP001_SB262_uv.MS,L527637_SAP001_SB263_uv.MS,L527637_SAP001_SB264_uv.MS,L527637_SAP001_SB265_uv.MS,L527637_SAP001_SB266_uv.MS,L527637_SAP001_SB267_uv.MS,L527637_SAP001_SB268_uv.MS,L527637_SAP001_SB269_uv.MS,L527637_SAP001_SB270_uv.MS,L527637_SAP001_SB271_uv.MS,L527637_SAP001_SB272_uv.MS,L527637_SAP001_SB273_uv.MS,L527637_SAP001_SB274_uv.MS,L527637_SAP001_SB275_uv.MS,L527637_SAP001_SB276_uv.MS,L527637_SAP001_SB277_uv.MS,L527637_SAP001_SB278_uv.MS,L527637_SAP001_SB279_uv.MS,L527637_SAP001_SB280_uv.MS,L527637_SAP001_SB281_uv.MS,L527637_SAP001_SB282_uv.MS,L527637_SAP001_SB283_uv.MS,L527637_SAP001_SB284_uv.MS,L527637_SAP001_SB285_uv.MS,L527637_SAP001_SB286_uv.MS,L527637_SAP001_SB287_uv.MS,L527637_SAP001_SB288_uv.MS,L527637_SAP001_SB289_uv.MS,L527637_SAP001_SB290_uv.MS,L527637_SAP001_SB291_uv.MS,L527637_SAP001_SB292_uv.MS,L527637_SAP001_SB293_uv.MS,L527637_SAP001_SB294_uv.MS,L527637_SAP001_SB295_uv.MS,L527637_SAP001_SB296_uv.MS,L527637_SAP001_SB297_uv.MS,L527637_SAP001_SB298_uv.MS,L527637_SAP001_SB299_uv.MS,L527637_SAP001_SB300_uv.MS,L527637_SAP001_SB301_uv.MS,L527637_SAP001_SB302_uv.MS,L527637_SAP001_SB303_uv.MS,L527637_SAP001_SB304_uv.MS,L527637_SAP001_SB305_uv.MS,L527637_SAP001_SB306_uv.MS,L527637_SAP001_SB307_uv.MS,L527637_SAP001_SB308_uv.MS,L527637_SAP001_SB309_uv.MS,L527637_SAP001_SB310_uv.MS,L527637_SAP001_SB311_uv.MS,L527637_SAP001_SB312_uv.MS,L527637_SAP001_SB313_uv.MS,L527637_SAP001_SB314_uv.MS,L527637_SAP001_SB315_uv.MS,L527637_SAP001_SB316_uv.MS,L527637_SAP001_SB317_uv.MS,L527637_SAP001_SB318_uv.MS,L527637_SAP001_SB319_uv.MS,L527637_SAP001_SB320_uv.MS,L527637_SAP001_SB321_uv.MS,L527637_SAP001_SB322_uv.MS,L527637_SAP001_SB323_uv.MS,L527637_SAP001_SB324_uv.MS,L527637_SAP001_SB325_uv.MS,L527637_SAP001_SB326_uv.MS,L527637_SAP001_SB327_uv.MS,L527637_SAP001_SB328_uv.MS,L527637_SAP001_SB329_uv.MS,L527637_SAP001_SB330_uv.MS,L527637_SAP001_SB331_uv.MS,L527637_SAP001_SB332_uv.MS,L527637_SAP001_SB333_uv.MS,L527637_SAP001_SB334_uv.MS,L527637_SAP001_SB335_uv.MS,L527637_SAP001_SB336_uv.MS,L527637_SAP001_SB337_uv.MS,L527637_SAP001_SB338_uv.MS,L527637_SAP001_SB339_uv.MS,L527637_SAP001_SB340_uv.MS,L527637_SAP001_SB341_uv.MS,L527637_SAP001_SB342_uv.MS,L527637_SAP001_SB343_uv.MS,L527637_SAP001_SB344_uv.MS,L527637_SAP001_SB345_uv.MS,L527637_SAP001_SB346_uv.MS,L527637_SAP001_SB347_uv.MS,L527637_SAP001_SB348_uv.MS,L527637_SAP001_SB349_uv.MS,L527637_SAP001_SB350_uv.MS,L527637_SAP001_SB351_uv.MS,L527637_SAP001_SB352_uv.MS,L527637_SAP001_SB353_uv.MS,L527637_SAP001_SB354_uv.MS,L527637_SAP001_SB355_uv.MS,L527637_SAP001_SB356_uv.MS,L527637_SAP001_SB357_uv.MS,L527637_SAP001_SB358_uv.MS,L527637_SAP001_SB359_uv.MS,L527637_SAP001_SB360_uv.MS,L527637_SAP001_SB361_uv.MS,L527637_SAP001_SB362_uv.MS,L527637_SAP001_SB363_uv.MS,L527637_SAP001_SB364_uv.MS,L527637_SAP001_SB365_uv.MS,L527637_SAP001_SB366_uv.MS,L527637_SAP001_SB367_uv.MS,L527637_SAP001_SB368_uv.MS,L527637_SAP001_SB369_uv.MS,L527637_SAP001_SB370_uv.MS,L527637_SAP001_SB371_uv.MS,L527637_SAP001_SB372_uv.MS,L527637_SAP001_SB373_uv.MS,L527637_SAP001_SB374_uv.MS,L527637_SAP001_SB375_uv.MS,L527637_SAP001_SB376_uv.MS,L527637_SAP001_SB377_uv.MS,L527637_SAP001_SB378_uv.MS,L527637_SAP001_SB379_uv.MS,L527637_SAP001_SB380_uv.MS,L527637_SAP001_SB381_uv.MS,L527637_SAP001_SB382_uv.MS,L527637_SAP001_SB383_uv.MS,L527637_SAP001_SB384_uv.MS,L527637_SAP001_SB385_uv.MS,L527637_SAP001_SB386_uv.MS,L527637_SAP001_SB387_uv.MS,L527637_SAP001_SB388_uv.MS,L527637_SAP001_SB389_uv.MS,L527637_SAP001_SB390_uv.MS,L527637_SAP001_SB391_uv.MS,L527637_SAP001_SB392_uv.MS,L527637_SAP001_SB393_uv.MS,L527637_SAP001_SB394_uv.MS,L527637_SAP001_SB395_uv.MS,L527637_SAP001_SB396_uv.MS,L527637_SAP001_SB397_uv.MS,L527637_SAP001_SB398_uv.MS,L527637_SAP001_SB399_uv.MS,L527637_SAP001_SB400_uv.MS,L527637_SAP001_SB401_uv.MS,L527637_SAP001_SB402_uv.MS,L527637_SAP001_SB403_uv.MS,L527637_SAP001_SB404_uv.MS,L527637_SAP001_SB405_uv.MS,L527637_SAP001_SB406_uv.MS,L527637_SAP001_SB407_uv.MS,L527637_SAP001_SB408_uv.MS,L527637_SAP001_SB409_uv.MS,L527637_SAP001_SB410_uv.MS,L527637_SAP001_SB411_uv.MS,L527637_SAP001_SB412_uv.MS,L527637_SAP001_SB413_uv.MS,L527637_SAP001_SB414_uv.MS,L527637_SAP001_SB415_uv.MS,L527637_SAP001_SB416_uv.MS,L527637_SAP001_SB417_uv.MS,L527637_SAP001_SB418_uv.MS,L527637_SAP001_SB419_uv.MS,L527637_SAP001_SB420_uv.MS,L527637_SAP001_SB421_uv.MS,L527637_SAP001_SB422_uv.MS,L527637_SAP001_SB423_uv.MS,L527637_SAP001_SB424_uv.MS,L527637_SAP001_SB425_uv.MS,L527637_SAP001_SB426_uv.MS,L527637_SAP001_SB427_uv.MS,L527637_SAP001_SB428_uv.MS,L527637_SAP001_SB429_uv.MS,L527637_SAP001_SB430_uv.MS,L527637_SAP001_SB431_uv.MS,L527637_SAP001_SB432_uv.MS,L527637_SAP001_SB433_uv.MS,L527637_SAP001_SB434_uv.MS,L527637_SAP001_SB435_uv.MS,L527637_SAP001_SB436_uv.MS,L527637_SAP001_SB437_uv.MS,L527637_SAP001_SB438_uv.MS,L527637_SAP001_SB439_uv.MS,L527637_SAP001_SB440_uv.MS,L527637_SAP001_SB441_uv.MS,L527637_SAP001_SB442_uv.MS,L527637_SAP001_SB443_uv.MS,L527637_SAP001_SB444_uv.MS,L527637_SAP001_SB445_uv.MS,L527637_SAP001_SB446_uv.MS,L527637_SAP001_SB447_uv.MS,L527637_SAP001_SB448_uv.MS,L527637_SAP001_SB449_uv.MS,L527637_SAP001_SB450_uv.MS,L527637_SAP001_SB451_uv.MS,L527637_SAP001_SB452_uv.MS,L527637_SAP001_SB453_uv.MS,L527637_SAP001_SB454_uv.MS,L527637_SAP001_SB455_uv.MS,L527637_SAP001_SB456_uv.MS,L527637_SAP001_SB457_uv.MS,L527637_SAP001_SB458_uv.MS,L527637_SAP001_SB459_uv.MS,L527637_SAP001_SB460_uv.MS,L527637_SAP001_SB461_uv.MS,L527637_SAP001_SB462_uv.MS,L527637_SAP001_SB463_uv.MS,L527637_SAP001_SB464_uv.MS,L527637_SAP001_SB465_uv.MS,L527637_SAP001_SB466_uv.MS,L527637_SAP001_SB467_uv.MS,L527637_SAP001_SB468_uv.MS,L527637_SAP001_SB469_uv.MS,L527637_SAP001_SB470_uv.MS,L527637_SAP001_SB471_uv.MS,L527637_SAP001_SB472_uv.MS,L527637_SAP001_SB473_uv.MS,L527637_SAP001_SB474_uv.MS,L527637_SAP001_SB475_uv.MS,L527637_SAP001_SB476_uv.MS,L527637_SAP001_SB477_uv.MS,L527637_SAP001_SB478_uv.MS,L527637_SAP001_SB479_uv.MS,L527637_SAP001_SB480_uv.MS,L527637_SAP001_SB481_uv.MS,L527637_SAP001_SB482_uv.MS,L527637_SAP001_SB483_uv.MS,L527637_SAP001_SB484_uv.MS,L527637_SAP001_SB485_uv.MS,L527637_SAP001_SB486_uv.MS,L527637_SAP001_SB487_uv.MS]
+ObsSW.Observation.DataProducts.Output_Correlated.identifications=[mom.G697898.B4.1.T.SAP000.uv.dps,mom.G697898.B4.1.T.SAP001.uv.dps]
+ObsSW.Observation.DataProducts.Output_Correlated.locations=[locus001:/data/L527637/,locus003:/data/L527637/,locus004:/data/L527637/,locus005:/data/L527637/,locus006:/data/L527637/,locus007:/data/L527637/,locus008:/data/L527637/,locus009:/data/L527637/,locus010:/data/L527637/,locus011:/data/L527637/,locus012:/data/L527637/,locus014:/data/L527637/,locus015:/data/L527637/,locus016:/data/L527637/,locus017:/data/L527637/,locus018:/data/L527637/,locus019:/data/L527637/,locus020:/data/L527637/,locus021:/data/L527637/,locus023:/data/L527637/,locus025:/data/L527637/,locus026:/data/L527637/,locus028:/data/L527637/,locus029:/data/L527637/,locus031:/data/L527637/,locus032:/data/L527637/,locus034:/data/L527637/,locus035:/data/L527637/,locus036:/data/L527637/,locus037:/data/L527637/,locus038:/data/L527637/,locus039:/data/L527637/,locus040:/data/L527637/,locus041:/data/L527637/,locus042:/data/L527637/,locus043:/data/L527637/,locus044:/data/L527637/,locus045:/data/L527637/,locus046:/data/L527637/,locus047:/data/L527637/,locus048:/data/L527637/,locus049:/data/L527637/,locus050:/data/L527637/,locus051:/data/L527637/,locus052:/data/L527637/,locus053:/data/L527637/,locus054:/data/L527637/,locus055:/data/L527637/,locus056:/data/L527637/,locus057:/data/L527637/,locus058:/data/L527637/,locus060:/data/L527637/,locus061:/data/L527637/,locus062:/data/L527637/,locus063:/data/L527637/,locus064:/data/L527637/,locus065:/data/L527637/,locus066:/data/L527637/,locus067:/data/L527637/,locus068:/data/L527637/,locus069:/data/L527637/,locus070:/data/L527637/,locus071:/data/L527637/,locus072:/data/L527637/,locus073:/data/L527637/,locus074:/data/L527637/,locus075:/data/L527637/,locus076:/data/L527637/,locus077:/data/L527637/,locus078:/data/L527637/,locus079:/data/L527637/,locus080:/data/L527637/,locus081:/data/L527637/,locus082:/data/L527637/,locus084:/data/L527637/,locus085:/data/L527637/,locus086:/data/L527637/,locus087:/data/L527637/,locus088:/data/L527637/,locus089:/data/L527637/,locus090:/data/L527637/,locus091:/data/L527637/,locus001:/data/L527637/,locus003:/data/L527637/,locus004:/data/L527637/,locus005:/data/L527637/,locus006:/data/L527637/,locus007:/data/L527637/,locus008:/data/L527637/,locus009:/data/L527637/,locus010:/data/L527637/,locus011:/data/L527637/,locus012:/data/L527637/,locus014:/data/L527637/,locus015:/data/L527637/,locus016:/data/L527637/,locus017:/data/L527637/,locus018:/data/L527637/,locus019:/data/L527637/,locus020:/data/L527637/,locus021:/data/L527637/,locus023:/data/L527637/,locus025:/data/L527637/,locus026:/data/L527637/,locus028:/data/L527637/,locus029:/data/L527637/,locus031:/data/L527637/,locus032:/data/L527637/,locus034:/data/L527637/,locus035:/data/L527637/,locus036:/data/L527637/,locus037:/data/L527637/,locus038:/data/L527637/,locus039:/data/L527637/,locus040:/data/L527637/,locus041:/data/L527637/,locus042:/data/L527637/,locus043:/data/L527637/,locus044:/data/L527637/,locus045:/data/L527637/,locus046:/data/L527637/,locus047:/data/L527637/,locus048:/data/L527637/,locus049:/data/L527637/,locus050:/data/L527637/,locus051:/data/L527637/,locus052:/data/L527637/,locus053:/data/L527637/,locus054:/data/L527637/,locus055:/data/L527637/,locus056:/data/L527637/,locus057:/data/L527637/,locus058:/data/L527637/,locus060:/data/L527637/,locus061:/data/L527637/,locus062:/data/L527637/,locus063:/data/L527637/,locus064:/data/L527637/,locus065:/data/L527637/,locus066:/data/L527637/,locus067:/data/L527637/,locus068:/data/L527637/,locus069:/data/L527637/,locus070:/data/L527637/,locus071:/data/L527637/,locus072:/data/L527637/,locus073:/data/L527637/,locus074:/data/L527637/,locus075:/data/L527637/,locus076:/data/L527637/,locus077:/data/L527637/,locus078:/data/L527637/,locus079:/data/L527637/,locus080:/data/L527637/,locus081:/data/L527637/,locus082:/data/L527637/,locus084:/data/L527637/,locus085:/data/L527637/,locus086:/data/L527637/,locus087:/data/L527637/,locus088:/data/L527637/,locus089:/data/L527637/,locus090:/data/L527637/,locus091:/data/L527637/,locus001:/data/L527637/,locus003:/data/L527637/,locus004:/data/L527637/,locus005:/data/L527637/,locus006:/data/L527637/,locus007:/data/L527637/,locus008:/data/L527637/,locus009:/data/L527637/,locus010:/data/L527637/,locus011:/data/L527637/,locus012:/data/L527637/,locus014:/data/L527637/,locus015:/data/L527637/,locus016:/data/L527637/,locus017:/data/L527637/,locus018:/data/L527637/,locus019:/data/L527637/,locus020:/data/L527637/,locus021:/data/L527637/,locus023:/data/L527637/,locus025:/data/L527637/,locus026:/data/L527637/,locus028:/data/L527637/,locus029:/data/L527637/,locus031:/data/L527637/,locus032:/data/L527637/,locus034:/data/L527637/,locus035:/data/L527637/,locus036:/data/L527637/,locus037:/data/L527637/,locus038:/data/L527637/,locus039:/data/L527637/,locus040:/data/L527637/,locus041:/data/L527637/,locus042:/data/L527637/,locus043:/data/L527637/,locus044:/data/L527637/,locus045:/data/L527637/,locus046:/data/L527637/,locus047:/data/L527637/,locus048:/data/L527637/,locus049:/data/L527637/,locus050:/data/L527637/,locus051:/data/L527637/,locus052:/data/L527637/,locus053:/data/L527637/,locus054:/data/L527637/,locus055:/data/L527637/,locus056:/data/L527637/,locus057:/data/L527637/,locus058:/data/L527637/,locus060:/data/L527637/,locus061:/data/L527637/,locus062:/data/L527637/,locus063:/data/L527637/,locus064:/data/L527637/,locus065:/data/L527637/,locus066:/data/L527637/,locus067:/data/L527637/,locus068:/data/L527637/,locus069:/data/L527637/,locus070:/data/L527637/,locus071:/data/L527637/,locus072:/data/L527637/,locus073:/data/L527637/,locus074:/data/L527637/,locus075:/data/L527637/,locus076:/data/L527637/,locus077:/data/L527637/,locus078:/data/L527637/,locus079:/data/L527637/,locus080:/data/L527637/,locus081:/data/L527637/,locus082:/data/L527637/,locus084:/data/L527637/,locus085:/data/L527637/,locus086:/data/L527637/,locus087:/data/L527637/,locus088:/data/L527637/,locus089:/data/L527637/,locus090:/data/L527637/,locus091:/data/L527637/,locus001:/data/L527637/,locus003:/data/L527637/,locus004:/data/L527637/,locus005:/data/L527637/,locus006:/data/L527637/,locus007:/data/L527637/,locus008:/data/L527637/,locus009:/data/L527637/,locus010:/data/L527637/,locus011:/data/L527637/,locus012:/data/L527637/,locus014:/data/L527637/,locus015:/data/L527637/,locus016:/data/L527637/,locus017:/data/L527637/,locus018:/data/L527637/,locus019:/data/L527637/,locus020:/data/L527637/,locus021:/data/L527637/,locus023:/data/L527637/,locus025:/data/L527637/,locus026:/data/L527637/,locus028:/data/L527637/,locus029:/data/L527637/,locus031:/data/L527637/,locus032:/data/L527637/,locus034:/data/L527637/,locus035:/data/L527637/,locus036:/data/L527637/,locus037:/data/L527637/,locus038:/data/L527637/,locus039:/data/L527637/,locus040:/data/L527637/,locus041:/data/L527637/,locus042:/data/L527637/,locus043:/data/L527637/,locus044:/data/L527637/,locus045:/data/L527637/,locus046:/data/L527637/,locus047:/data/L527637/,locus048:/data/L527637/,locus049:/data/L527637/,locus050:/data/L527637/,locus051:/data/L527637/,locus052:/data/L527637/,locus053:/data/L527637/,locus054:/data/L527637/,locus055:/data/L527637/,locus056:/data/L527637/,locus057:/data/L527637/,locus058:/data/L527637/,locus060:/data/L527637/,locus061:/data/L527637/,locus062:/data/L527637/,locus063:/data/L527637/,locus064:/data/L527637/,locus065:/data/L527637/,locus066:/data/L527637/,locus067:/data/L527637/,locus068:/data/L527637/,locus069:/data/L527637/,locus070:/data/L527637/,locus071:/data/L527637/,locus072:/data/L527637/,locus073:/data/L527637/,locus074:/data/L527637/,locus075:/data/L527637/,locus076:/data/L527637/,locus077:/data/L527637/,locus078:/data/L527637/,locus079:/data/L527637/,locus080:/data/L527637/,locus081:/data/L527637/,locus082:/data/L527637/,locus084:/data/L527637/,locus085:/data/L527637/,locus086:/data/L527637/,locus087:/data/L527637/,locus088:/data/L527637/,locus089:/data/L527637/,locus090:/data/L527637/,locus091:/data/L527637/,locus001:/data/L527637/,locus003:/data/L527637/,locus004:/data/L527637/,locus005:/data/L527637/,locus006:/data/L527637/,locus007:/data/L527637/,locus008:/data/L527637/,locus009:/data/L527637/,locus010:/data/L527637/,locus011:/data/L527637/,locus012:/data/L527637/,locus014:/data/L527637/,locus015:/data/L527637/,locus016:/data/L527637/,locus017:/data/L527637/,locus018:/data/L527637/,locus019:/data/L527637/,locus020:/data/L527637/,locus021:/data/L527637/,locus023:/data/L527637/,locus025:/data/L527637/,locus026:/data/L527637/,locus028:/data/L527637/,locus029:/data/L527637/,locus031:/data/L527637/,locus032:/data/L527637/,locus034:/data/L527637/,locus035:/data/L527637/,locus036:/data/L527637/,locus037:/data/L527637/,locus038:/data/L527637/,locus039:/data/L527637/,locus040:/data/L527637/,locus041:/data/L527637/,locus042:/data/L527637/,locus043:/data/L527637/,locus044:/data/L527637/,locus045:/data/L527637/,locus046:/data/L527637/,locus047:/data/L527637/,locus048:/data/L527637/,locus049:/data/L527637/,locus050:/data/L527637/,locus051:/data/L527637/,locus052:/data/L527637/,locus053:/data/L527637/,locus054:/data/L527637/,locus055:/data/L527637/,locus056:/data/L527637/,locus057:/data/L527637/,locus058:/data/L527637/,locus060:/data/L527637/,locus061:/data/L527637/,locus062:/data/L527637/,locus063:/data/L527637/,locus064:/data/L527637/,locus065:/data/L527637/,locus066:/data/L527637/,locus067:/data/L527637/,locus068:/data/L527637/,locus069:/data/L527637/,locus070:/data/L527637/,locus071:/data/L527637/,locus072:/data/L527637/,locus073:/data/L527637/,locus074:/data/L527637/,locus075:/data/L527637/,locus076:/data/L527637/,locus077:/data/L527637/,locus078:/data/L527637/,locus079:/data/L527637/,locus080:/data/L527637/,locus081:/data/L527637/,locus082:/data/L527637/,locus084:/data/L527637/,locus085:/data/L527637/,locus086:/data/L527637/,locus087:/data/L527637/,locus088:/data/L527637/,locus089:/data/L527637/,locus090:/data/L527637/,locus091:/data/L527637/,locus001:/data/L527637/,locus003:/data/L527637/,locus004:/data/L527637/,locus005:/data/L527637/,locus006:/data/L527637/,locus007:/data/L527637/,locus008:/data/L527637/,locus009:/data/L527637/,locus010:/data/L527637/,locus011:/data/L527637/,locus012:/data/L527637/,locus014:/data/L527637/,locus015:/data/L527637/,locus016:/data/L527637/,locus017:/data/L527637/,locus018:/data/L527637/,locus019:/data/L527637/,locus020:/data/L527637/,locus021:/data/L527637/,locus023:/data/L527637/,locus025:/data/L527637/,locus026:/data/L527637/,locus028:/data/L527637/,locus029:/data/L527637/,locus031:/data/L527637/,locus032:/data/L527637/,locus034:/data/L527637/,locus035:/data/L527637/,locus036:/data/L527637/,locus037:/data/L527637/,locus038:/data/L527637/,locus039:/data/L527637/,locus040:/data/L527637/,locus041:/data/L527637/,locus042:/data/L527637/,locus043:/data/L527637/,locus044:/data/L527637/,locus045:/data/L527637/,locus046:/data/L527637/,locus047:/data/L527637/,locus048:/data/L527637/,locus049:/data/L527637/,locus050:/data/L527637/,locus051:/data/L527637/,locus052:/data/L527637/,locus053:/data/L527637/,locus054:/data/L527637/,locus055:/data/L527637/,locus056:/data/L527637/,locus057:/data/L527637/,locus058:/data/L527637/,locus060:/data/L527637/,locus061:/data/L527637/,locus062:/data/L527637/,locus063:/data/L527637/,locus064:/data/L527637/,locus065:/data/L527637/,locus066:/data/L527637/,locus067:/data/L527637/,locus068:/data/L527637/,locus069:/data/L527637/,locus070:/data/L527637/,locus071:/data/L527637/,locus072:/data/L527637/,locus073:/data/L527637/,locus074:/data/L527637/,locus075:/data/L527637/,locus076:/data/L527637/,locus077:/data/L527637/,locus078:/data/L527637/,locus079:/data/L527637/,locus080:/data/L527637/,locus081:/data/L527637/,locus082:/data/L527637/,locus084:/data/L527637/,locus085:/data/L527637/,locus086:/data/L527637/,locus087:/data/L527637/]
+ObsSW.Observation.DataProducts.Output_Correlated.mountpoints=[locus001:/data,locus003:/data,locus004:/data,locus005:/data,locus006:/data,locus007:/data,locus008:/data,locus009:/data,locus010:/data,locus011:/data,locus012:/data,locus014:/data,locus015:/data,locus016:/data,locus017:/data,locus018:/data,locus019:/data,locus020:/data,locus021:/data,locus023:/data,locus025:/data,locus026:/data,locus028:/data,locus029:/data,locus031:/data,locus032:/data,locus034:/data,locus035:/data,locus036:/data,locus037:/data,locus038:/data,locus039:/data,locus040:/data,locus041:/data,locus042:/data,locus043:/data,locus044:/data,locus045:/data,locus046:/data,locus047:/data,locus048:/data,locus049:/data,locus050:/data,locus051:/data,locus052:/data,locus053:/data,locus054:/data,locus055:/data,locus056:/data,locus057:/data,locus058:/data,locus060:/data,locus061:/data,locus062:/data,locus063:/data,locus064:/data,locus065:/data,locus066:/data,locus067:/data,locus068:/data,locus069:/data,locus070:/data,locus071:/data,locus072:/data,locus073:/data,locus074:/data,locus075:/data,locus076:/data,locus077:/data,locus078:/data,locus079:/data,locus080:/data,locus081:/data,locus082:/data,locus084:/data,locus085:/data,locus086:/data,locus087:/data,locus088:/data,locus089:/data,locus090:/data,locus091:/data]
+ObsSW.Observation.DataProducts.Output_Correlated.namemask=L${OBSID}_SAP${SAP}_SB${SUBBAND}_uv.MS
+ObsSW.Observation.DataProducts.Output_Correlated.percentageWritten=[]
+ObsSW.Observation.DataProducts.Output_Correlated.retentiontime=14
+ObsSW.Observation.DataProducts.Output_Correlated.skip=[]
+ObsSW.Observation.DataProducts.Output_Correlated.storageClusterName=
+ObsSW.Observation.DataProducts.Output_Correlated.storageClusterPartition=
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.archived=false
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.deleted=false
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.dirmask=
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.enabled=false
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.filenames=[]
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.identifications=[]
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.locations=[]
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.mountpoints=[]
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.namemask=
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.percentageWritten=[]
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.retentiontime=14
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.skip=[]
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.storageClusterName=
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.storageClusterPartition=
+ObsSW.Observation.DataProducts.Output_InstrumentModel.archived=false
+ObsSW.Observation.DataProducts.Output_InstrumentModel.deleted=false
+ObsSW.Observation.DataProducts.Output_InstrumentModel.dirmask=
+ObsSW.Observation.DataProducts.Output_InstrumentModel.enabled=false
+ObsSW.Observation.DataProducts.Output_InstrumentModel.filenames=[]
+ObsSW.Observation.DataProducts.Output_InstrumentModel.identifications=[]
+ObsSW.Observation.DataProducts.Output_InstrumentModel.locations=[]
+ObsSW.Observation.DataProducts.Output_InstrumentModel.mountpoints=[]
+ObsSW.Observation.DataProducts.Output_InstrumentModel.namemask=
+ObsSW.Observation.DataProducts.Output_InstrumentModel.percentageWritten=[]
+ObsSW.Observation.DataProducts.Output_InstrumentModel.retentiontime=14
+ObsSW.Observation.DataProducts.Output_InstrumentModel.skip=[]
+ObsSW.Observation.DataProducts.Output_InstrumentModel.storageClusterName=
+ObsSW.Observation.DataProducts.Output_InstrumentModel.storageClusterPartition=
+ObsSW.Observation.DataProducts.Output_Pulsar.archived=false
+ObsSW.Observation.DataProducts.Output_Pulsar.deleted=false
+ObsSW.Observation.DataProducts.Output_Pulsar.dirmask=
+ObsSW.Observation.DataProducts.Output_Pulsar.enabled=false
+ObsSW.Observation.DataProducts.Output_Pulsar.filenames=[]
+ObsSW.Observation.DataProducts.Output_Pulsar.identifications=[]
+ObsSW.Observation.DataProducts.Output_Pulsar.locations=[]
+ObsSW.Observation.DataProducts.Output_Pulsar.mountpoints=[]
+ObsSW.Observation.DataProducts.Output_Pulsar.namemask=
+ObsSW.Observation.DataProducts.Output_Pulsar.percentageWritten=[]
+ObsSW.Observation.DataProducts.Output_Pulsar.retentiontime=14
+ObsSW.Observation.DataProducts.Output_Pulsar.skip=[]
+ObsSW.Observation.DataProducts.Output_Pulsar.storageClusterName=
+ObsSW.Observation.DataProducts.Output_Pulsar.storageClusterPartition=
+ObsSW.Observation.DataProducts.Output_SkyImage.archived=false
+ObsSW.Observation.DataProducts.Output_SkyImage.deleted=false
+ObsSW.Observation.DataProducts.Output_SkyImage.dirmask=
+ObsSW.Observation.DataProducts.Output_SkyImage.enabled=false
+ObsSW.Observation.DataProducts.Output_SkyImage.filenames=[]
+ObsSW.Observation.DataProducts.Output_SkyImage.identifications=[]
+ObsSW.Observation.DataProducts.Output_SkyImage.locations=[]
+ObsSW.Observation.DataProducts.Output_SkyImage.mountpoints=[]
+ObsSW.Observation.DataProducts.Output_SkyImage.namemask=
+ObsSW.Observation.DataProducts.Output_SkyImage.percentageWritten=[]
+ObsSW.Observation.DataProducts.Output_SkyImage.retentiontime=14
+ObsSW.Observation.DataProducts.Output_SkyImage.skip=[]
+ObsSW.Observation.DataProducts.Output_SkyImage.storageClusterName=
+ObsSW.Observation.DataProducts.Output_SkyImage.storageClusterPartition=
+ObsSW.Observation.Dataslots.CS001HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS001HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS001HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS001HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS002HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS002HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS002HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS002HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS003HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS003HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS003HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS003HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS004HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS004HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS004HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS004HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS005HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS005HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS005HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS005HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS006HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS006HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS006HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS006HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS007HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS007HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS007HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS007HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS011HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS011HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS011HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS011HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS013HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS013HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS013HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS013HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS017HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS017HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS017HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS017HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS021HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS021HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS021HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS021HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS024HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS024HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS024HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS024HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS026HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS026HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS026HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS026HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS028HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS028HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS028HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS028HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS030HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS030HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS030HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS030HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS031HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS031HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS031HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS031HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS032HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS032HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS032HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS032HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS101HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS101HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS101HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS101HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS103HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS103HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS103HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS103HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS201HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS201HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS201HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS201HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS301HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS301HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS301HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS301HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS302HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS302HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS302HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS302HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS401HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS401HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS401HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS401HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS501HBA0.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS501HBA0.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.CS501HBA1.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.CS501HBA1.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.DataslotInfo.DataslotList=[]
+ObsSW.Observation.Dataslots.DataslotInfo.RSPBoardList=[]
+ObsSW.Observation.Dataslots.RS106HBA.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.RS106HBA.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.RS205HBA.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.RS205HBA.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.RS208HBA.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.RS208HBA.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.RS210HBA.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.RS210HBA.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.RS305HBA.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.RS305HBA.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.RS306HBA.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.RS306HBA.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.RS307HBA.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.RS307HBA.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.RS310HBA.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.RS310HBA.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.RS406HBA.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.RS406HBA.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.RS407HBA.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.RS407HBA.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.RS409HBA.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.RS409HBA.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.RS503HBA.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.RS503HBA.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.RS508HBA.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.RS508HBA.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.Dataslots.RS509HBA.DataslotList=[0..121,0..121,0..121,0..121]
+ObsSW.Observation.Dataslots.RS509HBA.RSPBoardList=[122*0,122*1,122*2,122*3]
+ObsSW.Observation.ObservationControl.heartbeatInterval=10
+ObsSW.Observation.ObservationControl._hostname=MCU001
+ObsSW.Observation.ObservationControl.OnlineControl.applications=["CorrAppl"]
+ObsSW.Observation.ObservationControl.OnlineControl.applOrder=["CorrAppl"]
+ObsSW.Observation.ObservationControl.OnlineControl._hostname=CCU001
+ObsSW.Observation.ObservationControl.OnlineControl.inspectionHost=lhn001.cep2.lofar
+ObsSW.Observation.ObservationControl.OnlineControl.inspectionProgram=/opt/cep/pyautoplot/bin/launch-msplots.sh
+ObsSW.Observation.ObservationControl.OnlineControl.Cobalt.blockSize=195584
+ObsSW.Observation.ObservationControl.OnlineControl.Cobalt.correctBandPass=true
+ObsSW.Observation.ObservationControl.OnlineControl.Cobalt.correctClocks=true
+ObsSW.Observation.ObservationControl.OnlineControl.Cobalt.delayCompensation=true
+ObsSW.Observation.ObservationControl.OnlineControl.Cobalt.realTime=true
+ObsSW.Observation.ObservationControl.OnlineControl.Cobalt.BeamFormer.coherentDedisperseChannels=false
+ObsSW.Observation.ObservationControl.OnlineControl.Cobalt.BeamFormer.flysEye=false
+ObsSW.Observation.ObservationControl.OnlineControl.Cobalt.BeamFormer.CoherentStokes.nrChannelsPerSubband=1
+ObsSW.Observation.ObservationControl.OnlineControl.Cobalt.BeamFormer.CoherentStokes.subbandsPerFile=512
+ObsSW.Observation.ObservationControl.OnlineControl.Cobalt.BeamFormer.CoherentStokes.timeIntegrationFactor=1
+ObsSW.Observation.ObservationControl.OnlineControl.Cobalt.BeamFormer.CoherentStokes.which=I
+ObsSW.Observation.ObservationControl.OnlineControl.Cobalt.BeamFormer.IncoherentStokes.nrChannelsPerSubband=1
+ObsSW.Observation.ObservationControl.OnlineControl.Cobalt.BeamFormer.IncoherentStokes.subbandsPerFile=512
+ObsSW.Observation.ObservationControl.OnlineControl.Cobalt.BeamFormer.IncoherentStokes.timeIntegrationFactor=1
+ObsSW.Observation.ObservationControl.OnlineControl.Cobalt.BeamFormer.IncoherentStokes.which=I
+ObsSW.Observation.ObservationControl.OnlineControl.Cobalt.Correlator.integrationTime=2.00278
+ObsSW.Observation.ObservationControl.OnlineControl.Cobalt.Correlator.nrBlocksPerIntegration=2
+ObsSW.Observation.ObservationControl.OnlineControl.Cobalt.Correlator.nrChannelsPerSubband=64
+ObsSW.Observation.ObservationControl.OnlineControl.Cobalt.Correlator.nrIntegrationsPerBlock=1
+ObsSW.Observation.ObservationControl.OnlineControl.CorrAppl.extraInfo=["PIC","Cobalt"]
+ObsSW.Observation.ObservationControl.OnlineControl.CorrAppl._hostname=cbmmaster
+ObsSW.Observation.ObservationControl.OnlineControl.CorrAppl.procesOrder=[]
+ObsSW.Observation.ObservationControl.OnlineControl.CorrAppl.processes=["CorrProc"]
+ObsSW.Observation.ObservationControl.OnlineControl.CorrAppl.CorrProc._executable=CN_Processing
+ObsSW.Observation.ObservationControl.OnlineControl.CorrAppl.CorrProc._hostname=cbmmaster
+ObsSW.Observation.ObservationControl.OnlineControl.CorrAppl.CorrProc._nodes=[]
+ObsSW.Observation.ObservationControl.OnlineControl.CorrAppl.CorrProc._startstopType=bgl
+ObsSW.Observation.ObservationControl.OnlineControl.CorrAppl.CorrProc.workingdir=/opt/lofar/bin/
+ObsSW.Observation.ObservationControl.StationControl.aartfaacPiggybackAllowed=true
+ObsSW.Observation.ObservationControl.StationControl._hostname=[RS210,RS205,RS310,CS032,RS307,CS302,RS305,CS005,CS003,CS030,CS002,RS406,CS031,CS021,CS103,CS024,CS013,CS401,RS409,CS201,RS503,CS004,CS001,RS509,RS106,CS026,CS501,CS301,RS508,RS306,CS017,CS028,RS407,RS208,CS006,CS101,CS007,CS011]
+ObsSW.Observation.ObservationControl.StationControl.tbbPiggybackAllowed=true
+ObsSW.Observation.ObservationControl.StationControl.TBBControl.CoincidenceTime=0
+ObsSW.Observation.ObservationControl.StationControl.TBBControl.DoDirectionFit=none
+ObsSW.Observation.ObservationControl.StationControl.TBBControl.MaxFitVariance=0
+ObsSW.Observation.ObservationControl.StationControl.TBBControl.MinElevation=0
+ObsSW.Observation.ObservationControl.StationControl.TBBControl.NoCoincChann=0
+ObsSW.Observation.ObservationControl.StationControl.TBBControl.ParamExtension=
+ObsSW.Observation.Scheduler.contactEmail=
+ObsSW.Observation.Scheduler.contactName=
+ObsSW.Observation.Scheduler.contactPhone=
+ObsSW.Observation.Scheduler.firstPossibleDay=0
+ObsSW.Observation.Scheduler.fixedDay=false
+ObsSW.Observation.Scheduler.fixedTime=false
+ObsSW.Observation.Scheduler.lastPossibleDay=0
+ObsSW.Observation.Scheduler.late=false
+ObsSW.Observation.Scheduler.nightTimeWeightFactor=0
+ObsSW.Observation.Scheduler.predecessors=[]
+ObsSW.Observation.Scheduler.predMaxTimeDif=
+ObsSW.Observation.Scheduler.predMinTimeDif=
+ObsSW.Observation.Scheduler.priority=0.0
+ObsSW.Observation.Scheduler.reason=
+ObsSW.Observation.Scheduler.referenceFrame=0
+ObsSW.Observation.Scheduler.reservation=0
+ObsSW.Observation.Scheduler.storageSelectionMode=1
+ObsSW.Observation.Scheduler.taskDuration=13860
+ObsSW.Observation.Scheduler.taskID=300
+ObsSW.Observation.Scheduler.taskName=CygA/1/TO
+ObsSW.Observation.Scheduler.taskType=0
+ObsSW.Observation.Scheduler.windowMaximumTime=
+ObsSW.Observation.Scheduler.windowMinimumTime=
+ObsSW.Observation.TBB.TBBsetting.baselevel=127
+ObsSW.Observation.TBB.TBBsetting.filter=0
+ObsSW.Observation.TBB.TBBsetting.filter0_coeff0=0
+ObsSW.Observation.TBB.TBBsetting.filter0_coeff1=0
+ObsSW.Observation.TBB.TBBsetting.filter0_coeff2=0
+ObsSW.Observation.TBB.TBBsetting.filter0_coeff3=0
+ObsSW.Observation.TBB.TBBsetting.filter1_coeff0=0
+ObsSW.Observation.TBB.TBBsetting.filter1_coeff1=0
+ObsSW.Observation.TBB.TBBsetting.filter1_coeff2=0
+ObsSW.Observation.TBB.TBBsetting.filter1_coeff3=0
+ObsSW.Observation.TBB.TBBsetting.operatingMode=1
+ObsSW.Observation.TBB.TBBsetting.RCUs=[]
+ObsSW.Observation.TBB.TBBsetting.startlevel=7
+ObsSW.Observation.TBB.TBBsetting.stoplevel=7
+ObsSW.Observation.TBB.TBBsetting.subbandList=[]
+ObsSW.Observation.TBB.TBBsetting.triggerMode=1
+ObsSW.Observation.TBB.TBBsetting.window=1M
+ObsSW.Observation.VirtualInstrument.minimalNrStations=1
+ObsSW.Observation.VirtualInstrument.stationList=[RS210,RS205,RS310,CS032,RS307,CS302,RS305,CS005,CS003,CS030,CS002,RS406,CS031,CS021,CS103,CS024,CS013,CS401,RS409,CS201,RS503,CS004,CS001,RS509,RS106,CS026,CS501,CS301,RS508,RS306,CS017,CS028,RS407,RS208,CS006,CS101,CS007,CS011]
+ObsSW.Observation.VirtualInstrument.stationSet=Custom
+Version.number=33385
+ObsSW.Observation.processType=Observation
+ObsSW.Observation.processSubtype=Beam Observation
+ObsSW.Observation.strategy=default
+ObsSW.Observation.Campaign.name="LC6_016"
+ObsSW.Observation.Campaign.title="Investigating the peculiar nature of mixed morphology supernova remnants: W63 and HB9"
+ObsSW.Observation.Campaign.PI="Arias de Saavedra Benitez,  Maria"
+ObsSW.Observation.Campaign.CO_I="Raymond Oonk"
+ObsSW.Observation.Campaign.contact="Arias de Saavedra Benitez,  Maria"
+Observation.Correlator.channelWidth=3051.7578125
+Observation.Correlator.channelsPerSubband=64
+Observation.Correlator.integrationInterval=2.00278016
+Observation.DataProducts.Output_Correlated_[0].SAP=0
+Observation.DataProducts.Output_Correlated_[0].centralFrequency=147851562.500000
+Observation.DataProducts.Output_Correlated_[0].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[0].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[0].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[0].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[0].filename=L527637_SAP000_SB000_uv.MS
+Observation.DataProducts.Output_Correlated_[0].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[0].location=locus001:/data/L527637/
+Observation.DataProducts.Output_Correlated_[0].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[0].size=29414318080
+Observation.DataProducts.Output_Correlated_[0].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[0].stationSubband=245
+Observation.DataProducts.Output_Correlated_[0].subband=0
+Observation.DataProducts.Output_Correlated_[100].SAP=0
+Observation.DataProducts.Output_Correlated_[100].centralFrequency=167382812.500000
+Observation.DataProducts.Output_Correlated_[100].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[100].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[100].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[100].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[100].filename=L527637_SAP000_SB100_uv.MS
+Observation.DataProducts.Output_Correlated_[100].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[100].location=locus021:/data/L527637/
+Observation.DataProducts.Output_Correlated_[100].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[100].size=29414318080
+Observation.DataProducts.Output_Correlated_[100].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[100].stationSubband=345
+Observation.DataProducts.Output_Correlated_[100].subband=100
+Observation.DataProducts.Output_Correlated_[101].SAP=0
+Observation.DataProducts.Output_Correlated_[101].centralFrequency=167578125.000000
+Observation.DataProducts.Output_Correlated_[101].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[101].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[101].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[101].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[101].filename=L527637_SAP000_SB101_uv.MS
+Observation.DataProducts.Output_Correlated_[101].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[101].location=locus023:/data/L527637/
+Observation.DataProducts.Output_Correlated_[101].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[101].size=29414318080
+Observation.DataProducts.Output_Correlated_[101].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[101].stationSubband=346
+Observation.DataProducts.Output_Correlated_[101].subband=101
+Observation.DataProducts.Output_Correlated_[102].SAP=0
+Observation.DataProducts.Output_Correlated_[102].centralFrequency=167773437.500000
+Observation.DataProducts.Output_Correlated_[102].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[102].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[102].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[102].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[102].filename=L527637_SAP000_SB102_uv.MS
+Observation.DataProducts.Output_Correlated_[102].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[102].location=locus025:/data/L527637/
+Observation.DataProducts.Output_Correlated_[102].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[102].size=29414318080
+Observation.DataProducts.Output_Correlated_[102].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[102].stationSubband=347
+Observation.DataProducts.Output_Correlated_[102].subband=102
+Observation.DataProducts.Output_Correlated_[103].SAP=0
+Observation.DataProducts.Output_Correlated_[103].centralFrequency=167968750.000000
+Observation.DataProducts.Output_Correlated_[103].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[103].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[103].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[103].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[103].filename=L527637_SAP000_SB103_uv.MS
+Observation.DataProducts.Output_Correlated_[103].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[103].location=locus026:/data/L527637/
+Observation.DataProducts.Output_Correlated_[103].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[103].size=29414318080
+Observation.DataProducts.Output_Correlated_[103].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[103].stationSubband=348
+Observation.DataProducts.Output_Correlated_[103].subband=103
+Observation.DataProducts.Output_Correlated_[104].SAP=0
+Observation.DataProducts.Output_Correlated_[104].centralFrequency=168164062.500000
+Observation.DataProducts.Output_Correlated_[104].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[104].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[104].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[104].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[104].filename=L527637_SAP000_SB104_uv.MS
+Observation.DataProducts.Output_Correlated_[104].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[104].location=locus028:/data/L527637/
+Observation.DataProducts.Output_Correlated_[104].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[104].size=29414318080
+Observation.DataProducts.Output_Correlated_[104].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[104].stationSubband=349
+Observation.DataProducts.Output_Correlated_[104].subband=104
+Observation.DataProducts.Output_Correlated_[105].SAP=0
+Observation.DataProducts.Output_Correlated_[105].centralFrequency=168359375.000000
+Observation.DataProducts.Output_Correlated_[105].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[105].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[105].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[105].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[105].filename=L527637_SAP000_SB105_uv.MS
+Observation.DataProducts.Output_Correlated_[105].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[105].location=locus029:/data/L527637/
+Observation.DataProducts.Output_Correlated_[105].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[105].size=29414318080
+Observation.DataProducts.Output_Correlated_[105].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[105].stationSubband=350
+Observation.DataProducts.Output_Correlated_[105].subband=105
+Observation.DataProducts.Output_Correlated_[106].SAP=0
+Observation.DataProducts.Output_Correlated_[106].centralFrequency=168554687.500000
+Observation.DataProducts.Output_Correlated_[106].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[106].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[106].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[106].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[106].filename=L527637_SAP000_SB106_uv.MS
+Observation.DataProducts.Output_Correlated_[106].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[106].location=locus031:/data/L527637/
+Observation.DataProducts.Output_Correlated_[106].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[106].size=29414318080
+Observation.DataProducts.Output_Correlated_[106].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[106].stationSubband=351
+Observation.DataProducts.Output_Correlated_[106].subband=106
+Observation.DataProducts.Output_Correlated_[107].SAP=0
+Observation.DataProducts.Output_Correlated_[107].centralFrequency=168750000.000000
+Observation.DataProducts.Output_Correlated_[107].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[107].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[107].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[107].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[107].filename=L527637_SAP000_SB107_uv.MS
+Observation.DataProducts.Output_Correlated_[107].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[107].location=locus032:/data/L527637/
+Observation.DataProducts.Output_Correlated_[107].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[107].size=29414318080
+Observation.DataProducts.Output_Correlated_[107].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[107].stationSubband=352
+Observation.DataProducts.Output_Correlated_[107].subband=107
+Observation.DataProducts.Output_Correlated_[108].SAP=0
+Observation.DataProducts.Output_Correlated_[108].centralFrequency=168945312.500000
+Observation.DataProducts.Output_Correlated_[108].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[108].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[108].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[108].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[108].filename=L527637_SAP000_SB108_uv.MS
+Observation.DataProducts.Output_Correlated_[108].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[108].location=locus034:/data/L527637/
+Observation.DataProducts.Output_Correlated_[108].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[108].size=29414318080
+Observation.DataProducts.Output_Correlated_[108].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[108].stationSubband=353
+Observation.DataProducts.Output_Correlated_[108].subband=108
+Observation.DataProducts.Output_Correlated_[109].SAP=0
+Observation.DataProducts.Output_Correlated_[109].centralFrequency=169140625.000000
+Observation.DataProducts.Output_Correlated_[109].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[109].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[109].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[109].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[109].filename=L527637_SAP000_SB109_uv.MS
+Observation.DataProducts.Output_Correlated_[109].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[109].location=locus035:/data/L527637/
+Observation.DataProducts.Output_Correlated_[109].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[109].size=29414318080
+Observation.DataProducts.Output_Correlated_[109].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[109].stationSubband=354
+Observation.DataProducts.Output_Correlated_[109].subband=109
+Observation.DataProducts.Output_Correlated_[10].SAP=0
+Observation.DataProducts.Output_Correlated_[10].centralFrequency=149804687.500000
+Observation.DataProducts.Output_Correlated_[10].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[10].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[10].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[10].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[10].filename=L527637_SAP000_SB010_uv.MS
+Observation.DataProducts.Output_Correlated_[10].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[10].location=locus012:/data/L527637/
+Observation.DataProducts.Output_Correlated_[10].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[10].size=29414318080
+Observation.DataProducts.Output_Correlated_[10].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[10].stationSubband=255
+Observation.DataProducts.Output_Correlated_[10].subband=10
+Observation.DataProducts.Output_Correlated_[110].SAP=0
+Observation.DataProducts.Output_Correlated_[110].centralFrequency=169335937.500000
+Observation.DataProducts.Output_Correlated_[110].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[110].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[110].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[110].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[110].filename=L527637_SAP000_SB110_uv.MS
+Observation.DataProducts.Output_Correlated_[110].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[110].location=locus036:/data/L527637/
+Observation.DataProducts.Output_Correlated_[110].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[110].size=29414318080
+Observation.DataProducts.Output_Correlated_[110].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[110].stationSubband=355
+Observation.DataProducts.Output_Correlated_[110].subband=110
+Observation.DataProducts.Output_Correlated_[111].SAP=0
+Observation.DataProducts.Output_Correlated_[111].centralFrequency=169531250.000000
+Observation.DataProducts.Output_Correlated_[111].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[111].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[111].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[111].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[111].filename=L527637_SAP000_SB111_uv.MS
+Observation.DataProducts.Output_Correlated_[111].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[111].location=locus037:/data/L527637/
+Observation.DataProducts.Output_Correlated_[111].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[111].size=29414318080
+Observation.DataProducts.Output_Correlated_[111].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[111].stationSubband=356
+Observation.DataProducts.Output_Correlated_[111].subband=111
+Observation.DataProducts.Output_Correlated_[112].SAP=0
+Observation.DataProducts.Output_Correlated_[112].centralFrequency=169726562.500000
+Observation.DataProducts.Output_Correlated_[112].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[112].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[112].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[112].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[112].filename=L527637_SAP000_SB112_uv.MS
+Observation.DataProducts.Output_Correlated_[112].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[112].location=locus038:/data/L527637/
+Observation.DataProducts.Output_Correlated_[112].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[112].size=29414318080
+Observation.DataProducts.Output_Correlated_[112].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[112].stationSubband=357
+Observation.DataProducts.Output_Correlated_[112].subband=112
+Observation.DataProducts.Output_Correlated_[113].SAP=0
+Observation.DataProducts.Output_Correlated_[113].centralFrequency=169921875.000000
+Observation.DataProducts.Output_Correlated_[113].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[113].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[113].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[113].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[113].filename=L527637_SAP000_SB113_uv.MS
+Observation.DataProducts.Output_Correlated_[113].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[113].location=locus039:/data/L527637/
+Observation.DataProducts.Output_Correlated_[113].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[113].size=29414318080
+Observation.DataProducts.Output_Correlated_[113].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[113].stationSubband=358
+Observation.DataProducts.Output_Correlated_[113].subband=113
+Observation.DataProducts.Output_Correlated_[114].SAP=0
+Observation.DataProducts.Output_Correlated_[114].centralFrequency=170117187.500000
+Observation.DataProducts.Output_Correlated_[114].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[114].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[114].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[114].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[114].filename=L527637_SAP000_SB114_uv.MS
+Observation.DataProducts.Output_Correlated_[114].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[114].location=locus040:/data/L527637/
+Observation.DataProducts.Output_Correlated_[114].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[114].size=29414318080
+Observation.DataProducts.Output_Correlated_[114].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[114].stationSubband=359
+Observation.DataProducts.Output_Correlated_[114].subband=114
+Observation.DataProducts.Output_Correlated_[115].SAP=0
+Observation.DataProducts.Output_Correlated_[115].centralFrequency=170312500.000000
+Observation.DataProducts.Output_Correlated_[115].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[115].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[115].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[115].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[115].filename=L527637_SAP000_SB115_uv.MS
+Observation.DataProducts.Output_Correlated_[115].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[115].location=locus041:/data/L527637/
+Observation.DataProducts.Output_Correlated_[115].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[115].size=29414318080
+Observation.DataProducts.Output_Correlated_[115].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[115].stationSubband=360
+Observation.DataProducts.Output_Correlated_[115].subband=115
+Observation.DataProducts.Output_Correlated_[116].SAP=0
+Observation.DataProducts.Output_Correlated_[116].centralFrequency=170507812.500000
+Observation.DataProducts.Output_Correlated_[116].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[116].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[116].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[116].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[116].filename=L527637_SAP000_SB116_uv.MS
+Observation.DataProducts.Output_Correlated_[116].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[116].location=locus042:/data/L527637/
+Observation.DataProducts.Output_Correlated_[116].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[116].size=29414318080
+Observation.DataProducts.Output_Correlated_[116].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[116].stationSubband=361
+Observation.DataProducts.Output_Correlated_[116].subband=116
+Observation.DataProducts.Output_Correlated_[117].SAP=0
+Observation.DataProducts.Output_Correlated_[117].centralFrequency=170703125.000000
+Observation.DataProducts.Output_Correlated_[117].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[117].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[117].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[117].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[117].filename=L527637_SAP000_SB117_uv.MS
+Observation.DataProducts.Output_Correlated_[117].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[117].location=locus043:/data/L527637/
+Observation.DataProducts.Output_Correlated_[117].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[117].size=29414318080
+Observation.DataProducts.Output_Correlated_[117].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[117].stationSubband=362
+Observation.DataProducts.Output_Correlated_[117].subband=117
+Observation.DataProducts.Output_Correlated_[118].SAP=0
+Observation.DataProducts.Output_Correlated_[118].centralFrequency=170898437.500000
+Observation.DataProducts.Output_Correlated_[118].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[118].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[118].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[118].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[118].filename=L527637_SAP000_SB118_uv.MS
+Observation.DataProducts.Output_Correlated_[118].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[118].location=locus044:/data/L527637/
+Observation.DataProducts.Output_Correlated_[118].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[118].size=29414318080
+Observation.DataProducts.Output_Correlated_[118].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[118].stationSubband=363
+Observation.DataProducts.Output_Correlated_[118].subband=118
+Observation.DataProducts.Output_Correlated_[119].SAP=0
+Observation.DataProducts.Output_Correlated_[119].centralFrequency=171093750.000000
+Observation.DataProducts.Output_Correlated_[119].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[119].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[119].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[119].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[119].filename=L527637_SAP000_SB119_uv.MS
+Observation.DataProducts.Output_Correlated_[119].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[119].location=locus045:/data/L527637/
+Observation.DataProducts.Output_Correlated_[119].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[119].size=29414318080
+Observation.DataProducts.Output_Correlated_[119].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[119].stationSubband=364
+Observation.DataProducts.Output_Correlated_[119].subband=119
+Observation.DataProducts.Output_Correlated_[11].SAP=0
+Observation.DataProducts.Output_Correlated_[11].centralFrequency=150000000.000000
+Observation.DataProducts.Output_Correlated_[11].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[11].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[11].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[11].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[11].filename=L527637_SAP000_SB011_uv.MS
+Observation.DataProducts.Output_Correlated_[11].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[11].location=locus014:/data/L527637/
+Observation.DataProducts.Output_Correlated_[11].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[11].size=29414318080
+Observation.DataProducts.Output_Correlated_[11].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[11].stationSubband=256
+Observation.DataProducts.Output_Correlated_[11].subband=11
+Observation.DataProducts.Output_Correlated_[120].SAP=0
+Observation.DataProducts.Output_Correlated_[120].centralFrequency=171289062.500000
+Observation.DataProducts.Output_Correlated_[120].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[120].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[120].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[120].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[120].filename=L527637_SAP000_SB120_uv.MS
+Observation.DataProducts.Output_Correlated_[120].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[120].location=locus046:/data/L527637/
+Observation.DataProducts.Output_Correlated_[120].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[120].size=29414318080
+Observation.DataProducts.Output_Correlated_[120].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[120].stationSubband=365
+Observation.DataProducts.Output_Correlated_[120].subband=120
+Observation.DataProducts.Output_Correlated_[121].SAP=0
+Observation.DataProducts.Output_Correlated_[121].centralFrequency=171484375.000000
+Observation.DataProducts.Output_Correlated_[121].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[121].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[121].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[121].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[121].filename=L527637_SAP000_SB121_uv.MS
+Observation.DataProducts.Output_Correlated_[121].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[121].location=locus047:/data/L527637/
+Observation.DataProducts.Output_Correlated_[121].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[121].size=29414318080
+Observation.DataProducts.Output_Correlated_[121].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[121].stationSubband=366
+Observation.DataProducts.Output_Correlated_[121].subband=121
+Observation.DataProducts.Output_Correlated_[122].SAP=0
+Observation.DataProducts.Output_Correlated_[122].centralFrequency=171679687.500000
+Observation.DataProducts.Output_Correlated_[122].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[122].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[122].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[122].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[122].filename=L527637_SAP000_SB122_uv.MS
+Observation.DataProducts.Output_Correlated_[122].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[122].location=locus048:/data/L527637/
+Observation.DataProducts.Output_Correlated_[122].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[122].size=29414318080
+Observation.DataProducts.Output_Correlated_[122].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[122].stationSubband=367
+Observation.DataProducts.Output_Correlated_[122].subband=122
+Observation.DataProducts.Output_Correlated_[123].SAP=0
+Observation.DataProducts.Output_Correlated_[123].centralFrequency=171875000.000000
+Observation.DataProducts.Output_Correlated_[123].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[123].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[123].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[123].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[123].filename=L527637_SAP000_SB123_uv.MS
+Observation.DataProducts.Output_Correlated_[123].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[123].location=locus049:/data/L527637/
+Observation.DataProducts.Output_Correlated_[123].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[123].size=29414318080
+Observation.DataProducts.Output_Correlated_[123].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[123].stationSubband=368
+Observation.DataProducts.Output_Correlated_[123].subband=123
+Observation.DataProducts.Output_Correlated_[124].SAP=0
+Observation.DataProducts.Output_Correlated_[124].centralFrequency=172070312.500000
+Observation.DataProducts.Output_Correlated_[124].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[124].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[124].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[124].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[124].filename=L527637_SAP000_SB124_uv.MS
+Observation.DataProducts.Output_Correlated_[124].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[124].location=locus050:/data/L527637/
+Observation.DataProducts.Output_Correlated_[124].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[124].size=29414318080
+Observation.DataProducts.Output_Correlated_[124].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[124].stationSubband=369
+Observation.DataProducts.Output_Correlated_[124].subband=124
+Observation.DataProducts.Output_Correlated_[125].SAP=0
+Observation.DataProducts.Output_Correlated_[125].centralFrequency=172265625.000000
+Observation.DataProducts.Output_Correlated_[125].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[125].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[125].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[125].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[125].filename=L527637_SAP000_SB125_uv.MS
+Observation.DataProducts.Output_Correlated_[125].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[125].location=locus051:/data/L527637/
+Observation.DataProducts.Output_Correlated_[125].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[125].size=29414318080
+Observation.DataProducts.Output_Correlated_[125].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[125].stationSubband=370
+Observation.DataProducts.Output_Correlated_[125].subband=125
+Observation.DataProducts.Output_Correlated_[126].SAP=0
+Observation.DataProducts.Output_Correlated_[126].centralFrequency=172460937.500000
+Observation.DataProducts.Output_Correlated_[126].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[126].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[126].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[126].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[126].filename=L527637_SAP000_SB126_uv.MS
+Observation.DataProducts.Output_Correlated_[126].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[126].location=locus052:/data/L527637/
+Observation.DataProducts.Output_Correlated_[126].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[126].size=29414318080
+Observation.DataProducts.Output_Correlated_[126].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[126].stationSubband=371
+Observation.DataProducts.Output_Correlated_[126].subband=126
+Observation.DataProducts.Output_Correlated_[127].SAP=0
+Observation.DataProducts.Output_Correlated_[127].centralFrequency=172656250.000000
+Observation.DataProducts.Output_Correlated_[127].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[127].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[127].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[127].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[127].filename=L527637_SAP000_SB127_uv.MS
+Observation.DataProducts.Output_Correlated_[127].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[127].location=locus053:/data/L527637/
+Observation.DataProducts.Output_Correlated_[127].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[127].size=29414318080
+Observation.DataProducts.Output_Correlated_[127].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[127].stationSubband=372
+Observation.DataProducts.Output_Correlated_[127].subband=127
+Observation.DataProducts.Output_Correlated_[128].SAP=0
+Observation.DataProducts.Output_Correlated_[128].centralFrequency=172851562.500000
+Observation.DataProducts.Output_Correlated_[128].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[128].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[128].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[128].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[128].filename=L527637_SAP000_SB128_uv.MS
+Observation.DataProducts.Output_Correlated_[128].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[128].location=locus054:/data/L527637/
+Observation.DataProducts.Output_Correlated_[128].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[128].size=29414318080
+Observation.DataProducts.Output_Correlated_[128].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[128].stationSubband=373
+Observation.DataProducts.Output_Correlated_[128].subband=128
+Observation.DataProducts.Output_Correlated_[129].SAP=0
+Observation.DataProducts.Output_Correlated_[129].centralFrequency=173046875.000000
+Observation.DataProducts.Output_Correlated_[129].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[129].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[129].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[129].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[129].filename=L527637_SAP000_SB129_uv.MS
+Observation.DataProducts.Output_Correlated_[129].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[129].location=locus055:/data/L527637/
+Observation.DataProducts.Output_Correlated_[129].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[129].size=29414318080
+Observation.DataProducts.Output_Correlated_[129].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[129].stationSubband=374
+Observation.DataProducts.Output_Correlated_[129].subband=129
+Observation.DataProducts.Output_Correlated_[12].SAP=0
+Observation.DataProducts.Output_Correlated_[12].centralFrequency=150195312.500000
+Observation.DataProducts.Output_Correlated_[12].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[12].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[12].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[12].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[12].filename=L527637_SAP000_SB012_uv.MS
+Observation.DataProducts.Output_Correlated_[12].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[12].location=locus015:/data/L527637/
+Observation.DataProducts.Output_Correlated_[12].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[12].size=29414318080
+Observation.DataProducts.Output_Correlated_[12].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[12].stationSubband=257
+Observation.DataProducts.Output_Correlated_[12].subband=12
+Observation.DataProducts.Output_Correlated_[130].SAP=0
+Observation.DataProducts.Output_Correlated_[130].centralFrequency=173242187.500000
+Observation.DataProducts.Output_Correlated_[130].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[130].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[130].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[130].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[130].filename=L527637_SAP000_SB130_uv.MS
+Observation.DataProducts.Output_Correlated_[130].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[130].location=locus056:/data/L527637/
+Observation.DataProducts.Output_Correlated_[130].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[130].size=29414318080
+Observation.DataProducts.Output_Correlated_[130].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[130].stationSubband=375
+Observation.DataProducts.Output_Correlated_[130].subband=130
+Observation.DataProducts.Output_Correlated_[131].SAP=0
+Observation.DataProducts.Output_Correlated_[131].centralFrequency=173437500.000000
+Observation.DataProducts.Output_Correlated_[131].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[131].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[131].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[131].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[131].filename=L527637_SAP000_SB131_uv.MS
+Observation.DataProducts.Output_Correlated_[131].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[131].location=locus057:/data/L527637/
+Observation.DataProducts.Output_Correlated_[131].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[131].size=29414318080
+Observation.DataProducts.Output_Correlated_[131].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[131].stationSubband=376
+Observation.DataProducts.Output_Correlated_[131].subband=131
+Observation.DataProducts.Output_Correlated_[132].SAP=0
+Observation.DataProducts.Output_Correlated_[132].centralFrequency=173632812.500000
+Observation.DataProducts.Output_Correlated_[132].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[132].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[132].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[132].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[132].filename=L527637_SAP000_SB132_uv.MS
+Observation.DataProducts.Output_Correlated_[132].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[132].location=locus058:/data/L527637/
+Observation.DataProducts.Output_Correlated_[132].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[132].size=29414318080
+Observation.DataProducts.Output_Correlated_[132].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[132].stationSubband=377
+Observation.DataProducts.Output_Correlated_[132].subband=132
+Observation.DataProducts.Output_Correlated_[133].SAP=0
+Observation.DataProducts.Output_Correlated_[133].centralFrequency=173828125.000000
+Observation.DataProducts.Output_Correlated_[133].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[133].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[133].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[133].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[133].filename=L527637_SAP000_SB133_uv.MS
+Observation.DataProducts.Output_Correlated_[133].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[133].location=locus060:/data/L527637/
+Observation.DataProducts.Output_Correlated_[133].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[133].size=29414318080
+Observation.DataProducts.Output_Correlated_[133].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[133].stationSubband=378
+Observation.DataProducts.Output_Correlated_[133].subband=133
+Observation.DataProducts.Output_Correlated_[134].SAP=0
+Observation.DataProducts.Output_Correlated_[134].centralFrequency=174023437.500000
+Observation.DataProducts.Output_Correlated_[134].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[134].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[134].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[134].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[134].filename=L527637_SAP000_SB134_uv.MS
+Observation.DataProducts.Output_Correlated_[134].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[134].location=locus061:/data/L527637/
+Observation.DataProducts.Output_Correlated_[134].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[134].size=29414318080
+Observation.DataProducts.Output_Correlated_[134].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[134].stationSubband=379
+Observation.DataProducts.Output_Correlated_[134].subband=134
+Observation.DataProducts.Output_Correlated_[135].SAP=0
+Observation.DataProducts.Output_Correlated_[135].centralFrequency=174218750.000000
+Observation.DataProducts.Output_Correlated_[135].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[135].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[135].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[135].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[135].filename=L527637_SAP000_SB135_uv.MS
+Observation.DataProducts.Output_Correlated_[135].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[135].location=locus062:/data/L527637/
+Observation.DataProducts.Output_Correlated_[135].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[135].size=29414318080
+Observation.DataProducts.Output_Correlated_[135].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[135].stationSubband=380
+Observation.DataProducts.Output_Correlated_[135].subband=135
+Observation.DataProducts.Output_Correlated_[136].SAP=0
+Observation.DataProducts.Output_Correlated_[136].centralFrequency=174414062.500000
+Observation.DataProducts.Output_Correlated_[136].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[136].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[136].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[136].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[136].filename=L527637_SAP000_SB136_uv.MS
+Observation.DataProducts.Output_Correlated_[136].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[136].location=locus063:/data/L527637/
+Observation.DataProducts.Output_Correlated_[136].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[136].size=29414318080
+Observation.DataProducts.Output_Correlated_[136].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[136].stationSubband=381
+Observation.DataProducts.Output_Correlated_[136].subband=136
+Observation.DataProducts.Output_Correlated_[137].SAP=0
+Observation.DataProducts.Output_Correlated_[137].centralFrequency=174609375.000000
+Observation.DataProducts.Output_Correlated_[137].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[137].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[137].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[137].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[137].filename=L527637_SAP000_SB137_uv.MS
+Observation.DataProducts.Output_Correlated_[137].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[137].location=locus064:/data/L527637/
+Observation.DataProducts.Output_Correlated_[137].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[137].size=29414318080
+Observation.DataProducts.Output_Correlated_[137].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[137].stationSubband=382
+Observation.DataProducts.Output_Correlated_[137].subband=137
+Observation.DataProducts.Output_Correlated_[138].SAP=0
+Observation.DataProducts.Output_Correlated_[138].centralFrequency=174804687.500000
+Observation.DataProducts.Output_Correlated_[138].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[138].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[138].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[138].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[138].filename=L527637_SAP000_SB138_uv.MS
+Observation.DataProducts.Output_Correlated_[138].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[138].location=locus065:/data/L527637/
+Observation.DataProducts.Output_Correlated_[138].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[138].size=29414318080
+Observation.DataProducts.Output_Correlated_[138].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[138].stationSubband=383
+Observation.DataProducts.Output_Correlated_[138].subband=138
+Observation.DataProducts.Output_Correlated_[139].SAP=0
+Observation.DataProducts.Output_Correlated_[139].centralFrequency=175000000.000000
+Observation.DataProducts.Output_Correlated_[139].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[139].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[139].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[139].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[139].filename=L527637_SAP000_SB139_uv.MS
+Observation.DataProducts.Output_Correlated_[139].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[139].location=locus066:/data/L527637/
+Observation.DataProducts.Output_Correlated_[139].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[139].size=29414318080
+Observation.DataProducts.Output_Correlated_[139].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[139].stationSubband=384
+Observation.DataProducts.Output_Correlated_[139].subband=139
+Observation.DataProducts.Output_Correlated_[13].SAP=0
+Observation.DataProducts.Output_Correlated_[13].centralFrequency=150390625.000000
+Observation.DataProducts.Output_Correlated_[13].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[13].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[13].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[13].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[13].filename=L527637_SAP000_SB013_uv.MS
+Observation.DataProducts.Output_Correlated_[13].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[13].location=locus016:/data/L527637/
+Observation.DataProducts.Output_Correlated_[13].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[13].size=29414318080
+Observation.DataProducts.Output_Correlated_[13].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[13].stationSubband=258
+Observation.DataProducts.Output_Correlated_[13].subband=13
+Observation.DataProducts.Output_Correlated_[140].SAP=0
+Observation.DataProducts.Output_Correlated_[140].centralFrequency=175195312.500000
+Observation.DataProducts.Output_Correlated_[140].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[140].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[140].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[140].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[140].filename=L527637_SAP000_SB140_uv.MS
+Observation.DataProducts.Output_Correlated_[140].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[140].location=locus067:/data/L527637/
+Observation.DataProducts.Output_Correlated_[140].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[140].size=29414318080
+Observation.DataProducts.Output_Correlated_[140].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[140].stationSubband=385
+Observation.DataProducts.Output_Correlated_[140].subband=140
+Observation.DataProducts.Output_Correlated_[141].SAP=0
+Observation.DataProducts.Output_Correlated_[141].centralFrequency=175390625.000000
+Observation.DataProducts.Output_Correlated_[141].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[141].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[141].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[141].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[141].filename=L527637_SAP000_SB141_uv.MS
+Observation.DataProducts.Output_Correlated_[141].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[141].location=locus068:/data/L527637/
+Observation.DataProducts.Output_Correlated_[141].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[141].size=29414318080
+Observation.DataProducts.Output_Correlated_[141].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[141].stationSubband=386
+Observation.DataProducts.Output_Correlated_[141].subband=141
+Observation.DataProducts.Output_Correlated_[142].SAP=0
+Observation.DataProducts.Output_Correlated_[142].centralFrequency=175585937.500000
+Observation.DataProducts.Output_Correlated_[142].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[142].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[142].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[142].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[142].filename=L527637_SAP000_SB142_uv.MS
+Observation.DataProducts.Output_Correlated_[142].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[142].location=locus069:/data/L527637/
+Observation.DataProducts.Output_Correlated_[142].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[142].size=29414318080
+Observation.DataProducts.Output_Correlated_[142].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[142].stationSubband=387
+Observation.DataProducts.Output_Correlated_[142].subband=142
+Observation.DataProducts.Output_Correlated_[143].SAP=0
+Observation.DataProducts.Output_Correlated_[143].centralFrequency=175781250.000000
+Observation.DataProducts.Output_Correlated_[143].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[143].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[143].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[143].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[143].filename=L527637_SAP000_SB143_uv.MS
+Observation.DataProducts.Output_Correlated_[143].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[143].location=locus070:/data/L527637/
+Observation.DataProducts.Output_Correlated_[143].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[143].size=29414318080
+Observation.DataProducts.Output_Correlated_[143].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[143].stationSubband=388
+Observation.DataProducts.Output_Correlated_[143].subband=143
+Observation.DataProducts.Output_Correlated_[144].SAP=0
+Observation.DataProducts.Output_Correlated_[144].centralFrequency=175976562.500000
+Observation.DataProducts.Output_Correlated_[144].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[144].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[144].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[144].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[144].filename=L527637_SAP000_SB144_uv.MS
+Observation.DataProducts.Output_Correlated_[144].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[144].location=locus071:/data/L527637/
+Observation.DataProducts.Output_Correlated_[144].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[144].size=29414318080
+Observation.DataProducts.Output_Correlated_[144].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[144].stationSubband=389
+Observation.DataProducts.Output_Correlated_[144].subband=144
+Observation.DataProducts.Output_Correlated_[145].SAP=0
+Observation.DataProducts.Output_Correlated_[145].centralFrequency=176171875.000000
+Observation.DataProducts.Output_Correlated_[145].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[145].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[145].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[145].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[145].filename=L527637_SAP000_SB145_uv.MS
+Observation.DataProducts.Output_Correlated_[145].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[145].location=locus072:/data/L527637/
+Observation.DataProducts.Output_Correlated_[145].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[145].size=29414318080
+Observation.DataProducts.Output_Correlated_[145].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[145].stationSubband=390
+Observation.DataProducts.Output_Correlated_[145].subband=145
+Observation.DataProducts.Output_Correlated_[146].SAP=0
+Observation.DataProducts.Output_Correlated_[146].centralFrequency=176367187.500000
+Observation.DataProducts.Output_Correlated_[146].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[146].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[146].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[146].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[146].filename=L527637_SAP000_SB146_uv.MS
+Observation.DataProducts.Output_Correlated_[146].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[146].location=locus073:/data/L527637/
+Observation.DataProducts.Output_Correlated_[146].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[146].size=29414318080
+Observation.DataProducts.Output_Correlated_[146].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[146].stationSubband=391
+Observation.DataProducts.Output_Correlated_[146].subband=146
+Observation.DataProducts.Output_Correlated_[147].SAP=0
+Observation.DataProducts.Output_Correlated_[147].centralFrequency=176562500.000000
+Observation.DataProducts.Output_Correlated_[147].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[147].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[147].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[147].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[147].filename=L527637_SAP000_SB147_uv.MS
+Observation.DataProducts.Output_Correlated_[147].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[147].location=locus074:/data/L527637/
+Observation.DataProducts.Output_Correlated_[147].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[147].size=29414318080
+Observation.DataProducts.Output_Correlated_[147].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[147].stationSubband=392
+Observation.DataProducts.Output_Correlated_[147].subband=147
+Observation.DataProducts.Output_Correlated_[148].SAP=0
+Observation.DataProducts.Output_Correlated_[148].centralFrequency=176757812.500000
+Observation.DataProducts.Output_Correlated_[148].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[148].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[148].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[148].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[148].filename=L527637_SAP000_SB148_uv.MS
+Observation.DataProducts.Output_Correlated_[148].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[148].location=locus075:/data/L527637/
+Observation.DataProducts.Output_Correlated_[148].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[148].size=29414318080
+Observation.DataProducts.Output_Correlated_[148].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[148].stationSubband=393
+Observation.DataProducts.Output_Correlated_[148].subband=148
+Observation.DataProducts.Output_Correlated_[149].SAP=0
+Observation.DataProducts.Output_Correlated_[149].centralFrequency=176953125.000000
+Observation.DataProducts.Output_Correlated_[149].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[149].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[149].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[149].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[149].filename=L527637_SAP000_SB149_uv.MS
+Observation.DataProducts.Output_Correlated_[149].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[149].location=locus076:/data/L527637/
+Observation.DataProducts.Output_Correlated_[149].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[149].size=29414318080
+Observation.DataProducts.Output_Correlated_[149].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[149].stationSubband=394
+Observation.DataProducts.Output_Correlated_[149].subband=149
+Observation.DataProducts.Output_Correlated_[14].SAP=0
+Observation.DataProducts.Output_Correlated_[14].centralFrequency=150585937.500000
+Observation.DataProducts.Output_Correlated_[14].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[14].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[14].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[14].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[14].filename=L527637_SAP000_SB014_uv.MS
+Observation.DataProducts.Output_Correlated_[14].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[14].location=locus017:/data/L527637/
+Observation.DataProducts.Output_Correlated_[14].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[14].size=29414318080
+Observation.DataProducts.Output_Correlated_[14].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[14].stationSubband=259
+Observation.DataProducts.Output_Correlated_[14].subband=14
+Observation.DataProducts.Output_Correlated_[150].SAP=0
+Observation.DataProducts.Output_Correlated_[150].centralFrequency=177148437.500000
+Observation.DataProducts.Output_Correlated_[150].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[150].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[150].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[150].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[150].filename=L527637_SAP000_SB150_uv.MS
+Observation.DataProducts.Output_Correlated_[150].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[150].location=locus077:/data/L527637/
+Observation.DataProducts.Output_Correlated_[150].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[150].size=29414318080
+Observation.DataProducts.Output_Correlated_[150].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[150].stationSubband=395
+Observation.DataProducts.Output_Correlated_[150].subband=150
+Observation.DataProducts.Output_Correlated_[151].SAP=0
+Observation.DataProducts.Output_Correlated_[151].centralFrequency=177343750.000000
+Observation.DataProducts.Output_Correlated_[151].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[151].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[151].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[151].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[151].filename=L527637_SAP000_SB151_uv.MS
+Observation.DataProducts.Output_Correlated_[151].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[151].location=locus078:/data/L527637/
+Observation.DataProducts.Output_Correlated_[151].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[151].size=29414318080
+Observation.DataProducts.Output_Correlated_[151].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[151].stationSubband=396
+Observation.DataProducts.Output_Correlated_[151].subband=151
+Observation.DataProducts.Output_Correlated_[152].SAP=0
+Observation.DataProducts.Output_Correlated_[152].centralFrequency=177539062.500000
+Observation.DataProducts.Output_Correlated_[152].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[152].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[152].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[152].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[152].filename=L527637_SAP000_SB152_uv.MS
+Observation.DataProducts.Output_Correlated_[152].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[152].location=locus079:/data/L527637/
+Observation.DataProducts.Output_Correlated_[152].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[152].size=29414318080
+Observation.DataProducts.Output_Correlated_[152].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[152].stationSubband=397
+Observation.DataProducts.Output_Correlated_[152].subband=152
+Observation.DataProducts.Output_Correlated_[153].SAP=0
+Observation.DataProducts.Output_Correlated_[153].centralFrequency=177734375.000000
+Observation.DataProducts.Output_Correlated_[153].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[153].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[153].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[153].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[153].filename=L527637_SAP000_SB153_uv.MS
+Observation.DataProducts.Output_Correlated_[153].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[153].location=locus080:/data/L527637/
+Observation.DataProducts.Output_Correlated_[153].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[153].size=29414318080
+Observation.DataProducts.Output_Correlated_[153].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[153].stationSubband=398
+Observation.DataProducts.Output_Correlated_[153].subband=153
+Observation.DataProducts.Output_Correlated_[154].SAP=0
+Observation.DataProducts.Output_Correlated_[154].centralFrequency=177929687.500000
+Observation.DataProducts.Output_Correlated_[154].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[154].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[154].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[154].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[154].filename=L527637_SAP000_SB154_uv.MS
+Observation.DataProducts.Output_Correlated_[154].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[154].location=locus081:/data/L527637/
+Observation.DataProducts.Output_Correlated_[154].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[154].size=29414318080
+Observation.DataProducts.Output_Correlated_[154].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[154].stationSubband=399
+Observation.DataProducts.Output_Correlated_[154].subband=154
+Observation.DataProducts.Output_Correlated_[155].SAP=0
+Observation.DataProducts.Output_Correlated_[155].centralFrequency=178125000.000000
+Observation.DataProducts.Output_Correlated_[155].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[155].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[155].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[155].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[155].filename=L527637_SAP000_SB155_uv.MS
+Observation.DataProducts.Output_Correlated_[155].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[155].location=locus082:/data/L527637/
+Observation.DataProducts.Output_Correlated_[155].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[155].size=29414318080
+Observation.DataProducts.Output_Correlated_[155].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[155].stationSubband=400
+Observation.DataProducts.Output_Correlated_[155].subband=155
+Observation.DataProducts.Output_Correlated_[156].SAP=0
+Observation.DataProducts.Output_Correlated_[156].centralFrequency=178320312.500000
+Observation.DataProducts.Output_Correlated_[156].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[156].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[156].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[156].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[156].filename=L527637_SAP000_SB156_uv.MS
+Observation.DataProducts.Output_Correlated_[156].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[156].location=locus084:/data/L527637/
+Observation.DataProducts.Output_Correlated_[156].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[156].size=29414318080
+Observation.DataProducts.Output_Correlated_[156].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[156].stationSubband=401
+Observation.DataProducts.Output_Correlated_[156].subband=156
+Observation.DataProducts.Output_Correlated_[157].SAP=0
+Observation.DataProducts.Output_Correlated_[157].centralFrequency=178515625.000000
+Observation.DataProducts.Output_Correlated_[157].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[157].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[157].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[157].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[157].filename=L527637_SAP000_SB157_uv.MS
+Observation.DataProducts.Output_Correlated_[157].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[157].location=locus085:/data/L527637/
+Observation.DataProducts.Output_Correlated_[157].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[157].size=29414318080
+Observation.DataProducts.Output_Correlated_[157].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[157].stationSubband=402
+Observation.DataProducts.Output_Correlated_[157].subband=157
+Observation.DataProducts.Output_Correlated_[158].SAP=0
+Observation.DataProducts.Output_Correlated_[158].centralFrequency=178710937.500000
+Observation.DataProducts.Output_Correlated_[158].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[158].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[158].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[158].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[158].filename=L527637_SAP000_SB158_uv.MS
+Observation.DataProducts.Output_Correlated_[158].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[158].location=locus086:/data/L527637/
+Observation.DataProducts.Output_Correlated_[158].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[158].size=29414318080
+Observation.DataProducts.Output_Correlated_[158].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[158].stationSubband=403
+Observation.DataProducts.Output_Correlated_[158].subband=158
+Observation.DataProducts.Output_Correlated_[159].SAP=0
+Observation.DataProducts.Output_Correlated_[159].centralFrequency=178906250.000000
+Observation.DataProducts.Output_Correlated_[159].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[159].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[159].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[159].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[159].filename=L527637_SAP000_SB159_uv.MS
+Observation.DataProducts.Output_Correlated_[159].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[159].location=locus087:/data/L527637/
+Observation.DataProducts.Output_Correlated_[159].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[159].size=29414318080
+Observation.DataProducts.Output_Correlated_[159].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[159].stationSubband=404
+Observation.DataProducts.Output_Correlated_[159].subband=159
+Observation.DataProducts.Output_Correlated_[15].SAP=0
+Observation.DataProducts.Output_Correlated_[15].centralFrequency=150781250.000000
+Observation.DataProducts.Output_Correlated_[15].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[15].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[15].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[15].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[15].filename=L527637_SAP000_SB015_uv.MS
+Observation.DataProducts.Output_Correlated_[15].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[15].location=locus018:/data/L527637/
+Observation.DataProducts.Output_Correlated_[15].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[15].size=29414318080
+Observation.DataProducts.Output_Correlated_[15].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[15].stationSubband=260
+Observation.DataProducts.Output_Correlated_[15].subband=15
+Observation.DataProducts.Output_Correlated_[160].SAP=0
+Observation.DataProducts.Output_Correlated_[160].centralFrequency=179101562.500000
+Observation.DataProducts.Output_Correlated_[160].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[160].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[160].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[160].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[160].filename=L527637_SAP000_SB160_uv.MS
+Observation.DataProducts.Output_Correlated_[160].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[160].location=locus088:/data/L527637/
+Observation.DataProducts.Output_Correlated_[160].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[160].size=29414318080
+Observation.DataProducts.Output_Correlated_[160].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[160].stationSubband=405
+Observation.DataProducts.Output_Correlated_[160].subband=160
+Observation.DataProducts.Output_Correlated_[161].SAP=0
+Observation.DataProducts.Output_Correlated_[161].centralFrequency=179296875.000000
+Observation.DataProducts.Output_Correlated_[161].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[161].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[161].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[161].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[161].filename=L527637_SAP000_SB161_uv.MS
+Observation.DataProducts.Output_Correlated_[161].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[161].location=locus089:/data/L527637/
+Observation.DataProducts.Output_Correlated_[161].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[161].size=29414318080
+Observation.DataProducts.Output_Correlated_[161].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[161].stationSubband=406
+Observation.DataProducts.Output_Correlated_[161].subband=161
+Observation.DataProducts.Output_Correlated_[162].SAP=0
+Observation.DataProducts.Output_Correlated_[162].centralFrequency=179492187.500000
+Observation.DataProducts.Output_Correlated_[162].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[162].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[162].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[162].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[162].filename=L527637_SAP000_SB162_uv.MS
+Observation.DataProducts.Output_Correlated_[162].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[162].location=locus090:/data/L527637/
+Observation.DataProducts.Output_Correlated_[162].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[162].size=29414318080
+Observation.DataProducts.Output_Correlated_[162].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[162].stationSubband=407
+Observation.DataProducts.Output_Correlated_[162].subband=162
+Observation.DataProducts.Output_Correlated_[163].SAP=0
+Observation.DataProducts.Output_Correlated_[163].centralFrequency=179687500.000000
+Observation.DataProducts.Output_Correlated_[163].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[163].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[163].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[163].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[163].filename=L527637_SAP000_SB163_uv.MS
+Observation.DataProducts.Output_Correlated_[163].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[163].location=locus091:/data/L527637/
+Observation.DataProducts.Output_Correlated_[163].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[163].size=29414318080
+Observation.DataProducts.Output_Correlated_[163].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[163].stationSubband=408
+Observation.DataProducts.Output_Correlated_[163].subband=163
+Observation.DataProducts.Output_Correlated_[164].SAP=0
+Observation.DataProducts.Output_Correlated_[164].centralFrequency=179882812.500000
+Observation.DataProducts.Output_Correlated_[164].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[164].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[164].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[164].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[164].filename=L527637_SAP000_SB164_uv.MS
+Observation.DataProducts.Output_Correlated_[164].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[164].location=locus001:/data/L527637/
+Observation.DataProducts.Output_Correlated_[164].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[164].size=29414318080
+Observation.DataProducts.Output_Correlated_[164].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[164].stationSubband=409
+Observation.DataProducts.Output_Correlated_[164].subband=164
+Observation.DataProducts.Output_Correlated_[165].SAP=0
+Observation.DataProducts.Output_Correlated_[165].centralFrequency=180078125.000000
+Observation.DataProducts.Output_Correlated_[165].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[165].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[165].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[165].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[165].filename=L527637_SAP000_SB165_uv.MS
+Observation.DataProducts.Output_Correlated_[165].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[165].location=locus003:/data/L527637/
+Observation.DataProducts.Output_Correlated_[165].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[165].size=29414318080
+Observation.DataProducts.Output_Correlated_[165].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[165].stationSubband=410
+Observation.DataProducts.Output_Correlated_[165].subband=165
+Observation.DataProducts.Output_Correlated_[166].SAP=0
+Observation.DataProducts.Output_Correlated_[166].centralFrequency=180273437.500000
+Observation.DataProducts.Output_Correlated_[166].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[166].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[166].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[166].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[166].filename=L527637_SAP000_SB166_uv.MS
+Observation.DataProducts.Output_Correlated_[166].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[166].location=locus004:/data/L527637/
+Observation.DataProducts.Output_Correlated_[166].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[166].size=29414318080
+Observation.DataProducts.Output_Correlated_[166].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[166].stationSubband=411
+Observation.DataProducts.Output_Correlated_[166].subband=166
+Observation.DataProducts.Output_Correlated_[167].SAP=0
+Observation.DataProducts.Output_Correlated_[167].centralFrequency=180468750.000000
+Observation.DataProducts.Output_Correlated_[167].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[167].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[167].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[167].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[167].filename=L527637_SAP000_SB167_uv.MS
+Observation.DataProducts.Output_Correlated_[167].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[167].location=locus005:/data/L527637/
+Observation.DataProducts.Output_Correlated_[167].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[167].size=29414318080
+Observation.DataProducts.Output_Correlated_[167].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[167].stationSubband=412
+Observation.DataProducts.Output_Correlated_[167].subband=167
+Observation.DataProducts.Output_Correlated_[168].SAP=0
+Observation.DataProducts.Output_Correlated_[168].centralFrequency=180664062.500000
+Observation.DataProducts.Output_Correlated_[168].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[168].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[168].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[168].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[168].filename=L527637_SAP000_SB168_uv.MS
+Observation.DataProducts.Output_Correlated_[168].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[168].location=locus006:/data/L527637/
+Observation.DataProducts.Output_Correlated_[168].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[168].size=29414318080
+Observation.DataProducts.Output_Correlated_[168].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[168].stationSubband=413
+Observation.DataProducts.Output_Correlated_[168].subband=168
+Observation.DataProducts.Output_Correlated_[169].SAP=0
+Observation.DataProducts.Output_Correlated_[169].centralFrequency=180859375.000000
+Observation.DataProducts.Output_Correlated_[169].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[169].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[169].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[169].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[169].filename=L527637_SAP000_SB169_uv.MS
+Observation.DataProducts.Output_Correlated_[169].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[169].location=locus007:/data/L527637/
+Observation.DataProducts.Output_Correlated_[169].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[169].size=29414318080
+Observation.DataProducts.Output_Correlated_[169].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[169].stationSubband=414
+Observation.DataProducts.Output_Correlated_[169].subband=169
+Observation.DataProducts.Output_Correlated_[16].SAP=0
+Observation.DataProducts.Output_Correlated_[16].centralFrequency=150976562.500000
+Observation.DataProducts.Output_Correlated_[16].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[16].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[16].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[16].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[16].filename=L527637_SAP000_SB016_uv.MS
+Observation.DataProducts.Output_Correlated_[16].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[16].location=locus019:/data/L527637/
+Observation.DataProducts.Output_Correlated_[16].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[16].size=29414318080
+Observation.DataProducts.Output_Correlated_[16].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[16].stationSubband=261
+Observation.DataProducts.Output_Correlated_[16].subband=16
+Observation.DataProducts.Output_Correlated_[170].SAP=0
+Observation.DataProducts.Output_Correlated_[170].centralFrequency=181054687.500000
+Observation.DataProducts.Output_Correlated_[170].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[170].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[170].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[170].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[170].filename=L527637_SAP000_SB170_uv.MS
+Observation.DataProducts.Output_Correlated_[170].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[170].location=locus008:/data/L527637/
+Observation.DataProducts.Output_Correlated_[170].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[170].size=29414318080
+Observation.DataProducts.Output_Correlated_[170].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[170].stationSubband=415
+Observation.DataProducts.Output_Correlated_[170].subband=170
+Observation.DataProducts.Output_Correlated_[171].SAP=0
+Observation.DataProducts.Output_Correlated_[171].centralFrequency=181250000.000000
+Observation.DataProducts.Output_Correlated_[171].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[171].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[171].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[171].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[171].filename=L527637_SAP000_SB171_uv.MS
+Observation.DataProducts.Output_Correlated_[171].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[171].location=locus009:/data/L527637/
+Observation.DataProducts.Output_Correlated_[171].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[171].size=29414318080
+Observation.DataProducts.Output_Correlated_[171].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[171].stationSubband=416
+Observation.DataProducts.Output_Correlated_[171].subband=171
+Observation.DataProducts.Output_Correlated_[172].SAP=0
+Observation.DataProducts.Output_Correlated_[172].centralFrequency=181445312.500000
+Observation.DataProducts.Output_Correlated_[172].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[172].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[172].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[172].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[172].filename=L527637_SAP000_SB172_uv.MS
+Observation.DataProducts.Output_Correlated_[172].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[172].location=locus010:/data/L527637/
+Observation.DataProducts.Output_Correlated_[172].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[172].size=29414318080
+Observation.DataProducts.Output_Correlated_[172].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[172].stationSubband=417
+Observation.DataProducts.Output_Correlated_[172].subband=172
+Observation.DataProducts.Output_Correlated_[173].SAP=0
+Observation.DataProducts.Output_Correlated_[173].centralFrequency=181640625.000000
+Observation.DataProducts.Output_Correlated_[173].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[173].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[173].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[173].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[173].filename=L527637_SAP000_SB173_uv.MS
+Observation.DataProducts.Output_Correlated_[173].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[173].location=locus011:/data/L527637/
+Observation.DataProducts.Output_Correlated_[173].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[173].size=29414318080
+Observation.DataProducts.Output_Correlated_[173].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[173].stationSubband=418
+Observation.DataProducts.Output_Correlated_[173].subband=173
+Observation.DataProducts.Output_Correlated_[174].SAP=0
+Observation.DataProducts.Output_Correlated_[174].centralFrequency=181835937.500000
+Observation.DataProducts.Output_Correlated_[174].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[174].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[174].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[174].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[174].filename=L527637_SAP000_SB174_uv.MS
+Observation.DataProducts.Output_Correlated_[174].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[174].location=locus012:/data/L527637/
+Observation.DataProducts.Output_Correlated_[174].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[174].size=29414318080
+Observation.DataProducts.Output_Correlated_[174].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[174].stationSubband=419
+Observation.DataProducts.Output_Correlated_[174].subband=174
+Observation.DataProducts.Output_Correlated_[175].SAP=0
+Observation.DataProducts.Output_Correlated_[175].centralFrequency=182031250.000000
+Observation.DataProducts.Output_Correlated_[175].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[175].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[175].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[175].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[175].filename=L527637_SAP000_SB175_uv.MS
+Observation.DataProducts.Output_Correlated_[175].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[175].location=locus014:/data/L527637/
+Observation.DataProducts.Output_Correlated_[175].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[175].size=29414318080
+Observation.DataProducts.Output_Correlated_[175].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[175].stationSubband=420
+Observation.DataProducts.Output_Correlated_[175].subband=175
+Observation.DataProducts.Output_Correlated_[176].SAP=0
+Observation.DataProducts.Output_Correlated_[176].centralFrequency=182226562.500000
+Observation.DataProducts.Output_Correlated_[176].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[176].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[176].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[176].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[176].filename=L527637_SAP000_SB176_uv.MS
+Observation.DataProducts.Output_Correlated_[176].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[176].location=locus015:/data/L527637/
+Observation.DataProducts.Output_Correlated_[176].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[176].size=29414318080
+Observation.DataProducts.Output_Correlated_[176].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[176].stationSubband=421
+Observation.DataProducts.Output_Correlated_[176].subband=176
+Observation.DataProducts.Output_Correlated_[177].SAP=0
+Observation.DataProducts.Output_Correlated_[177].centralFrequency=182421875.000000
+Observation.DataProducts.Output_Correlated_[177].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[177].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[177].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[177].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[177].filename=L527637_SAP000_SB177_uv.MS
+Observation.DataProducts.Output_Correlated_[177].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[177].location=locus016:/data/L527637/
+Observation.DataProducts.Output_Correlated_[177].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[177].size=29414318080
+Observation.DataProducts.Output_Correlated_[177].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[177].stationSubband=422
+Observation.DataProducts.Output_Correlated_[177].subband=177
+Observation.DataProducts.Output_Correlated_[178].SAP=0
+Observation.DataProducts.Output_Correlated_[178].centralFrequency=182617187.500000
+Observation.DataProducts.Output_Correlated_[178].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[178].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[178].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[178].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[178].filename=L527637_SAP000_SB178_uv.MS
+Observation.DataProducts.Output_Correlated_[178].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[178].location=locus017:/data/L527637/
+Observation.DataProducts.Output_Correlated_[178].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[178].size=29414318080
+Observation.DataProducts.Output_Correlated_[178].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[178].stationSubband=423
+Observation.DataProducts.Output_Correlated_[178].subband=178
+Observation.DataProducts.Output_Correlated_[179].SAP=0
+Observation.DataProducts.Output_Correlated_[179].centralFrequency=182812500.000000
+Observation.DataProducts.Output_Correlated_[179].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[179].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[179].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[179].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[179].filename=L527637_SAP000_SB179_uv.MS
+Observation.DataProducts.Output_Correlated_[179].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[179].location=locus018:/data/L527637/
+Observation.DataProducts.Output_Correlated_[179].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[179].size=29414318080
+Observation.DataProducts.Output_Correlated_[179].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[179].stationSubband=424
+Observation.DataProducts.Output_Correlated_[179].subband=179
+Observation.DataProducts.Output_Correlated_[17].SAP=0
+Observation.DataProducts.Output_Correlated_[17].centralFrequency=151171875.000000
+Observation.DataProducts.Output_Correlated_[17].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[17].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[17].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[17].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[17].filename=L527637_SAP000_SB017_uv.MS
+Observation.DataProducts.Output_Correlated_[17].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[17].location=locus020:/data/L527637/
+Observation.DataProducts.Output_Correlated_[17].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[17].size=29414318080
+Observation.DataProducts.Output_Correlated_[17].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[17].stationSubband=262
+Observation.DataProducts.Output_Correlated_[17].subband=17
+Observation.DataProducts.Output_Correlated_[180].SAP=0
+Observation.DataProducts.Output_Correlated_[180].centralFrequency=183007812.500000
+Observation.DataProducts.Output_Correlated_[180].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[180].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[180].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[180].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[180].filename=L527637_SAP000_SB180_uv.MS
+Observation.DataProducts.Output_Correlated_[180].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[180].location=locus019:/data/L527637/
+Observation.DataProducts.Output_Correlated_[180].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[180].size=29414318080
+Observation.DataProducts.Output_Correlated_[180].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[180].stationSubband=425
+Observation.DataProducts.Output_Correlated_[180].subband=180
+Observation.DataProducts.Output_Correlated_[181].SAP=0
+Observation.DataProducts.Output_Correlated_[181].centralFrequency=183203125.000000
+Observation.DataProducts.Output_Correlated_[181].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[181].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[181].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[181].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[181].filename=L527637_SAP000_SB181_uv.MS
+Observation.DataProducts.Output_Correlated_[181].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[181].location=locus020:/data/L527637/
+Observation.DataProducts.Output_Correlated_[181].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[181].size=29414318080
+Observation.DataProducts.Output_Correlated_[181].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[181].stationSubband=426
+Observation.DataProducts.Output_Correlated_[181].subband=181
+Observation.DataProducts.Output_Correlated_[182].SAP=0
+Observation.DataProducts.Output_Correlated_[182].centralFrequency=183398437.500000
+Observation.DataProducts.Output_Correlated_[182].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[182].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[182].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[182].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[182].filename=L527637_SAP000_SB182_uv.MS
+Observation.DataProducts.Output_Correlated_[182].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[182].location=locus021:/data/L527637/
+Observation.DataProducts.Output_Correlated_[182].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[182].size=29414318080
+Observation.DataProducts.Output_Correlated_[182].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[182].stationSubband=427
+Observation.DataProducts.Output_Correlated_[182].subband=182
+Observation.DataProducts.Output_Correlated_[183].SAP=0
+Observation.DataProducts.Output_Correlated_[183].centralFrequency=183593750.000000
+Observation.DataProducts.Output_Correlated_[183].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[183].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[183].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[183].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[183].filename=L527637_SAP000_SB183_uv.MS
+Observation.DataProducts.Output_Correlated_[183].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[183].location=locus023:/data/L527637/
+Observation.DataProducts.Output_Correlated_[183].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[183].size=29414318080
+Observation.DataProducts.Output_Correlated_[183].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[183].stationSubband=428
+Observation.DataProducts.Output_Correlated_[183].subband=183
+Observation.DataProducts.Output_Correlated_[184].SAP=0
+Observation.DataProducts.Output_Correlated_[184].centralFrequency=183789062.500000
+Observation.DataProducts.Output_Correlated_[184].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[184].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[184].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[184].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[184].filename=L527637_SAP000_SB184_uv.MS
+Observation.DataProducts.Output_Correlated_[184].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[184].location=locus025:/data/L527637/
+Observation.DataProducts.Output_Correlated_[184].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[184].size=29414318080
+Observation.DataProducts.Output_Correlated_[184].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[184].stationSubband=429
+Observation.DataProducts.Output_Correlated_[184].subband=184
+Observation.DataProducts.Output_Correlated_[185].SAP=0
+Observation.DataProducts.Output_Correlated_[185].centralFrequency=183984375.000000
+Observation.DataProducts.Output_Correlated_[185].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[185].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[185].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[185].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[185].filename=L527637_SAP000_SB185_uv.MS
+Observation.DataProducts.Output_Correlated_[185].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[185].location=locus026:/data/L527637/
+Observation.DataProducts.Output_Correlated_[185].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[185].size=29414318080
+Observation.DataProducts.Output_Correlated_[185].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[185].stationSubband=430
+Observation.DataProducts.Output_Correlated_[185].subband=185
+Observation.DataProducts.Output_Correlated_[186].SAP=0
+Observation.DataProducts.Output_Correlated_[186].centralFrequency=184179687.500000
+Observation.DataProducts.Output_Correlated_[186].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[186].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[186].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[186].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[186].filename=L527637_SAP000_SB186_uv.MS
+Observation.DataProducts.Output_Correlated_[186].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[186].location=locus028:/data/L527637/
+Observation.DataProducts.Output_Correlated_[186].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[186].size=29414318080
+Observation.DataProducts.Output_Correlated_[186].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[186].stationSubband=431
+Observation.DataProducts.Output_Correlated_[186].subband=186
+Observation.DataProducts.Output_Correlated_[187].SAP=0
+Observation.DataProducts.Output_Correlated_[187].centralFrequency=184375000.000000
+Observation.DataProducts.Output_Correlated_[187].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[187].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[187].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[187].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[187].filename=L527637_SAP000_SB187_uv.MS
+Observation.DataProducts.Output_Correlated_[187].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[187].location=locus029:/data/L527637/
+Observation.DataProducts.Output_Correlated_[187].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[187].size=29414318080
+Observation.DataProducts.Output_Correlated_[187].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[187].stationSubband=432
+Observation.DataProducts.Output_Correlated_[187].subband=187
+Observation.DataProducts.Output_Correlated_[188].SAP=0
+Observation.DataProducts.Output_Correlated_[188].centralFrequency=184570312.500000
+Observation.DataProducts.Output_Correlated_[188].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[188].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[188].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[188].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[188].filename=L527637_SAP000_SB188_uv.MS
+Observation.DataProducts.Output_Correlated_[188].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[188].location=locus031:/data/L527637/
+Observation.DataProducts.Output_Correlated_[188].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[188].size=29414318080
+Observation.DataProducts.Output_Correlated_[188].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[188].stationSubband=433
+Observation.DataProducts.Output_Correlated_[188].subband=188
+Observation.DataProducts.Output_Correlated_[189].SAP=0
+Observation.DataProducts.Output_Correlated_[189].centralFrequency=184765625.000000
+Observation.DataProducts.Output_Correlated_[189].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[189].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[189].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[189].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[189].filename=L527637_SAP000_SB189_uv.MS
+Observation.DataProducts.Output_Correlated_[189].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[189].location=locus032:/data/L527637/
+Observation.DataProducts.Output_Correlated_[189].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[189].size=29414318080
+Observation.DataProducts.Output_Correlated_[189].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[189].stationSubband=434
+Observation.DataProducts.Output_Correlated_[189].subband=189
+Observation.DataProducts.Output_Correlated_[18].SAP=0
+Observation.DataProducts.Output_Correlated_[18].centralFrequency=151367187.500000
+Observation.DataProducts.Output_Correlated_[18].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[18].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[18].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[18].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[18].filename=L527637_SAP000_SB018_uv.MS
+Observation.DataProducts.Output_Correlated_[18].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[18].location=locus021:/data/L527637/
+Observation.DataProducts.Output_Correlated_[18].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[18].size=29414318080
+Observation.DataProducts.Output_Correlated_[18].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[18].stationSubband=263
+Observation.DataProducts.Output_Correlated_[18].subband=18
+Observation.DataProducts.Output_Correlated_[190].SAP=0
+Observation.DataProducts.Output_Correlated_[190].centralFrequency=184960937.500000
+Observation.DataProducts.Output_Correlated_[190].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[190].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[190].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[190].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[190].filename=L527637_SAP000_SB190_uv.MS
+Observation.DataProducts.Output_Correlated_[190].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[190].location=locus034:/data/L527637/
+Observation.DataProducts.Output_Correlated_[190].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[190].size=29414318080
+Observation.DataProducts.Output_Correlated_[190].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[190].stationSubband=435
+Observation.DataProducts.Output_Correlated_[190].subband=190
+Observation.DataProducts.Output_Correlated_[191].SAP=0
+Observation.DataProducts.Output_Correlated_[191].centralFrequency=185156250.000000
+Observation.DataProducts.Output_Correlated_[191].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[191].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[191].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[191].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[191].filename=L527637_SAP000_SB191_uv.MS
+Observation.DataProducts.Output_Correlated_[191].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[191].location=locus035:/data/L527637/
+Observation.DataProducts.Output_Correlated_[191].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[191].size=29414318080
+Observation.DataProducts.Output_Correlated_[191].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[191].stationSubband=436
+Observation.DataProducts.Output_Correlated_[191].subband=191
+Observation.DataProducts.Output_Correlated_[192].SAP=0
+Observation.DataProducts.Output_Correlated_[192].centralFrequency=185351562.500000
+Observation.DataProducts.Output_Correlated_[192].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[192].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[192].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[192].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[192].filename=L527637_SAP000_SB192_uv.MS
+Observation.DataProducts.Output_Correlated_[192].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[192].location=locus036:/data/L527637/
+Observation.DataProducts.Output_Correlated_[192].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[192].size=29414318080
+Observation.DataProducts.Output_Correlated_[192].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[192].stationSubband=437
+Observation.DataProducts.Output_Correlated_[192].subband=192
+Observation.DataProducts.Output_Correlated_[193].SAP=0
+Observation.DataProducts.Output_Correlated_[193].centralFrequency=185546875.000000
+Observation.DataProducts.Output_Correlated_[193].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[193].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[193].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[193].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[193].filename=L527637_SAP000_SB193_uv.MS
+Observation.DataProducts.Output_Correlated_[193].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[193].location=locus037:/data/L527637/
+Observation.DataProducts.Output_Correlated_[193].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[193].size=29414318080
+Observation.DataProducts.Output_Correlated_[193].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[193].stationSubband=438
+Observation.DataProducts.Output_Correlated_[193].subband=193
+Observation.DataProducts.Output_Correlated_[194].SAP=0
+Observation.DataProducts.Output_Correlated_[194].centralFrequency=185742187.500000
+Observation.DataProducts.Output_Correlated_[194].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[194].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[194].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[194].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[194].filename=L527637_SAP000_SB194_uv.MS
+Observation.DataProducts.Output_Correlated_[194].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[194].location=locus038:/data/L527637/
+Observation.DataProducts.Output_Correlated_[194].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[194].size=29414318080
+Observation.DataProducts.Output_Correlated_[194].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[194].stationSubband=439
+Observation.DataProducts.Output_Correlated_[194].subband=194
+Observation.DataProducts.Output_Correlated_[195].SAP=0
+Observation.DataProducts.Output_Correlated_[195].centralFrequency=185937500.000000
+Observation.DataProducts.Output_Correlated_[195].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[195].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[195].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[195].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[195].filename=L527637_SAP000_SB195_uv.MS
+Observation.DataProducts.Output_Correlated_[195].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[195].location=locus039:/data/L527637/
+Observation.DataProducts.Output_Correlated_[195].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[195].size=29414318080
+Observation.DataProducts.Output_Correlated_[195].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[195].stationSubband=440
+Observation.DataProducts.Output_Correlated_[195].subband=195
+Observation.DataProducts.Output_Correlated_[196].SAP=0
+Observation.DataProducts.Output_Correlated_[196].centralFrequency=186132812.500000
+Observation.DataProducts.Output_Correlated_[196].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[196].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[196].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[196].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[196].filename=L527637_SAP000_SB196_uv.MS
+Observation.DataProducts.Output_Correlated_[196].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[196].location=locus040:/data/L527637/
+Observation.DataProducts.Output_Correlated_[196].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[196].size=29414318080
+Observation.DataProducts.Output_Correlated_[196].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[196].stationSubband=441
+Observation.DataProducts.Output_Correlated_[196].subband=196
+Observation.DataProducts.Output_Correlated_[197].SAP=0
+Observation.DataProducts.Output_Correlated_[197].centralFrequency=186328125.000000
+Observation.DataProducts.Output_Correlated_[197].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[197].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[197].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[197].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[197].filename=L527637_SAP000_SB197_uv.MS
+Observation.DataProducts.Output_Correlated_[197].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[197].location=locus041:/data/L527637/
+Observation.DataProducts.Output_Correlated_[197].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[197].size=29414318080
+Observation.DataProducts.Output_Correlated_[197].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[197].stationSubband=442
+Observation.DataProducts.Output_Correlated_[197].subband=197
+Observation.DataProducts.Output_Correlated_[198].SAP=0
+Observation.DataProducts.Output_Correlated_[198].centralFrequency=186523437.500000
+Observation.DataProducts.Output_Correlated_[198].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[198].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[198].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[198].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[198].filename=L527637_SAP000_SB198_uv.MS
+Observation.DataProducts.Output_Correlated_[198].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[198].location=locus042:/data/L527637/
+Observation.DataProducts.Output_Correlated_[198].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[198].size=29414318080
+Observation.DataProducts.Output_Correlated_[198].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[198].stationSubband=443
+Observation.DataProducts.Output_Correlated_[198].subband=198
+Observation.DataProducts.Output_Correlated_[199].SAP=0
+Observation.DataProducts.Output_Correlated_[199].centralFrequency=186718750.000000
+Observation.DataProducts.Output_Correlated_[199].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[199].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[199].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[199].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[199].filename=L527637_SAP000_SB199_uv.MS
+Observation.DataProducts.Output_Correlated_[199].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[199].location=locus043:/data/L527637/
+Observation.DataProducts.Output_Correlated_[199].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[199].size=29414318080
+Observation.DataProducts.Output_Correlated_[199].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[199].stationSubband=444
+Observation.DataProducts.Output_Correlated_[199].subband=199
+Observation.DataProducts.Output_Correlated_[19].SAP=0
+Observation.DataProducts.Output_Correlated_[19].centralFrequency=151562500.000000
+Observation.DataProducts.Output_Correlated_[19].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[19].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[19].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[19].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[19].filename=L527637_SAP000_SB019_uv.MS
+Observation.DataProducts.Output_Correlated_[19].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[19].location=locus023:/data/L527637/
+Observation.DataProducts.Output_Correlated_[19].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[19].size=29414318080
+Observation.DataProducts.Output_Correlated_[19].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[19].stationSubband=264
+Observation.DataProducts.Output_Correlated_[19].subband=19
+Observation.DataProducts.Output_Correlated_[1].SAP=0
+Observation.DataProducts.Output_Correlated_[1].centralFrequency=148046875.000000
+Observation.DataProducts.Output_Correlated_[1].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[1].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[1].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[1].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[1].filename=L527637_SAP000_SB001_uv.MS
+Observation.DataProducts.Output_Correlated_[1].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[1].location=locus003:/data/L527637/
+Observation.DataProducts.Output_Correlated_[1].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[1].size=29414318080
+Observation.DataProducts.Output_Correlated_[1].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[1].stationSubband=246
+Observation.DataProducts.Output_Correlated_[1].subband=1
+Observation.DataProducts.Output_Correlated_[200].SAP=0
+Observation.DataProducts.Output_Correlated_[200].centralFrequency=186914062.500000
+Observation.DataProducts.Output_Correlated_[200].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[200].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[200].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[200].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[200].filename=L527637_SAP000_SB200_uv.MS
+Observation.DataProducts.Output_Correlated_[200].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[200].location=locus044:/data/L527637/
+Observation.DataProducts.Output_Correlated_[200].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[200].size=29414318080
+Observation.DataProducts.Output_Correlated_[200].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[200].stationSubband=445
+Observation.DataProducts.Output_Correlated_[200].subband=200
+Observation.DataProducts.Output_Correlated_[201].SAP=0
+Observation.DataProducts.Output_Correlated_[201].centralFrequency=187109375.000000
+Observation.DataProducts.Output_Correlated_[201].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[201].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[201].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[201].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[201].filename=L527637_SAP000_SB201_uv.MS
+Observation.DataProducts.Output_Correlated_[201].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[201].location=locus045:/data/L527637/
+Observation.DataProducts.Output_Correlated_[201].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[201].size=29414318080
+Observation.DataProducts.Output_Correlated_[201].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[201].stationSubband=446
+Observation.DataProducts.Output_Correlated_[201].subband=201
+Observation.DataProducts.Output_Correlated_[202].SAP=0
+Observation.DataProducts.Output_Correlated_[202].centralFrequency=187304687.500000
+Observation.DataProducts.Output_Correlated_[202].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[202].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[202].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[202].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[202].filename=L527637_SAP000_SB202_uv.MS
+Observation.DataProducts.Output_Correlated_[202].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[202].location=locus046:/data/L527637/
+Observation.DataProducts.Output_Correlated_[202].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[202].size=29414318080
+Observation.DataProducts.Output_Correlated_[202].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[202].stationSubband=447
+Observation.DataProducts.Output_Correlated_[202].subband=202
+Observation.DataProducts.Output_Correlated_[203].SAP=0
+Observation.DataProducts.Output_Correlated_[203].centralFrequency=187500000.000000
+Observation.DataProducts.Output_Correlated_[203].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[203].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[203].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[203].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[203].filename=L527637_SAP000_SB203_uv.MS
+Observation.DataProducts.Output_Correlated_[203].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[203].location=locus047:/data/L527637/
+Observation.DataProducts.Output_Correlated_[203].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[203].size=29414318080
+Observation.DataProducts.Output_Correlated_[203].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[203].stationSubband=448
+Observation.DataProducts.Output_Correlated_[203].subband=203
+Observation.DataProducts.Output_Correlated_[204].SAP=0
+Observation.DataProducts.Output_Correlated_[204].centralFrequency=187695312.500000
+Observation.DataProducts.Output_Correlated_[204].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[204].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[204].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[204].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[204].filename=L527637_SAP000_SB204_uv.MS
+Observation.DataProducts.Output_Correlated_[204].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[204].location=locus048:/data/L527637/
+Observation.DataProducts.Output_Correlated_[204].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[204].size=29414318080
+Observation.DataProducts.Output_Correlated_[204].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[204].stationSubband=449
+Observation.DataProducts.Output_Correlated_[204].subband=204
+Observation.DataProducts.Output_Correlated_[205].SAP=0
+Observation.DataProducts.Output_Correlated_[205].centralFrequency=187890625.000000
+Observation.DataProducts.Output_Correlated_[205].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[205].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[205].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[205].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[205].filename=L527637_SAP000_SB205_uv.MS
+Observation.DataProducts.Output_Correlated_[205].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[205].location=locus049:/data/L527637/
+Observation.DataProducts.Output_Correlated_[205].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[205].size=29414318080
+Observation.DataProducts.Output_Correlated_[205].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[205].stationSubband=450
+Observation.DataProducts.Output_Correlated_[205].subband=205
+Observation.DataProducts.Output_Correlated_[206].SAP=0
+Observation.DataProducts.Output_Correlated_[206].centralFrequency=188085937.500000
+Observation.DataProducts.Output_Correlated_[206].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[206].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[206].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[206].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[206].filename=L527637_SAP000_SB206_uv.MS
+Observation.DataProducts.Output_Correlated_[206].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[206].location=locus050:/data/L527637/
+Observation.DataProducts.Output_Correlated_[206].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[206].size=29414318080
+Observation.DataProducts.Output_Correlated_[206].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[206].stationSubband=451
+Observation.DataProducts.Output_Correlated_[206].subband=206
+Observation.DataProducts.Output_Correlated_[207].SAP=0
+Observation.DataProducts.Output_Correlated_[207].centralFrequency=188281250.000000
+Observation.DataProducts.Output_Correlated_[207].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[207].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[207].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[207].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[207].filename=L527637_SAP000_SB207_uv.MS
+Observation.DataProducts.Output_Correlated_[207].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[207].location=locus051:/data/L527637/
+Observation.DataProducts.Output_Correlated_[207].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[207].size=29414318080
+Observation.DataProducts.Output_Correlated_[207].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[207].stationSubband=452
+Observation.DataProducts.Output_Correlated_[207].subband=207
+Observation.DataProducts.Output_Correlated_[208].SAP=0
+Observation.DataProducts.Output_Correlated_[208].centralFrequency=188476562.500000
+Observation.DataProducts.Output_Correlated_[208].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[208].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[208].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[208].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[208].filename=L527637_SAP000_SB208_uv.MS
+Observation.DataProducts.Output_Correlated_[208].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[208].location=locus052:/data/L527637/
+Observation.DataProducts.Output_Correlated_[208].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[208].size=29414318080
+Observation.DataProducts.Output_Correlated_[208].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[208].stationSubband=453
+Observation.DataProducts.Output_Correlated_[208].subband=208
+Observation.DataProducts.Output_Correlated_[209].SAP=0
+Observation.DataProducts.Output_Correlated_[209].centralFrequency=188671875.000000
+Observation.DataProducts.Output_Correlated_[209].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[209].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[209].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[209].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[209].filename=L527637_SAP000_SB209_uv.MS
+Observation.DataProducts.Output_Correlated_[209].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[209].location=locus053:/data/L527637/
+Observation.DataProducts.Output_Correlated_[209].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[209].size=29414318080
+Observation.DataProducts.Output_Correlated_[209].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[209].stationSubband=454
+Observation.DataProducts.Output_Correlated_[209].subband=209
+Observation.DataProducts.Output_Correlated_[20].SAP=0
+Observation.DataProducts.Output_Correlated_[20].centralFrequency=151757812.500000
+Observation.DataProducts.Output_Correlated_[20].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[20].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[20].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[20].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[20].filename=L527637_SAP000_SB020_uv.MS
+Observation.DataProducts.Output_Correlated_[20].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[20].location=locus025:/data/L527637/
+Observation.DataProducts.Output_Correlated_[20].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[20].size=29414318080
+Observation.DataProducts.Output_Correlated_[20].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[20].stationSubband=265
+Observation.DataProducts.Output_Correlated_[20].subband=20
+Observation.DataProducts.Output_Correlated_[210].SAP=0
+Observation.DataProducts.Output_Correlated_[210].centralFrequency=188867187.500000
+Observation.DataProducts.Output_Correlated_[210].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[210].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[210].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[210].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[210].filename=L527637_SAP000_SB210_uv.MS
+Observation.DataProducts.Output_Correlated_[210].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[210].location=locus054:/data/L527637/
+Observation.DataProducts.Output_Correlated_[210].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[210].size=29414318080
+Observation.DataProducts.Output_Correlated_[210].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[210].stationSubband=455
+Observation.DataProducts.Output_Correlated_[210].subband=210
+Observation.DataProducts.Output_Correlated_[211].SAP=0
+Observation.DataProducts.Output_Correlated_[211].centralFrequency=189062500.000000
+Observation.DataProducts.Output_Correlated_[211].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[211].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[211].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[211].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[211].filename=L527637_SAP000_SB211_uv.MS
+Observation.DataProducts.Output_Correlated_[211].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[211].location=locus055:/data/L527637/
+Observation.DataProducts.Output_Correlated_[211].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[211].size=29414318080
+Observation.DataProducts.Output_Correlated_[211].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[211].stationSubband=456
+Observation.DataProducts.Output_Correlated_[211].subband=211
+Observation.DataProducts.Output_Correlated_[212].SAP=0
+Observation.DataProducts.Output_Correlated_[212].centralFrequency=189257812.500000
+Observation.DataProducts.Output_Correlated_[212].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[212].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[212].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[212].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[212].filename=L527637_SAP000_SB212_uv.MS
+Observation.DataProducts.Output_Correlated_[212].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[212].location=locus056:/data/L527637/
+Observation.DataProducts.Output_Correlated_[212].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[212].size=29414318080
+Observation.DataProducts.Output_Correlated_[212].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[212].stationSubband=457
+Observation.DataProducts.Output_Correlated_[212].subband=212
+Observation.DataProducts.Output_Correlated_[213].SAP=0
+Observation.DataProducts.Output_Correlated_[213].centralFrequency=189453125.000000
+Observation.DataProducts.Output_Correlated_[213].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[213].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[213].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[213].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[213].filename=L527637_SAP000_SB213_uv.MS
+Observation.DataProducts.Output_Correlated_[213].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[213].location=locus057:/data/L527637/
+Observation.DataProducts.Output_Correlated_[213].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[213].size=29414318080
+Observation.DataProducts.Output_Correlated_[213].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[213].stationSubband=458
+Observation.DataProducts.Output_Correlated_[213].subband=213
+Observation.DataProducts.Output_Correlated_[214].SAP=0
+Observation.DataProducts.Output_Correlated_[214].centralFrequency=189648437.500000
+Observation.DataProducts.Output_Correlated_[214].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[214].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[214].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[214].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[214].filename=L527637_SAP000_SB214_uv.MS
+Observation.DataProducts.Output_Correlated_[214].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[214].location=locus058:/data/L527637/
+Observation.DataProducts.Output_Correlated_[214].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[214].size=29414318080
+Observation.DataProducts.Output_Correlated_[214].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[214].stationSubband=459
+Observation.DataProducts.Output_Correlated_[214].subband=214
+Observation.DataProducts.Output_Correlated_[215].SAP=0
+Observation.DataProducts.Output_Correlated_[215].centralFrequency=189843750.000000
+Observation.DataProducts.Output_Correlated_[215].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[215].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[215].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[215].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[215].filename=L527637_SAP000_SB215_uv.MS
+Observation.DataProducts.Output_Correlated_[215].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[215].location=locus060:/data/L527637/
+Observation.DataProducts.Output_Correlated_[215].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[215].size=29414318080
+Observation.DataProducts.Output_Correlated_[215].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[215].stationSubband=460
+Observation.DataProducts.Output_Correlated_[215].subband=215
+Observation.DataProducts.Output_Correlated_[216].SAP=0
+Observation.DataProducts.Output_Correlated_[216].centralFrequency=190039062.500000
+Observation.DataProducts.Output_Correlated_[216].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[216].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[216].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[216].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[216].filename=L527637_SAP000_SB216_uv.MS
+Observation.DataProducts.Output_Correlated_[216].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[216].location=locus061:/data/L527637/
+Observation.DataProducts.Output_Correlated_[216].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[216].size=29414318080
+Observation.DataProducts.Output_Correlated_[216].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[216].stationSubband=461
+Observation.DataProducts.Output_Correlated_[216].subband=216
+Observation.DataProducts.Output_Correlated_[217].SAP=0
+Observation.DataProducts.Output_Correlated_[217].centralFrequency=190234375.000000
+Observation.DataProducts.Output_Correlated_[217].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[217].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[217].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[217].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[217].filename=L527637_SAP000_SB217_uv.MS
+Observation.DataProducts.Output_Correlated_[217].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[217].location=locus062:/data/L527637/
+Observation.DataProducts.Output_Correlated_[217].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[217].size=29414318080
+Observation.DataProducts.Output_Correlated_[217].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[217].stationSubband=462
+Observation.DataProducts.Output_Correlated_[217].subband=217
+Observation.DataProducts.Output_Correlated_[218].SAP=0
+Observation.DataProducts.Output_Correlated_[218].centralFrequency=190429687.500000
+Observation.DataProducts.Output_Correlated_[218].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[218].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[218].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[218].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[218].filename=L527637_SAP000_SB218_uv.MS
+Observation.DataProducts.Output_Correlated_[218].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[218].location=locus063:/data/L527637/
+Observation.DataProducts.Output_Correlated_[218].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[218].size=29414318080
+Observation.DataProducts.Output_Correlated_[218].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[218].stationSubband=463
+Observation.DataProducts.Output_Correlated_[218].subband=218
+Observation.DataProducts.Output_Correlated_[219].SAP=0
+Observation.DataProducts.Output_Correlated_[219].centralFrequency=190625000.000000
+Observation.DataProducts.Output_Correlated_[219].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[219].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[219].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[219].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[219].filename=L527637_SAP000_SB219_uv.MS
+Observation.DataProducts.Output_Correlated_[219].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[219].location=locus064:/data/L527637/
+Observation.DataProducts.Output_Correlated_[219].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[219].size=29414318080
+Observation.DataProducts.Output_Correlated_[219].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[219].stationSubband=464
+Observation.DataProducts.Output_Correlated_[219].subband=219
+Observation.DataProducts.Output_Correlated_[21].SAP=0
+Observation.DataProducts.Output_Correlated_[21].centralFrequency=151953125.000000
+Observation.DataProducts.Output_Correlated_[21].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[21].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[21].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[21].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[21].filename=L527637_SAP000_SB021_uv.MS
+Observation.DataProducts.Output_Correlated_[21].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[21].location=locus026:/data/L527637/
+Observation.DataProducts.Output_Correlated_[21].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[21].size=29414318080
+Observation.DataProducts.Output_Correlated_[21].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[21].stationSubband=266
+Observation.DataProducts.Output_Correlated_[21].subband=21
+Observation.DataProducts.Output_Correlated_[220].SAP=0
+Observation.DataProducts.Output_Correlated_[220].centralFrequency=190820312.500000
+Observation.DataProducts.Output_Correlated_[220].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[220].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[220].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[220].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[220].filename=L527637_SAP000_SB220_uv.MS
+Observation.DataProducts.Output_Correlated_[220].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[220].location=locus065:/data/L527637/
+Observation.DataProducts.Output_Correlated_[220].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[220].size=29414318080
+Observation.DataProducts.Output_Correlated_[220].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[220].stationSubband=465
+Observation.DataProducts.Output_Correlated_[220].subband=220
+Observation.DataProducts.Output_Correlated_[221].SAP=0
+Observation.DataProducts.Output_Correlated_[221].centralFrequency=191015625.000000
+Observation.DataProducts.Output_Correlated_[221].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[221].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[221].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[221].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[221].filename=L527637_SAP000_SB221_uv.MS
+Observation.DataProducts.Output_Correlated_[221].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[221].location=locus066:/data/L527637/
+Observation.DataProducts.Output_Correlated_[221].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[221].size=29414318080
+Observation.DataProducts.Output_Correlated_[221].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[221].stationSubband=466
+Observation.DataProducts.Output_Correlated_[221].subband=221
+Observation.DataProducts.Output_Correlated_[222].SAP=0
+Observation.DataProducts.Output_Correlated_[222].centralFrequency=191210937.500000
+Observation.DataProducts.Output_Correlated_[222].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[222].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[222].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[222].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[222].filename=L527637_SAP000_SB222_uv.MS
+Observation.DataProducts.Output_Correlated_[222].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[222].location=locus067:/data/L527637/
+Observation.DataProducts.Output_Correlated_[222].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[222].size=29414318080
+Observation.DataProducts.Output_Correlated_[222].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[222].stationSubband=467
+Observation.DataProducts.Output_Correlated_[222].subband=222
+Observation.DataProducts.Output_Correlated_[223].SAP=0
+Observation.DataProducts.Output_Correlated_[223].centralFrequency=191406250.000000
+Observation.DataProducts.Output_Correlated_[223].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[223].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[223].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[223].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[223].filename=L527637_SAP000_SB223_uv.MS
+Observation.DataProducts.Output_Correlated_[223].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[223].location=locus068:/data/L527637/
+Observation.DataProducts.Output_Correlated_[223].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[223].size=29414318080
+Observation.DataProducts.Output_Correlated_[223].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[223].stationSubband=468
+Observation.DataProducts.Output_Correlated_[223].subband=223
+Observation.DataProducts.Output_Correlated_[224].SAP=0
+Observation.DataProducts.Output_Correlated_[224].centralFrequency=191601562.500000
+Observation.DataProducts.Output_Correlated_[224].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[224].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[224].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[224].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[224].filename=L527637_SAP000_SB224_uv.MS
+Observation.DataProducts.Output_Correlated_[224].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[224].location=locus069:/data/L527637/
+Observation.DataProducts.Output_Correlated_[224].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[224].size=29414318080
+Observation.DataProducts.Output_Correlated_[224].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[224].stationSubband=469
+Observation.DataProducts.Output_Correlated_[224].subband=224
+Observation.DataProducts.Output_Correlated_[225].SAP=0
+Observation.DataProducts.Output_Correlated_[225].centralFrequency=191796875.000000
+Observation.DataProducts.Output_Correlated_[225].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[225].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[225].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[225].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[225].filename=L527637_SAP000_SB225_uv.MS
+Observation.DataProducts.Output_Correlated_[225].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[225].location=locus070:/data/L527637/
+Observation.DataProducts.Output_Correlated_[225].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[225].size=29414318080
+Observation.DataProducts.Output_Correlated_[225].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[225].stationSubband=470
+Observation.DataProducts.Output_Correlated_[225].subband=225
+Observation.DataProducts.Output_Correlated_[226].SAP=0
+Observation.DataProducts.Output_Correlated_[226].centralFrequency=191992187.500000
+Observation.DataProducts.Output_Correlated_[226].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[226].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[226].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[226].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[226].filename=L527637_SAP000_SB226_uv.MS
+Observation.DataProducts.Output_Correlated_[226].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[226].location=locus071:/data/L527637/
+Observation.DataProducts.Output_Correlated_[226].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[226].size=29414318080
+Observation.DataProducts.Output_Correlated_[226].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[226].stationSubband=471
+Observation.DataProducts.Output_Correlated_[226].subband=226
+Observation.DataProducts.Output_Correlated_[227].SAP=0
+Observation.DataProducts.Output_Correlated_[227].centralFrequency=192187500.000000
+Observation.DataProducts.Output_Correlated_[227].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[227].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[227].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[227].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[227].filename=L527637_SAP000_SB227_uv.MS
+Observation.DataProducts.Output_Correlated_[227].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[227].location=locus072:/data/L527637/
+Observation.DataProducts.Output_Correlated_[227].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[227].size=29414318080
+Observation.DataProducts.Output_Correlated_[227].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[227].stationSubband=472
+Observation.DataProducts.Output_Correlated_[227].subband=227
+Observation.DataProducts.Output_Correlated_[228].SAP=0
+Observation.DataProducts.Output_Correlated_[228].centralFrequency=192382812.500000
+Observation.DataProducts.Output_Correlated_[228].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[228].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[228].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[228].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[228].filename=L527637_SAP000_SB228_uv.MS
+Observation.DataProducts.Output_Correlated_[228].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[228].location=locus073:/data/L527637/
+Observation.DataProducts.Output_Correlated_[228].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[228].size=29414318080
+Observation.DataProducts.Output_Correlated_[228].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[228].stationSubband=473
+Observation.DataProducts.Output_Correlated_[228].subband=228
+Observation.DataProducts.Output_Correlated_[229].SAP=0
+Observation.DataProducts.Output_Correlated_[229].centralFrequency=192578125.000000
+Observation.DataProducts.Output_Correlated_[229].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[229].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[229].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[229].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[229].filename=L527637_SAP000_SB229_uv.MS
+Observation.DataProducts.Output_Correlated_[229].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[229].location=locus074:/data/L527637/
+Observation.DataProducts.Output_Correlated_[229].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[229].size=29414318080
+Observation.DataProducts.Output_Correlated_[229].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[229].stationSubband=474
+Observation.DataProducts.Output_Correlated_[229].subband=229
+Observation.DataProducts.Output_Correlated_[22].SAP=0
+Observation.DataProducts.Output_Correlated_[22].centralFrequency=152148437.500000
+Observation.DataProducts.Output_Correlated_[22].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[22].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[22].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[22].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[22].filename=L527637_SAP000_SB022_uv.MS
+Observation.DataProducts.Output_Correlated_[22].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[22].location=locus028:/data/L527637/
+Observation.DataProducts.Output_Correlated_[22].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[22].size=29414318080
+Observation.DataProducts.Output_Correlated_[22].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[22].stationSubband=267
+Observation.DataProducts.Output_Correlated_[22].subband=22
+Observation.DataProducts.Output_Correlated_[230].SAP=0
+Observation.DataProducts.Output_Correlated_[230].centralFrequency=192773437.500000
+Observation.DataProducts.Output_Correlated_[230].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[230].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[230].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[230].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[230].filename=L527637_SAP000_SB230_uv.MS
+Observation.DataProducts.Output_Correlated_[230].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[230].location=locus075:/data/L527637/
+Observation.DataProducts.Output_Correlated_[230].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[230].size=29414318080
+Observation.DataProducts.Output_Correlated_[230].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[230].stationSubband=475
+Observation.DataProducts.Output_Correlated_[230].subband=230
+Observation.DataProducts.Output_Correlated_[231].SAP=0
+Observation.DataProducts.Output_Correlated_[231].centralFrequency=192968750.000000
+Observation.DataProducts.Output_Correlated_[231].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[231].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[231].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[231].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[231].filename=L527637_SAP000_SB231_uv.MS
+Observation.DataProducts.Output_Correlated_[231].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[231].location=locus076:/data/L527637/
+Observation.DataProducts.Output_Correlated_[231].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[231].size=29414318080
+Observation.DataProducts.Output_Correlated_[231].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[231].stationSubband=476
+Observation.DataProducts.Output_Correlated_[231].subband=231
+Observation.DataProducts.Output_Correlated_[232].SAP=0
+Observation.DataProducts.Output_Correlated_[232].centralFrequency=193164062.500000
+Observation.DataProducts.Output_Correlated_[232].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[232].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[232].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[232].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[232].filename=L527637_SAP000_SB232_uv.MS
+Observation.DataProducts.Output_Correlated_[232].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[232].location=locus077:/data/L527637/
+Observation.DataProducts.Output_Correlated_[232].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[232].size=29414318080
+Observation.DataProducts.Output_Correlated_[232].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[232].stationSubband=477
+Observation.DataProducts.Output_Correlated_[232].subband=232
+Observation.DataProducts.Output_Correlated_[233].SAP=0
+Observation.DataProducts.Output_Correlated_[233].centralFrequency=193359375.000000
+Observation.DataProducts.Output_Correlated_[233].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[233].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[233].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[233].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[233].filename=L527637_SAP000_SB233_uv.MS
+Observation.DataProducts.Output_Correlated_[233].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[233].location=locus078:/data/L527637/
+Observation.DataProducts.Output_Correlated_[233].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[233].size=29414318080
+Observation.DataProducts.Output_Correlated_[233].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[233].stationSubband=478
+Observation.DataProducts.Output_Correlated_[233].subband=233
+Observation.DataProducts.Output_Correlated_[234].SAP=0
+Observation.DataProducts.Output_Correlated_[234].centralFrequency=193554687.500000
+Observation.DataProducts.Output_Correlated_[234].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[234].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[234].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[234].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[234].filename=L527637_SAP000_SB234_uv.MS
+Observation.DataProducts.Output_Correlated_[234].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[234].location=locus079:/data/L527637/
+Observation.DataProducts.Output_Correlated_[234].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[234].size=29414318080
+Observation.DataProducts.Output_Correlated_[234].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[234].stationSubband=479
+Observation.DataProducts.Output_Correlated_[234].subband=234
+Observation.DataProducts.Output_Correlated_[235].SAP=0
+Observation.DataProducts.Output_Correlated_[235].centralFrequency=193750000.000000
+Observation.DataProducts.Output_Correlated_[235].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[235].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[235].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[235].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[235].filename=L527637_SAP000_SB235_uv.MS
+Observation.DataProducts.Output_Correlated_[235].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[235].location=locus080:/data/L527637/
+Observation.DataProducts.Output_Correlated_[235].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[235].size=29414318080
+Observation.DataProducts.Output_Correlated_[235].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[235].stationSubband=480
+Observation.DataProducts.Output_Correlated_[235].subband=235
+Observation.DataProducts.Output_Correlated_[236].SAP=0
+Observation.DataProducts.Output_Correlated_[236].centralFrequency=193945312.500000
+Observation.DataProducts.Output_Correlated_[236].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[236].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[236].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[236].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[236].filename=L527637_SAP000_SB236_uv.MS
+Observation.DataProducts.Output_Correlated_[236].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[236].location=locus081:/data/L527637/
+Observation.DataProducts.Output_Correlated_[236].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[236].size=29414318080
+Observation.DataProducts.Output_Correlated_[236].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[236].stationSubband=481
+Observation.DataProducts.Output_Correlated_[236].subband=236
+Observation.DataProducts.Output_Correlated_[237].SAP=0
+Observation.DataProducts.Output_Correlated_[237].centralFrequency=194140625.000000
+Observation.DataProducts.Output_Correlated_[237].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[237].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[237].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[237].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[237].filename=L527637_SAP000_SB237_uv.MS
+Observation.DataProducts.Output_Correlated_[237].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[237].location=locus082:/data/L527637/
+Observation.DataProducts.Output_Correlated_[237].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[237].size=29414318080
+Observation.DataProducts.Output_Correlated_[237].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[237].stationSubband=482
+Observation.DataProducts.Output_Correlated_[237].subband=237
+Observation.DataProducts.Output_Correlated_[238].SAP=0
+Observation.DataProducts.Output_Correlated_[238].centralFrequency=194335937.500000
+Observation.DataProducts.Output_Correlated_[238].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[238].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[238].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[238].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[238].filename=L527637_SAP000_SB238_uv.MS
+Observation.DataProducts.Output_Correlated_[238].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[238].location=locus084:/data/L527637/
+Observation.DataProducts.Output_Correlated_[238].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[238].size=29414318080
+Observation.DataProducts.Output_Correlated_[238].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[238].stationSubband=483
+Observation.DataProducts.Output_Correlated_[238].subband=238
+Observation.DataProducts.Output_Correlated_[239].SAP=0
+Observation.DataProducts.Output_Correlated_[239].centralFrequency=194531250.000000
+Observation.DataProducts.Output_Correlated_[239].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[239].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[239].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[239].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[239].filename=L527637_SAP000_SB239_uv.MS
+Observation.DataProducts.Output_Correlated_[239].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[239].location=locus085:/data/L527637/
+Observation.DataProducts.Output_Correlated_[239].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[239].size=29414318080
+Observation.DataProducts.Output_Correlated_[239].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[239].stationSubband=484
+Observation.DataProducts.Output_Correlated_[239].subband=239
+Observation.DataProducts.Output_Correlated_[23].SAP=0
+Observation.DataProducts.Output_Correlated_[23].centralFrequency=152343750.000000
+Observation.DataProducts.Output_Correlated_[23].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[23].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[23].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[23].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[23].filename=L527637_SAP000_SB023_uv.MS
+Observation.DataProducts.Output_Correlated_[23].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[23].location=locus029:/data/L527637/
+Observation.DataProducts.Output_Correlated_[23].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[23].size=29414318080
+Observation.DataProducts.Output_Correlated_[23].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[23].stationSubband=268
+Observation.DataProducts.Output_Correlated_[23].subband=23
+Observation.DataProducts.Output_Correlated_[240].SAP=0
+Observation.DataProducts.Output_Correlated_[240].centralFrequency=194726562.500000
+Observation.DataProducts.Output_Correlated_[240].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[240].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[240].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[240].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[240].filename=L527637_SAP000_SB240_uv.MS
+Observation.DataProducts.Output_Correlated_[240].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[240].location=locus086:/data/L527637/
+Observation.DataProducts.Output_Correlated_[240].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[240].size=29414318080
+Observation.DataProducts.Output_Correlated_[240].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[240].stationSubband=485
+Observation.DataProducts.Output_Correlated_[240].subband=240
+Observation.DataProducts.Output_Correlated_[241].SAP=0
+Observation.DataProducts.Output_Correlated_[241].centralFrequency=194921875.000000
+Observation.DataProducts.Output_Correlated_[241].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[241].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[241].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[241].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[241].filename=L527637_SAP000_SB241_uv.MS
+Observation.DataProducts.Output_Correlated_[241].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[241].location=locus087:/data/L527637/
+Observation.DataProducts.Output_Correlated_[241].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[241].size=29414318080
+Observation.DataProducts.Output_Correlated_[241].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[241].stationSubband=486
+Observation.DataProducts.Output_Correlated_[241].subband=241
+Observation.DataProducts.Output_Correlated_[242].SAP=0
+Observation.DataProducts.Output_Correlated_[242].centralFrequency=195117187.500000
+Observation.DataProducts.Output_Correlated_[242].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[242].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[242].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[242].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[242].filename=L527637_SAP000_SB242_uv.MS
+Observation.DataProducts.Output_Correlated_[242].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[242].location=locus088:/data/L527637/
+Observation.DataProducts.Output_Correlated_[242].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[242].size=29414318080
+Observation.DataProducts.Output_Correlated_[242].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[242].stationSubband=487
+Observation.DataProducts.Output_Correlated_[242].subband=242
+Observation.DataProducts.Output_Correlated_[243].SAP=0
+Observation.DataProducts.Output_Correlated_[243].centralFrequency=195312500.000000
+Observation.DataProducts.Output_Correlated_[243].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[243].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[243].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[243].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[243].filename=L527637_SAP000_SB243_uv.MS
+Observation.DataProducts.Output_Correlated_[243].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[243].location=locus089:/data/L527637/
+Observation.DataProducts.Output_Correlated_[243].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[243].size=29414318080
+Observation.DataProducts.Output_Correlated_[243].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[243].stationSubband=488
+Observation.DataProducts.Output_Correlated_[243].subband=243
+Observation.DataProducts.Output_Correlated_[244].SAP=1
+Observation.DataProducts.Output_Correlated_[244].centralFrequency=147851562.500000
+Observation.DataProducts.Output_Correlated_[244].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[244].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[244].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[244].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[244].filename=L527637_SAP001_SB244_uv.MS
+Observation.DataProducts.Output_Correlated_[244].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[244].location=locus090:/data/L527637/
+Observation.DataProducts.Output_Correlated_[244].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[244].size=29414318080
+Observation.DataProducts.Output_Correlated_[244].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[244].stationSubband=245
+Observation.DataProducts.Output_Correlated_[244].subband=244
+Observation.DataProducts.Output_Correlated_[245].SAP=1
+Observation.DataProducts.Output_Correlated_[245].centralFrequency=148046875.000000
+Observation.DataProducts.Output_Correlated_[245].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[245].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[245].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[245].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[245].filename=L527637_SAP001_SB245_uv.MS
+Observation.DataProducts.Output_Correlated_[245].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[245].location=locus091:/data/L527637/
+Observation.DataProducts.Output_Correlated_[245].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[245].size=29414318080
+Observation.DataProducts.Output_Correlated_[245].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[245].stationSubband=246
+Observation.DataProducts.Output_Correlated_[245].subband=245
+Observation.DataProducts.Output_Correlated_[246].SAP=1
+Observation.DataProducts.Output_Correlated_[246].centralFrequency=148242187.500000
+Observation.DataProducts.Output_Correlated_[246].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[246].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[246].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[246].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[246].filename=L527637_SAP001_SB246_uv.MS
+Observation.DataProducts.Output_Correlated_[246].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[246].location=locus001:/data/L527637/
+Observation.DataProducts.Output_Correlated_[246].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[246].size=29414318080
+Observation.DataProducts.Output_Correlated_[246].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[246].stationSubband=247
+Observation.DataProducts.Output_Correlated_[246].subband=246
+Observation.DataProducts.Output_Correlated_[247].SAP=1
+Observation.DataProducts.Output_Correlated_[247].centralFrequency=148437500.000000
+Observation.DataProducts.Output_Correlated_[247].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[247].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[247].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[247].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[247].filename=L527637_SAP001_SB247_uv.MS
+Observation.DataProducts.Output_Correlated_[247].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[247].location=locus003:/data/L527637/
+Observation.DataProducts.Output_Correlated_[247].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[247].size=29414318080
+Observation.DataProducts.Output_Correlated_[247].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[247].stationSubband=248
+Observation.DataProducts.Output_Correlated_[247].subband=247
+Observation.DataProducts.Output_Correlated_[248].SAP=1
+Observation.DataProducts.Output_Correlated_[248].centralFrequency=148632812.500000
+Observation.DataProducts.Output_Correlated_[248].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[248].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[248].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[248].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[248].filename=L527637_SAP001_SB248_uv.MS
+Observation.DataProducts.Output_Correlated_[248].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[248].location=locus004:/data/L527637/
+Observation.DataProducts.Output_Correlated_[248].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[248].size=29414318080
+Observation.DataProducts.Output_Correlated_[248].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[248].stationSubband=249
+Observation.DataProducts.Output_Correlated_[248].subband=248
+Observation.DataProducts.Output_Correlated_[249].SAP=1
+Observation.DataProducts.Output_Correlated_[249].centralFrequency=148828125.000000
+Observation.DataProducts.Output_Correlated_[249].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[249].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[249].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[249].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[249].filename=L527637_SAP001_SB249_uv.MS
+Observation.DataProducts.Output_Correlated_[249].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[249].location=locus005:/data/L527637/
+Observation.DataProducts.Output_Correlated_[249].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[249].size=29414318080
+Observation.DataProducts.Output_Correlated_[249].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[249].stationSubband=250
+Observation.DataProducts.Output_Correlated_[249].subband=249
+Observation.DataProducts.Output_Correlated_[24].SAP=0
+Observation.DataProducts.Output_Correlated_[24].centralFrequency=152539062.500000
+Observation.DataProducts.Output_Correlated_[24].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[24].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[24].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[24].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[24].filename=L527637_SAP000_SB024_uv.MS
+Observation.DataProducts.Output_Correlated_[24].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[24].location=locus031:/data/L527637/
+Observation.DataProducts.Output_Correlated_[24].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[24].size=29414318080
+Observation.DataProducts.Output_Correlated_[24].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[24].stationSubband=269
+Observation.DataProducts.Output_Correlated_[24].subband=24
+Observation.DataProducts.Output_Correlated_[250].SAP=1
+Observation.DataProducts.Output_Correlated_[250].centralFrequency=149023437.500000
+Observation.DataProducts.Output_Correlated_[250].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[250].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[250].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[250].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[250].filename=L527637_SAP001_SB250_uv.MS
+Observation.DataProducts.Output_Correlated_[250].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[250].location=locus006:/data/L527637/
+Observation.DataProducts.Output_Correlated_[250].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[250].size=29414318080
+Observation.DataProducts.Output_Correlated_[250].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[250].stationSubband=251
+Observation.DataProducts.Output_Correlated_[250].subband=250
+Observation.DataProducts.Output_Correlated_[251].SAP=1
+Observation.DataProducts.Output_Correlated_[251].centralFrequency=149218750.000000
+Observation.DataProducts.Output_Correlated_[251].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[251].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[251].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[251].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[251].filename=L527637_SAP001_SB251_uv.MS
+Observation.DataProducts.Output_Correlated_[251].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[251].location=locus007:/data/L527637/
+Observation.DataProducts.Output_Correlated_[251].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[251].size=29414318080
+Observation.DataProducts.Output_Correlated_[251].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[251].stationSubband=252
+Observation.DataProducts.Output_Correlated_[251].subband=251
+Observation.DataProducts.Output_Correlated_[252].SAP=1
+Observation.DataProducts.Output_Correlated_[252].centralFrequency=149414062.500000
+Observation.DataProducts.Output_Correlated_[252].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[252].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[252].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[252].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[252].filename=L527637_SAP001_SB252_uv.MS
+Observation.DataProducts.Output_Correlated_[252].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[252].location=locus008:/data/L527637/
+Observation.DataProducts.Output_Correlated_[252].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[252].size=29414318080
+Observation.DataProducts.Output_Correlated_[252].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[252].stationSubband=253
+Observation.DataProducts.Output_Correlated_[252].subband=252
+Observation.DataProducts.Output_Correlated_[253].SAP=1
+Observation.DataProducts.Output_Correlated_[253].centralFrequency=149609375.000000
+Observation.DataProducts.Output_Correlated_[253].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[253].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[253].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[253].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[253].filename=L527637_SAP001_SB253_uv.MS
+Observation.DataProducts.Output_Correlated_[253].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[253].location=locus009:/data/L527637/
+Observation.DataProducts.Output_Correlated_[253].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[253].size=29414318080
+Observation.DataProducts.Output_Correlated_[253].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[253].stationSubband=254
+Observation.DataProducts.Output_Correlated_[253].subband=253
+Observation.DataProducts.Output_Correlated_[254].SAP=1
+Observation.DataProducts.Output_Correlated_[254].centralFrequency=149804687.500000
+Observation.DataProducts.Output_Correlated_[254].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[254].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[254].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[254].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[254].filename=L527637_SAP001_SB254_uv.MS
+Observation.DataProducts.Output_Correlated_[254].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[254].location=locus010:/data/L527637/
+Observation.DataProducts.Output_Correlated_[254].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[254].size=29414318080
+Observation.DataProducts.Output_Correlated_[254].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[254].stationSubband=255
+Observation.DataProducts.Output_Correlated_[254].subband=254
+Observation.DataProducts.Output_Correlated_[255].SAP=1
+Observation.DataProducts.Output_Correlated_[255].centralFrequency=150000000.000000
+Observation.DataProducts.Output_Correlated_[255].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[255].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[255].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[255].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[255].filename=L527637_SAP001_SB255_uv.MS
+Observation.DataProducts.Output_Correlated_[255].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[255].location=locus011:/data/L527637/
+Observation.DataProducts.Output_Correlated_[255].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[255].size=29414318080
+Observation.DataProducts.Output_Correlated_[255].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[255].stationSubband=256
+Observation.DataProducts.Output_Correlated_[255].subband=255
+Observation.DataProducts.Output_Correlated_[256].SAP=1
+Observation.DataProducts.Output_Correlated_[256].centralFrequency=150195312.500000
+Observation.DataProducts.Output_Correlated_[256].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[256].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[256].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[256].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[256].filename=L527637_SAP001_SB256_uv.MS
+Observation.DataProducts.Output_Correlated_[256].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[256].location=locus012:/data/L527637/
+Observation.DataProducts.Output_Correlated_[256].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[256].size=29414318080
+Observation.DataProducts.Output_Correlated_[256].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[256].stationSubband=257
+Observation.DataProducts.Output_Correlated_[256].subband=256
+Observation.DataProducts.Output_Correlated_[257].SAP=1
+Observation.DataProducts.Output_Correlated_[257].centralFrequency=150390625.000000
+Observation.DataProducts.Output_Correlated_[257].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[257].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[257].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[257].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[257].filename=L527637_SAP001_SB257_uv.MS
+Observation.DataProducts.Output_Correlated_[257].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[257].location=locus014:/data/L527637/
+Observation.DataProducts.Output_Correlated_[257].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[257].size=29414318080
+Observation.DataProducts.Output_Correlated_[257].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[257].stationSubband=258
+Observation.DataProducts.Output_Correlated_[257].subband=257
+Observation.DataProducts.Output_Correlated_[258].SAP=1
+Observation.DataProducts.Output_Correlated_[258].centralFrequency=150585937.500000
+Observation.DataProducts.Output_Correlated_[258].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[258].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[258].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[258].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[258].filename=L527637_SAP001_SB258_uv.MS
+Observation.DataProducts.Output_Correlated_[258].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[258].location=locus015:/data/L527637/
+Observation.DataProducts.Output_Correlated_[258].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[258].size=29414318080
+Observation.DataProducts.Output_Correlated_[258].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[258].stationSubband=259
+Observation.DataProducts.Output_Correlated_[258].subband=258
+Observation.DataProducts.Output_Correlated_[259].SAP=1
+Observation.DataProducts.Output_Correlated_[259].centralFrequency=150781250.000000
+Observation.DataProducts.Output_Correlated_[259].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[259].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[259].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[259].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[259].filename=L527637_SAP001_SB259_uv.MS
+Observation.DataProducts.Output_Correlated_[259].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[259].location=locus016:/data/L527637/
+Observation.DataProducts.Output_Correlated_[259].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[259].size=29414318080
+Observation.DataProducts.Output_Correlated_[259].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[259].stationSubband=260
+Observation.DataProducts.Output_Correlated_[259].subband=259
+Observation.DataProducts.Output_Correlated_[25].SAP=0
+Observation.DataProducts.Output_Correlated_[25].centralFrequency=152734375.000000
+Observation.DataProducts.Output_Correlated_[25].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[25].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[25].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[25].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[25].filename=L527637_SAP000_SB025_uv.MS
+Observation.DataProducts.Output_Correlated_[25].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[25].location=locus032:/data/L527637/
+Observation.DataProducts.Output_Correlated_[25].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[25].size=29414318080
+Observation.DataProducts.Output_Correlated_[25].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[25].stationSubband=270
+Observation.DataProducts.Output_Correlated_[25].subband=25
+Observation.DataProducts.Output_Correlated_[260].SAP=1
+Observation.DataProducts.Output_Correlated_[260].centralFrequency=150976562.500000
+Observation.DataProducts.Output_Correlated_[260].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[260].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[260].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[260].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[260].filename=L527637_SAP001_SB260_uv.MS
+Observation.DataProducts.Output_Correlated_[260].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[260].location=locus017:/data/L527637/
+Observation.DataProducts.Output_Correlated_[260].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[260].size=29414318080
+Observation.DataProducts.Output_Correlated_[260].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[260].stationSubband=261
+Observation.DataProducts.Output_Correlated_[260].subband=260
+Observation.DataProducts.Output_Correlated_[261].SAP=1
+Observation.DataProducts.Output_Correlated_[261].centralFrequency=151171875.000000
+Observation.DataProducts.Output_Correlated_[261].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[261].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[261].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[261].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[261].filename=L527637_SAP001_SB261_uv.MS
+Observation.DataProducts.Output_Correlated_[261].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[261].location=locus018:/data/L527637/
+Observation.DataProducts.Output_Correlated_[261].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[261].size=29414318080
+Observation.DataProducts.Output_Correlated_[261].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[261].stationSubband=262
+Observation.DataProducts.Output_Correlated_[261].subband=261
+Observation.DataProducts.Output_Correlated_[262].SAP=1
+Observation.DataProducts.Output_Correlated_[262].centralFrequency=151367187.500000
+Observation.DataProducts.Output_Correlated_[262].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[262].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[262].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[262].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[262].filename=L527637_SAP001_SB262_uv.MS
+Observation.DataProducts.Output_Correlated_[262].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[262].location=locus019:/data/L527637/
+Observation.DataProducts.Output_Correlated_[262].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[262].size=29414318080
+Observation.DataProducts.Output_Correlated_[262].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[262].stationSubband=263
+Observation.DataProducts.Output_Correlated_[262].subband=262
+Observation.DataProducts.Output_Correlated_[263].SAP=1
+Observation.DataProducts.Output_Correlated_[263].centralFrequency=151562500.000000
+Observation.DataProducts.Output_Correlated_[263].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[263].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[263].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[263].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[263].filename=L527637_SAP001_SB263_uv.MS
+Observation.DataProducts.Output_Correlated_[263].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[263].location=locus020:/data/L527637/
+Observation.DataProducts.Output_Correlated_[263].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[263].size=29414318080
+Observation.DataProducts.Output_Correlated_[263].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[263].stationSubband=264
+Observation.DataProducts.Output_Correlated_[263].subband=263
+Observation.DataProducts.Output_Correlated_[264].SAP=1
+Observation.DataProducts.Output_Correlated_[264].centralFrequency=151757812.500000
+Observation.DataProducts.Output_Correlated_[264].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[264].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[264].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[264].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[264].filename=L527637_SAP001_SB264_uv.MS
+Observation.DataProducts.Output_Correlated_[264].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[264].location=locus021:/data/L527637/
+Observation.DataProducts.Output_Correlated_[264].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[264].size=29414318080
+Observation.DataProducts.Output_Correlated_[264].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[264].stationSubband=265
+Observation.DataProducts.Output_Correlated_[264].subband=264
+Observation.DataProducts.Output_Correlated_[265].SAP=1
+Observation.DataProducts.Output_Correlated_[265].centralFrequency=151953125.000000
+Observation.DataProducts.Output_Correlated_[265].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[265].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[265].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[265].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[265].filename=L527637_SAP001_SB265_uv.MS
+Observation.DataProducts.Output_Correlated_[265].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[265].location=locus023:/data/L527637/
+Observation.DataProducts.Output_Correlated_[265].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[265].size=29414318080
+Observation.DataProducts.Output_Correlated_[265].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[265].stationSubband=266
+Observation.DataProducts.Output_Correlated_[265].subband=265
+Observation.DataProducts.Output_Correlated_[266].SAP=1
+Observation.DataProducts.Output_Correlated_[266].centralFrequency=152148437.500000
+Observation.DataProducts.Output_Correlated_[266].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[266].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[266].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[266].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[266].filename=L527637_SAP001_SB266_uv.MS
+Observation.DataProducts.Output_Correlated_[266].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[266].location=locus025:/data/L527637/
+Observation.DataProducts.Output_Correlated_[266].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[266].size=29414318080
+Observation.DataProducts.Output_Correlated_[266].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[266].stationSubband=267
+Observation.DataProducts.Output_Correlated_[266].subband=266
+Observation.DataProducts.Output_Correlated_[267].SAP=1
+Observation.DataProducts.Output_Correlated_[267].centralFrequency=152343750.000000
+Observation.DataProducts.Output_Correlated_[267].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[267].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[267].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[267].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[267].filename=L527637_SAP001_SB267_uv.MS
+Observation.DataProducts.Output_Correlated_[267].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[267].location=locus026:/data/L527637/
+Observation.DataProducts.Output_Correlated_[267].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[267].size=29414318080
+Observation.DataProducts.Output_Correlated_[267].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[267].stationSubband=268
+Observation.DataProducts.Output_Correlated_[267].subband=267
+Observation.DataProducts.Output_Correlated_[268].SAP=1
+Observation.DataProducts.Output_Correlated_[268].centralFrequency=152539062.500000
+Observation.DataProducts.Output_Correlated_[268].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[268].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[268].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[268].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[268].filename=L527637_SAP001_SB268_uv.MS
+Observation.DataProducts.Output_Correlated_[268].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[268].location=locus028:/data/L527637/
+Observation.DataProducts.Output_Correlated_[268].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[268].size=29414318080
+Observation.DataProducts.Output_Correlated_[268].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[268].stationSubband=269
+Observation.DataProducts.Output_Correlated_[268].subband=268
+Observation.DataProducts.Output_Correlated_[269].SAP=1
+Observation.DataProducts.Output_Correlated_[269].centralFrequency=152734375.000000
+Observation.DataProducts.Output_Correlated_[269].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[269].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[269].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[269].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[269].filename=L527637_SAP001_SB269_uv.MS
+Observation.DataProducts.Output_Correlated_[269].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[269].location=locus029:/data/L527637/
+Observation.DataProducts.Output_Correlated_[269].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[269].size=29414318080
+Observation.DataProducts.Output_Correlated_[269].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[269].stationSubband=270
+Observation.DataProducts.Output_Correlated_[269].subband=269
+Observation.DataProducts.Output_Correlated_[26].SAP=0
+Observation.DataProducts.Output_Correlated_[26].centralFrequency=152929687.500000
+Observation.DataProducts.Output_Correlated_[26].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[26].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[26].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[26].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[26].filename=L527637_SAP000_SB026_uv.MS
+Observation.DataProducts.Output_Correlated_[26].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[26].location=locus034:/data/L527637/
+Observation.DataProducts.Output_Correlated_[26].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[26].size=29414318080
+Observation.DataProducts.Output_Correlated_[26].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[26].stationSubband=271
+Observation.DataProducts.Output_Correlated_[26].subband=26
+Observation.DataProducts.Output_Correlated_[270].SAP=1
+Observation.DataProducts.Output_Correlated_[270].centralFrequency=152929687.500000
+Observation.DataProducts.Output_Correlated_[270].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[270].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[270].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[270].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[270].filename=L527637_SAP001_SB270_uv.MS
+Observation.DataProducts.Output_Correlated_[270].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[270].location=locus031:/data/L527637/
+Observation.DataProducts.Output_Correlated_[270].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[270].size=29414318080
+Observation.DataProducts.Output_Correlated_[270].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[270].stationSubband=271
+Observation.DataProducts.Output_Correlated_[270].subband=270
+Observation.DataProducts.Output_Correlated_[271].SAP=1
+Observation.DataProducts.Output_Correlated_[271].centralFrequency=153125000.000000
+Observation.DataProducts.Output_Correlated_[271].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[271].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[271].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[271].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[271].filename=L527637_SAP001_SB271_uv.MS
+Observation.DataProducts.Output_Correlated_[271].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[271].location=locus032:/data/L527637/
+Observation.DataProducts.Output_Correlated_[271].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[271].size=29414318080
+Observation.DataProducts.Output_Correlated_[271].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[271].stationSubband=272
+Observation.DataProducts.Output_Correlated_[271].subband=271
+Observation.DataProducts.Output_Correlated_[272].SAP=1
+Observation.DataProducts.Output_Correlated_[272].centralFrequency=153320312.500000
+Observation.DataProducts.Output_Correlated_[272].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[272].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[272].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[272].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[272].filename=L527637_SAP001_SB272_uv.MS
+Observation.DataProducts.Output_Correlated_[272].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[272].location=locus034:/data/L527637/
+Observation.DataProducts.Output_Correlated_[272].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[272].size=29414318080
+Observation.DataProducts.Output_Correlated_[272].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[272].stationSubband=273
+Observation.DataProducts.Output_Correlated_[272].subband=272
+Observation.DataProducts.Output_Correlated_[273].SAP=1
+Observation.DataProducts.Output_Correlated_[273].centralFrequency=153515625.000000
+Observation.DataProducts.Output_Correlated_[273].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[273].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[273].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[273].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[273].filename=L527637_SAP001_SB273_uv.MS
+Observation.DataProducts.Output_Correlated_[273].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[273].location=locus035:/data/L527637/
+Observation.DataProducts.Output_Correlated_[273].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[273].size=29414318080
+Observation.DataProducts.Output_Correlated_[273].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[273].stationSubband=274
+Observation.DataProducts.Output_Correlated_[273].subband=273
+Observation.DataProducts.Output_Correlated_[274].SAP=1
+Observation.DataProducts.Output_Correlated_[274].centralFrequency=153710937.500000
+Observation.DataProducts.Output_Correlated_[274].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[274].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[274].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[274].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[274].filename=L527637_SAP001_SB274_uv.MS
+Observation.DataProducts.Output_Correlated_[274].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[274].location=locus036:/data/L527637/
+Observation.DataProducts.Output_Correlated_[274].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[274].size=29414318080
+Observation.DataProducts.Output_Correlated_[274].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[274].stationSubband=275
+Observation.DataProducts.Output_Correlated_[274].subband=274
+Observation.DataProducts.Output_Correlated_[275].SAP=1
+Observation.DataProducts.Output_Correlated_[275].centralFrequency=153906250.000000
+Observation.DataProducts.Output_Correlated_[275].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[275].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[275].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[275].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[275].filename=L527637_SAP001_SB275_uv.MS
+Observation.DataProducts.Output_Correlated_[275].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[275].location=locus037:/data/L527637/
+Observation.DataProducts.Output_Correlated_[275].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[275].size=29414318080
+Observation.DataProducts.Output_Correlated_[275].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[275].stationSubband=276
+Observation.DataProducts.Output_Correlated_[275].subband=275
+Observation.DataProducts.Output_Correlated_[276].SAP=1
+Observation.DataProducts.Output_Correlated_[276].centralFrequency=154101562.500000
+Observation.DataProducts.Output_Correlated_[276].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[276].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[276].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[276].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[276].filename=L527637_SAP001_SB276_uv.MS
+Observation.DataProducts.Output_Correlated_[276].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[276].location=locus038:/data/L527637/
+Observation.DataProducts.Output_Correlated_[276].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[276].size=29414318080
+Observation.DataProducts.Output_Correlated_[276].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[276].stationSubband=277
+Observation.DataProducts.Output_Correlated_[276].subband=276
+Observation.DataProducts.Output_Correlated_[277].SAP=1
+Observation.DataProducts.Output_Correlated_[277].centralFrequency=154296875.000000
+Observation.DataProducts.Output_Correlated_[277].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[277].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[277].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[277].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[277].filename=L527637_SAP001_SB277_uv.MS
+Observation.DataProducts.Output_Correlated_[277].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[277].location=locus039:/data/L527637/
+Observation.DataProducts.Output_Correlated_[277].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[277].size=29414318080
+Observation.DataProducts.Output_Correlated_[277].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[277].stationSubband=278
+Observation.DataProducts.Output_Correlated_[277].subband=277
+Observation.DataProducts.Output_Correlated_[278].SAP=1
+Observation.DataProducts.Output_Correlated_[278].centralFrequency=154492187.500000
+Observation.DataProducts.Output_Correlated_[278].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[278].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[278].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[278].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[278].filename=L527637_SAP001_SB278_uv.MS
+Observation.DataProducts.Output_Correlated_[278].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[278].location=locus040:/data/L527637/
+Observation.DataProducts.Output_Correlated_[278].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[278].size=29414318080
+Observation.DataProducts.Output_Correlated_[278].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[278].stationSubband=279
+Observation.DataProducts.Output_Correlated_[278].subband=278
+Observation.DataProducts.Output_Correlated_[279].SAP=1
+Observation.DataProducts.Output_Correlated_[279].centralFrequency=154687500.000000
+Observation.DataProducts.Output_Correlated_[279].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[279].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[279].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[279].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[279].filename=L527637_SAP001_SB279_uv.MS
+Observation.DataProducts.Output_Correlated_[279].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[279].location=locus041:/data/L527637/
+Observation.DataProducts.Output_Correlated_[279].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[279].size=29414318080
+Observation.DataProducts.Output_Correlated_[279].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[279].stationSubband=280
+Observation.DataProducts.Output_Correlated_[279].subband=279
+Observation.DataProducts.Output_Correlated_[27].SAP=0
+Observation.DataProducts.Output_Correlated_[27].centralFrequency=153125000.000000
+Observation.DataProducts.Output_Correlated_[27].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[27].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[27].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[27].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[27].filename=L527637_SAP000_SB027_uv.MS
+Observation.DataProducts.Output_Correlated_[27].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[27].location=locus035:/data/L527637/
+Observation.DataProducts.Output_Correlated_[27].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[27].size=29414318080
+Observation.DataProducts.Output_Correlated_[27].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[27].stationSubband=272
+Observation.DataProducts.Output_Correlated_[27].subband=27
+Observation.DataProducts.Output_Correlated_[280].SAP=1
+Observation.DataProducts.Output_Correlated_[280].centralFrequency=154882812.500000
+Observation.DataProducts.Output_Correlated_[280].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[280].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[280].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[280].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[280].filename=L527637_SAP001_SB280_uv.MS
+Observation.DataProducts.Output_Correlated_[280].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[280].location=locus042:/data/L527637/
+Observation.DataProducts.Output_Correlated_[280].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[280].size=29414318080
+Observation.DataProducts.Output_Correlated_[280].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[280].stationSubband=281
+Observation.DataProducts.Output_Correlated_[280].subband=280
+Observation.DataProducts.Output_Correlated_[281].SAP=1
+Observation.DataProducts.Output_Correlated_[281].centralFrequency=155078125.000000
+Observation.DataProducts.Output_Correlated_[281].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[281].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[281].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[281].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[281].filename=L527637_SAP001_SB281_uv.MS
+Observation.DataProducts.Output_Correlated_[281].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[281].location=locus043:/data/L527637/
+Observation.DataProducts.Output_Correlated_[281].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[281].size=29414318080
+Observation.DataProducts.Output_Correlated_[281].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[281].stationSubband=282
+Observation.DataProducts.Output_Correlated_[281].subband=281
+Observation.DataProducts.Output_Correlated_[282].SAP=1
+Observation.DataProducts.Output_Correlated_[282].centralFrequency=155273437.500000
+Observation.DataProducts.Output_Correlated_[282].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[282].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[282].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[282].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[282].filename=L527637_SAP001_SB282_uv.MS
+Observation.DataProducts.Output_Correlated_[282].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[282].location=locus044:/data/L527637/
+Observation.DataProducts.Output_Correlated_[282].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[282].size=29414318080
+Observation.DataProducts.Output_Correlated_[282].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[282].stationSubband=283
+Observation.DataProducts.Output_Correlated_[282].subband=282
+Observation.DataProducts.Output_Correlated_[283].SAP=1
+Observation.DataProducts.Output_Correlated_[283].centralFrequency=155468750.000000
+Observation.DataProducts.Output_Correlated_[283].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[283].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[283].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[283].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[283].filename=L527637_SAP001_SB283_uv.MS
+Observation.DataProducts.Output_Correlated_[283].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[283].location=locus045:/data/L527637/
+Observation.DataProducts.Output_Correlated_[283].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[283].size=29414318080
+Observation.DataProducts.Output_Correlated_[283].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[283].stationSubband=284
+Observation.DataProducts.Output_Correlated_[283].subband=283
+Observation.DataProducts.Output_Correlated_[284].SAP=1
+Observation.DataProducts.Output_Correlated_[284].centralFrequency=155664062.500000
+Observation.DataProducts.Output_Correlated_[284].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[284].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[284].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[284].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[284].filename=L527637_SAP001_SB284_uv.MS
+Observation.DataProducts.Output_Correlated_[284].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[284].location=locus046:/data/L527637/
+Observation.DataProducts.Output_Correlated_[284].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[284].size=29414318080
+Observation.DataProducts.Output_Correlated_[284].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[284].stationSubband=285
+Observation.DataProducts.Output_Correlated_[284].subband=284
+Observation.DataProducts.Output_Correlated_[285].SAP=1
+Observation.DataProducts.Output_Correlated_[285].centralFrequency=155859375.000000
+Observation.DataProducts.Output_Correlated_[285].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[285].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[285].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[285].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[285].filename=L527637_SAP001_SB285_uv.MS
+Observation.DataProducts.Output_Correlated_[285].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[285].location=locus047:/data/L527637/
+Observation.DataProducts.Output_Correlated_[285].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[285].size=29414318080
+Observation.DataProducts.Output_Correlated_[285].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[285].stationSubband=286
+Observation.DataProducts.Output_Correlated_[285].subband=285
+Observation.DataProducts.Output_Correlated_[286].SAP=1
+Observation.DataProducts.Output_Correlated_[286].centralFrequency=156054687.500000
+Observation.DataProducts.Output_Correlated_[286].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[286].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[286].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[286].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[286].filename=L527637_SAP001_SB286_uv.MS
+Observation.DataProducts.Output_Correlated_[286].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[286].location=locus048:/data/L527637/
+Observation.DataProducts.Output_Correlated_[286].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[286].size=29414318080
+Observation.DataProducts.Output_Correlated_[286].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[286].stationSubband=287
+Observation.DataProducts.Output_Correlated_[286].subband=286
+Observation.DataProducts.Output_Correlated_[287].SAP=1
+Observation.DataProducts.Output_Correlated_[287].centralFrequency=156250000.000000
+Observation.DataProducts.Output_Correlated_[287].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[287].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[287].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[287].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[287].filename=L527637_SAP001_SB287_uv.MS
+Observation.DataProducts.Output_Correlated_[287].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[287].location=locus049:/data/L527637/
+Observation.DataProducts.Output_Correlated_[287].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[287].size=29414318080
+Observation.DataProducts.Output_Correlated_[287].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[287].stationSubband=288
+Observation.DataProducts.Output_Correlated_[287].subband=287
+Observation.DataProducts.Output_Correlated_[288].SAP=1
+Observation.DataProducts.Output_Correlated_[288].centralFrequency=156445312.500000
+Observation.DataProducts.Output_Correlated_[288].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[288].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[288].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[288].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[288].filename=L527637_SAP001_SB288_uv.MS
+Observation.DataProducts.Output_Correlated_[288].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[288].location=locus050:/data/L527637/
+Observation.DataProducts.Output_Correlated_[288].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[288].size=29414318080
+Observation.DataProducts.Output_Correlated_[288].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[288].stationSubband=289
+Observation.DataProducts.Output_Correlated_[288].subband=288
+Observation.DataProducts.Output_Correlated_[289].SAP=1
+Observation.DataProducts.Output_Correlated_[289].centralFrequency=156640625.000000
+Observation.DataProducts.Output_Correlated_[289].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[289].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[289].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[289].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[289].filename=L527637_SAP001_SB289_uv.MS
+Observation.DataProducts.Output_Correlated_[289].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[289].location=locus051:/data/L527637/
+Observation.DataProducts.Output_Correlated_[289].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[289].size=29414318080
+Observation.DataProducts.Output_Correlated_[289].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[289].stationSubband=290
+Observation.DataProducts.Output_Correlated_[289].subband=289
+Observation.DataProducts.Output_Correlated_[28].SAP=0
+Observation.DataProducts.Output_Correlated_[28].centralFrequency=153320312.500000
+Observation.DataProducts.Output_Correlated_[28].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[28].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[28].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[28].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[28].filename=L527637_SAP000_SB028_uv.MS
+Observation.DataProducts.Output_Correlated_[28].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[28].location=locus036:/data/L527637/
+Observation.DataProducts.Output_Correlated_[28].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[28].size=29414318080
+Observation.DataProducts.Output_Correlated_[28].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[28].stationSubband=273
+Observation.DataProducts.Output_Correlated_[28].subband=28
+Observation.DataProducts.Output_Correlated_[290].SAP=1
+Observation.DataProducts.Output_Correlated_[290].centralFrequency=156835937.500000
+Observation.DataProducts.Output_Correlated_[290].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[290].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[290].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[290].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[290].filename=L527637_SAP001_SB290_uv.MS
+Observation.DataProducts.Output_Correlated_[290].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[290].location=locus052:/data/L527637/
+Observation.DataProducts.Output_Correlated_[290].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[290].size=29414318080
+Observation.DataProducts.Output_Correlated_[290].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[290].stationSubband=291
+Observation.DataProducts.Output_Correlated_[290].subband=290
+Observation.DataProducts.Output_Correlated_[291].SAP=1
+Observation.DataProducts.Output_Correlated_[291].centralFrequency=157031250.000000
+Observation.DataProducts.Output_Correlated_[291].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[291].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[291].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[291].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[291].filename=L527637_SAP001_SB291_uv.MS
+Observation.DataProducts.Output_Correlated_[291].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[291].location=locus053:/data/L527637/
+Observation.DataProducts.Output_Correlated_[291].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[291].size=29414318080
+Observation.DataProducts.Output_Correlated_[291].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[291].stationSubband=292
+Observation.DataProducts.Output_Correlated_[291].subband=291
+Observation.DataProducts.Output_Correlated_[292].SAP=1
+Observation.DataProducts.Output_Correlated_[292].centralFrequency=157226562.500000
+Observation.DataProducts.Output_Correlated_[292].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[292].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[292].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[292].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[292].filename=L527637_SAP001_SB292_uv.MS
+Observation.DataProducts.Output_Correlated_[292].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[292].location=locus054:/data/L527637/
+Observation.DataProducts.Output_Correlated_[292].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[292].size=29414318080
+Observation.DataProducts.Output_Correlated_[292].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[292].stationSubband=293
+Observation.DataProducts.Output_Correlated_[292].subband=292
+Observation.DataProducts.Output_Correlated_[293].SAP=1
+Observation.DataProducts.Output_Correlated_[293].centralFrequency=157421875.000000
+Observation.DataProducts.Output_Correlated_[293].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[293].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[293].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[293].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[293].filename=L527637_SAP001_SB293_uv.MS
+Observation.DataProducts.Output_Correlated_[293].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[293].location=locus055:/data/L527637/
+Observation.DataProducts.Output_Correlated_[293].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[293].size=29414318080
+Observation.DataProducts.Output_Correlated_[293].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[293].stationSubband=294
+Observation.DataProducts.Output_Correlated_[293].subband=293
+Observation.DataProducts.Output_Correlated_[294].SAP=1
+Observation.DataProducts.Output_Correlated_[294].centralFrequency=157617187.500000
+Observation.DataProducts.Output_Correlated_[294].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[294].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[294].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[294].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[294].filename=L527637_SAP001_SB294_uv.MS
+Observation.DataProducts.Output_Correlated_[294].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[294].location=locus056:/data/L527637/
+Observation.DataProducts.Output_Correlated_[294].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[294].size=29414318080
+Observation.DataProducts.Output_Correlated_[294].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[294].stationSubband=295
+Observation.DataProducts.Output_Correlated_[294].subband=294
+Observation.DataProducts.Output_Correlated_[295].SAP=1
+Observation.DataProducts.Output_Correlated_[295].centralFrequency=157812500.000000
+Observation.DataProducts.Output_Correlated_[295].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[295].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[295].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[295].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[295].filename=L527637_SAP001_SB295_uv.MS
+Observation.DataProducts.Output_Correlated_[295].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[295].location=locus057:/data/L527637/
+Observation.DataProducts.Output_Correlated_[295].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[295].size=29414318080
+Observation.DataProducts.Output_Correlated_[295].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[295].stationSubband=296
+Observation.DataProducts.Output_Correlated_[295].subband=295
+Observation.DataProducts.Output_Correlated_[296].SAP=1
+Observation.DataProducts.Output_Correlated_[296].centralFrequency=158007812.500000
+Observation.DataProducts.Output_Correlated_[296].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[296].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[296].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[296].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[296].filename=L527637_SAP001_SB296_uv.MS
+Observation.DataProducts.Output_Correlated_[296].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[296].location=locus058:/data/L527637/
+Observation.DataProducts.Output_Correlated_[296].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[296].size=29414318080
+Observation.DataProducts.Output_Correlated_[296].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[296].stationSubband=297
+Observation.DataProducts.Output_Correlated_[296].subband=296
+Observation.DataProducts.Output_Correlated_[297].SAP=1
+Observation.DataProducts.Output_Correlated_[297].centralFrequency=158203125.000000
+Observation.DataProducts.Output_Correlated_[297].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[297].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[297].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[297].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[297].filename=L527637_SAP001_SB297_uv.MS
+Observation.DataProducts.Output_Correlated_[297].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[297].location=locus060:/data/L527637/
+Observation.DataProducts.Output_Correlated_[297].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[297].size=29414318080
+Observation.DataProducts.Output_Correlated_[297].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[297].stationSubband=298
+Observation.DataProducts.Output_Correlated_[297].subband=297
+Observation.DataProducts.Output_Correlated_[298].SAP=1
+Observation.DataProducts.Output_Correlated_[298].centralFrequency=158398437.500000
+Observation.DataProducts.Output_Correlated_[298].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[298].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[298].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[298].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[298].filename=L527637_SAP001_SB298_uv.MS
+Observation.DataProducts.Output_Correlated_[298].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[298].location=locus061:/data/L527637/
+Observation.DataProducts.Output_Correlated_[298].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[298].size=29414318080
+Observation.DataProducts.Output_Correlated_[298].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[298].stationSubband=299
+Observation.DataProducts.Output_Correlated_[298].subband=298
+Observation.DataProducts.Output_Correlated_[299].SAP=1
+Observation.DataProducts.Output_Correlated_[299].centralFrequency=158593750.000000
+Observation.DataProducts.Output_Correlated_[299].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[299].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[299].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[299].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[299].filename=L527637_SAP001_SB299_uv.MS
+Observation.DataProducts.Output_Correlated_[299].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[299].location=locus062:/data/L527637/
+Observation.DataProducts.Output_Correlated_[299].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[299].size=29414318080
+Observation.DataProducts.Output_Correlated_[299].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[299].stationSubband=300
+Observation.DataProducts.Output_Correlated_[299].subband=299
+Observation.DataProducts.Output_Correlated_[29].SAP=0
+Observation.DataProducts.Output_Correlated_[29].centralFrequency=153515625.000000
+Observation.DataProducts.Output_Correlated_[29].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[29].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[29].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[29].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[29].filename=L527637_SAP000_SB029_uv.MS
+Observation.DataProducts.Output_Correlated_[29].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[29].location=locus037:/data/L527637/
+Observation.DataProducts.Output_Correlated_[29].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[29].size=29414318080
+Observation.DataProducts.Output_Correlated_[29].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[29].stationSubband=274
+Observation.DataProducts.Output_Correlated_[29].subband=29
+Observation.DataProducts.Output_Correlated_[2].SAP=0
+Observation.DataProducts.Output_Correlated_[2].centralFrequency=148242187.500000
+Observation.DataProducts.Output_Correlated_[2].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[2].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[2].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[2].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[2].filename=L527637_SAP000_SB002_uv.MS
+Observation.DataProducts.Output_Correlated_[2].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[2].location=locus004:/data/L527637/
+Observation.DataProducts.Output_Correlated_[2].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[2].size=29414318080
+Observation.DataProducts.Output_Correlated_[2].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[2].stationSubband=247
+Observation.DataProducts.Output_Correlated_[2].subband=2
+Observation.DataProducts.Output_Correlated_[300].SAP=1
+Observation.DataProducts.Output_Correlated_[300].centralFrequency=158789062.500000
+Observation.DataProducts.Output_Correlated_[300].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[300].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[300].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[300].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[300].filename=L527637_SAP001_SB300_uv.MS
+Observation.DataProducts.Output_Correlated_[300].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[300].location=locus063:/data/L527637/
+Observation.DataProducts.Output_Correlated_[300].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[300].size=29414318080
+Observation.DataProducts.Output_Correlated_[300].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[300].stationSubband=301
+Observation.DataProducts.Output_Correlated_[300].subband=300
+Observation.DataProducts.Output_Correlated_[301].SAP=1
+Observation.DataProducts.Output_Correlated_[301].centralFrequency=158984375.000000
+Observation.DataProducts.Output_Correlated_[301].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[301].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[301].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[301].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[301].filename=L527637_SAP001_SB301_uv.MS
+Observation.DataProducts.Output_Correlated_[301].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[301].location=locus064:/data/L527637/
+Observation.DataProducts.Output_Correlated_[301].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[301].size=29414318080
+Observation.DataProducts.Output_Correlated_[301].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[301].stationSubband=302
+Observation.DataProducts.Output_Correlated_[301].subband=301
+Observation.DataProducts.Output_Correlated_[302].SAP=1
+Observation.DataProducts.Output_Correlated_[302].centralFrequency=159179687.500000
+Observation.DataProducts.Output_Correlated_[302].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[302].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[302].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[302].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[302].filename=L527637_SAP001_SB302_uv.MS
+Observation.DataProducts.Output_Correlated_[302].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[302].location=locus065:/data/L527637/
+Observation.DataProducts.Output_Correlated_[302].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[302].size=29414318080
+Observation.DataProducts.Output_Correlated_[302].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[302].stationSubband=303
+Observation.DataProducts.Output_Correlated_[302].subband=302
+Observation.DataProducts.Output_Correlated_[303].SAP=1
+Observation.DataProducts.Output_Correlated_[303].centralFrequency=159375000.000000
+Observation.DataProducts.Output_Correlated_[303].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[303].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[303].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[303].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[303].filename=L527637_SAP001_SB303_uv.MS
+Observation.DataProducts.Output_Correlated_[303].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[303].location=locus066:/data/L527637/
+Observation.DataProducts.Output_Correlated_[303].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[303].size=29414318080
+Observation.DataProducts.Output_Correlated_[303].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[303].stationSubband=304
+Observation.DataProducts.Output_Correlated_[303].subband=303
+Observation.DataProducts.Output_Correlated_[304].SAP=1
+Observation.DataProducts.Output_Correlated_[304].centralFrequency=159570312.500000
+Observation.DataProducts.Output_Correlated_[304].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[304].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[304].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[304].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[304].filename=L527637_SAP001_SB304_uv.MS
+Observation.DataProducts.Output_Correlated_[304].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[304].location=locus067:/data/L527637/
+Observation.DataProducts.Output_Correlated_[304].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[304].size=29414318080
+Observation.DataProducts.Output_Correlated_[304].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[304].stationSubband=305
+Observation.DataProducts.Output_Correlated_[304].subband=304
+Observation.DataProducts.Output_Correlated_[305].SAP=1
+Observation.DataProducts.Output_Correlated_[305].centralFrequency=159765625.000000
+Observation.DataProducts.Output_Correlated_[305].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[305].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[305].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[305].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[305].filename=L527637_SAP001_SB305_uv.MS
+Observation.DataProducts.Output_Correlated_[305].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[305].location=locus068:/data/L527637/
+Observation.DataProducts.Output_Correlated_[305].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[305].size=29414318080
+Observation.DataProducts.Output_Correlated_[305].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[305].stationSubband=306
+Observation.DataProducts.Output_Correlated_[305].subband=305
+Observation.DataProducts.Output_Correlated_[306].SAP=1
+Observation.DataProducts.Output_Correlated_[306].centralFrequency=159960937.500000
+Observation.DataProducts.Output_Correlated_[306].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[306].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[306].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[306].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[306].filename=L527637_SAP001_SB306_uv.MS
+Observation.DataProducts.Output_Correlated_[306].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[306].location=locus069:/data/L527637/
+Observation.DataProducts.Output_Correlated_[306].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[306].size=29414318080
+Observation.DataProducts.Output_Correlated_[306].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[306].stationSubband=307
+Observation.DataProducts.Output_Correlated_[306].subband=306
+Observation.DataProducts.Output_Correlated_[307].SAP=1
+Observation.DataProducts.Output_Correlated_[307].centralFrequency=160156250.000000
+Observation.DataProducts.Output_Correlated_[307].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[307].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[307].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[307].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[307].filename=L527637_SAP001_SB307_uv.MS
+Observation.DataProducts.Output_Correlated_[307].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[307].location=locus070:/data/L527637/
+Observation.DataProducts.Output_Correlated_[307].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[307].size=29414318080
+Observation.DataProducts.Output_Correlated_[307].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[307].stationSubband=308
+Observation.DataProducts.Output_Correlated_[307].subband=307
+Observation.DataProducts.Output_Correlated_[308].SAP=1
+Observation.DataProducts.Output_Correlated_[308].centralFrequency=160351562.500000
+Observation.DataProducts.Output_Correlated_[308].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[308].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[308].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[308].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[308].filename=L527637_SAP001_SB308_uv.MS
+Observation.DataProducts.Output_Correlated_[308].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[308].location=locus071:/data/L527637/
+Observation.DataProducts.Output_Correlated_[308].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[308].size=29414318080
+Observation.DataProducts.Output_Correlated_[308].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[308].stationSubband=309
+Observation.DataProducts.Output_Correlated_[308].subband=308
+Observation.DataProducts.Output_Correlated_[309].SAP=1
+Observation.DataProducts.Output_Correlated_[309].centralFrequency=160546875.000000
+Observation.DataProducts.Output_Correlated_[309].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[309].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[309].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[309].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[309].filename=L527637_SAP001_SB309_uv.MS
+Observation.DataProducts.Output_Correlated_[309].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[309].location=locus072:/data/L527637/
+Observation.DataProducts.Output_Correlated_[309].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[309].size=29414318080
+Observation.DataProducts.Output_Correlated_[309].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[309].stationSubband=310
+Observation.DataProducts.Output_Correlated_[309].subband=309
+Observation.DataProducts.Output_Correlated_[30].SAP=0
+Observation.DataProducts.Output_Correlated_[30].centralFrequency=153710937.500000
+Observation.DataProducts.Output_Correlated_[30].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[30].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[30].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[30].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[30].filename=L527637_SAP000_SB030_uv.MS
+Observation.DataProducts.Output_Correlated_[30].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[30].location=locus038:/data/L527637/
+Observation.DataProducts.Output_Correlated_[30].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[30].size=29414318080
+Observation.DataProducts.Output_Correlated_[30].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[30].stationSubband=275
+Observation.DataProducts.Output_Correlated_[30].subband=30
+Observation.DataProducts.Output_Correlated_[310].SAP=1
+Observation.DataProducts.Output_Correlated_[310].centralFrequency=160742187.500000
+Observation.DataProducts.Output_Correlated_[310].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[310].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[310].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[310].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[310].filename=L527637_SAP001_SB310_uv.MS
+Observation.DataProducts.Output_Correlated_[310].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[310].location=locus073:/data/L527637/
+Observation.DataProducts.Output_Correlated_[310].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[310].size=29414318080
+Observation.DataProducts.Output_Correlated_[310].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[310].stationSubband=311
+Observation.DataProducts.Output_Correlated_[310].subband=310
+Observation.DataProducts.Output_Correlated_[311].SAP=1
+Observation.DataProducts.Output_Correlated_[311].centralFrequency=160937500.000000
+Observation.DataProducts.Output_Correlated_[311].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[311].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[311].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[311].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[311].filename=L527637_SAP001_SB311_uv.MS
+Observation.DataProducts.Output_Correlated_[311].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[311].location=locus074:/data/L527637/
+Observation.DataProducts.Output_Correlated_[311].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[311].size=29414318080
+Observation.DataProducts.Output_Correlated_[311].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[311].stationSubband=312
+Observation.DataProducts.Output_Correlated_[311].subband=311
+Observation.DataProducts.Output_Correlated_[312].SAP=1
+Observation.DataProducts.Output_Correlated_[312].centralFrequency=161132812.500000
+Observation.DataProducts.Output_Correlated_[312].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[312].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[312].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[312].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[312].filename=L527637_SAP001_SB312_uv.MS
+Observation.DataProducts.Output_Correlated_[312].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[312].location=locus075:/data/L527637/
+Observation.DataProducts.Output_Correlated_[312].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[312].size=29414318080
+Observation.DataProducts.Output_Correlated_[312].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[312].stationSubband=313
+Observation.DataProducts.Output_Correlated_[312].subband=312
+Observation.DataProducts.Output_Correlated_[313].SAP=1
+Observation.DataProducts.Output_Correlated_[313].centralFrequency=161328125.000000
+Observation.DataProducts.Output_Correlated_[313].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[313].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[313].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[313].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[313].filename=L527637_SAP001_SB313_uv.MS
+Observation.DataProducts.Output_Correlated_[313].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[313].location=locus076:/data/L527637/
+Observation.DataProducts.Output_Correlated_[313].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[313].size=29414318080
+Observation.DataProducts.Output_Correlated_[313].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[313].stationSubband=314
+Observation.DataProducts.Output_Correlated_[313].subband=313
+Observation.DataProducts.Output_Correlated_[314].SAP=1
+Observation.DataProducts.Output_Correlated_[314].centralFrequency=161523437.500000
+Observation.DataProducts.Output_Correlated_[314].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[314].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[314].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[314].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[314].filename=L527637_SAP001_SB314_uv.MS
+Observation.DataProducts.Output_Correlated_[314].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[314].location=locus077:/data/L527637/
+Observation.DataProducts.Output_Correlated_[314].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[314].size=29414318080
+Observation.DataProducts.Output_Correlated_[314].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[314].stationSubband=315
+Observation.DataProducts.Output_Correlated_[314].subband=314
+Observation.DataProducts.Output_Correlated_[315].SAP=1
+Observation.DataProducts.Output_Correlated_[315].centralFrequency=161718750.000000
+Observation.DataProducts.Output_Correlated_[315].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[315].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[315].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[315].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[315].filename=L527637_SAP001_SB315_uv.MS
+Observation.DataProducts.Output_Correlated_[315].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[315].location=locus078:/data/L527637/
+Observation.DataProducts.Output_Correlated_[315].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[315].size=29414318080
+Observation.DataProducts.Output_Correlated_[315].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[315].stationSubband=316
+Observation.DataProducts.Output_Correlated_[315].subband=315
+Observation.DataProducts.Output_Correlated_[316].SAP=1
+Observation.DataProducts.Output_Correlated_[316].centralFrequency=161914062.500000
+Observation.DataProducts.Output_Correlated_[316].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[316].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[316].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[316].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[316].filename=L527637_SAP001_SB316_uv.MS
+Observation.DataProducts.Output_Correlated_[316].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[316].location=locus079:/data/L527637/
+Observation.DataProducts.Output_Correlated_[316].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[316].size=29414318080
+Observation.DataProducts.Output_Correlated_[316].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[316].stationSubband=317
+Observation.DataProducts.Output_Correlated_[316].subband=316
+Observation.DataProducts.Output_Correlated_[317].SAP=1
+Observation.DataProducts.Output_Correlated_[317].centralFrequency=162109375.000000
+Observation.DataProducts.Output_Correlated_[317].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[317].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[317].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[317].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[317].filename=L527637_SAP001_SB317_uv.MS
+Observation.DataProducts.Output_Correlated_[317].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[317].location=locus080:/data/L527637/
+Observation.DataProducts.Output_Correlated_[317].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[317].size=29414318080
+Observation.DataProducts.Output_Correlated_[317].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[317].stationSubband=318
+Observation.DataProducts.Output_Correlated_[317].subband=317
+Observation.DataProducts.Output_Correlated_[318].SAP=1
+Observation.DataProducts.Output_Correlated_[318].centralFrequency=162304687.500000
+Observation.DataProducts.Output_Correlated_[318].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[318].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[318].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[318].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[318].filename=L527637_SAP001_SB318_uv.MS
+Observation.DataProducts.Output_Correlated_[318].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[318].location=locus081:/data/L527637/
+Observation.DataProducts.Output_Correlated_[318].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[318].size=29414318080
+Observation.DataProducts.Output_Correlated_[318].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[318].stationSubband=319
+Observation.DataProducts.Output_Correlated_[318].subband=318
+Observation.DataProducts.Output_Correlated_[319].SAP=1
+Observation.DataProducts.Output_Correlated_[319].centralFrequency=162500000.000000
+Observation.DataProducts.Output_Correlated_[319].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[319].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[319].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[319].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[319].filename=L527637_SAP001_SB319_uv.MS
+Observation.DataProducts.Output_Correlated_[319].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[319].location=locus082:/data/L527637/
+Observation.DataProducts.Output_Correlated_[319].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[319].size=29414318080
+Observation.DataProducts.Output_Correlated_[319].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[319].stationSubband=320
+Observation.DataProducts.Output_Correlated_[319].subband=319
+Observation.DataProducts.Output_Correlated_[31].SAP=0
+Observation.DataProducts.Output_Correlated_[31].centralFrequency=153906250.000000
+Observation.DataProducts.Output_Correlated_[31].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[31].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[31].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[31].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[31].filename=L527637_SAP000_SB031_uv.MS
+Observation.DataProducts.Output_Correlated_[31].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[31].location=locus039:/data/L527637/
+Observation.DataProducts.Output_Correlated_[31].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[31].size=29414318080
+Observation.DataProducts.Output_Correlated_[31].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[31].stationSubband=276
+Observation.DataProducts.Output_Correlated_[31].subband=31
+Observation.DataProducts.Output_Correlated_[320].SAP=1
+Observation.DataProducts.Output_Correlated_[320].centralFrequency=162695312.500000
+Observation.DataProducts.Output_Correlated_[320].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[320].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[320].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[320].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[320].filename=L527637_SAP001_SB320_uv.MS
+Observation.DataProducts.Output_Correlated_[320].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[320].location=locus084:/data/L527637/
+Observation.DataProducts.Output_Correlated_[320].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[320].size=29414318080
+Observation.DataProducts.Output_Correlated_[320].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[320].stationSubband=321
+Observation.DataProducts.Output_Correlated_[320].subband=320
+Observation.DataProducts.Output_Correlated_[321].SAP=1
+Observation.DataProducts.Output_Correlated_[321].centralFrequency=162890625.000000
+Observation.DataProducts.Output_Correlated_[321].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[321].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[321].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[321].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[321].filename=L527637_SAP001_SB321_uv.MS
+Observation.DataProducts.Output_Correlated_[321].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[321].location=locus085:/data/L527637/
+Observation.DataProducts.Output_Correlated_[321].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[321].size=29414318080
+Observation.DataProducts.Output_Correlated_[321].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[321].stationSubband=322
+Observation.DataProducts.Output_Correlated_[321].subband=321
+Observation.DataProducts.Output_Correlated_[322].SAP=1
+Observation.DataProducts.Output_Correlated_[322].centralFrequency=163085937.500000
+Observation.DataProducts.Output_Correlated_[322].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[322].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[322].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[322].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[322].filename=L527637_SAP001_SB322_uv.MS
+Observation.DataProducts.Output_Correlated_[322].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[322].location=locus086:/data/L527637/
+Observation.DataProducts.Output_Correlated_[322].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[322].size=29414318080
+Observation.DataProducts.Output_Correlated_[322].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[322].stationSubband=323
+Observation.DataProducts.Output_Correlated_[322].subband=322
+Observation.DataProducts.Output_Correlated_[323].SAP=1
+Observation.DataProducts.Output_Correlated_[323].centralFrequency=163281250.000000
+Observation.DataProducts.Output_Correlated_[323].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[323].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[323].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[323].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[323].filename=L527637_SAP001_SB323_uv.MS
+Observation.DataProducts.Output_Correlated_[323].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[323].location=locus087:/data/L527637/
+Observation.DataProducts.Output_Correlated_[323].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[323].size=29414318080
+Observation.DataProducts.Output_Correlated_[323].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[323].stationSubband=324
+Observation.DataProducts.Output_Correlated_[323].subband=323
+Observation.DataProducts.Output_Correlated_[324].SAP=1
+Observation.DataProducts.Output_Correlated_[324].centralFrequency=163476562.500000
+Observation.DataProducts.Output_Correlated_[324].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[324].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[324].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[324].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[324].filename=L527637_SAP001_SB324_uv.MS
+Observation.DataProducts.Output_Correlated_[324].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[324].location=locus088:/data/L527637/
+Observation.DataProducts.Output_Correlated_[324].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[324].size=29414318080
+Observation.DataProducts.Output_Correlated_[324].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[324].stationSubband=325
+Observation.DataProducts.Output_Correlated_[324].subband=324
+Observation.DataProducts.Output_Correlated_[325].SAP=1
+Observation.DataProducts.Output_Correlated_[325].centralFrequency=163671875.000000
+Observation.DataProducts.Output_Correlated_[325].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[325].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[325].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[325].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[325].filename=L527637_SAP001_SB325_uv.MS
+Observation.DataProducts.Output_Correlated_[325].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[325].location=locus089:/data/L527637/
+Observation.DataProducts.Output_Correlated_[325].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[325].size=29414318080
+Observation.DataProducts.Output_Correlated_[325].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[325].stationSubband=326
+Observation.DataProducts.Output_Correlated_[325].subband=325
+Observation.DataProducts.Output_Correlated_[326].SAP=1
+Observation.DataProducts.Output_Correlated_[326].centralFrequency=163867187.500000
+Observation.DataProducts.Output_Correlated_[326].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[326].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[326].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[326].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[326].filename=L527637_SAP001_SB326_uv.MS
+Observation.DataProducts.Output_Correlated_[326].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[326].location=locus090:/data/L527637/
+Observation.DataProducts.Output_Correlated_[326].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[326].size=29414318080
+Observation.DataProducts.Output_Correlated_[326].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[326].stationSubband=327
+Observation.DataProducts.Output_Correlated_[326].subband=326
+Observation.DataProducts.Output_Correlated_[327].SAP=1
+Observation.DataProducts.Output_Correlated_[327].centralFrequency=164062500.000000
+Observation.DataProducts.Output_Correlated_[327].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[327].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[327].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[327].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[327].filename=L527637_SAP001_SB327_uv.MS
+Observation.DataProducts.Output_Correlated_[327].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[327].location=locus091:/data/L527637/
+Observation.DataProducts.Output_Correlated_[327].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[327].size=29414318080
+Observation.DataProducts.Output_Correlated_[327].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[327].stationSubband=328
+Observation.DataProducts.Output_Correlated_[327].subband=327
+Observation.DataProducts.Output_Correlated_[328].SAP=1
+Observation.DataProducts.Output_Correlated_[328].centralFrequency=164257812.500000
+Observation.DataProducts.Output_Correlated_[328].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[328].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[328].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[328].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[328].filename=L527637_SAP001_SB328_uv.MS
+Observation.DataProducts.Output_Correlated_[328].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[328].location=locus001:/data/L527637/
+Observation.DataProducts.Output_Correlated_[328].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[328].size=29414318080
+Observation.DataProducts.Output_Correlated_[328].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[328].stationSubband=329
+Observation.DataProducts.Output_Correlated_[328].subband=328
+Observation.DataProducts.Output_Correlated_[329].SAP=1
+Observation.DataProducts.Output_Correlated_[329].centralFrequency=164453125.000000
+Observation.DataProducts.Output_Correlated_[329].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[329].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[329].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[329].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[329].filename=L527637_SAP001_SB329_uv.MS
+Observation.DataProducts.Output_Correlated_[329].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[329].location=locus003:/data/L527637/
+Observation.DataProducts.Output_Correlated_[329].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[329].size=29414318080
+Observation.DataProducts.Output_Correlated_[329].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[329].stationSubband=330
+Observation.DataProducts.Output_Correlated_[329].subband=329
+Observation.DataProducts.Output_Correlated_[32].SAP=0
+Observation.DataProducts.Output_Correlated_[32].centralFrequency=154101562.500000
+Observation.DataProducts.Output_Correlated_[32].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[32].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[32].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[32].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[32].filename=L527637_SAP000_SB032_uv.MS
+Observation.DataProducts.Output_Correlated_[32].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[32].location=locus040:/data/L527637/
+Observation.DataProducts.Output_Correlated_[32].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[32].size=29414318080
+Observation.DataProducts.Output_Correlated_[32].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[32].stationSubband=277
+Observation.DataProducts.Output_Correlated_[32].subband=32
+Observation.DataProducts.Output_Correlated_[330].SAP=1
+Observation.DataProducts.Output_Correlated_[330].centralFrequency=164648437.500000
+Observation.DataProducts.Output_Correlated_[330].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[330].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[330].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[330].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[330].filename=L527637_SAP001_SB330_uv.MS
+Observation.DataProducts.Output_Correlated_[330].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[330].location=locus004:/data/L527637/
+Observation.DataProducts.Output_Correlated_[330].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[330].size=29414318080
+Observation.DataProducts.Output_Correlated_[330].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[330].stationSubband=331
+Observation.DataProducts.Output_Correlated_[330].subband=330
+Observation.DataProducts.Output_Correlated_[331].SAP=1
+Observation.DataProducts.Output_Correlated_[331].centralFrequency=164843750.000000
+Observation.DataProducts.Output_Correlated_[331].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[331].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[331].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[331].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[331].filename=L527637_SAP001_SB331_uv.MS
+Observation.DataProducts.Output_Correlated_[331].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[331].location=locus005:/data/L527637/
+Observation.DataProducts.Output_Correlated_[331].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[331].size=29414318080
+Observation.DataProducts.Output_Correlated_[331].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[331].stationSubband=332
+Observation.DataProducts.Output_Correlated_[331].subband=331
+Observation.DataProducts.Output_Correlated_[332].SAP=1
+Observation.DataProducts.Output_Correlated_[332].centralFrequency=165039062.500000
+Observation.DataProducts.Output_Correlated_[332].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[332].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[332].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[332].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[332].filename=L527637_SAP001_SB332_uv.MS
+Observation.DataProducts.Output_Correlated_[332].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[332].location=locus006:/data/L527637/
+Observation.DataProducts.Output_Correlated_[332].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[332].size=29414318080
+Observation.DataProducts.Output_Correlated_[332].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[332].stationSubband=333
+Observation.DataProducts.Output_Correlated_[332].subband=332
+Observation.DataProducts.Output_Correlated_[333].SAP=1
+Observation.DataProducts.Output_Correlated_[333].centralFrequency=165234375.000000
+Observation.DataProducts.Output_Correlated_[333].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[333].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[333].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[333].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[333].filename=L527637_SAP001_SB333_uv.MS
+Observation.DataProducts.Output_Correlated_[333].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[333].location=locus007:/data/L527637/
+Observation.DataProducts.Output_Correlated_[333].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[333].size=29414318080
+Observation.DataProducts.Output_Correlated_[333].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[333].stationSubband=334
+Observation.DataProducts.Output_Correlated_[333].subband=333
+Observation.DataProducts.Output_Correlated_[334].SAP=1
+Observation.DataProducts.Output_Correlated_[334].centralFrequency=165429687.500000
+Observation.DataProducts.Output_Correlated_[334].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[334].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[334].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[334].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[334].filename=L527637_SAP001_SB334_uv.MS
+Observation.DataProducts.Output_Correlated_[334].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[334].location=locus008:/data/L527637/
+Observation.DataProducts.Output_Correlated_[334].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[334].size=29414318080
+Observation.DataProducts.Output_Correlated_[334].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[334].stationSubband=335
+Observation.DataProducts.Output_Correlated_[334].subband=334
+Observation.DataProducts.Output_Correlated_[335].SAP=1
+Observation.DataProducts.Output_Correlated_[335].centralFrequency=165625000.000000
+Observation.DataProducts.Output_Correlated_[335].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[335].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[335].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[335].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[335].filename=L527637_SAP001_SB335_uv.MS
+Observation.DataProducts.Output_Correlated_[335].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[335].location=locus009:/data/L527637/
+Observation.DataProducts.Output_Correlated_[335].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[335].size=29414318080
+Observation.DataProducts.Output_Correlated_[335].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[335].stationSubband=336
+Observation.DataProducts.Output_Correlated_[335].subband=335
+Observation.DataProducts.Output_Correlated_[336].SAP=1
+Observation.DataProducts.Output_Correlated_[336].centralFrequency=165820312.500000
+Observation.DataProducts.Output_Correlated_[336].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[336].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[336].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[336].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[336].filename=L527637_SAP001_SB336_uv.MS
+Observation.DataProducts.Output_Correlated_[336].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[336].location=locus010:/data/L527637/
+Observation.DataProducts.Output_Correlated_[336].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[336].size=29414318080
+Observation.DataProducts.Output_Correlated_[336].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[336].stationSubband=337
+Observation.DataProducts.Output_Correlated_[336].subband=336
+Observation.DataProducts.Output_Correlated_[337].SAP=1
+Observation.DataProducts.Output_Correlated_[337].centralFrequency=166015625.000000
+Observation.DataProducts.Output_Correlated_[337].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[337].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[337].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[337].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[337].filename=L527637_SAP001_SB337_uv.MS
+Observation.DataProducts.Output_Correlated_[337].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[337].location=locus011:/data/L527637/
+Observation.DataProducts.Output_Correlated_[337].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[337].size=29414318080
+Observation.DataProducts.Output_Correlated_[337].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[337].stationSubband=338
+Observation.DataProducts.Output_Correlated_[337].subband=337
+Observation.DataProducts.Output_Correlated_[338].SAP=1
+Observation.DataProducts.Output_Correlated_[338].centralFrequency=166210937.500000
+Observation.DataProducts.Output_Correlated_[338].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[338].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[338].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[338].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[338].filename=L527637_SAP001_SB338_uv.MS
+Observation.DataProducts.Output_Correlated_[338].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[338].location=locus012:/data/L527637/
+Observation.DataProducts.Output_Correlated_[338].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[338].size=29414318080
+Observation.DataProducts.Output_Correlated_[338].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[338].stationSubband=339
+Observation.DataProducts.Output_Correlated_[338].subband=338
+Observation.DataProducts.Output_Correlated_[339].SAP=1
+Observation.DataProducts.Output_Correlated_[339].centralFrequency=166406250.000000
+Observation.DataProducts.Output_Correlated_[339].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[339].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[339].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[339].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[339].filename=L527637_SAP001_SB339_uv.MS
+Observation.DataProducts.Output_Correlated_[339].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[339].location=locus014:/data/L527637/
+Observation.DataProducts.Output_Correlated_[339].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[339].size=29414318080
+Observation.DataProducts.Output_Correlated_[339].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[339].stationSubband=340
+Observation.DataProducts.Output_Correlated_[339].subband=339
+Observation.DataProducts.Output_Correlated_[33].SAP=0
+Observation.DataProducts.Output_Correlated_[33].centralFrequency=154296875.000000
+Observation.DataProducts.Output_Correlated_[33].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[33].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[33].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[33].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[33].filename=L527637_SAP000_SB033_uv.MS
+Observation.DataProducts.Output_Correlated_[33].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[33].location=locus041:/data/L527637/
+Observation.DataProducts.Output_Correlated_[33].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[33].size=29414318080
+Observation.DataProducts.Output_Correlated_[33].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[33].stationSubband=278
+Observation.DataProducts.Output_Correlated_[33].subband=33
+Observation.DataProducts.Output_Correlated_[340].SAP=1
+Observation.DataProducts.Output_Correlated_[340].centralFrequency=166601562.500000
+Observation.DataProducts.Output_Correlated_[340].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[340].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[340].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[340].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[340].filename=L527637_SAP001_SB340_uv.MS
+Observation.DataProducts.Output_Correlated_[340].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[340].location=locus015:/data/L527637/
+Observation.DataProducts.Output_Correlated_[340].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[340].size=29414318080
+Observation.DataProducts.Output_Correlated_[340].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[340].stationSubband=341
+Observation.DataProducts.Output_Correlated_[340].subband=340
+Observation.DataProducts.Output_Correlated_[341].SAP=1
+Observation.DataProducts.Output_Correlated_[341].centralFrequency=166796875.000000
+Observation.DataProducts.Output_Correlated_[341].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[341].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[341].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[341].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[341].filename=L527637_SAP001_SB341_uv.MS
+Observation.DataProducts.Output_Correlated_[341].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[341].location=locus016:/data/L527637/
+Observation.DataProducts.Output_Correlated_[341].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[341].size=29414318080
+Observation.DataProducts.Output_Correlated_[341].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[341].stationSubband=342
+Observation.DataProducts.Output_Correlated_[341].subband=341
+Observation.DataProducts.Output_Correlated_[342].SAP=1
+Observation.DataProducts.Output_Correlated_[342].centralFrequency=166992187.500000
+Observation.DataProducts.Output_Correlated_[342].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[342].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[342].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[342].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[342].filename=L527637_SAP001_SB342_uv.MS
+Observation.DataProducts.Output_Correlated_[342].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[342].location=locus017:/data/L527637/
+Observation.DataProducts.Output_Correlated_[342].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[342].size=29414318080
+Observation.DataProducts.Output_Correlated_[342].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[342].stationSubband=343
+Observation.DataProducts.Output_Correlated_[342].subband=342
+Observation.DataProducts.Output_Correlated_[343].SAP=1
+Observation.DataProducts.Output_Correlated_[343].centralFrequency=167187500.000000
+Observation.DataProducts.Output_Correlated_[343].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[343].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[343].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[343].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[343].filename=L527637_SAP001_SB343_uv.MS
+Observation.DataProducts.Output_Correlated_[343].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[343].location=locus018:/data/L527637/
+Observation.DataProducts.Output_Correlated_[343].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[343].size=29414318080
+Observation.DataProducts.Output_Correlated_[343].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[343].stationSubband=344
+Observation.DataProducts.Output_Correlated_[343].subband=343
+Observation.DataProducts.Output_Correlated_[344].SAP=1
+Observation.DataProducts.Output_Correlated_[344].centralFrequency=167382812.500000
+Observation.DataProducts.Output_Correlated_[344].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[344].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[344].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[344].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[344].filename=L527637_SAP001_SB344_uv.MS
+Observation.DataProducts.Output_Correlated_[344].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[344].location=locus019:/data/L527637/
+Observation.DataProducts.Output_Correlated_[344].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[344].size=29414318080
+Observation.DataProducts.Output_Correlated_[344].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[344].stationSubband=345
+Observation.DataProducts.Output_Correlated_[344].subband=344
+Observation.DataProducts.Output_Correlated_[345].SAP=1
+Observation.DataProducts.Output_Correlated_[345].centralFrequency=167578125.000000
+Observation.DataProducts.Output_Correlated_[345].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[345].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[345].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[345].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[345].filename=L527637_SAP001_SB345_uv.MS
+Observation.DataProducts.Output_Correlated_[345].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[345].location=locus020:/data/L527637/
+Observation.DataProducts.Output_Correlated_[345].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[345].size=29414318080
+Observation.DataProducts.Output_Correlated_[345].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[345].stationSubband=346
+Observation.DataProducts.Output_Correlated_[345].subband=345
+Observation.DataProducts.Output_Correlated_[346].SAP=1
+Observation.DataProducts.Output_Correlated_[346].centralFrequency=167773437.500000
+Observation.DataProducts.Output_Correlated_[346].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[346].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[346].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[346].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[346].filename=L527637_SAP001_SB346_uv.MS
+Observation.DataProducts.Output_Correlated_[346].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[346].location=locus021:/data/L527637/
+Observation.DataProducts.Output_Correlated_[346].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[346].size=29414318080
+Observation.DataProducts.Output_Correlated_[346].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[346].stationSubband=347
+Observation.DataProducts.Output_Correlated_[346].subband=346
+Observation.DataProducts.Output_Correlated_[347].SAP=1
+Observation.DataProducts.Output_Correlated_[347].centralFrequency=167968750.000000
+Observation.DataProducts.Output_Correlated_[347].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[347].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[347].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[347].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[347].filename=L527637_SAP001_SB347_uv.MS
+Observation.DataProducts.Output_Correlated_[347].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[347].location=locus023:/data/L527637/
+Observation.DataProducts.Output_Correlated_[347].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[347].size=29414318080
+Observation.DataProducts.Output_Correlated_[347].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[347].stationSubband=348
+Observation.DataProducts.Output_Correlated_[347].subband=347
+Observation.DataProducts.Output_Correlated_[348].SAP=1
+Observation.DataProducts.Output_Correlated_[348].centralFrequency=168164062.500000
+Observation.DataProducts.Output_Correlated_[348].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[348].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[348].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[348].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[348].filename=L527637_SAP001_SB348_uv.MS
+Observation.DataProducts.Output_Correlated_[348].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[348].location=locus025:/data/L527637/
+Observation.DataProducts.Output_Correlated_[348].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[348].size=29414318080
+Observation.DataProducts.Output_Correlated_[348].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[348].stationSubband=349
+Observation.DataProducts.Output_Correlated_[348].subband=348
+Observation.DataProducts.Output_Correlated_[349].SAP=1
+Observation.DataProducts.Output_Correlated_[349].centralFrequency=168359375.000000
+Observation.DataProducts.Output_Correlated_[349].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[349].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[349].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[349].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[349].filename=L527637_SAP001_SB349_uv.MS
+Observation.DataProducts.Output_Correlated_[349].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[349].location=locus026:/data/L527637/
+Observation.DataProducts.Output_Correlated_[349].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[349].size=29414318080
+Observation.DataProducts.Output_Correlated_[349].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[349].stationSubband=350
+Observation.DataProducts.Output_Correlated_[349].subband=349
+Observation.DataProducts.Output_Correlated_[34].SAP=0
+Observation.DataProducts.Output_Correlated_[34].centralFrequency=154492187.500000
+Observation.DataProducts.Output_Correlated_[34].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[34].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[34].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[34].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[34].filename=L527637_SAP000_SB034_uv.MS
+Observation.DataProducts.Output_Correlated_[34].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[34].location=locus042:/data/L527637/
+Observation.DataProducts.Output_Correlated_[34].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[34].size=29414318080
+Observation.DataProducts.Output_Correlated_[34].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[34].stationSubband=279
+Observation.DataProducts.Output_Correlated_[34].subband=34
+Observation.DataProducts.Output_Correlated_[350].SAP=1
+Observation.DataProducts.Output_Correlated_[350].centralFrequency=168554687.500000
+Observation.DataProducts.Output_Correlated_[350].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[350].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[350].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[350].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[350].filename=L527637_SAP001_SB350_uv.MS
+Observation.DataProducts.Output_Correlated_[350].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[350].location=locus028:/data/L527637/
+Observation.DataProducts.Output_Correlated_[350].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[350].size=29414318080
+Observation.DataProducts.Output_Correlated_[350].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[350].stationSubband=351
+Observation.DataProducts.Output_Correlated_[350].subband=350
+Observation.DataProducts.Output_Correlated_[351].SAP=1
+Observation.DataProducts.Output_Correlated_[351].centralFrequency=168750000.000000
+Observation.DataProducts.Output_Correlated_[351].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[351].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[351].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[351].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[351].filename=L527637_SAP001_SB351_uv.MS
+Observation.DataProducts.Output_Correlated_[351].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[351].location=locus029:/data/L527637/
+Observation.DataProducts.Output_Correlated_[351].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[351].size=29414318080
+Observation.DataProducts.Output_Correlated_[351].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[351].stationSubband=352
+Observation.DataProducts.Output_Correlated_[351].subband=351
+Observation.DataProducts.Output_Correlated_[352].SAP=1
+Observation.DataProducts.Output_Correlated_[352].centralFrequency=168945312.500000
+Observation.DataProducts.Output_Correlated_[352].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[352].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[352].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[352].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[352].filename=L527637_SAP001_SB352_uv.MS
+Observation.DataProducts.Output_Correlated_[352].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[352].location=locus031:/data/L527637/
+Observation.DataProducts.Output_Correlated_[352].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[352].size=29414318080
+Observation.DataProducts.Output_Correlated_[352].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[352].stationSubband=353
+Observation.DataProducts.Output_Correlated_[352].subband=352
+Observation.DataProducts.Output_Correlated_[353].SAP=1
+Observation.DataProducts.Output_Correlated_[353].centralFrequency=169140625.000000
+Observation.DataProducts.Output_Correlated_[353].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[353].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[353].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[353].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[353].filename=L527637_SAP001_SB353_uv.MS
+Observation.DataProducts.Output_Correlated_[353].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[353].location=locus032:/data/L527637/
+Observation.DataProducts.Output_Correlated_[353].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[353].size=29414318080
+Observation.DataProducts.Output_Correlated_[353].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[353].stationSubband=354
+Observation.DataProducts.Output_Correlated_[353].subband=353
+Observation.DataProducts.Output_Correlated_[354].SAP=1
+Observation.DataProducts.Output_Correlated_[354].centralFrequency=169335937.500000
+Observation.DataProducts.Output_Correlated_[354].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[354].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[354].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[354].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[354].filename=L527637_SAP001_SB354_uv.MS
+Observation.DataProducts.Output_Correlated_[354].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[354].location=locus034:/data/L527637/
+Observation.DataProducts.Output_Correlated_[354].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[354].size=29414318080
+Observation.DataProducts.Output_Correlated_[354].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[354].stationSubband=355
+Observation.DataProducts.Output_Correlated_[354].subband=354
+Observation.DataProducts.Output_Correlated_[355].SAP=1
+Observation.DataProducts.Output_Correlated_[355].centralFrequency=169531250.000000
+Observation.DataProducts.Output_Correlated_[355].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[355].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[355].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[355].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[355].filename=L527637_SAP001_SB355_uv.MS
+Observation.DataProducts.Output_Correlated_[355].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[355].location=locus035:/data/L527637/
+Observation.DataProducts.Output_Correlated_[355].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[355].size=29414318080
+Observation.DataProducts.Output_Correlated_[355].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[355].stationSubband=356
+Observation.DataProducts.Output_Correlated_[355].subband=355
+Observation.DataProducts.Output_Correlated_[356].SAP=1
+Observation.DataProducts.Output_Correlated_[356].centralFrequency=169726562.500000
+Observation.DataProducts.Output_Correlated_[356].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[356].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[356].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[356].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[356].filename=L527637_SAP001_SB356_uv.MS
+Observation.DataProducts.Output_Correlated_[356].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[356].location=locus036:/data/L527637/
+Observation.DataProducts.Output_Correlated_[356].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[356].size=29414318080
+Observation.DataProducts.Output_Correlated_[356].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[356].stationSubband=357
+Observation.DataProducts.Output_Correlated_[356].subband=356
+Observation.DataProducts.Output_Correlated_[357].SAP=1
+Observation.DataProducts.Output_Correlated_[357].centralFrequency=169921875.000000
+Observation.DataProducts.Output_Correlated_[357].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[357].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[357].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[357].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[357].filename=L527637_SAP001_SB357_uv.MS
+Observation.DataProducts.Output_Correlated_[357].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[357].location=locus037:/data/L527637/
+Observation.DataProducts.Output_Correlated_[357].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[357].size=29414318080
+Observation.DataProducts.Output_Correlated_[357].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[357].stationSubband=358
+Observation.DataProducts.Output_Correlated_[357].subband=357
+Observation.DataProducts.Output_Correlated_[358].SAP=1
+Observation.DataProducts.Output_Correlated_[358].centralFrequency=170117187.500000
+Observation.DataProducts.Output_Correlated_[358].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[358].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[358].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[358].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[358].filename=L527637_SAP001_SB358_uv.MS
+Observation.DataProducts.Output_Correlated_[358].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[358].location=locus038:/data/L527637/
+Observation.DataProducts.Output_Correlated_[358].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[358].size=29414318080
+Observation.DataProducts.Output_Correlated_[358].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[358].stationSubband=359
+Observation.DataProducts.Output_Correlated_[358].subband=358
+Observation.DataProducts.Output_Correlated_[359].SAP=1
+Observation.DataProducts.Output_Correlated_[359].centralFrequency=170312500.000000
+Observation.DataProducts.Output_Correlated_[359].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[359].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[359].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[359].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[359].filename=L527637_SAP001_SB359_uv.MS
+Observation.DataProducts.Output_Correlated_[359].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[359].location=locus039:/data/L527637/
+Observation.DataProducts.Output_Correlated_[359].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[359].size=29414318080
+Observation.DataProducts.Output_Correlated_[359].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[359].stationSubband=360
+Observation.DataProducts.Output_Correlated_[359].subband=359
+Observation.DataProducts.Output_Correlated_[35].SAP=0
+Observation.DataProducts.Output_Correlated_[35].centralFrequency=154687500.000000
+Observation.DataProducts.Output_Correlated_[35].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[35].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[35].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[35].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[35].filename=L527637_SAP000_SB035_uv.MS
+Observation.DataProducts.Output_Correlated_[35].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[35].location=locus043:/data/L527637/
+Observation.DataProducts.Output_Correlated_[35].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[35].size=29414318080
+Observation.DataProducts.Output_Correlated_[35].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[35].stationSubband=280
+Observation.DataProducts.Output_Correlated_[35].subband=35
+Observation.DataProducts.Output_Correlated_[360].SAP=1
+Observation.DataProducts.Output_Correlated_[360].centralFrequency=170507812.500000
+Observation.DataProducts.Output_Correlated_[360].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[360].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[360].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[360].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[360].filename=L527637_SAP001_SB360_uv.MS
+Observation.DataProducts.Output_Correlated_[360].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[360].location=locus040:/data/L527637/
+Observation.DataProducts.Output_Correlated_[360].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[360].size=29414318080
+Observation.DataProducts.Output_Correlated_[360].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[360].stationSubband=361
+Observation.DataProducts.Output_Correlated_[360].subband=360
+Observation.DataProducts.Output_Correlated_[361].SAP=1
+Observation.DataProducts.Output_Correlated_[361].centralFrequency=170703125.000000
+Observation.DataProducts.Output_Correlated_[361].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[361].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[361].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[361].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[361].filename=L527637_SAP001_SB361_uv.MS
+Observation.DataProducts.Output_Correlated_[361].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[361].location=locus041:/data/L527637/
+Observation.DataProducts.Output_Correlated_[361].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[361].size=29414318080
+Observation.DataProducts.Output_Correlated_[361].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[361].stationSubband=362
+Observation.DataProducts.Output_Correlated_[361].subband=361
+Observation.DataProducts.Output_Correlated_[362].SAP=1
+Observation.DataProducts.Output_Correlated_[362].centralFrequency=170898437.500000
+Observation.DataProducts.Output_Correlated_[362].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[362].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[362].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[362].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[362].filename=L527637_SAP001_SB362_uv.MS
+Observation.DataProducts.Output_Correlated_[362].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[362].location=locus042:/data/L527637/
+Observation.DataProducts.Output_Correlated_[362].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[362].size=29414318080
+Observation.DataProducts.Output_Correlated_[362].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[362].stationSubband=363
+Observation.DataProducts.Output_Correlated_[362].subband=362
+Observation.DataProducts.Output_Correlated_[363].SAP=1
+Observation.DataProducts.Output_Correlated_[363].centralFrequency=171093750.000000
+Observation.DataProducts.Output_Correlated_[363].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[363].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[363].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[363].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[363].filename=L527637_SAP001_SB363_uv.MS
+Observation.DataProducts.Output_Correlated_[363].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[363].location=locus043:/data/L527637/
+Observation.DataProducts.Output_Correlated_[363].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[363].size=29414318080
+Observation.DataProducts.Output_Correlated_[363].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[363].stationSubband=364
+Observation.DataProducts.Output_Correlated_[363].subband=363
+Observation.DataProducts.Output_Correlated_[364].SAP=1
+Observation.DataProducts.Output_Correlated_[364].centralFrequency=171289062.500000
+Observation.DataProducts.Output_Correlated_[364].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[364].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[364].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[364].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[364].filename=L527637_SAP001_SB364_uv.MS
+Observation.DataProducts.Output_Correlated_[364].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[364].location=locus044:/data/L527637/
+Observation.DataProducts.Output_Correlated_[364].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[364].size=29414318080
+Observation.DataProducts.Output_Correlated_[364].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[364].stationSubband=365
+Observation.DataProducts.Output_Correlated_[364].subband=364
+Observation.DataProducts.Output_Correlated_[365].SAP=1
+Observation.DataProducts.Output_Correlated_[365].centralFrequency=171484375.000000
+Observation.DataProducts.Output_Correlated_[365].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[365].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[365].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[365].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[365].filename=L527637_SAP001_SB365_uv.MS
+Observation.DataProducts.Output_Correlated_[365].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[365].location=locus045:/data/L527637/
+Observation.DataProducts.Output_Correlated_[365].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[365].size=29414318080
+Observation.DataProducts.Output_Correlated_[365].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[365].stationSubband=366
+Observation.DataProducts.Output_Correlated_[365].subband=365
+Observation.DataProducts.Output_Correlated_[366].SAP=1
+Observation.DataProducts.Output_Correlated_[366].centralFrequency=171679687.500000
+Observation.DataProducts.Output_Correlated_[366].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[366].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[366].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[366].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[366].filename=L527637_SAP001_SB366_uv.MS
+Observation.DataProducts.Output_Correlated_[366].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[366].location=locus046:/data/L527637/
+Observation.DataProducts.Output_Correlated_[366].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[366].size=29414318080
+Observation.DataProducts.Output_Correlated_[366].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[366].stationSubband=367
+Observation.DataProducts.Output_Correlated_[366].subband=366
+Observation.DataProducts.Output_Correlated_[367].SAP=1
+Observation.DataProducts.Output_Correlated_[367].centralFrequency=171875000.000000
+Observation.DataProducts.Output_Correlated_[367].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[367].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[367].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[367].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[367].filename=L527637_SAP001_SB367_uv.MS
+Observation.DataProducts.Output_Correlated_[367].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[367].location=locus047:/data/L527637/
+Observation.DataProducts.Output_Correlated_[367].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[367].size=29414318080
+Observation.DataProducts.Output_Correlated_[367].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[367].stationSubband=368
+Observation.DataProducts.Output_Correlated_[367].subband=367
+Observation.DataProducts.Output_Correlated_[368].SAP=1
+Observation.DataProducts.Output_Correlated_[368].centralFrequency=172070312.500000
+Observation.DataProducts.Output_Correlated_[368].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[368].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[368].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[368].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[368].filename=L527637_SAP001_SB368_uv.MS
+Observation.DataProducts.Output_Correlated_[368].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[368].location=locus048:/data/L527637/
+Observation.DataProducts.Output_Correlated_[368].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[368].size=29414318080
+Observation.DataProducts.Output_Correlated_[368].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[368].stationSubband=369
+Observation.DataProducts.Output_Correlated_[368].subband=368
+Observation.DataProducts.Output_Correlated_[369].SAP=1
+Observation.DataProducts.Output_Correlated_[369].centralFrequency=172265625.000000
+Observation.DataProducts.Output_Correlated_[369].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[369].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[369].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[369].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[369].filename=L527637_SAP001_SB369_uv.MS
+Observation.DataProducts.Output_Correlated_[369].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[369].location=locus049:/data/L527637/
+Observation.DataProducts.Output_Correlated_[369].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[369].size=29414318080
+Observation.DataProducts.Output_Correlated_[369].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[369].stationSubband=370
+Observation.DataProducts.Output_Correlated_[369].subband=369
+Observation.DataProducts.Output_Correlated_[36].SAP=0
+Observation.DataProducts.Output_Correlated_[36].centralFrequency=154882812.500000
+Observation.DataProducts.Output_Correlated_[36].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[36].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[36].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[36].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[36].filename=L527637_SAP000_SB036_uv.MS
+Observation.DataProducts.Output_Correlated_[36].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[36].location=locus044:/data/L527637/
+Observation.DataProducts.Output_Correlated_[36].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[36].size=29414318080
+Observation.DataProducts.Output_Correlated_[36].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[36].stationSubband=281
+Observation.DataProducts.Output_Correlated_[36].subband=36
+Observation.DataProducts.Output_Correlated_[370].SAP=1
+Observation.DataProducts.Output_Correlated_[370].centralFrequency=172460937.500000
+Observation.DataProducts.Output_Correlated_[370].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[370].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[370].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[370].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[370].filename=L527637_SAP001_SB370_uv.MS
+Observation.DataProducts.Output_Correlated_[370].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[370].location=locus050:/data/L527637/
+Observation.DataProducts.Output_Correlated_[370].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[370].size=29414318080
+Observation.DataProducts.Output_Correlated_[370].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[370].stationSubband=371
+Observation.DataProducts.Output_Correlated_[370].subband=370
+Observation.DataProducts.Output_Correlated_[371].SAP=1
+Observation.DataProducts.Output_Correlated_[371].centralFrequency=172656250.000000
+Observation.DataProducts.Output_Correlated_[371].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[371].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[371].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[371].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[371].filename=L527637_SAP001_SB371_uv.MS
+Observation.DataProducts.Output_Correlated_[371].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[371].location=locus051:/data/L527637/
+Observation.DataProducts.Output_Correlated_[371].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[371].size=29414318080
+Observation.DataProducts.Output_Correlated_[371].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[371].stationSubband=372
+Observation.DataProducts.Output_Correlated_[371].subband=371
+Observation.DataProducts.Output_Correlated_[372].SAP=1
+Observation.DataProducts.Output_Correlated_[372].centralFrequency=172851562.500000
+Observation.DataProducts.Output_Correlated_[372].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[372].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[372].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[372].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[372].filename=L527637_SAP001_SB372_uv.MS
+Observation.DataProducts.Output_Correlated_[372].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[372].location=locus052:/data/L527637/
+Observation.DataProducts.Output_Correlated_[372].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[372].size=29414318080
+Observation.DataProducts.Output_Correlated_[372].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[372].stationSubband=373
+Observation.DataProducts.Output_Correlated_[372].subband=372
+Observation.DataProducts.Output_Correlated_[373].SAP=1
+Observation.DataProducts.Output_Correlated_[373].centralFrequency=173046875.000000
+Observation.DataProducts.Output_Correlated_[373].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[373].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[373].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[373].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[373].filename=L527637_SAP001_SB373_uv.MS
+Observation.DataProducts.Output_Correlated_[373].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[373].location=locus053:/data/L527637/
+Observation.DataProducts.Output_Correlated_[373].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[373].size=29414318080
+Observation.DataProducts.Output_Correlated_[373].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[373].stationSubband=374
+Observation.DataProducts.Output_Correlated_[373].subband=373
+Observation.DataProducts.Output_Correlated_[374].SAP=1
+Observation.DataProducts.Output_Correlated_[374].centralFrequency=173242187.500000
+Observation.DataProducts.Output_Correlated_[374].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[374].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[374].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[374].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[374].filename=L527637_SAP001_SB374_uv.MS
+Observation.DataProducts.Output_Correlated_[374].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[374].location=locus054:/data/L527637/
+Observation.DataProducts.Output_Correlated_[374].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[374].size=29414318080
+Observation.DataProducts.Output_Correlated_[374].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[374].stationSubband=375
+Observation.DataProducts.Output_Correlated_[374].subband=374
+Observation.DataProducts.Output_Correlated_[375].SAP=1
+Observation.DataProducts.Output_Correlated_[375].centralFrequency=173437500.000000
+Observation.DataProducts.Output_Correlated_[375].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[375].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[375].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[375].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[375].filename=L527637_SAP001_SB375_uv.MS
+Observation.DataProducts.Output_Correlated_[375].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[375].location=locus055:/data/L527637/
+Observation.DataProducts.Output_Correlated_[375].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[375].size=29414318080
+Observation.DataProducts.Output_Correlated_[375].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[375].stationSubband=376
+Observation.DataProducts.Output_Correlated_[375].subband=375
+Observation.DataProducts.Output_Correlated_[376].SAP=1
+Observation.DataProducts.Output_Correlated_[376].centralFrequency=173632812.500000
+Observation.DataProducts.Output_Correlated_[376].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[376].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[376].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[376].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[376].filename=L527637_SAP001_SB376_uv.MS
+Observation.DataProducts.Output_Correlated_[376].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[376].location=locus056:/data/L527637/
+Observation.DataProducts.Output_Correlated_[376].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[376].size=29414318080
+Observation.DataProducts.Output_Correlated_[376].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[376].stationSubband=377
+Observation.DataProducts.Output_Correlated_[376].subband=376
+Observation.DataProducts.Output_Correlated_[377].SAP=1
+Observation.DataProducts.Output_Correlated_[377].centralFrequency=173828125.000000
+Observation.DataProducts.Output_Correlated_[377].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[377].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[377].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[377].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[377].filename=L527637_SAP001_SB377_uv.MS
+Observation.DataProducts.Output_Correlated_[377].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[377].location=locus057:/data/L527637/
+Observation.DataProducts.Output_Correlated_[377].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[377].size=29414318080
+Observation.DataProducts.Output_Correlated_[377].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[377].stationSubband=378
+Observation.DataProducts.Output_Correlated_[377].subband=377
+Observation.DataProducts.Output_Correlated_[378].SAP=1
+Observation.DataProducts.Output_Correlated_[378].centralFrequency=174023437.500000
+Observation.DataProducts.Output_Correlated_[378].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[378].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[378].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[378].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[378].filename=L527637_SAP001_SB378_uv.MS
+Observation.DataProducts.Output_Correlated_[378].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[378].location=locus058:/data/L527637/
+Observation.DataProducts.Output_Correlated_[378].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[378].size=29414318080
+Observation.DataProducts.Output_Correlated_[378].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[378].stationSubband=379
+Observation.DataProducts.Output_Correlated_[378].subband=378
+Observation.DataProducts.Output_Correlated_[379].SAP=1
+Observation.DataProducts.Output_Correlated_[379].centralFrequency=174218750.000000
+Observation.DataProducts.Output_Correlated_[379].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[379].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[379].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[379].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[379].filename=L527637_SAP001_SB379_uv.MS
+Observation.DataProducts.Output_Correlated_[379].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[379].location=locus060:/data/L527637/
+Observation.DataProducts.Output_Correlated_[379].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[379].size=29414318080
+Observation.DataProducts.Output_Correlated_[379].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[379].stationSubband=380
+Observation.DataProducts.Output_Correlated_[379].subband=379
+Observation.DataProducts.Output_Correlated_[37].SAP=0
+Observation.DataProducts.Output_Correlated_[37].centralFrequency=155078125.000000
+Observation.DataProducts.Output_Correlated_[37].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[37].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[37].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[37].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[37].filename=L527637_SAP000_SB037_uv.MS
+Observation.DataProducts.Output_Correlated_[37].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[37].location=locus045:/data/L527637/
+Observation.DataProducts.Output_Correlated_[37].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[37].size=29414318080
+Observation.DataProducts.Output_Correlated_[37].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[37].stationSubband=282
+Observation.DataProducts.Output_Correlated_[37].subband=37
+Observation.DataProducts.Output_Correlated_[380].SAP=1
+Observation.DataProducts.Output_Correlated_[380].centralFrequency=174414062.500000
+Observation.DataProducts.Output_Correlated_[380].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[380].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[380].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[380].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[380].filename=L527637_SAP001_SB380_uv.MS
+Observation.DataProducts.Output_Correlated_[380].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[380].location=locus061:/data/L527637/
+Observation.DataProducts.Output_Correlated_[380].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[380].size=29414318080
+Observation.DataProducts.Output_Correlated_[380].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[380].stationSubband=381
+Observation.DataProducts.Output_Correlated_[380].subband=380
+Observation.DataProducts.Output_Correlated_[381].SAP=1
+Observation.DataProducts.Output_Correlated_[381].centralFrequency=174609375.000000
+Observation.DataProducts.Output_Correlated_[381].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[381].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[381].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[381].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[381].filename=L527637_SAP001_SB381_uv.MS
+Observation.DataProducts.Output_Correlated_[381].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[381].location=locus062:/data/L527637/
+Observation.DataProducts.Output_Correlated_[381].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[381].size=29414318080
+Observation.DataProducts.Output_Correlated_[381].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[381].stationSubband=382
+Observation.DataProducts.Output_Correlated_[381].subband=381
+Observation.DataProducts.Output_Correlated_[382].SAP=1
+Observation.DataProducts.Output_Correlated_[382].centralFrequency=174804687.500000
+Observation.DataProducts.Output_Correlated_[382].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[382].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[382].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[382].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[382].filename=L527637_SAP001_SB382_uv.MS
+Observation.DataProducts.Output_Correlated_[382].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[382].location=locus063:/data/L527637/
+Observation.DataProducts.Output_Correlated_[382].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[382].size=29414318080
+Observation.DataProducts.Output_Correlated_[382].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[382].stationSubband=383
+Observation.DataProducts.Output_Correlated_[382].subband=382
+Observation.DataProducts.Output_Correlated_[383].SAP=1
+Observation.DataProducts.Output_Correlated_[383].centralFrequency=175000000.000000
+Observation.DataProducts.Output_Correlated_[383].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[383].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[383].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[383].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[383].filename=L527637_SAP001_SB383_uv.MS
+Observation.DataProducts.Output_Correlated_[383].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[383].location=locus064:/data/L527637/
+Observation.DataProducts.Output_Correlated_[383].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[383].size=29414318080
+Observation.DataProducts.Output_Correlated_[383].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[383].stationSubband=384
+Observation.DataProducts.Output_Correlated_[383].subband=383
+Observation.DataProducts.Output_Correlated_[384].SAP=1
+Observation.DataProducts.Output_Correlated_[384].centralFrequency=175195312.500000
+Observation.DataProducts.Output_Correlated_[384].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[384].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[384].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[384].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[384].filename=L527637_SAP001_SB384_uv.MS
+Observation.DataProducts.Output_Correlated_[384].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[384].location=locus065:/data/L527637/
+Observation.DataProducts.Output_Correlated_[384].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[384].size=29414318080
+Observation.DataProducts.Output_Correlated_[384].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[384].stationSubband=385
+Observation.DataProducts.Output_Correlated_[384].subband=384
+Observation.DataProducts.Output_Correlated_[385].SAP=1
+Observation.DataProducts.Output_Correlated_[385].centralFrequency=175390625.000000
+Observation.DataProducts.Output_Correlated_[385].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[385].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[385].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[385].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[385].filename=L527637_SAP001_SB385_uv.MS
+Observation.DataProducts.Output_Correlated_[385].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[385].location=locus066:/data/L527637/
+Observation.DataProducts.Output_Correlated_[385].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[385].size=29414318080
+Observation.DataProducts.Output_Correlated_[385].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[385].stationSubband=386
+Observation.DataProducts.Output_Correlated_[385].subband=385
+Observation.DataProducts.Output_Correlated_[386].SAP=1
+Observation.DataProducts.Output_Correlated_[386].centralFrequency=175585937.500000
+Observation.DataProducts.Output_Correlated_[386].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[386].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[386].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[386].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[386].filename=L527637_SAP001_SB386_uv.MS
+Observation.DataProducts.Output_Correlated_[386].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[386].location=locus067:/data/L527637/
+Observation.DataProducts.Output_Correlated_[386].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[386].size=29414318080
+Observation.DataProducts.Output_Correlated_[386].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[386].stationSubband=387
+Observation.DataProducts.Output_Correlated_[386].subband=386
+Observation.DataProducts.Output_Correlated_[387].SAP=1
+Observation.DataProducts.Output_Correlated_[387].centralFrequency=175781250.000000
+Observation.DataProducts.Output_Correlated_[387].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[387].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[387].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[387].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[387].filename=L527637_SAP001_SB387_uv.MS
+Observation.DataProducts.Output_Correlated_[387].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[387].location=locus068:/data/L527637/
+Observation.DataProducts.Output_Correlated_[387].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[387].size=29414318080
+Observation.DataProducts.Output_Correlated_[387].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[387].stationSubband=388
+Observation.DataProducts.Output_Correlated_[387].subband=387
+Observation.DataProducts.Output_Correlated_[388].SAP=1
+Observation.DataProducts.Output_Correlated_[388].centralFrequency=175976562.500000
+Observation.DataProducts.Output_Correlated_[388].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[388].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[388].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[388].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[388].filename=L527637_SAP001_SB388_uv.MS
+Observation.DataProducts.Output_Correlated_[388].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[388].location=locus069:/data/L527637/
+Observation.DataProducts.Output_Correlated_[388].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[388].size=29414318080
+Observation.DataProducts.Output_Correlated_[388].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[388].stationSubband=389
+Observation.DataProducts.Output_Correlated_[388].subband=388
+Observation.DataProducts.Output_Correlated_[389].SAP=1
+Observation.DataProducts.Output_Correlated_[389].centralFrequency=176171875.000000
+Observation.DataProducts.Output_Correlated_[389].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[389].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[389].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[389].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[389].filename=L527637_SAP001_SB389_uv.MS
+Observation.DataProducts.Output_Correlated_[389].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[389].location=locus070:/data/L527637/
+Observation.DataProducts.Output_Correlated_[389].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[389].size=29414318080
+Observation.DataProducts.Output_Correlated_[389].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[389].stationSubband=390
+Observation.DataProducts.Output_Correlated_[389].subband=389
+Observation.DataProducts.Output_Correlated_[38].SAP=0
+Observation.DataProducts.Output_Correlated_[38].centralFrequency=155273437.500000
+Observation.DataProducts.Output_Correlated_[38].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[38].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[38].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[38].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[38].filename=L527637_SAP000_SB038_uv.MS
+Observation.DataProducts.Output_Correlated_[38].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[38].location=locus046:/data/L527637/
+Observation.DataProducts.Output_Correlated_[38].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[38].size=29414318080
+Observation.DataProducts.Output_Correlated_[38].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[38].stationSubband=283
+Observation.DataProducts.Output_Correlated_[38].subband=38
+Observation.DataProducts.Output_Correlated_[390].SAP=1
+Observation.DataProducts.Output_Correlated_[390].centralFrequency=176367187.500000
+Observation.DataProducts.Output_Correlated_[390].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[390].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[390].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[390].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[390].filename=L527637_SAP001_SB390_uv.MS
+Observation.DataProducts.Output_Correlated_[390].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[390].location=locus071:/data/L527637/
+Observation.DataProducts.Output_Correlated_[390].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[390].size=29414318080
+Observation.DataProducts.Output_Correlated_[390].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[390].stationSubband=391
+Observation.DataProducts.Output_Correlated_[390].subband=390
+Observation.DataProducts.Output_Correlated_[391].SAP=1
+Observation.DataProducts.Output_Correlated_[391].centralFrequency=176562500.000000
+Observation.DataProducts.Output_Correlated_[391].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[391].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[391].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[391].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[391].filename=L527637_SAP001_SB391_uv.MS
+Observation.DataProducts.Output_Correlated_[391].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[391].location=locus072:/data/L527637/
+Observation.DataProducts.Output_Correlated_[391].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[391].size=29414318080
+Observation.DataProducts.Output_Correlated_[391].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[391].stationSubband=392
+Observation.DataProducts.Output_Correlated_[391].subband=391
+Observation.DataProducts.Output_Correlated_[392].SAP=1
+Observation.DataProducts.Output_Correlated_[392].centralFrequency=176757812.500000
+Observation.DataProducts.Output_Correlated_[392].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[392].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[392].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[392].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[392].filename=L527637_SAP001_SB392_uv.MS
+Observation.DataProducts.Output_Correlated_[392].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[392].location=locus073:/data/L527637/
+Observation.DataProducts.Output_Correlated_[392].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[392].size=29414318080
+Observation.DataProducts.Output_Correlated_[392].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[392].stationSubband=393
+Observation.DataProducts.Output_Correlated_[392].subband=392
+Observation.DataProducts.Output_Correlated_[393].SAP=1
+Observation.DataProducts.Output_Correlated_[393].centralFrequency=176953125.000000
+Observation.DataProducts.Output_Correlated_[393].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[393].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[393].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[393].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[393].filename=L527637_SAP001_SB393_uv.MS
+Observation.DataProducts.Output_Correlated_[393].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[393].location=locus074:/data/L527637/
+Observation.DataProducts.Output_Correlated_[393].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[393].size=29414318080
+Observation.DataProducts.Output_Correlated_[393].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[393].stationSubband=394
+Observation.DataProducts.Output_Correlated_[393].subband=393
+Observation.DataProducts.Output_Correlated_[394].SAP=1
+Observation.DataProducts.Output_Correlated_[394].centralFrequency=177148437.500000
+Observation.DataProducts.Output_Correlated_[394].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[394].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[394].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[394].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[394].filename=L527637_SAP001_SB394_uv.MS
+Observation.DataProducts.Output_Correlated_[394].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[394].location=locus075:/data/L527637/
+Observation.DataProducts.Output_Correlated_[394].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[394].size=29414318080
+Observation.DataProducts.Output_Correlated_[394].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[394].stationSubband=395
+Observation.DataProducts.Output_Correlated_[394].subband=394
+Observation.DataProducts.Output_Correlated_[395].SAP=1
+Observation.DataProducts.Output_Correlated_[395].centralFrequency=177343750.000000
+Observation.DataProducts.Output_Correlated_[395].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[395].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[395].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[395].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[395].filename=L527637_SAP001_SB395_uv.MS
+Observation.DataProducts.Output_Correlated_[395].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[395].location=locus076:/data/L527637/
+Observation.DataProducts.Output_Correlated_[395].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[395].size=29414318080
+Observation.DataProducts.Output_Correlated_[395].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[395].stationSubband=396
+Observation.DataProducts.Output_Correlated_[395].subband=395
+Observation.DataProducts.Output_Correlated_[396].SAP=1
+Observation.DataProducts.Output_Correlated_[396].centralFrequency=177539062.500000
+Observation.DataProducts.Output_Correlated_[396].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[396].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[396].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[396].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[396].filename=L527637_SAP001_SB396_uv.MS
+Observation.DataProducts.Output_Correlated_[396].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[396].location=locus077:/data/L527637/
+Observation.DataProducts.Output_Correlated_[396].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[396].size=29414318080
+Observation.DataProducts.Output_Correlated_[396].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[396].stationSubband=397
+Observation.DataProducts.Output_Correlated_[396].subband=396
+Observation.DataProducts.Output_Correlated_[397].SAP=1
+Observation.DataProducts.Output_Correlated_[397].centralFrequency=177734375.000000
+Observation.DataProducts.Output_Correlated_[397].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[397].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[397].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[397].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[397].filename=L527637_SAP001_SB397_uv.MS
+Observation.DataProducts.Output_Correlated_[397].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[397].location=locus078:/data/L527637/
+Observation.DataProducts.Output_Correlated_[397].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[397].size=29414318080
+Observation.DataProducts.Output_Correlated_[397].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[397].stationSubband=398
+Observation.DataProducts.Output_Correlated_[397].subband=397
+Observation.DataProducts.Output_Correlated_[398].SAP=1
+Observation.DataProducts.Output_Correlated_[398].centralFrequency=177929687.500000
+Observation.DataProducts.Output_Correlated_[398].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[398].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[398].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[398].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[398].filename=L527637_SAP001_SB398_uv.MS
+Observation.DataProducts.Output_Correlated_[398].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[398].location=locus079:/data/L527637/
+Observation.DataProducts.Output_Correlated_[398].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[398].size=29414318080
+Observation.DataProducts.Output_Correlated_[398].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[398].stationSubband=399
+Observation.DataProducts.Output_Correlated_[398].subband=398
+Observation.DataProducts.Output_Correlated_[399].SAP=1
+Observation.DataProducts.Output_Correlated_[399].centralFrequency=178125000.000000
+Observation.DataProducts.Output_Correlated_[399].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[399].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[399].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[399].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[399].filename=L527637_SAP001_SB399_uv.MS
+Observation.DataProducts.Output_Correlated_[399].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[399].location=locus080:/data/L527637/
+Observation.DataProducts.Output_Correlated_[399].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[399].size=29414318080
+Observation.DataProducts.Output_Correlated_[399].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[399].stationSubband=400
+Observation.DataProducts.Output_Correlated_[399].subband=399
+Observation.DataProducts.Output_Correlated_[39].SAP=0
+Observation.DataProducts.Output_Correlated_[39].centralFrequency=155468750.000000
+Observation.DataProducts.Output_Correlated_[39].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[39].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[39].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[39].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[39].filename=L527637_SAP000_SB039_uv.MS
+Observation.DataProducts.Output_Correlated_[39].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[39].location=locus047:/data/L527637/
+Observation.DataProducts.Output_Correlated_[39].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[39].size=29414318080
+Observation.DataProducts.Output_Correlated_[39].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[39].stationSubband=284
+Observation.DataProducts.Output_Correlated_[39].subband=39
+Observation.DataProducts.Output_Correlated_[3].SAP=0
+Observation.DataProducts.Output_Correlated_[3].centralFrequency=148437500.000000
+Observation.DataProducts.Output_Correlated_[3].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[3].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[3].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[3].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[3].filename=L527637_SAP000_SB003_uv.MS
+Observation.DataProducts.Output_Correlated_[3].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[3].location=locus005:/data/L527637/
+Observation.DataProducts.Output_Correlated_[3].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[3].size=29414318080
+Observation.DataProducts.Output_Correlated_[3].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[3].stationSubband=248
+Observation.DataProducts.Output_Correlated_[3].subband=3
+Observation.DataProducts.Output_Correlated_[400].SAP=1
+Observation.DataProducts.Output_Correlated_[400].centralFrequency=178320312.500000
+Observation.DataProducts.Output_Correlated_[400].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[400].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[400].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[400].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[400].filename=L527637_SAP001_SB400_uv.MS
+Observation.DataProducts.Output_Correlated_[400].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[400].location=locus081:/data/L527637/
+Observation.DataProducts.Output_Correlated_[400].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[400].size=29414318080
+Observation.DataProducts.Output_Correlated_[400].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[400].stationSubband=401
+Observation.DataProducts.Output_Correlated_[400].subband=400
+Observation.DataProducts.Output_Correlated_[401].SAP=1
+Observation.DataProducts.Output_Correlated_[401].centralFrequency=178515625.000000
+Observation.DataProducts.Output_Correlated_[401].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[401].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[401].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[401].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[401].filename=L527637_SAP001_SB401_uv.MS
+Observation.DataProducts.Output_Correlated_[401].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[401].location=locus082:/data/L527637/
+Observation.DataProducts.Output_Correlated_[401].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[401].size=29414318080
+Observation.DataProducts.Output_Correlated_[401].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[401].stationSubband=402
+Observation.DataProducts.Output_Correlated_[401].subband=401
+Observation.DataProducts.Output_Correlated_[402].SAP=1
+Observation.DataProducts.Output_Correlated_[402].centralFrequency=178710937.500000
+Observation.DataProducts.Output_Correlated_[402].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[402].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[402].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[402].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[402].filename=L527637_SAP001_SB402_uv.MS
+Observation.DataProducts.Output_Correlated_[402].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[402].location=locus084:/data/L527637/
+Observation.DataProducts.Output_Correlated_[402].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[402].size=29414318080
+Observation.DataProducts.Output_Correlated_[402].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[402].stationSubband=403
+Observation.DataProducts.Output_Correlated_[402].subband=402
+Observation.DataProducts.Output_Correlated_[403].SAP=1
+Observation.DataProducts.Output_Correlated_[403].centralFrequency=178906250.000000
+Observation.DataProducts.Output_Correlated_[403].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[403].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[403].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[403].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[403].filename=L527637_SAP001_SB403_uv.MS
+Observation.DataProducts.Output_Correlated_[403].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[403].location=locus085:/data/L527637/
+Observation.DataProducts.Output_Correlated_[403].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[403].size=29414318080
+Observation.DataProducts.Output_Correlated_[403].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[403].stationSubband=404
+Observation.DataProducts.Output_Correlated_[403].subband=403
+Observation.DataProducts.Output_Correlated_[404].SAP=1
+Observation.DataProducts.Output_Correlated_[404].centralFrequency=179101562.500000
+Observation.DataProducts.Output_Correlated_[404].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[404].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[404].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[404].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[404].filename=L527637_SAP001_SB404_uv.MS
+Observation.DataProducts.Output_Correlated_[404].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[404].location=locus086:/data/L527637/
+Observation.DataProducts.Output_Correlated_[404].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[404].size=29414318080
+Observation.DataProducts.Output_Correlated_[404].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[404].stationSubband=405
+Observation.DataProducts.Output_Correlated_[404].subband=404
+Observation.DataProducts.Output_Correlated_[405].SAP=1
+Observation.DataProducts.Output_Correlated_[405].centralFrequency=179296875.000000
+Observation.DataProducts.Output_Correlated_[405].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[405].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[405].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[405].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[405].filename=L527637_SAP001_SB405_uv.MS
+Observation.DataProducts.Output_Correlated_[405].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[405].location=locus087:/data/L527637/
+Observation.DataProducts.Output_Correlated_[405].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[405].size=29414318080
+Observation.DataProducts.Output_Correlated_[405].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[405].stationSubband=406
+Observation.DataProducts.Output_Correlated_[405].subband=405
+Observation.DataProducts.Output_Correlated_[406].SAP=1
+Observation.DataProducts.Output_Correlated_[406].centralFrequency=179492187.500000
+Observation.DataProducts.Output_Correlated_[406].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[406].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[406].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[406].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[406].filename=L527637_SAP001_SB406_uv.MS
+Observation.DataProducts.Output_Correlated_[406].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[406].location=locus088:/data/L527637/
+Observation.DataProducts.Output_Correlated_[406].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[406].size=29414318080
+Observation.DataProducts.Output_Correlated_[406].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[406].stationSubband=407
+Observation.DataProducts.Output_Correlated_[406].subband=406
+Observation.DataProducts.Output_Correlated_[407].SAP=1
+Observation.DataProducts.Output_Correlated_[407].centralFrequency=179687500.000000
+Observation.DataProducts.Output_Correlated_[407].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[407].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[407].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[407].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[407].filename=L527637_SAP001_SB407_uv.MS
+Observation.DataProducts.Output_Correlated_[407].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[407].location=locus089:/data/L527637/
+Observation.DataProducts.Output_Correlated_[407].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[407].size=29414318080
+Observation.DataProducts.Output_Correlated_[407].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[407].stationSubband=408
+Observation.DataProducts.Output_Correlated_[407].subband=407
+Observation.DataProducts.Output_Correlated_[408].SAP=1
+Observation.DataProducts.Output_Correlated_[408].centralFrequency=179882812.500000
+Observation.DataProducts.Output_Correlated_[408].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[408].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[408].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[408].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[408].filename=L527637_SAP001_SB408_uv.MS
+Observation.DataProducts.Output_Correlated_[408].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[408].location=locus090:/data/L527637/
+Observation.DataProducts.Output_Correlated_[408].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[408].size=29414318080
+Observation.DataProducts.Output_Correlated_[408].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[408].stationSubband=409
+Observation.DataProducts.Output_Correlated_[408].subband=408
+Observation.DataProducts.Output_Correlated_[409].SAP=1
+Observation.DataProducts.Output_Correlated_[409].centralFrequency=180078125.000000
+Observation.DataProducts.Output_Correlated_[409].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[409].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[409].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[409].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[409].filename=L527637_SAP001_SB409_uv.MS
+Observation.DataProducts.Output_Correlated_[409].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[409].location=locus091:/data/L527637/
+Observation.DataProducts.Output_Correlated_[409].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[409].size=29414318080
+Observation.DataProducts.Output_Correlated_[409].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[409].stationSubband=410
+Observation.DataProducts.Output_Correlated_[409].subband=409
+Observation.DataProducts.Output_Correlated_[40].SAP=0
+Observation.DataProducts.Output_Correlated_[40].centralFrequency=155664062.500000
+Observation.DataProducts.Output_Correlated_[40].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[40].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[40].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[40].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[40].filename=L527637_SAP000_SB040_uv.MS
+Observation.DataProducts.Output_Correlated_[40].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[40].location=locus048:/data/L527637/
+Observation.DataProducts.Output_Correlated_[40].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[40].size=29414318080
+Observation.DataProducts.Output_Correlated_[40].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[40].stationSubband=285
+Observation.DataProducts.Output_Correlated_[40].subband=40
+Observation.DataProducts.Output_Correlated_[410].SAP=1
+Observation.DataProducts.Output_Correlated_[410].centralFrequency=180273437.500000
+Observation.DataProducts.Output_Correlated_[410].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[410].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[410].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[410].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[410].filename=L527637_SAP001_SB410_uv.MS
+Observation.DataProducts.Output_Correlated_[410].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[410].location=locus001:/data/L527637/
+Observation.DataProducts.Output_Correlated_[410].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[410].size=29414318080
+Observation.DataProducts.Output_Correlated_[410].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[410].stationSubband=411
+Observation.DataProducts.Output_Correlated_[410].subband=410
+Observation.DataProducts.Output_Correlated_[411].SAP=1
+Observation.DataProducts.Output_Correlated_[411].centralFrequency=180468750.000000
+Observation.DataProducts.Output_Correlated_[411].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[411].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[411].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[411].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[411].filename=L527637_SAP001_SB411_uv.MS
+Observation.DataProducts.Output_Correlated_[411].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[411].location=locus003:/data/L527637/
+Observation.DataProducts.Output_Correlated_[411].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[411].size=29414318080
+Observation.DataProducts.Output_Correlated_[411].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[411].stationSubband=412
+Observation.DataProducts.Output_Correlated_[411].subband=411
+Observation.DataProducts.Output_Correlated_[412].SAP=1
+Observation.DataProducts.Output_Correlated_[412].centralFrequency=180664062.500000
+Observation.DataProducts.Output_Correlated_[412].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[412].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[412].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[412].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[412].filename=L527637_SAP001_SB412_uv.MS
+Observation.DataProducts.Output_Correlated_[412].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[412].location=locus004:/data/L527637/
+Observation.DataProducts.Output_Correlated_[412].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[412].size=29414318080
+Observation.DataProducts.Output_Correlated_[412].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[412].stationSubband=413
+Observation.DataProducts.Output_Correlated_[412].subband=412
+Observation.DataProducts.Output_Correlated_[413].SAP=1
+Observation.DataProducts.Output_Correlated_[413].centralFrequency=180859375.000000
+Observation.DataProducts.Output_Correlated_[413].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[413].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[413].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[413].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[413].filename=L527637_SAP001_SB413_uv.MS
+Observation.DataProducts.Output_Correlated_[413].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[413].location=locus005:/data/L527637/
+Observation.DataProducts.Output_Correlated_[413].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[413].size=29414318080
+Observation.DataProducts.Output_Correlated_[413].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[413].stationSubband=414
+Observation.DataProducts.Output_Correlated_[413].subband=413
+Observation.DataProducts.Output_Correlated_[414].SAP=1
+Observation.DataProducts.Output_Correlated_[414].centralFrequency=181054687.500000
+Observation.DataProducts.Output_Correlated_[414].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[414].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[414].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[414].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[414].filename=L527637_SAP001_SB414_uv.MS
+Observation.DataProducts.Output_Correlated_[414].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[414].location=locus006:/data/L527637/
+Observation.DataProducts.Output_Correlated_[414].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[414].size=29414318080
+Observation.DataProducts.Output_Correlated_[414].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[414].stationSubband=415
+Observation.DataProducts.Output_Correlated_[414].subband=414
+Observation.DataProducts.Output_Correlated_[415].SAP=1
+Observation.DataProducts.Output_Correlated_[415].centralFrequency=181250000.000000
+Observation.DataProducts.Output_Correlated_[415].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[415].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[415].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[415].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[415].filename=L527637_SAP001_SB415_uv.MS
+Observation.DataProducts.Output_Correlated_[415].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[415].location=locus007:/data/L527637/
+Observation.DataProducts.Output_Correlated_[415].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[415].size=29414318080
+Observation.DataProducts.Output_Correlated_[415].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[415].stationSubband=416
+Observation.DataProducts.Output_Correlated_[415].subband=415
+Observation.DataProducts.Output_Correlated_[416].SAP=1
+Observation.DataProducts.Output_Correlated_[416].centralFrequency=181445312.500000
+Observation.DataProducts.Output_Correlated_[416].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[416].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[416].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[416].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[416].filename=L527637_SAP001_SB416_uv.MS
+Observation.DataProducts.Output_Correlated_[416].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[416].location=locus008:/data/L527637/
+Observation.DataProducts.Output_Correlated_[416].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[416].size=29414318080
+Observation.DataProducts.Output_Correlated_[416].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[416].stationSubband=417
+Observation.DataProducts.Output_Correlated_[416].subband=416
+Observation.DataProducts.Output_Correlated_[417].SAP=1
+Observation.DataProducts.Output_Correlated_[417].centralFrequency=181640625.000000
+Observation.DataProducts.Output_Correlated_[417].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[417].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[417].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[417].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[417].filename=L527637_SAP001_SB417_uv.MS
+Observation.DataProducts.Output_Correlated_[417].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[417].location=locus009:/data/L527637/
+Observation.DataProducts.Output_Correlated_[417].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[417].size=29414318080
+Observation.DataProducts.Output_Correlated_[417].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[417].stationSubband=418
+Observation.DataProducts.Output_Correlated_[417].subband=417
+Observation.DataProducts.Output_Correlated_[418].SAP=1
+Observation.DataProducts.Output_Correlated_[418].centralFrequency=181835937.500000
+Observation.DataProducts.Output_Correlated_[418].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[418].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[418].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[418].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[418].filename=L527637_SAP001_SB418_uv.MS
+Observation.DataProducts.Output_Correlated_[418].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[418].location=locus010:/data/L527637/
+Observation.DataProducts.Output_Correlated_[418].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[418].size=29414318080
+Observation.DataProducts.Output_Correlated_[418].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[418].stationSubband=419
+Observation.DataProducts.Output_Correlated_[418].subband=418
+Observation.DataProducts.Output_Correlated_[419].SAP=1
+Observation.DataProducts.Output_Correlated_[419].centralFrequency=182031250.000000
+Observation.DataProducts.Output_Correlated_[419].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[419].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[419].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[419].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[419].filename=L527637_SAP001_SB419_uv.MS
+Observation.DataProducts.Output_Correlated_[419].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[419].location=locus011:/data/L527637/
+Observation.DataProducts.Output_Correlated_[419].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[419].size=29414318080
+Observation.DataProducts.Output_Correlated_[419].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[419].stationSubband=420
+Observation.DataProducts.Output_Correlated_[419].subband=419
+Observation.DataProducts.Output_Correlated_[41].SAP=0
+Observation.DataProducts.Output_Correlated_[41].centralFrequency=155859375.000000
+Observation.DataProducts.Output_Correlated_[41].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[41].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[41].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[41].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[41].filename=L527637_SAP000_SB041_uv.MS
+Observation.DataProducts.Output_Correlated_[41].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[41].location=locus049:/data/L527637/
+Observation.DataProducts.Output_Correlated_[41].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[41].size=29414318080
+Observation.DataProducts.Output_Correlated_[41].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[41].stationSubband=286
+Observation.DataProducts.Output_Correlated_[41].subband=41
+Observation.DataProducts.Output_Correlated_[420].SAP=1
+Observation.DataProducts.Output_Correlated_[420].centralFrequency=182226562.500000
+Observation.DataProducts.Output_Correlated_[420].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[420].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[420].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[420].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[420].filename=L527637_SAP001_SB420_uv.MS
+Observation.DataProducts.Output_Correlated_[420].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[420].location=locus012:/data/L527637/
+Observation.DataProducts.Output_Correlated_[420].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[420].size=29414318080
+Observation.DataProducts.Output_Correlated_[420].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[420].stationSubband=421
+Observation.DataProducts.Output_Correlated_[420].subband=420
+Observation.DataProducts.Output_Correlated_[421].SAP=1
+Observation.DataProducts.Output_Correlated_[421].centralFrequency=182421875.000000
+Observation.DataProducts.Output_Correlated_[421].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[421].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[421].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[421].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[421].filename=L527637_SAP001_SB421_uv.MS
+Observation.DataProducts.Output_Correlated_[421].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[421].location=locus014:/data/L527637/
+Observation.DataProducts.Output_Correlated_[421].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[421].size=29414318080
+Observation.DataProducts.Output_Correlated_[421].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[421].stationSubband=422
+Observation.DataProducts.Output_Correlated_[421].subband=421
+Observation.DataProducts.Output_Correlated_[422].SAP=1
+Observation.DataProducts.Output_Correlated_[422].centralFrequency=182617187.500000
+Observation.DataProducts.Output_Correlated_[422].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[422].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[422].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[422].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[422].filename=L527637_SAP001_SB422_uv.MS
+Observation.DataProducts.Output_Correlated_[422].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[422].location=locus015:/data/L527637/
+Observation.DataProducts.Output_Correlated_[422].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[422].size=29414318080
+Observation.DataProducts.Output_Correlated_[422].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[422].stationSubband=423
+Observation.DataProducts.Output_Correlated_[422].subband=422
+Observation.DataProducts.Output_Correlated_[423].SAP=1
+Observation.DataProducts.Output_Correlated_[423].centralFrequency=182812500.000000
+Observation.DataProducts.Output_Correlated_[423].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[423].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[423].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[423].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[423].filename=L527637_SAP001_SB423_uv.MS
+Observation.DataProducts.Output_Correlated_[423].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[423].location=locus016:/data/L527637/
+Observation.DataProducts.Output_Correlated_[423].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[423].size=29414318080
+Observation.DataProducts.Output_Correlated_[423].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[423].stationSubband=424
+Observation.DataProducts.Output_Correlated_[423].subband=423
+Observation.DataProducts.Output_Correlated_[424].SAP=1
+Observation.DataProducts.Output_Correlated_[424].centralFrequency=183007812.500000
+Observation.DataProducts.Output_Correlated_[424].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[424].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[424].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[424].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[424].filename=L527637_SAP001_SB424_uv.MS
+Observation.DataProducts.Output_Correlated_[424].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[424].location=locus017:/data/L527637/
+Observation.DataProducts.Output_Correlated_[424].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[424].size=29414318080
+Observation.DataProducts.Output_Correlated_[424].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[424].stationSubband=425
+Observation.DataProducts.Output_Correlated_[424].subband=424
+Observation.DataProducts.Output_Correlated_[425].SAP=1
+Observation.DataProducts.Output_Correlated_[425].centralFrequency=183203125.000000
+Observation.DataProducts.Output_Correlated_[425].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[425].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[425].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[425].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[425].filename=L527637_SAP001_SB425_uv.MS
+Observation.DataProducts.Output_Correlated_[425].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[425].location=locus018:/data/L527637/
+Observation.DataProducts.Output_Correlated_[425].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[425].size=29414318080
+Observation.DataProducts.Output_Correlated_[425].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[425].stationSubband=426
+Observation.DataProducts.Output_Correlated_[425].subband=425
+Observation.DataProducts.Output_Correlated_[426].SAP=1
+Observation.DataProducts.Output_Correlated_[426].centralFrequency=183398437.500000
+Observation.DataProducts.Output_Correlated_[426].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[426].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[426].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[426].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[426].filename=L527637_SAP001_SB426_uv.MS
+Observation.DataProducts.Output_Correlated_[426].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[426].location=locus019:/data/L527637/
+Observation.DataProducts.Output_Correlated_[426].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[426].size=29414318080
+Observation.DataProducts.Output_Correlated_[426].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[426].stationSubband=427
+Observation.DataProducts.Output_Correlated_[426].subband=426
+Observation.DataProducts.Output_Correlated_[427].SAP=1
+Observation.DataProducts.Output_Correlated_[427].centralFrequency=183593750.000000
+Observation.DataProducts.Output_Correlated_[427].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[427].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[427].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[427].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[427].filename=L527637_SAP001_SB427_uv.MS
+Observation.DataProducts.Output_Correlated_[427].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[427].location=locus020:/data/L527637/
+Observation.DataProducts.Output_Correlated_[427].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[427].size=29414318080
+Observation.DataProducts.Output_Correlated_[427].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[427].stationSubband=428
+Observation.DataProducts.Output_Correlated_[427].subband=427
+Observation.DataProducts.Output_Correlated_[428].SAP=1
+Observation.DataProducts.Output_Correlated_[428].centralFrequency=183789062.500000
+Observation.DataProducts.Output_Correlated_[428].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[428].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[428].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[428].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[428].filename=L527637_SAP001_SB428_uv.MS
+Observation.DataProducts.Output_Correlated_[428].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[428].location=locus021:/data/L527637/
+Observation.DataProducts.Output_Correlated_[428].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[428].size=29414318080
+Observation.DataProducts.Output_Correlated_[428].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[428].stationSubband=429
+Observation.DataProducts.Output_Correlated_[428].subband=428
+Observation.DataProducts.Output_Correlated_[429].SAP=1
+Observation.DataProducts.Output_Correlated_[429].centralFrequency=183984375.000000
+Observation.DataProducts.Output_Correlated_[429].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[429].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[429].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[429].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[429].filename=L527637_SAP001_SB429_uv.MS
+Observation.DataProducts.Output_Correlated_[429].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[429].location=locus023:/data/L527637/
+Observation.DataProducts.Output_Correlated_[429].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[429].size=29414318080
+Observation.DataProducts.Output_Correlated_[429].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[429].stationSubband=430
+Observation.DataProducts.Output_Correlated_[429].subband=429
+Observation.DataProducts.Output_Correlated_[42].SAP=0
+Observation.DataProducts.Output_Correlated_[42].centralFrequency=156054687.500000
+Observation.DataProducts.Output_Correlated_[42].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[42].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[42].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[42].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[42].filename=L527637_SAP000_SB042_uv.MS
+Observation.DataProducts.Output_Correlated_[42].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[42].location=locus050:/data/L527637/
+Observation.DataProducts.Output_Correlated_[42].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[42].size=29414318080
+Observation.DataProducts.Output_Correlated_[42].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[42].stationSubband=287
+Observation.DataProducts.Output_Correlated_[42].subband=42
+Observation.DataProducts.Output_Correlated_[430].SAP=1
+Observation.DataProducts.Output_Correlated_[430].centralFrequency=184179687.500000
+Observation.DataProducts.Output_Correlated_[430].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[430].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[430].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[430].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[430].filename=L527637_SAP001_SB430_uv.MS
+Observation.DataProducts.Output_Correlated_[430].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[430].location=locus025:/data/L527637/
+Observation.DataProducts.Output_Correlated_[430].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[430].size=29414318080
+Observation.DataProducts.Output_Correlated_[430].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[430].stationSubband=431
+Observation.DataProducts.Output_Correlated_[430].subband=430
+Observation.DataProducts.Output_Correlated_[431].SAP=1
+Observation.DataProducts.Output_Correlated_[431].centralFrequency=184375000.000000
+Observation.DataProducts.Output_Correlated_[431].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[431].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[431].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[431].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[431].filename=L527637_SAP001_SB431_uv.MS
+Observation.DataProducts.Output_Correlated_[431].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[431].location=locus026:/data/L527637/
+Observation.DataProducts.Output_Correlated_[431].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[431].size=29414318080
+Observation.DataProducts.Output_Correlated_[431].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[431].stationSubband=432
+Observation.DataProducts.Output_Correlated_[431].subband=431
+Observation.DataProducts.Output_Correlated_[432].SAP=1
+Observation.DataProducts.Output_Correlated_[432].centralFrequency=184570312.500000
+Observation.DataProducts.Output_Correlated_[432].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[432].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[432].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[432].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[432].filename=L527637_SAP001_SB432_uv.MS
+Observation.DataProducts.Output_Correlated_[432].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[432].location=locus028:/data/L527637/
+Observation.DataProducts.Output_Correlated_[432].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[432].size=29414318080
+Observation.DataProducts.Output_Correlated_[432].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[432].stationSubband=433
+Observation.DataProducts.Output_Correlated_[432].subband=432
+Observation.DataProducts.Output_Correlated_[433].SAP=1
+Observation.DataProducts.Output_Correlated_[433].centralFrequency=184765625.000000
+Observation.DataProducts.Output_Correlated_[433].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[433].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[433].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[433].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[433].filename=L527637_SAP001_SB433_uv.MS
+Observation.DataProducts.Output_Correlated_[433].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[433].location=locus029:/data/L527637/
+Observation.DataProducts.Output_Correlated_[433].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[433].size=29414318080
+Observation.DataProducts.Output_Correlated_[433].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[433].stationSubband=434
+Observation.DataProducts.Output_Correlated_[433].subband=433
+Observation.DataProducts.Output_Correlated_[434].SAP=1
+Observation.DataProducts.Output_Correlated_[434].centralFrequency=184960937.500000
+Observation.DataProducts.Output_Correlated_[434].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[434].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[434].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[434].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[434].filename=L527637_SAP001_SB434_uv.MS
+Observation.DataProducts.Output_Correlated_[434].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[434].location=locus031:/data/L527637/
+Observation.DataProducts.Output_Correlated_[434].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[434].size=29414318080
+Observation.DataProducts.Output_Correlated_[434].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[434].stationSubband=435
+Observation.DataProducts.Output_Correlated_[434].subband=434
+Observation.DataProducts.Output_Correlated_[435].SAP=1
+Observation.DataProducts.Output_Correlated_[435].centralFrequency=185156250.000000
+Observation.DataProducts.Output_Correlated_[435].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[435].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[435].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[435].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[435].filename=L527637_SAP001_SB435_uv.MS
+Observation.DataProducts.Output_Correlated_[435].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[435].location=locus032:/data/L527637/
+Observation.DataProducts.Output_Correlated_[435].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[435].size=29414318080
+Observation.DataProducts.Output_Correlated_[435].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[435].stationSubband=436
+Observation.DataProducts.Output_Correlated_[435].subband=435
+Observation.DataProducts.Output_Correlated_[436].SAP=1
+Observation.DataProducts.Output_Correlated_[436].centralFrequency=185351562.500000
+Observation.DataProducts.Output_Correlated_[436].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[436].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[436].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[436].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[436].filename=L527637_SAP001_SB436_uv.MS
+Observation.DataProducts.Output_Correlated_[436].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[436].location=locus034:/data/L527637/
+Observation.DataProducts.Output_Correlated_[436].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[436].size=29414318080
+Observation.DataProducts.Output_Correlated_[436].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[436].stationSubband=437
+Observation.DataProducts.Output_Correlated_[436].subband=436
+Observation.DataProducts.Output_Correlated_[437].SAP=1
+Observation.DataProducts.Output_Correlated_[437].centralFrequency=185546875.000000
+Observation.DataProducts.Output_Correlated_[437].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[437].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[437].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[437].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[437].filename=L527637_SAP001_SB437_uv.MS
+Observation.DataProducts.Output_Correlated_[437].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[437].location=locus035:/data/L527637/
+Observation.DataProducts.Output_Correlated_[437].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[437].size=29414318080
+Observation.DataProducts.Output_Correlated_[437].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[437].stationSubband=438
+Observation.DataProducts.Output_Correlated_[437].subband=437
+Observation.DataProducts.Output_Correlated_[438].SAP=1
+Observation.DataProducts.Output_Correlated_[438].centralFrequency=185742187.500000
+Observation.DataProducts.Output_Correlated_[438].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[438].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[438].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[438].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[438].filename=L527637_SAP001_SB438_uv.MS
+Observation.DataProducts.Output_Correlated_[438].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[438].location=locus036:/data/L527637/
+Observation.DataProducts.Output_Correlated_[438].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[438].size=29414318080
+Observation.DataProducts.Output_Correlated_[438].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[438].stationSubband=439
+Observation.DataProducts.Output_Correlated_[438].subband=438
+Observation.DataProducts.Output_Correlated_[439].SAP=1
+Observation.DataProducts.Output_Correlated_[439].centralFrequency=185937500.000000
+Observation.DataProducts.Output_Correlated_[439].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[439].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[439].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[439].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[439].filename=L527637_SAP001_SB439_uv.MS
+Observation.DataProducts.Output_Correlated_[439].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[439].location=locus037:/data/L527637/
+Observation.DataProducts.Output_Correlated_[439].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[439].size=29414318080
+Observation.DataProducts.Output_Correlated_[439].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[439].stationSubband=440
+Observation.DataProducts.Output_Correlated_[439].subband=439
+Observation.DataProducts.Output_Correlated_[43].SAP=0
+Observation.DataProducts.Output_Correlated_[43].centralFrequency=156250000.000000
+Observation.DataProducts.Output_Correlated_[43].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[43].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[43].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[43].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[43].filename=L527637_SAP000_SB043_uv.MS
+Observation.DataProducts.Output_Correlated_[43].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[43].location=locus051:/data/L527637/
+Observation.DataProducts.Output_Correlated_[43].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[43].size=29414318080
+Observation.DataProducts.Output_Correlated_[43].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[43].stationSubband=288
+Observation.DataProducts.Output_Correlated_[43].subband=43
+Observation.DataProducts.Output_Correlated_[440].SAP=1
+Observation.DataProducts.Output_Correlated_[440].centralFrequency=186132812.500000
+Observation.DataProducts.Output_Correlated_[440].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[440].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[440].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[440].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[440].filename=L527637_SAP001_SB440_uv.MS
+Observation.DataProducts.Output_Correlated_[440].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[440].location=locus038:/data/L527637/
+Observation.DataProducts.Output_Correlated_[440].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[440].size=29414318080
+Observation.DataProducts.Output_Correlated_[440].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[440].stationSubband=441
+Observation.DataProducts.Output_Correlated_[440].subband=440
+Observation.DataProducts.Output_Correlated_[441].SAP=1
+Observation.DataProducts.Output_Correlated_[441].centralFrequency=186328125.000000
+Observation.DataProducts.Output_Correlated_[441].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[441].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[441].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[441].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[441].filename=L527637_SAP001_SB441_uv.MS
+Observation.DataProducts.Output_Correlated_[441].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[441].location=locus039:/data/L527637/
+Observation.DataProducts.Output_Correlated_[441].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[441].size=29414318080
+Observation.DataProducts.Output_Correlated_[441].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[441].stationSubband=442
+Observation.DataProducts.Output_Correlated_[441].subband=441
+Observation.DataProducts.Output_Correlated_[442].SAP=1
+Observation.DataProducts.Output_Correlated_[442].centralFrequency=186523437.500000
+Observation.DataProducts.Output_Correlated_[442].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[442].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[442].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[442].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[442].filename=L527637_SAP001_SB442_uv.MS
+Observation.DataProducts.Output_Correlated_[442].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[442].location=locus040:/data/L527637/
+Observation.DataProducts.Output_Correlated_[442].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[442].size=29414318080
+Observation.DataProducts.Output_Correlated_[442].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[442].stationSubband=443
+Observation.DataProducts.Output_Correlated_[442].subband=442
+Observation.DataProducts.Output_Correlated_[443].SAP=1
+Observation.DataProducts.Output_Correlated_[443].centralFrequency=186718750.000000
+Observation.DataProducts.Output_Correlated_[443].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[443].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[443].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[443].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[443].filename=L527637_SAP001_SB443_uv.MS
+Observation.DataProducts.Output_Correlated_[443].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[443].location=locus041:/data/L527637/
+Observation.DataProducts.Output_Correlated_[443].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[443].size=29414318080
+Observation.DataProducts.Output_Correlated_[443].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[443].stationSubband=444
+Observation.DataProducts.Output_Correlated_[443].subband=443
+Observation.DataProducts.Output_Correlated_[444].SAP=1
+Observation.DataProducts.Output_Correlated_[444].centralFrequency=186914062.500000
+Observation.DataProducts.Output_Correlated_[444].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[444].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[444].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[444].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[444].filename=L527637_SAP001_SB444_uv.MS
+Observation.DataProducts.Output_Correlated_[444].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[444].location=locus042:/data/L527637/
+Observation.DataProducts.Output_Correlated_[444].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[444].size=29414318080
+Observation.DataProducts.Output_Correlated_[444].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[444].stationSubband=445
+Observation.DataProducts.Output_Correlated_[444].subband=444
+Observation.DataProducts.Output_Correlated_[445].SAP=1
+Observation.DataProducts.Output_Correlated_[445].centralFrequency=187109375.000000
+Observation.DataProducts.Output_Correlated_[445].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[445].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[445].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[445].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[445].filename=L527637_SAP001_SB445_uv.MS
+Observation.DataProducts.Output_Correlated_[445].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[445].location=locus043:/data/L527637/
+Observation.DataProducts.Output_Correlated_[445].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[445].size=29414318080
+Observation.DataProducts.Output_Correlated_[445].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[445].stationSubband=446
+Observation.DataProducts.Output_Correlated_[445].subband=445
+Observation.DataProducts.Output_Correlated_[446].SAP=1
+Observation.DataProducts.Output_Correlated_[446].centralFrequency=187304687.500000
+Observation.DataProducts.Output_Correlated_[446].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[446].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[446].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[446].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[446].filename=L527637_SAP001_SB446_uv.MS
+Observation.DataProducts.Output_Correlated_[446].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[446].location=locus044:/data/L527637/
+Observation.DataProducts.Output_Correlated_[446].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[446].size=29414318080
+Observation.DataProducts.Output_Correlated_[446].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[446].stationSubband=447
+Observation.DataProducts.Output_Correlated_[446].subband=446
+Observation.DataProducts.Output_Correlated_[447].SAP=1
+Observation.DataProducts.Output_Correlated_[447].centralFrequency=187500000.000000
+Observation.DataProducts.Output_Correlated_[447].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[447].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[447].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[447].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[447].filename=L527637_SAP001_SB447_uv.MS
+Observation.DataProducts.Output_Correlated_[447].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[447].location=locus045:/data/L527637/
+Observation.DataProducts.Output_Correlated_[447].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[447].size=29414318080
+Observation.DataProducts.Output_Correlated_[447].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[447].stationSubband=448
+Observation.DataProducts.Output_Correlated_[447].subband=447
+Observation.DataProducts.Output_Correlated_[448].SAP=1
+Observation.DataProducts.Output_Correlated_[448].centralFrequency=187695312.500000
+Observation.DataProducts.Output_Correlated_[448].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[448].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[448].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[448].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[448].filename=L527637_SAP001_SB448_uv.MS
+Observation.DataProducts.Output_Correlated_[448].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[448].location=locus046:/data/L527637/
+Observation.DataProducts.Output_Correlated_[448].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[448].size=29414318080
+Observation.DataProducts.Output_Correlated_[448].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[448].stationSubband=449
+Observation.DataProducts.Output_Correlated_[448].subband=448
+Observation.DataProducts.Output_Correlated_[449].SAP=1
+Observation.DataProducts.Output_Correlated_[449].centralFrequency=187890625.000000
+Observation.DataProducts.Output_Correlated_[449].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[449].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[449].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[449].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[449].filename=L527637_SAP001_SB449_uv.MS
+Observation.DataProducts.Output_Correlated_[449].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[449].location=locus047:/data/L527637/
+Observation.DataProducts.Output_Correlated_[449].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[449].size=29414318080
+Observation.DataProducts.Output_Correlated_[449].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[449].stationSubband=450
+Observation.DataProducts.Output_Correlated_[449].subband=449
+Observation.DataProducts.Output_Correlated_[44].SAP=0
+Observation.DataProducts.Output_Correlated_[44].centralFrequency=156445312.500000
+Observation.DataProducts.Output_Correlated_[44].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[44].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[44].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[44].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[44].filename=L527637_SAP000_SB044_uv.MS
+Observation.DataProducts.Output_Correlated_[44].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[44].location=locus052:/data/L527637/
+Observation.DataProducts.Output_Correlated_[44].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[44].size=29414318080
+Observation.DataProducts.Output_Correlated_[44].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[44].stationSubband=289
+Observation.DataProducts.Output_Correlated_[44].subband=44
+Observation.DataProducts.Output_Correlated_[450].SAP=1
+Observation.DataProducts.Output_Correlated_[450].centralFrequency=188085937.500000
+Observation.DataProducts.Output_Correlated_[450].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[450].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[450].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[450].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[450].filename=L527637_SAP001_SB450_uv.MS
+Observation.DataProducts.Output_Correlated_[450].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[450].location=locus048:/data/L527637/
+Observation.DataProducts.Output_Correlated_[450].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[450].size=29414318080
+Observation.DataProducts.Output_Correlated_[450].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[450].stationSubband=451
+Observation.DataProducts.Output_Correlated_[450].subband=450
+Observation.DataProducts.Output_Correlated_[451].SAP=1
+Observation.DataProducts.Output_Correlated_[451].centralFrequency=188281250.000000
+Observation.DataProducts.Output_Correlated_[451].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[451].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[451].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[451].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[451].filename=L527637_SAP001_SB451_uv.MS
+Observation.DataProducts.Output_Correlated_[451].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[451].location=locus049:/data/L527637/
+Observation.DataProducts.Output_Correlated_[451].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[451].size=29414318080
+Observation.DataProducts.Output_Correlated_[451].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[451].stationSubband=452
+Observation.DataProducts.Output_Correlated_[451].subband=451
+Observation.DataProducts.Output_Correlated_[452].SAP=1
+Observation.DataProducts.Output_Correlated_[452].centralFrequency=188476562.500000
+Observation.DataProducts.Output_Correlated_[452].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[452].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[452].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[452].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[452].filename=L527637_SAP001_SB452_uv.MS
+Observation.DataProducts.Output_Correlated_[452].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[452].location=locus050:/data/L527637/
+Observation.DataProducts.Output_Correlated_[452].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[452].size=29414318080
+Observation.DataProducts.Output_Correlated_[452].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[452].stationSubband=453
+Observation.DataProducts.Output_Correlated_[452].subband=452
+Observation.DataProducts.Output_Correlated_[453].SAP=1
+Observation.DataProducts.Output_Correlated_[453].centralFrequency=188671875.000000
+Observation.DataProducts.Output_Correlated_[453].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[453].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[453].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[453].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[453].filename=L527637_SAP001_SB453_uv.MS
+Observation.DataProducts.Output_Correlated_[453].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[453].location=locus051:/data/L527637/
+Observation.DataProducts.Output_Correlated_[453].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[453].size=29414318080
+Observation.DataProducts.Output_Correlated_[453].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[453].stationSubband=454
+Observation.DataProducts.Output_Correlated_[453].subband=453
+Observation.DataProducts.Output_Correlated_[454].SAP=1
+Observation.DataProducts.Output_Correlated_[454].centralFrequency=188867187.500000
+Observation.DataProducts.Output_Correlated_[454].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[454].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[454].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[454].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[454].filename=L527637_SAP001_SB454_uv.MS
+Observation.DataProducts.Output_Correlated_[454].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[454].location=locus052:/data/L527637/
+Observation.DataProducts.Output_Correlated_[454].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[454].size=29414318080
+Observation.DataProducts.Output_Correlated_[454].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[454].stationSubband=455
+Observation.DataProducts.Output_Correlated_[454].subband=454
+Observation.DataProducts.Output_Correlated_[455].SAP=1
+Observation.DataProducts.Output_Correlated_[455].centralFrequency=189062500.000000
+Observation.DataProducts.Output_Correlated_[455].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[455].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[455].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[455].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[455].filename=L527637_SAP001_SB455_uv.MS
+Observation.DataProducts.Output_Correlated_[455].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[455].location=locus053:/data/L527637/
+Observation.DataProducts.Output_Correlated_[455].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[455].size=29414318080
+Observation.DataProducts.Output_Correlated_[455].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[455].stationSubband=456
+Observation.DataProducts.Output_Correlated_[455].subband=455
+Observation.DataProducts.Output_Correlated_[456].SAP=1
+Observation.DataProducts.Output_Correlated_[456].centralFrequency=189257812.500000
+Observation.DataProducts.Output_Correlated_[456].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[456].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[456].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[456].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[456].filename=L527637_SAP001_SB456_uv.MS
+Observation.DataProducts.Output_Correlated_[456].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[456].location=locus054:/data/L527637/
+Observation.DataProducts.Output_Correlated_[456].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[456].size=29414318080
+Observation.DataProducts.Output_Correlated_[456].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[456].stationSubband=457
+Observation.DataProducts.Output_Correlated_[456].subband=456
+Observation.DataProducts.Output_Correlated_[457].SAP=1
+Observation.DataProducts.Output_Correlated_[457].centralFrequency=189453125.000000
+Observation.DataProducts.Output_Correlated_[457].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[457].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[457].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[457].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[457].filename=L527637_SAP001_SB457_uv.MS
+Observation.DataProducts.Output_Correlated_[457].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[457].location=locus055:/data/L527637/
+Observation.DataProducts.Output_Correlated_[457].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[457].size=29414318080
+Observation.DataProducts.Output_Correlated_[457].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[457].stationSubband=458
+Observation.DataProducts.Output_Correlated_[457].subband=457
+Observation.DataProducts.Output_Correlated_[458].SAP=1
+Observation.DataProducts.Output_Correlated_[458].centralFrequency=189648437.500000
+Observation.DataProducts.Output_Correlated_[458].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[458].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[458].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[458].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[458].filename=L527637_SAP001_SB458_uv.MS
+Observation.DataProducts.Output_Correlated_[458].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[458].location=locus056:/data/L527637/
+Observation.DataProducts.Output_Correlated_[458].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[458].size=29414318080
+Observation.DataProducts.Output_Correlated_[458].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[458].stationSubband=459
+Observation.DataProducts.Output_Correlated_[458].subband=458
+Observation.DataProducts.Output_Correlated_[459].SAP=1
+Observation.DataProducts.Output_Correlated_[459].centralFrequency=189843750.000000
+Observation.DataProducts.Output_Correlated_[459].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[459].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[459].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[459].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[459].filename=L527637_SAP001_SB459_uv.MS
+Observation.DataProducts.Output_Correlated_[459].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[459].location=locus057:/data/L527637/
+Observation.DataProducts.Output_Correlated_[459].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[459].size=29414318080
+Observation.DataProducts.Output_Correlated_[459].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[459].stationSubband=460
+Observation.DataProducts.Output_Correlated_[459].subband=459
+Observation.DataProducts.Output_Correlated_[45].SAP=0
+Observation.DataProducts.Output_Correlated_[45].centralFrequency=156640625.000000
+Observation.DataProducts.Output_Correlated_[45].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[45].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[45].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[45].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[45].filename=L527637_SAP000_SB045_uv.MS
+Observation.DataProducts.Output_Correlated_[45].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[45].location=locus053:/data/L527637/
+Observation.DataProducts.Output_Correlated_[45].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[45].size=29414318080
+Observation.DataProducts.Output_Correlated_[45].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[45].stationSubband=290
+Observation.DataProducts.Output_Correlated_[45].subband=45
+Observation.DataProducts.Output_Correlated_[460].SAP=1
+Observation.DataProducts.Output_Correlated_[460].centralFrequency=190039062.500000
+Observation.DataProducts.Output_Correlated_[460].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[460].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[460].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[460].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[460].filename=L527637_SAP001_SB460_uv.MS
+Observation.DataProducts.Output_Correlated_[460].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[460].location=locus058:/data/L527637/
+Observation.DataProducts.Output_Correlated_[460].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[460].size=29414318080
+Observation.DataProducts.Output_Correlated_[460].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[460].stationSubband=461
+Observation.DataProducts.Output_Correlated_[460].subband=460
+Observation.DataProducts.Output_Correlated_[461].SAP=1
+Observation.DataProducts.Output_Correlated_[461].centralFrequency=190234375.000000
+Observation.DataProducts.Output_Correlated_[461].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[461].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[461].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[461].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[461].filename=L527637_SAP001_SB461_uv.MS
+Observation.DataProducts.Output_Correlated_[461].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[461].location=locus060:/data/L527637/
+Observation.DataProducts.Output_Correlated_[461].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[461].size=29414318080
+Observation.DataProducts.Output_Correlated_[461].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[461].stationSubband=462
+Observation.DataProducts.Output_Correlated_[461].subband=461
+Observation.DataProducts.Output_Correlated_[462].SAP=1
+Observation.DataProducts.Output_Correlated_[462].centralFrequency=190429687.500000
+Observation.DataProducts.Output_Correlated_[462].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[462].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[462].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[462].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[462].filename=L527637_SAP001_SB462_uv.MS
+Observation.DataProducts.Output_Correlated_[462].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[462].location=locus061:/data/L527637/
+Observation.DataProducts.Output_Correlated_[462].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[462].size=29414318080
+Observation.DataProducts.Output_Correlated_[462].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[462].stationSubband=463
+Observation.DataProducts.Output_Correlated_[462].subband=462
+Observation.DataProducts.Output_Correlated_[463].SAP=1
+Observation.DataProducts.Output_Correlated_[463].centralFrequency=190625000.000000
+Observation.DataProducts.Output_Correlated_[463].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[463].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[463].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[463].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[463].filename=L527637_SAP001_SB463_uv.MS
+Observation.DataProducts.Output_Correlated_[463].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[463].location=locus062:/data/L527637/
+Observation.DataProducts.Output_Correlated_[463].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[463].size=29414318080
+Observation.DataProducts.Output_Correlated_[463].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[463].stationSubband=464
+Observation.DataProducts.Output_Correlated_[463].subband=463
+Observation.DataProducts.Output_Correlated_[464].SAP=1
+Observation.DataProducts.Output_Correlated_[464].centralFrequency=190820312.500000
+Observation.DataProducts.Output_Correlated_[464].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[464].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[464].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[464].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[464].filename=L527637_SAP001_SB464_uv.MS
+Observation.DataProducts.Output_Correlated_[464].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[464].location=locus063:/data/L527637/
+Observation.DataProducts.Output_Correlated_[464].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[464].size=29414318080
+Observation.DataProducts.Output_Correlated_[464].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[464].stationSubband=465
+Observation.DataProducts.Output_Correlated_[464].subband=464
+Observation.DataProducts.Output_Correlated_[465].SAP=1
+Observation.DataProducts.Output_Correlated_[465].centralFrequency=191015625.000000
+Observation.DataProducts.Output_Correlated_[465].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[465].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[465].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[465].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[465].filename=L527637_SAP001_SB465_uv.MS
+Observation.DataProducts.Output_Correlated_[465].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[465].location=locus064:/data/L527637/
+Observation.DataProducts.Output_Correlated_[465].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[465].size=29414318080
+Observation.DataProducts.Output_Correlated_[465].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[465].stationSubband=466
+Observation.DataProducts.Output_Correlated_[465].subband=465
+Observation.DataProducts.Output_Correlated_[466].SAP=1
+Observation.DataProducts.Output_Correlated_[466].centralFrequency=191210937.500000
+Observation.DataProducts.Output_Correlated_[466].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[466].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[466].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[466].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[466].filename=L527637_SAP001_SB466_uv.MS
+Observation.DataProducts.Output_Correlated_[466].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[466].location=locus065:/data/L527637/
+Observation.DataProducts.Output_Correlated_[466].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[466].size=29414318080
+Observation.DataProducts.Output_Correlated_[466].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[466].stationSubband=467
+Observation.DataProducts.Output_Correlated_[466].subband=466
+Observation.DataProducts.Output_Correlated_[467].SAP=1
+Observation.DataProducts.Output_Correlated_[467].centralFrequency=191406250.000000
+Observation.DataProducts.Output_Correlated_[467].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[467].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[467].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[467].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[467].filename=L527637_SAP001_SB467_uv.MS
+Observation.DataProducts.Output_Correlated_[467].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[467].location=locus066:/data/L527637/
+Observation.DataProducts.Output_Correlated_[467].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[467].size=29414318080
+Observation.DataProducts.Output_Correlated_[467].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[467].stationSubband=468
+Observation.DataProducts.Output_Correlated_[467].subband=467
+Observation.DataProducts.Output_Correlated_[468].SAP=1
+Observation.DataProducts.Output_Correlated_[468].centralFrequency=191601562.500000
+Observation.DataProducts.Output_Correlated_[468].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[468].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[468].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[468].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[468].filename=L527637_SAP001_SB468_uv.MS
+Observation.DataProducts.Output_Correlated_[468].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[468].location=locus067:/data/L527637/
+Observation.DataProducts.Output_Correlated_[468].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[468].size=29414318080
+Observation.DataProducts.Output_Correlated_[468].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[468].stationSubband=469
+Observation.DataProducts.Output_Correlated_[468].subband=468
+Observation.DataProducts.Output_Correlated_[469].SAP=1
+Observation.DataProducts.Output_Correlated_[469].centralFrequency=191796875.000000
+Observation.DataProducts.Output_Correlated_[469].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[469].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[469].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[469].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[469].filename=L527637_SAP001_SB469_uv.MS
+Observation.DataProducts.Output_Correlated_[469].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[469].location=locus068:/data/L527637/
+Observation.DataProducts.Output_Correlated_[469].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[469].size=29414318080
+Observation.DataProducts.Output_Correlated_[469].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[469].stationSubband=470
+Observation.DataProducts.Output_Correlated_[469].subband=469
+Observation.DataProducts.Output_Correlated_[46].SAP=0
+Observation.DataProducts.Output_Correlated_[46].centralFrequency=156835937.500000
+Observation.DataProducts.Output_Correlated_[46].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[46].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[46].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[46].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[46].filename=L527637_SAP000_SB046_uv.MS
+Observation.DataProducts.Output_Correlated_[46].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[46].location=locus054:/data/L527637/
+Observation.DataProducts.Output_Correlated_[46].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[46].size=29414318080
+Observation.DataProducts.Output_Correlated_[46].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[46].stationSubband=291
+Observation.DataProducts.Output_Correlated_[46].subband=46
+Observation.DataProducts.Output_Correlated_[470].SAP=1
+Observation.DataProducts.Output_Correlated_[470].centralFrequency=191992187.500000
+Observation.DataProducts.Output_Correlated_[470].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[470].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[470].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[470].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[470].filename=L527637_SAP001_SB470_uv.MS
+Observation.DataProducts.Output_Correlated_[470].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[470].location=locus069:/data/L527637/
+Observation.DataProducts.Output_Correlated_[470].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[470].size=29414318080
+Observation.DataProducts.Output_Correlated_[470].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[470].stationSubband=471
+Observation.DataProducts.Output_Correlated_[470].subband=470
+Observation.DataProducts.Output_Correlated_[471].SAP=1
+Observation.DataProducts.Output_Correlated_[471].centralFrequency=192187500.000000
+Observation.DataProducts.Output_Correlated_[471].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[471].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[471].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[471].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[471].filename=L527637_SAP001_SB471_uv.MS
+Observation.DataProducts.Output_Correlated_[471].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[471].location=locus070:/data/L527637/
+Observation.DataProducts.Output_Correlated_[471].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[471].size=29414318080
+Observation.DataProducts.Output_Correlated_[471].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[471].stationSubband=472
+Observation.DataProducts.Output_Correlated_[471].subband=471
+Observation.DataProducts.Output_Correlated_[472].SAP=1
+Observation.DataProducts.Output_Correlated_[472].centralFrequency=192382812.500000
+Observation.DataProducts.Output_Correlated_[472].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[472].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[472].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[472].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[472].filename=L527637_SAP001_SB472_uv.MS
+Observation.DataProducts.Output_Correlated_[472].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[472].location=locus071:/data/L527637/
+Observation.DataProducts.Output_Correlated_[472].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[472].size=29414318080
+Observation.DataProducts.Output_Correlated_[472].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[472].stationSubband=473
+Observation.DataProducts.Output_Correlated_[472].subband=472
+Observation.DataProducts.Output_Correlated_[473].SAP=1
+Observation.DataProducts.Output_Correlated_[473].centralFrequency=192578125.000000
+Observation.DataProducts.Output_Correlated_[473].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[473].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[473].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[473].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[473].filename=L527637_SAP001_SB473_uv.MS
+Observation.DataProducts.Output_Correlated_[473].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[473].location=locus072:/data/L527637/
+Observation.DataProducts.Output_Correlated_[473].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[473].size=29414318080
+Observation.DataProducts.Output_Correlated_[473].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[473].stationSubband=474
+Observation.DataProducts.Output_Correlated_[473].subband=473
+Observation.DataProducts.Output_Correlated_[474].SAP=1
+Observation.DataProducts.Output_Correlated_[474].centralFrequency=192773437.500000
+Observation.DataProducts.Output_Correlated_[474].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[474].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[474].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[474].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[474].filename=L527637_SAP001_SB474_uv.MS
+Observation.DataProducts.Output_Correlated_[474].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[474].location=locus073:/data/L527637/
+Observation.DataProducts.Output_Correlated_[474].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[474].size=29414318080
+Observation.DataProducts.Output_Correlated_[474].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[474].stationSubband=475
+Observation.DataProducts.Output_Correlated_[474].subband=474
+Observation.DataProducts.Output_Correlated_[475].SAP=1
+Observation.DataProducts.Output_Correlated_[475].centralFrequency=192968750.000000
+Observation.DataProducts.Output_Correlated_[475].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[475].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[475].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[475].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[475].filename=L527637_SAP001_SB475_uv.MS
+Observation.DataProducts.Output_Correlated_[475].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[475].location=locus074:/data/L527637/
+Observation.DataProducts.Output_Correlated_[475].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[475].size=29414318080
+Observation.DataProducts.Output_Correlated_[475].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[475].stationSubband=476
+Observation.DataProducts.Output_Correlated_[475].subband=475
+Observation.DataProducts.Output_Correlated_[476].SAP=1
+Observation.DataProducts.Output_Correlated_[476].centralFrequency=193164062.500000
+Observation.DataProducts.Output_Correlated_[476].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[476].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[476].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[476].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[476].filename=L527637_SAP001_SB476_uv.MS
+Observation.DataProducts.Output_Correlated_[476].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[476].location=locus075:/data/L527637/
+Observation.DataProducts.Output_Correlated_[476].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[476].size=29414318080
+Observation.DataProducts.Output_Correlated_[476].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[476].stationSubband=477
+Observation.DataProducts.Output_Correlated_[476].subband=476
+Observation.DataProducts.Output_Correlated_[477].SAP=1
+Observation.DataProducts.Output_Correlated_[477].centralFrequency=193359375.000000
+Observation.DataProducts.Output_Correlated_[477].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[477].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[477].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[477].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[477].filename=L527637_SAP001_SB477_uv.MS
+Observation.DataProducts.Output_Correlated_[477].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[477].location=locus076:/data/L527637/
+Observation.DataProducts.Output_Correlated_[477].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[477].size=29414318080
+Observation.DataProducts.Output_Correlated_[477].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[477].stationSubband=478
+Observation.DataProducts.Output_Correlated_[477].subband=477
+Observation.DataProducts.Output_Correlated_[478].SAP=1
+Observation.DataProducts.Output_Correlated_[478].centralFrequency=193554687.500000
+Observation.DataProducts.Output_Correlated_[478].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[478].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[478].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[478].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[478].filename=L527637_SAP001_SB478_uv.MS
+Observation.DataProducts.Output_Correlated_[478].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[478].location=locus077:/data/L527637/
+Observation.DataProducts.Output_Correlated_[478].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[478].size=29414318080
+Observation.DataProducts.Output_Correlated_[478].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[478].stationSubband=479
+Observation.DataProducts.Output_Correlated_[478].subband=478
+Observation.DataProducts.Output_Correlated_[479].SAP=1
+Observation.DataProducts.Output_Correlated_[479].centralFrequency=193750000.000000
+Observation.DataProducts.Output_Correlated_[479].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[479].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[479].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[479].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[479].filename=L527637_SAP001_SB479_uv.MS
+Observation.DataProducts.Output_Correlated_[479].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[479].location=locus078:/data/L527637/
+Observation.DataProducts.Output_Correlated_[479].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[479].size=29414318080
+Observation.DataProducts.Output_Correlated_[479].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[479].stationSubband=480
+Observation.DataProducts.Output_Correlated_[479].subband=479
+Observation.DataProducts.Output_Correlated_[47].SAP=0
+Observation.DataProducts.Output_Correlated_[47].centralFrequency=157031250.000000
+Observation.DataProducts.Output_Correlated_[47].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[47].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[47].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[47].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[47].filename=L527637_SAP000_SB047_uv.MS
+Observation.DataProducts.Output_Correlated_[47].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[47].location=locus055:/data/L527637/
+Observation.DataProducts.Output_Correlated_[47].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[47].size=29414318080
+Observation.DataProducts.Output_Correlated_[47].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[47].stationSubband=292
+Observation.DataProducts.Output_Correlated_[47].subband=47
+Observation.DataProducts.Output_Correlated_[480].SAP=1
+Observation.DataProducts.Output_Correlated_[480].centralFrequency=193945312.500000
+Observation.DataProducts.Output_Correlated_[480].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[480].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[480].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[480].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[480].filename=L527637_SAP001_SB480_uv.MS
+Observation.DataProducts.Output_Correlated_[480].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[480].location=locus079:/data/L527637/
+Observation.DataProducts.Output_Correlated_[480].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[480].size=29414318080
+Observation.DataProducts.Output_Correlated_[480].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[480].stationSubband=481
+Observation.DataProducts.Output_Correlated_[480].subband=480
+Observation.DataProducts.Output_Correlated_[481].SAP=1
+Observation.DataProducts.Output_Correlated_[481].centralFrequency=194140625.000000
+Observation.DataProducts.Output_Correlated_[481].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[481].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[481].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[481].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[481].filename=L527637_SAP001_SB481_uv.MS
+Observation.DataProducts.Output_Correlated_[481].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[481].location=locus080:/data/L527637/
+Observation.DataProducts.Output_Correlated_[481].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[481].size=29414318080
+Observation.DataProducts.Output_Correlated_[481].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[481].stationSubband=482
+Observation.DataProducts.Output_Correlated_[481].subband=481
+Observation.DataProducts.Output_Correlated_[482].SAP=1
+Observation.DataProducts.Output_Correlated_[482].centralFrequency=194335937.500000
+Observation.DataProducts.Output_Correlated_[482].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[482].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[482].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[482].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[482].filename=L527637_SAP001_SB482_uv.MS
+Observation.DataProducts.Output_Correlated_[482].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[482].location=locus081:/data/L527637/
+Observation.DataProducts.Output_Correlated_[482].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[482].size=29414318080
+Observation.DataProducts.Output_Correlated_[482].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[482].stationSubband=483
+Observation.DataProducts.Output_Correlated_[482].subband=482
+Observation.DataProducts.Output_Correlated_[483].SAP=1
+Observation.DataProducts.Output_Correlated_[483].centralFrequency=194531250.000000
+Observation.DataProducts.Output_Correlated_[483].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[483].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[483].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[483].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[483].filename=L527637_SAP001_SB483_uv.MS
+Observation.DataProducts.Output_Correlated_[483].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[483].location=locus082:/data/L527637/
+Observation.DataProducts.Output_Correlated_[483].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[483].size=29414318080
+Observation.DataProducts.Output_Correlated_[483].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[483].stationSubband=484
+Observation.DataProducts.Output_Correlated_[483].subband=483
+Observation.DataProducts.Output_Correlated_[484].SAP=1
+Observation.DataProducts.Output_Correlated_[484].centralFrequency=194726562.500000
+Observation.DataProducts.Output_Correlated_[484].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[484].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[484].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[484].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[484].filename=L527637_SAP001_SB484_uv.MS
+Observation.DataProducts.Output_Correlated_[484].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[484].location=locus084:/data/L527637/
+Observation.DataProducts.Output_Correlated_[484].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[484].size=29414318080
+Observation.DataProducts.Output_Correlated_[484].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[484].stationSubband=485
+Observation.DataProducts.Output_Correlated_[484].subband=484
+Observation.DataProducts.Output_Correlated_[485].SAP=1
+Observation.DataProducts.Output_Correlated_[485].centralFrequency=194921875.000000
+Observation.DataProducts.Output_Correlated_[485].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[485].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[485].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[485].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[485].filename=L527637_SAP001_SB485_uv.MS
+Observation.DataProducts.Output_Correlated_[485].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[485].location=locus085:/data/L527637/
+Observation.DataProducts.Output_Correlated_[485].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[485].size=29414318080
+Observation.DataProducts.Output_Correlated_[485].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[485].stationSubband=486
+Observation.DataProducts.Output_Correlated_[485].subband=485
+Observation.DataProducts.Output_Correlated_[486].SAP=1
+Observation.DataProducts.Output_Correlated_[486].centralFrequency=195117187.500000
+Observation.DataProducts.Output_Correlated_[486].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[486].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[486].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[486].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[486].filename=L527637_SAP001_SB486_uv.MS
+Observation.DataProducts.Output_Correlated_[486].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[486].location=locus086:/data/L527637/
+Observation.DataProducts.Output_Correlated_[486].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[486].size=29414318080
+Observation.DataProducts.Output_Correlated_[486].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[486].stationSubband=487
+Observation.DataProducts.Output_Correlated_[486].subband=486
+Observation.DataProducts.Output_Correlated_[487].SAP=1
+Observation.DataProducts.Output_Correlated_[487].centralFrequency=195312500.000000
+Observation.DataProducts.Output_Correlated_[487].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[487].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[487].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[487].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[487].filename=L527637_SAP001_SB487_uv.MS
+Observation.DataProducts.Output_Correlated_[487].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[487].location=locus087:/data/L527637/
+Observation.DataProducts.Output_Correlated_[487].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[487].size=29414318080
+Observation.DataProducts.Output_Correlated_[487].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[487].stationSubband=488
+Observation.DataProducts.Output_Correlated_[487].subband=487
+Observation.DataProducts.Output_Correlated_[48].SAP=0
+Observation.DataProducts.Output_Correlated_[48].centralFrequency=157226562.500000
+Observation.DataProducts.Output_Correlated_[48].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[48].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[48].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[48].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[48].filename=L527637_SAP000_SB048_uv.MS
+Observation.DataProducts.Output_Correlated_[48].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[48].location=locus056:/data/L527637/
+Observation.DataProducts.Output_Correlated_[48].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[48].size=29414318080
+Observation.DataProducts.Output_Correlated_[48].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[48].stationSubband=293
+Observation.DataProducts.Output_Correlated_[48].subband=48
+Observation.DataProducts.Output_Correlated_[49].SAP=0
+Observation.DataProducts.Output_Correlated_[49].centralFrequency=157421875.000000
+Observation.DataProducts.Output_Correlated_[49].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[49].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[49].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[49].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[49].filename=L527637_SAP000_SB049_uv.MS
+Observation.DataProducts.Output_Correlated_[49].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[49].location=locus057:/data/L527637/
+Observation.DataProducts.Output_Correlated_[49].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[49].size=29414318080
+Observation.DataProducts.Output_Correlated_[49].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[49].stationSubband=294
+Observation.DataProducts.Output_Correlated_[49].subband=49
+Observation.DataProducts.Output_Correlated_[4].SAP=0
+Observation.DataProducts.Output_Correlated_[4].centralFrequency=148632812.500000
+Observation.DataProducts.Output_Correlated_[4].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[4].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[4].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[4].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[4].filename=L527637_SAP000_SB004_uv.MS
+Observation.DataProducts.Output_Correlated_[4].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[4].location=locus006:/data/L527637/
+Observation.DataProducts.Output_Correlated_[4].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[4].size=29414318080
+Observation.DataProducts.Output_Correlated_[4].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[4].stationSubband=249
+Observation.DataProducts.Output_Correlated_[4].subband=4
+Observation.DataProducts.Output_Correlated_[50].SAP=0
+Observation.DataProducts.Output_Correlated_[50].centralFrequency=157617187.500000
+Observation.DataProducts.Output_Correlated_[50].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[50].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[50].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[50].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[50].filename=L527637_SAP000_SB050_uv.MS
+Observation.DataProducts.Output_Correlated_[50].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[50].location=locus058:/data/L527637/
+Observation.DataProducts.Output_Correlated_[50].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[50].size=29414318080
+Observation.DataProducts.Output_Correlated_[50].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[50].stationSubband=295
+Observation.DataProducts.Output_Correlated_[50].subband=50
+Observation.DataProducts.Output_Correlated_[51].SAP=0
+Observation.DataProducts.Output_Correlated_[51].centralFrequency=157812500.000000
+Observation.DataProducts.Output_Correlated_[51].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[51].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[51].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[51].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[51].filename=L527637_SAP000_SB051_uv.MS
+Observation.DataProducts.Output_Correlated_[51].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[51].location=locus060:/data/L527637/
+Observation.DataProducts.Output_Correlated_[51].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[51].size=29414318080
+Observation.DataProducts.Output_Correlated_[51].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[51].stationSubband=296
+Observation.DataProducts.Output_Correlated_[51].subband=51
+Observation.DataProducts.Output_Correlated_[52].SAP=0
+Observation.DataProducts.Output_Correlated_[52].centralFrequency=158007812.500000
+Observation.DataProducts.Output_Correlated_[52].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[52].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[52].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[52].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[52].filename=L527637_SAP000_SB052_uv.MS
+Observation.DataProducts.Output_Correlated_[52].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[52].location=locus061:/data/L527637/
+Observation.DataProducts.Output_Correlated_[52].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[52].size=29414318080
+Observation.DataProducts.Output_Correlated_[52].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[52].stationSubband=297
+Observation.DataProducts.Output_Correlated_[52].subband=52
+Observation.DataProducts.Output_Correlated_[53].SAP=0
+Observation.DataProducts.Output_Correlated_[53].centralFrequency=158203125.000000
+Observation.DataProducts.Output_Correlated_[53].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[53].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[53].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[53].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[53].filename=L527637_SAP000_SB053_uv.MS
+Observation.DataProducts.Output_Correlated_[53].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[53].location=locus062:/data/L527637/
+Observation.DataProducts.Output_Correlated_[53].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[53].size=29414318080
+Observation.DataProducts.Output_Correlated_[53].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[53].stationSubband=298
+Observation.DataProducts.Output_Correlated_[53].subband=53
+Observation.DataProducts.Output_Correlated_[54].SAP=0
+Observation.DataProducts.Output_Correlated_[54].centralFrequency=158398437.500000
+Observation.DataProducts.Output_Correlated_[54].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[54].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[54].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[54].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[54].filename=L527637_SAP000_SB054_uv.MS
+Observation.DataProducts.Output_Correlated_[54].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[54].location=locus063:/data/L527637/
+Observation.DataProducts.Output_Correlated_[54].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[54].size=29414318080
+Observation.DataProducts.Output_Correlated_[54].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[54].stationSubband=299
+Observation.DataProducts.Output_Correlated_[54].subband=54
+Observation.DataProducts.Output_Correlated_[55].SAP=0
+Observation.DataProducts.Output_Correlated_[55].centralFrequency=158593750.000000
+Observation.DataProducts.Output_Correlated_[55].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[55].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[55].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[55].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[55].filename=L527637_SAP000_SB055_uv.MS
+Observation.DataProducts.Output_Correlated_[55].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[55].location=locus064:/data/L527637/
+Observation.DataProducts.Output_Correlated_[55].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[55].size=29414318080
+Observation.DataProducts.Output_Correlated_[55].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[55].stationSubband=300
+Observation.DataProducts.Output_Correlated_[55].subband=55
+Observation.DataProducts.Output_Correlated_[56].SAP=0
+Observation.DataProducts.Output_Correlated_[56].centralFrequency=158789062.500000
+Observation.DataProducts.Output_Correlated_[56].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[56].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[56].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[56].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[56].filename=L527637_SAP000_SB056_uv.MS
+Observation.DataProducts.Output_Correlated_[56].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[56].location=locus065:/data/L527637/
+Observation.DataProducts.Output_Correlated_[56].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[56].size=29414318080
+Observation.DataProducts.Output_Correlated_[56].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[56].stationSubband=301
+Observation.DataProducts.Output_Correlated_[56].subband=56
+Observation.DataProducts.Output_Correlated_[57].SAP=0
+Observation.DataProducts.Output_Correlated_[57].centralFrequency=158984375.000000
+Observation.DataProducts.Output_Correlated_[57].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[57].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[57].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[57].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[57].filename=L527637_SAP000_SB057_uv.MS
+Observation.DataProducts.Output_Correlated_[57].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[57].location=locus066:/data/L527637/
+Observation.DataProducts.Output_Correlated_[57].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[57].size=29414318080
+Observation.DataProducts.Output_Correlated_[57].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[57].stationSubband=302
+Observation.DataProducts.Output_Correlated_[57].subband=57
+Observation.DataProducts.Output_Correlated_[58].SAP=0
+Observation.DataProducts.Output_Correlated_[58].centralFrequency=159179687.500000
+Observation.DataProducts.Output_Correlated_[58].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[58].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[58].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[58].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[58].filename=L527637_SAP000_SB058_uv.MS
+Observation.DataProducts.Output_Correlated_[58].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[58].location=locus067:/data/L527637/
+Observation.DataProducts.Output_Correlated_[58].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[58].size=29414318080
+Observation.DataProducts.Output_Correlated_[58].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[58].stationSubband=303
+Observation.DataProducts.Output_Correlated_[58].subband=58
+Observation.DataProducts.Output_Correlated_[59].SAP=0
+Observation.DataProducts.Output_Correlated_[59].centralFrequency=159375000.000000
+Observation.DataProducts.Output_Correlated_[59].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[59].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[59].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[59].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[59].filename=L527637_SAP000_SB059_uv.MS
+Observation.DataProducts.Output_Correlated_[59].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[59].location=locus068:/data/L527637/
+Observation.DataProducts.Output_Correlated_[59].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[59].size=29414318080
+Observation.DataProducts.Output_Correlated_[59].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[59].stationSubband=304
+Observation.DataProducts.Output_Correlated_[59].subband=59
+Observation.DataProducts.Output_Correlated_[5].SAP=0
+Observation.DataProducts.Output_Correlated_[5].centralFrequency=148828125.000000
+Observation.DataProducts.Output_Correlated_[5].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[5].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[5].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[5].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[5].filename=L527637_SAP000_SB005_uv.MS
+Observation.DataProducts.Output_Correlated_[5].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[5].location=locus007:/data/L527637/
+Observation.DataProducts.Output_Correlated_[5].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[5].size=29414318080
+Observation.DataProducts.Output_Correlated_[5].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[5].stationSubband=250
+Observation.DataProducts.Output_Correlated_[5].subband=5
+Observation.DataProducts.Output_Correlated_[60].SAP=0
+Observation.DataProducts.Output_Correlated_[60].centralFrequency=159570312.500000
+Observation.DataProducts.Output_Correlated_[60].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[60].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[60].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[60].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[60].filename=L527637_SAP000_SB060_uv.MS
+Observation.DataProducts.Output_Correlated_[60].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[60].location=locus069:/data/L527637/
+Observation.DataProducts.Output_Correlated_[60].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[60].size=29414318080
+Observation.DataProducts.Output_Correlated_[60].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[60].stationSubband=305
+Observation.DataProducts.Output_Correlated_[60].subband=60
+Observation.DataProducts.Output_Correlated_[61].SAP=0
+Observation.DataProducts.Output_Correlated_[61].centralFrequency=159765625.000000
+Observation.DataProducts.Output_Correlated_[61].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[61].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[61].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[61].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[61].filename=L527637_SAP000_SB061_uv.MS
+Observation.DataProducts.Output_Correlated_[61].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[61].location=locus070:/data/L527637/
+Observation.DataProducts.Output_Correlated_[61].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[61].size=29414318080
+Observation.DataProducts.Output_Correlated_[61].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[61].stationSubband=306
+Observation.DataProducts.Output_Correlated_[61].subband=61
+Observation.DataProducts.Output_Correlated_[62].SAP=0
+Observation.DataProducts.Output_Correlated_[62].centralFrequency=159960937.500000
+Observation.DataProducts.Output_Correlated_[62].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[62].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[62].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[62].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[62].filename=L527637_SAP000_SB062_uv.MS
+Observation.DataProducts.Output_Correlated_[62].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[62].location=locus071:/data/L527637/
+Observation.DataProducts.Output_Correlated_[62].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[62].size=29414318080
+Observation.DataProducts.Output_Correlated_[62].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[62].stationSubband=307
+Observation.DataProducts.Output_Correlated_[62].subband=62
+Observation.DataProducts.Output_Correlated_[63].SAP=0
+Observation.DataProducts.Output_Correlated_[63].centralFrequency=160156250.000000
+Observation.DataProducts.Output_Correlated_[63].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[63].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[63].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[63].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[63].filename=L527637_SAP000_SB063_uv.MS
+Observation.DataProducts.Output_Correlated_[63].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[63].location=locus072:/data/L527637/
+Observation.DataProducts.Output_Correlated_[63].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[63].size=29414318080
+Observation.DataProducts.Output_Correlated_[63].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[63].stationSubband=308
+Observation.DataProducts.Output_Correlated_[63].subband=63
+Observation.DataProducts.Output_Correlated_[64].SAP=0
+Observation.DataProducts.Output_Correlated_[64].centralFrequency=160351562.500000
+Observation.DataProducts.Output_Correlated_[64].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[64].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[64].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[64].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[64].filename=L527637_SAP000_SB064_uv.MS
+Observation.DataProducts.Output_Correlated_[64].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[64].location=locus073:/data/L527637/
+Observation.DataProducts.Output_Correlated_[64].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[64].size=29414318080
+Observation.DataProducts.Output_Correlated_[64].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[64].stationSubband=309
+Observation.DataProducts.Output_Correlated_[64].subband=64
+Observation.DataProducts.Output_Correlated_[65].SAP=0
+Observation.DataProducts.Output_Correlated_[65].centralFrequency=160546875.000000
+Observation.DataProducts.Output_Correlated_[65].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[65].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[65].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[65].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[65].filename=L527637_SAP000_SB065_uv.MS
+Observation.DataProducts.Output_Correlated_[65].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[65].location=locus074:/data/L527637/
+Observation.DataProducts.Output_Correlated_[65].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[65].size=29414318080
+Observation.DataProducts.Output_Correlated_[65].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[65].stationSubband=310
+Observation.DataProducts.Output_Correlated_[65].subband=65
+Observation.DataProducts.Output_Correlated_[66].SAP=0
+Observation.DataProducts.Output_Correlated_[66].centralFrequency=160742187.500000
+Observation.DataProducts.Output_Correlated_[66].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[66].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[66].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[66].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[66].filename=L527637_SAP000_SB066_uv.MS
+Observation.DataProducts.Output_Correlated_[66].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[66].location=locus075:/data/L527637/
+Observation.DataProducts.Output_Correlated_[66].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[66].size=29414318080
+Observation.DataProducts.Output_Correlated_[66].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[66].stationSubband=311
+Observation.DataProducts.Output_Correlated_[66].subband=66
+Observation.DataProducts.Output_Correlated_[67].SAP=0
+Observation.DataProducts.Output_Correlated_[67].centralFrequency=160937500.000000
+Observation.DataProducts.Output_Correlated_[67].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[67].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[67].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[67].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[67].filename=L527637_SAP000_SB067_uv.MS
+Observation.DataProducts.Output_Correlated_[67].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[67].location=locus076:/data/L527637/
+Observation.DataProducts.Output_Correlated_[67].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[67].size=29414318080
+Observation.DataProducts.Output_Correlated_[67].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[67].stationSubband=312
+Observation.DataProducts.Output_Correlated_[67].subband=67
+Observation.DataProducts.Output_Correlated_[68].SAP=0
+Observation.DataProducts.Output_Correlated_[68].centralFrequency=161132812.500000
+Observation.DataProducts.Output_Correlated_[68].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[68].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[68].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[68].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[68].filename=L527637_SAP000_SB068_uv.MS
+Observation.DataProducts.Output_Correlated_[68].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[68].location=locus077:/data/L527637/
+Observation.DataProducts.Output_Correlated_[68].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[68].size=29414318080
+Observation.DataProducts.Output_Correlated_[68].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[68].stationSubband=313
+Observation.DataProducts.Output_Correlated_[68].subband=68
+Observation.DataProducts.Output_Correlated_[69].SAP=0
+Observation.DataProducts.Output_Correlated_[69].centralFrequency=161328125.000000
+Observation.DataProducts.Output_Correlated_[69].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[69].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[69].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[69].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[69].filename=L527637_SAP000_SB069_uv.MS
+Observation.DataProducts.Output_Correlated_[69].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[69].location=locus078:/data/L527637/
+Observation.DataProducts.Output_Correlated_[69].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[69].size=29414318080
+Observation.DataProducts.Output_Correlated_[69].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[69].stationSubband=314
+Observation.DataProducts.Output_Correlated_[69].subband=69
+Observation.DataProducts.Output_Correlated_[6].SAP=0
+Observation.DataProducts.Output_Correlated_[6].centralFrequency=149023437.500000
+Observation.DataProducts.Output_Correlated_[6].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[6].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[6].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[6].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[6].filename=L527637_SAP000_SB006_uv.MS
+Observation.DataProducts.Output_Correlated_[6].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[6].location=locus008:/data/L527637/
+Observation.DataProducts.Output_Correlated_[6].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[6].size=29414318080
+Observation.DataProducts.Output_Correlated_[6].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[6].stationSubband=251
+Observation.DataProducts.Output_Correlated_[6].subband=6
+Observation.DataProducts.Output_Correlated_[70].SAP=0
+Observation.DataProducts.Output_Correlated_[70].centralFrequency=161523437.500000
+Observation.DataProducts.Output_Correlated_[70].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[70].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[70].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[70].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[70].filename=L527637_SAP000_SB070_uv.MS
+Observation.DataProducts.Output_Correlated_[70].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[70].location=locus079:/data/L527637/
+Observation.DataProducts.Output_Correlated_[70].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[70].size=29414318080
+Observation.DataProducts.Output_Correlated_[70].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[70].stationSubband=315
+Observation.DataProducts.Output_Correlated_[70].subband=70
+Observation.DataProducts.Output_Correlated_[71].SAP=0
+Observation.DataProducts.Output_Correlated_[71].centralFrequency=161718750.000000
+Observation.DataProducts.Output_Correlated_[71].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[71].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[71].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[71].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[71].filename=L527637_SAP000_SB071_uv.MS
+Observation.DataProducts.Output_Correlated_[71].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[71].location=locus080:/data/L527637/
+Observation.DataProducts.Output_Correlated_[71].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[71].size=29414318080
+Observation.DataProducts.Output_Correlated_[71].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[71].stationSubband=316
+Observation.DataProducts.Output_Correlated_[71].subband=71
+Observation.DataProducts.Output_Correlated_[72].SAP=0
+Observation.DataProducts.Output_Correlated_[72].centralFrequency=161914062.500000
+Observation.DataProducts.Output_Correlated_[72].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[72].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[72].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[72].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[72].filename=L527637_SAP000_SB072_uv.MS
+Observation.DataProducts.Output_Correlated_[72].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[72].location=locus081:/data/L527637/
+Observation.DataProducts.Output_Correlated_[72].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[72].size=29414318080
+Observation.DataProducts.Output_Correlated_[72].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[72].stationSubband=317
+Observation.DataProducts.Output_Correlated_[72].subband=72
+Observation.DataProducts.Output_Correlated_[73].SAP=0
+Observation.DataProducts.Output_Correlated_[73].centralFrequency=162109375.000000
+Observation.DataProducts.Output_Correlated_[73].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[73].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[73].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[73].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[73].filename=L527637_SAP000_SB073_uv.MS
+Observation.DataProducts.Output_Correlated_[73].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[73].location=locus082:/data/L527637/
+Observation.DataProducts.Output_Correlated_[73].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[73].size=29414318080
+Observation.DataProducts.Output_Correlated_[73].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[73].stationSubband=318
+Observation.DataProducts.Output_Correlated_[73].subband=73
+Observation.DataProducts.Output_Correlated_[74].SAP=0
+Observation.DataProducts.Output_Correlated_[74].centralFrequency=162304687.500000
+Observation.DataProducts.Output_Correlated_[74].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[74].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[74].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[74].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[74].filename=L527637_SAP000_SB074_uv.MS
+Observation.DataProducts.Output_Correlated_[74].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[74].location=locus084:/data/L527637/
+Observation.DataProducts.Output_Correlated_[74].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[74].size=29414318080
+Observation.DataProducts.Output_Correlated_[74].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[74].stationSubband=319
+Observation.DataProducts.Output_Correlated_[74].subband=74
+Observation.DataProducts.Output_Correlated_[75].SAP=0
+Observation.DataProducts.Output_Correlated_[75].centralFrequency=162500000.000000
+Observation.DataProducts.Output_Correlated_[75].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[75].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[75].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[75].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[75].filename=L527637_SAP000_SB075_uv.MS
+Observation.DataProducts.Output_Correlated_[75].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[75].location=locus085:/data/L527637/
+Observation.DataProducts.Output_Correlated_[75].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[75].size=29414318080
+Observation.DataProducts.Output_Correlated_[75].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[75].stationSubband=320
+Observation.DataProducts.Output_Correlated_[75].subband=75
+Observation.DataProducts.Output_Correlated_[76].SAP=0
+Observation.DataProducts.Output_Correlated_[76].centralFrequency=162695312.500000
+Observation.DataProducts.Output_Correlated_[76].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[76].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[76].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[76].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[76].filename=L527637_SAP000_SB076_uv.MS
+Observation.DataProducts.Output_Correlated_[76].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[76].location=locus086:/data/L527637/
+Observation.DataProducts.Output_Correlated_[76].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[76].size=29414318080
+Observation.DataProducts.Output_Correlated_[76].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[76].stationSubband=321
+Observation.DataProducts.Output_Correlated_[76].subband=76
+Observation.DataProducts.Output_Correlated_[77].SAP=0
+Observation.DataProducts.Output_Correlated_[77].centralFrequency=162890625.000000
+Observation.DataProducts.Output_Correlated_[77].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[77].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[77].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[77].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[77].filename=L527637_SAP000_SB077_uv.MS
+Observation.DataProducts.Output_Correlated_[77].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[77].location=locus087:/data/L527637/
+Observation.DataProducts.Output_Correlated_[77].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[77].size=29414318080
+Observation.DataProducts.Output_Correlated_[77].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[77].stationSubband=322
+Observation.DataProducts.Output_Correlated_[77].subband=77
+Observation.DataProducts.Output_Correlated_[78].SAP=0
+Observation.DataProducts.Output_Correlated_[78].centralFrequency=163085937.500000
+Observation.DataProducts.Output_Correlated_[78].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[78].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[78].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[78].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[78].filename=L527637_SAP000_SB078_uv.MS
+Observation.DataProducts.Output_Correlated_[78].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[78].location=locus088:/data/L527637/
+Observation.DataProducts.Output_Correlated_[78].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[78].size=29414318080
+Observation.DataProducts.Output_Correlated_[78].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[78].stationSubband=323
+Observation.DataProducts.Output_Correlated_[78].subband=78
+Observation.DataProducts.Output_Correlated_[79].SAP=0
+Observation.DataProducts.Output_Correlated_[79].centralFrequency=163281250.000000
+Observation.DataProducts.Output_Correlated_[79].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[79].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[79].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[79].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[79].filename=L527637_SAP000_SB079_uv.MS
+Observation.DataProducts.Output_Correlated_[79].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[79].location=locus089:/data/L527637/
+Observation.DataProducts.Output_Correlated_[79].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[79].size=29414318080
+Observation.DataProducts.Output_Correlated_[79].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[79].stationSubband=324
+Observation.DataProducts.Output_Correlated_[79].subband=79
+Observation.DataProducts.Output_Correlated_[7].SAP=0
+Observation.DataProducts.Output_Correlated_[7].centralFrequency=149218750.000000
+Observation.DataProducts.Output_Correlated_[7].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[7].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[7].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[7].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[7].filename=L527637_SAP000_SB007_uv.MS
+Observation.DataProducts.Output_Correlated_[7].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[7].location=locus009:/data/L527637/
+Observation.DataProducts.Output_Correlated_[7].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[7].size=29414318080
+Observation.DataProducts.Output_Correlated_[7].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[7].stationSubband=252
+Observation.DataProducts.Output_Correlated_[7].subband=7
+Observation.DataProducts.Output_Correlated_[80].SAP=0
+Observation.DataProducts.Output_Correlated_[80].centralFrequency=163476562.500000
+Observation.DataProducts.Output_Correlated_[80].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[80].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[80].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[80].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[80].filename=L527637_SAP000_SB080_uv.MS
+Observation.DataProducts.Output_Correlated_[80].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[80].location=locus090:/data/L527637/
+Observation.DataProducts.Output_Correlated_[80].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[80].size=29414318080
+Observation.DataProducts.Output_Correlated_[80].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[80].stationSubband=325
+Observation.DataProducts.Output_Correlated_[80].subband=80
+Observation.DataProducts.Output_Correlated_[81].SAP=0
+Observation.DataProducts.Output_Correlated_[81].centralFrequency=163671875.000000
+Observation.DataProducts.Output_Correlated_[81].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[81].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[81].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[81].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[81].filename=L527637_SAP000_SB081_uv.MS
+Observation.DataProducts.Output_Correlated_[81].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[81].location=locus091:/data/L527637/
+Observation.DataProducts.Output_Correlated_[81].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[81].size=29414318080
+Observation.DataProducts.Output_Correlated_[81].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[81].stationSubband=326
+Observation.DataProducts.Output_Correlated_[81].subband=81
+Observation.DataProducts.Output_Correlated_[82].SAP=0
+Observation.DataProducts.Output_Correlated_[82].centralFrequency=163867187.500000
+Observation.DataProducts.Output_Correlated_[82].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[82].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[82].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[82].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[82].filename=L527637_SAP000_SB082_uv.MS
+Observation.DataProducts.Output_Correlated_[82].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[82].location=locus001:/data/L527637/
+Observation.DataProducts.Output_Correlated_[82].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[82].size=29414318080
+Observation.DataProducts.Output_Correlated_[82].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[82].stationSubband=327
+Observation.DataProducts.Output_Correlated_[82].subband=82
+Observation.DataProducts.Output_Correlated_[83].SAP=0
+Observation.DataProducts.Output_Correlated_[83].centralFrequency=164062500.000000
+Observation.DataProducts.Output_Correlated_[83].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[83].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[83].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[83].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[83].filename=L527637_SAP000_SB083_uv.MS
+Observation.DataProducts.Output_Correlated_[83].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[83].location=locus003:/data/L527637/
+Observation.DataProducts.Output_Correlated_[83].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[83].size=29414318080
+Observation.DataProducts.Output_Correlated_[83].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[83].stationSubband=328
+Observation.DataProducts.Output_Correlated_[83].subband=83
+Observation.DataProducts.Output_Correlated_[84].SAP=0
+Observation.DataProducts.Output_Correlated_[84].centralFrequency=164257812.500000
+Observation.DataProducts.Output_Correlated_[84].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[84].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[84].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[84].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[84].filename=L527637_SAP000_SB084_uv.MS
+Observation.DataProducts.Output_Correlated_[84].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[84].location=locus004:/data/L527637/
+Observation.DataProducts.Output_Correlated_[84].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[84].size=29414318080
+Observation.DataProducts.Output_Correlated_[84].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[84].stationSubband=329
+Observation.DataProducts.Output_Correlated_[84].subband=84
+Observation.DataProducts.Output_Correlated_[85].SAP=0
+Observation.DataProducts.Output_Correlated_[85].centralFrequency=164453125.000000
+Observation.DataProducts.Output_Correlated_[85].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[85].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[85].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[85].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[85].filename=L527637_SAP000_SB085_uv.MS
+Observation.DataProducts.Output_Correlated_[85].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[85].location=locus005:/data/L527637/
+Observation.DataProducts.Output_Correlated_[85].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[85].size=29414318080
+Observation.DataProducts.Output_Correlated_[85].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[85].stationSubband=330
+Observation.DataProducts.Output_Correlated_[85].subband=85
+Observation.DataProducts.Output_Correlated_[86].SAP=0
+Observation.DataProducts.Output_Correlated_[86].centralFrequency=164648437.500000
+Observation.DataProducts.Output_Correlated_[86].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[86].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[86].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[86].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[86].filename=L527637_SAP000_SB086_uv.MS
+Observation.DataProducts.Output_Correlated_[86].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[86].location=locus006:/data/L527637/
+Observation.DataProducts.Output_Correlated_[86].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[86].size=29414318080
+Observation.DataProducts.Output_Correlated_[86].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[86].stationSubband=331
+Observation.DataProducts.Output_Correlated_[86].subband=86
+Observation.DataProducts.Output_Correlated_[87].SAP=0
+Observation.DataProducts.Output_Correlated_[87].centralFrequency=164843750.000000
+Observation.DataProducts.Output_Correlated_[87].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[87].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[87].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[87].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[87].filename=L527637_SAP000_SB087_uv.MS
+Observation.DataProducts.Output_Correlated_[87].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[87].location=locus007:/data/L527637/
+Observation.DataProducts.Output_Correlated_[87].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[87].size=29414318080
+Observation.DataProducts.Output_Correlated_[87].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[87].stationSubband=332
+Observation.DataProducts.Output_Correlated_[87].subband=87
+Observation.DataProducts.Output_Correlated_[88].SAP=0
+Observation.DataProducts.Output_Correlated_[88].centralFrequency=165039062.500000
+Observation.DataProducts.Output_Correlated_[88].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[88].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[88].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[88].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[88].filename=L527637_SAP000_SB088_uv.MS
+Observation.DataProducts.Output_Correlated_[88].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[88].location=locus008:/data/L527637/
+Observation.DataProducts.Output_Correlated_[88].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[88].size=29414318080
+Observation.DataProducts.Output_Correlated_[88].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[88].stationSubband=333
+Observation.DataProducts.Output_Correlated_[88].subband=88
+Observation.DataProducts.Output_Correlated_[89].SAP=0
+Observation.DataProducts.Output_Correlated_[89].centralFrequency=165234375.000000
+Observation.DataProducts.Output_Correlated_[89].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[89].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[89].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[89].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[89].filename=L527637_SAP000_SB089_uv.MS
+Observation.DataProducts.Output_Correlated_[89].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[89].location=locus009:/data/L527637/
+Observation.DataProducts.Output_Correlated_[89].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[89].size=29414318080
+Observation.DataProducts.Output_Correlated_[89].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[89].stationSubband=334
+Observation.DataProducts.Output_Correlated_[89].subband=89
+Observation.DataProducts.Output_Correlated_[8].SAP=0
+Observation.DataProducts.Output_Correlated_[8].centralFrequency=149414062.500000
+Observation.DataProducts.Output_Correlated_[8].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[8].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[8].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[8].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[8].filename=L527637_SAP000_SB008_uv.MS
+Observation.DataProducts.Output_Correlated_[8].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[8].location=locus010:/data/L527637/
+Observation.DataProducts.Output_Correlated_[8].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[8].size=29414318080
+Observation.DataProducts.Output_Correlated_[8].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[8].stationSubband=253
+Observation.DataProducts.Output_Correlated_[8].subband=8
+Observation.DataProducts.Output_Correlated_[90].SAP=0
+Observation.DataProducts.Output_Correlated_[90].centralFrequency=165429687.500000
+Observation.DataProducts.Output_Correlated_[90].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[90].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[90].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[90].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[90].filename=L527637_SAP000_SB090_uv.MS
+Observation.DataProducts.Output_Correlated_[90].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[90].location=locus010:/data/L527637/
+Observation.DataProducts.Output_Correlated_[90].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[90].size=29414318080
+Observation.DataProducts.Output_Correlated_[90].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[90].stationSubband=335
+Observation.DataProducts.Output_Correlated_[90].subband=90
+Observation.DataProducts.Output_Correlated_[91].SAP=0
+Observation.DataProducts.Output_Correlated_[91].centralFrequency=165625000.000000
+Observation.DataProducts.Output_Correlated_[91].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[91].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[91].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[91].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[91].filename=L527637_SAP000_SB091_uv.MS
+Observation.DataProducts.Output_Correlated_[91].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[91].location=locus011:/data/L527637/
+Observation.DataProducts.Output_Correlated_[91].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[91].size=29414318080
+Observation.DataProducts.Output_Correlated_[91].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[91].stationSubband=336
+Observation.DataProducts.Output_Correlated_[91].subband=91
+Observation.DataProducts.Output_Correlated_[92].SAP=0
+Observation.DataProducts.Output_Correlated_[92].centralFrequency=165820312.500000
+Observation.DataProducts.Output_Correlated_[92].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[92].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[92].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[92].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[92].filename=L527637_SAP000_SB092_uv.MS
+Observation.DataProducts.Output_Correlated_[92].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[92].location=locus012:/data/L527637/
+Observation.DataProducts.Output_Correlated_[92].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[92].size=29414318080
+Observation.DataProducts.Output_Correlated_[92].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[92].stationSubband=337
+Observation.DataProducts.Output_Correlated_[92].subband=92
+Observation.DataProducts.Output_Correlated_[93].SAP=0
+Observation.DataProducts.Output_Correlated_[93].centralFrequency=166015625.000000
+Observation.DataProducts.Output_Correlated_[93].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[93].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[93].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[93].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[93].filename=L527637_SAP000_SB093_uv.MS
+Observation.DataProducts.Output_Correlated_[93].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[93].location=locus014:/data/L527637/
+Observation.DataProducts.Output_Correlated_[93].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[93].size=29414318080
+Observation.DataProducts.Output_Correlated_[93].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[93].stationSubband=338
+Observation.DataProducts.Output_Correlated_[93].subband=93
+Observation.DataProducts.Output_Correlated_[94].SAP=0
+Observation.DataProducts.Output_Correlated_[94].centralFrequency=166210937.500000
+Observation.DataProducts.Output_Correlated_[94].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[94].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[94].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[94].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[94].filename=L527637_SAP000_SB094_uv.MS
+Observation.DataProducts.Output_Correlated_[94].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[94].location=locus015:/data/L527637/
+Observation.DataProducts.Output_Correlated_[94].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[94].size=29414318080
+Observation.DataProducts.Output_Correlated_[94].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[94].stationSubband=339
+Observation.DataProducts.Output_Correlated_[94].subband=94
+Observation.DataProducts.Output_Correlated_[95].SAP=0
+Observation.DataProducts.Output_Correlated_[95].centralFrequency=166406250.000000
+Observation.DataProducts.Output_Correlated_[95].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[95].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[95].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[95].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[95].filename=L527637_SAP000_SB095_uv.MS
+Observation.DataProducts.Output_Correlated_[95].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[95].location=locus016:/data/L527637/
+Observation.DataProducts.Output_Correlated_[95].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[95].size=29414318080
+Observation.DataProducts.Output_Correlated_[95].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[95].stationSubband=340
+Observation.DataProducts.Output_Correlated_[95].subband=95
+Observation.DataProducts.Output_Correlated_[96].SAP=0
+Observation.DataProducts.Output_Correlated_[96].centralFrequency=166601562.500000
+Observation.DataProducts.Output_Correlated_[96].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[96].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[96].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[96].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[96].filename=L527637_SAP000_SB096_uv.MS
+Observation.DataProducts.Output_Correlated_[96].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[96].location=locus017:/data/L527637/
+Observation.DataProducts.Output_Correlated_[96].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[96].size=29414318080
+Observation.DataProducts.Output_Correlated_[96].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[96].stationSubband=341
+Observation.DataProducts.Output_Correlated_[96].subband=96
+Observation.DataProducts.Output_Correlated_[97].SAP=0
+Observation.DataProducts.Output_Correlated_[97].centralFrequency=166796875.000000
+Observation.DataProducts.Output_Correlated_[97].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[97].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[97].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[97].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[97].filename=L527637_SAP000_SB097_uv.MS
+Observation.DataProducts.Output_Correlated_[97].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[97].location=locus018:/data/L527637/
+Observation.DataProducts.Output_Correlated_[97].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[97].size=29414318080
+Observation.DataProducts.Output_Correlated_[97].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[97].stationSubband=342
+Observation.DataProducts.Output_Correlated_[97].subband=97
+Observation.DataProducts.Output_Correlated_[98].SAP=0
+Observation.DataProducts.Output_Correlated_[98].centralFrequency=166992187.500000
+Observation.DataProducts.Output_Correlated_[98].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[98].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[98].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[98].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[98].filename=L527637_SAP000_SB098_uv.MS
+Observation.DataProducts.Output_Correlated_[98].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[98].location=locus019:/data/L527637/
+Observation.DataProducts.Output_Correlated_[98].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[98].size=29414318080
+Observation.DataProducts.Output_Correlated_[98].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[98].stationSubband=343
+Observation.DataProducts.Output_Correlated_[98].subband=98
+Observation.DataProducts.Output_Correlated_[99].SAP=0
+Observation.DataProducts.Output_Correlated_[99].centralFrequency=167187500.000000
+Observation.DataProducts.Output_Correlated_[99].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[99].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[99].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[99].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[99].filename=L527637_SAP000_SB099_uv.MS
+Observation.DataProducts.Output_Correlated_[99].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[99].location=locus020:/data/L527637/
+Observation.DataProducts.Output_Correlated_[99].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[99].size=29414318080
+Observation.DataProducts.Output_Correlated_[99].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[99].stationSubband=344
+Observation.DataProducts.Output_Correlated_[99].subband=99
+Observation.DataProducts.Output_Correlated_[9].SAP=0
+Observation.DataProducts.Output_Correlated_[9].centralFrequency=149609375.000000
+Observation.DataProducts.Output_Correlated_[9].channelWidth=3051.757812
+Observation.DataProducts.Output_Correlated_[9].channelsPerSubband=64
+Observation.DataProducts.Output_Correlated_[9].duration=13859.238707
+Observation.DataProducts.Output_Correlated_[9].fileFormat=AIPS++/CASA
+Observation.DataProducts.Output_Correlated_[9].filename=L527637_SAP000_SB009_uv.MS
+Observation.DataProducts.Output_Correlated_[9].integrationInterval=2.002780
+Observation.DataProducts.Output_Correlated_[9].location=locus011:/data/L527637/
+Observation.DataProducts.Output_Correlated_[9].percentageWritten=100
+Observation.DataProducts.Output_Correlated_[9].size=29414318080
+Observation.DataProducts.Output_Correlated_[9].startTime=2016-07-30 00:09:00
+Observation.DataProducts.Output_Correlated_[9].stationSubband=254
+Observation.DataProducts.Output_Correlated_[9].subband=9
+Observation.DataProducts.nrOfOutput_Beamformed_=0
+Observation.DataProducts.nrOfOutput_Correlated_=488
+_isCobalt=T
+
+</contents>
+    </parset>
+    <parset>
+        <identifier>
+            <source>SAS</source>
+            <identifier>527639</identifier>
+        </identifier>
+        <contents>prefix=LOFAR.
+Clock160.channelWidth=610.3515625
+Clock160.samplesPerSecond=155648
+Clock160.subbandWidth=156.250
+Clock160.systemClock=160
+Clock200.channelWidth=762.939453125
+Clock200.samplesPerSecond=196608
+Clock200.subbandWidth=195.3125
+Clock200.systemClock=200
+ObsSW.Observation.antennaArray=LBA
+ObsSW.Observation.antennaSet=LBA_INNER
+ObsSW.Observation.bandFilter=LBA_30_90
+ObsSW.Observation.claimPeriod=10
+ObsSW.Observation.clockMode=&lt;&lt;Clock200
+ObsSW.Observation.nrAnaBeams=0
+ObsSW.Observation.nrBeams=0
+ObsSW.Observation.nrBitsPerSample=16
+ObsSW.Observation.nrTBBSettings=0
+ObsSW.Observation.preparePeriod=10
+ObsSW.Observation.sampleClock=200
+ObsSW.Observation.startTime=2016-07-30 04:01:00
+ObsSW.Observation.stopTime=2016-07-30 08:01:00
+ObsSW.Observation.topologyID=mom.G697898.B4.1.PT0
+ObsSW.Observation.Cluster.ProcessingCluster.clusterName=
+ObsSW.Observation.Cluster.ProcessingCluster.clusterPartition=
+ObsSW.Observation.Cluster.ProcessingCluster.maxDurationPerTask=
+ObsSW.Observation.Cluster.ProcessingCluster.minRAMPerTask=0
+ObsSW.Observation.Cluster.ProcessingCluster.minScratchPerTask=0
+ObsSW.Observation.Cluster.ProcessingCluster.numberOfCoresPerTask=1
+ObsSW.Observation.Cluster.ProcessingCluster.numberOfTasks=0
+ObsSW.Observation.Cluster.ProcessingCluster.runSimultaneous=false
+ObsSW.Observation.DataProducts.Input_CoherentStokes.clustername=
+ObsSW.Observation.DataProducts.Input_CoherentStokes.clusterpartition=
+ObsSW.Observation.DataProducts.Input_CoherentStokes.dirmask=
+ObsSW.Observation.DataProducts.Input_CoherentStokes.enabled=false
+ObsSW.Observation.DataProducts.Input_CoherentStokes.filenames=[]
+ObsSW.Observation.DataProducts.Input_CoherentStokes.identifications=[]
+ObsSW.Observation.DataProducts.Input_CoherentStokes.locations=[]
+ObsSW.Observation.DataProducts.Input_CoherentStokes.mountpoints=[]
+ObsSW.Observation.DataProducts.Input_CoherentStokes.namemask=
+ObsSW.Observation.DataProducts.Input_CoherentStokes.skip=[]
+ObsSW.Observation.DataProducts.Input_Correlated.clustername=
+ObsSW.Observation.DataProducts.Input_Correlated.clusterpartition=
+ObsSW.Observation.DataProducts.Input_Correlated.dirmask=
+ObsSW.Observation.DataProducts.Input_Correlated.enabled=true
+ObsSW.Observation.DataProducts.Input_Correlated.filenames=[L527637_SAP000_SB000_uv.MS,L527637_SAP000_SB001_uv.MS,L527637_SAP000_SB002_uv.MS,L527637_SAP000_SB003_uv.MS,L527637_SAP000_SB004_uv.MS,L527637_SAP000_SB005_uv.MS,L527637_SAP000_SB006_uv.MS,L527637_SAP000_SB007_uv.MS,L527637_SAP000_SB008_uv.MS,L527637_SAP000_SB009_uv.MS,L527637_SAP000_SB010_uv.MS,L527637_SAP000_SB011_uv.MS,L527637_SAP000_SB012_uv.MS,L527637_SAP000_SB013_uv.MS,L527637_SAP000_SB014_uv.MS,L527637_SAP000_SB015_uv.MS,L527637_SAP000_SB016_uv.MS,L527637_SAP000_SB017_uv.MS,L527637_SAP000_SB018_uv.MS,L527637_SAP000_SB019_uv.MS,L527637_SAP000_SB020_uv.MS,L527637_SAP000_SB021_uv.MS,L527637_SAP000_SB022_uv.MS,L527637_SAP000_SB023_uv.MS,L527637_SAP000_SB024_uv.MS,L527637_SAP000_SB025_uv.MS,L527637_SAP000_SB026_uv.MS,L527637_SAP000_SB027_uv.MS,L527637_SAP000_SB028_uv.MS,L527637_SAP000_SB029_uv.MS,L527637_SAP000_SB030_uv.MS,L527637_SAP000_SB031_uv.MS,L527637_SAP000_SB032_uv.MS,L527637_SAP000_SB033_uv.MS,L527637_SAP000_SB034_uv.MS,L527637_SAP000_SB035_uv.MS,L527637_SAP000_SB036_uv.MS,L527637_SAP000_SB037_uv.MS,L527637_SAP000_SB038_uv.MS,L527637_SAP000_SB039_uv.MS,L527637_SAP000_SB040_uv.MS,L527637_SAP000_SB041_uv.MS,L527637_SAP000_SB042_uv.MS,L527637_SAP000_SB043_uv.MS,L527637_SAP000_SB044_uv.MS,L527637_SAP000_SB045_uv.MS,L527637_SAP000_SB046_uv.MS,L527637_SAP000_SB047_uv.MS,L527637_SAP000_SB048_uv.MS,L527637_SAP000_SB049_uv.MS,L527637_SAP000_SB050_uv.MS,L527637_SAP000_SB051_uv.MS,L527637_SAP000_SB052_uv.MS,L527637_SAP000_SB053_uv.MS,L527637_SAP000_SB054_uv.MS,L527637_SAP000_SB055_uv.MS,L527637_SAP000_SB056_uv.MS,L527637_SAP000_SB057_uv.MS,L527637_SAP000_SB058_uv.MS,L527637_SAP000_SB059_uv.MS,L527637_SAP000_SB060_uv.MS,L527637_SAP000_SB061_uv.MS,L527637_SAP000_SB062_uv.MS,L527637_SAP000_SB063_uv.MS,L527637_SAP000_SB064_uv.MS,L527637_SAP000_SB065_uv.MS,L527637_SAP000_SB066_uv.MS,L527637_SAP000_SB067_uv.MS,L527637_SAP000_SB068_uv.MS,L527637_SAP000_SB069_uv.MS,L527637_SAP000_SB070_uv.MS,L527637_SAP000_SB071_uv.MS,L527637_SAP000_SB072_uv.MS,L527637_SAP000_SB073_uv.MS,L527637_SAP000_SB074_uv.MS,L527637_SAP000_SB075_uv.MS,L527637_SAP000_SB076_uv.MS,L527637_SAP000_SB077_uv.MS,L527637_SAP000_SB078_uv.MS,L527637_SAP000_SB079_uv.MS,L527637_SAP000_SB080_uv.MS,L527637_SAP000_SB081_uv.MS,L527637_SAP000_SB082_uv.MS,L527637_SAP000_SB083_uv.MS,L527637_SAP000_SB084_uv.MS,L527637_SAP000_SB085_uv.MS,L527637_SAP000_SB086_uv.MS,L527637_SAP000_SB087_uv.MS,L527637_SAP000_SB088_uv.MS,L527637_SAP000_SB089_uv.MS,L527637_SAP000_SB090_uv.MS,L527637_SAP000_SB091_uv.MS,L527637_SAP000_SB092_uv.MS,L527637_SAP000_SB093_uv.MS,L527637_SAP000_SB094_uv.MS,L527637_SAP000_SB095_uv.MS,L527637_SAP000_SB096_uv.MS,L527637_SAP000_SB097_uv.MS,L527637_SAP000_SB098_uv.MS,L527637_SAP000_SB099_uv.MS,L527637_SAP000_SB100_uv.MS,L527637_SAP000_SB101_uv.MS,L527637_SAP000_SB102_uv.MS,L527637_SAP000_SB103_uv.MS,L527637_SAP000_SB104_uv.MS,L527637_SAP000_SB105_uv.MS,L527637_SAP000_SB106_uv.MS,L527637_SAP000_SB107_uv.MS,L527637_SAP000_SB108_uv.MS,L527637_SAP000_SB109_uv.MS,L527637_SAP000_SB110_uv.MS,L527637_SAP000_SB111_uv.MS,L527637_SAP000_SB112_uv.MS,L527637_SAP000_SB113_uv.MS,L527637_SAP000_SB114_uv.MS,L527637_SAP000_SB115_uv.MS,L527637_SAP000_SB116_uv.MS,L527637_SAP000_SB117_uv.MS,L527637_SAP000_SB118_uv.MS,L527637_SAP000_SB119_uv.MS,L527637_SAP000_SB120_uv.MS,L527637_SAP000_SB121_uv.MS,L527637_SAP000_SB122_uv.MS,L527637_SAP000_SB123_uv.MS,L527637_SAP000_SB124_uv.MS,L527637_SAP000_SB125_uv.MS,L527637_SAP000_SB126_uv.MS,L527637_SAP000_SB127_uv.MS,L527637_SAP000_SB128_uv.MS,L527637_SAP000_SB129_uv.MS,L527637_SAP000_SB130_uv.MS,L527637_SAP000_SB131_uv.MS,L527637_SAP000_SB132_uv.MS,L527637_SAP000_SB133_uv.MS,L527637_SAP000_SB134_uv.MS,L527637_SAP000_SB135_uv.MS,L527637_SAP000_SB136_uv.MS,L527637_SAP000_SB137_uv.MS,L527637_SAP000_SB138_uv.MS,L527637_SAP000_SB139_uv.MS,L527637_SAP000_SB140_uv.MS,L527637_SAP000_SB141_uv.MS,L527637_SAP000_SB142_uv.MS,L527637_SAP000_SB143_uv.MS,L527637_SAP000_SB144_uv.MS,L527637_SAP000_SB145_uv.MS,L527637_SAP000_SB146_uv.MS,L527637_SAP000_SB147_uv.MS,L527637_SAP000_SB148_uv.MS,L527637_SAP000_SB149_uv.MS,L527637_SAP000_SB150_uv.MS,L527637_SAP000_SB151_uv.MS,L527637_SAP000_SB152_uv.MS,L527637_SAP000_SB153_uv.MS,L527637_SAP000_SB154_uv.MS,L527637_SAP000_SB155_uv.MS,L527637_SAP000_SB156_uv.MS,L527637_SAP000_SB157_uv.MS,L527637_SAP000_SB158_uv.MS,L527637_SAP000_SB159_uv.MS,L527637_SAP000_SB160_uv.MS,L527637_SAP000_SB161_uv.MS,L527637_SAP000_SB162_uv.MS,L527637_SAP000_SB163_uv.MS,L527637_SAP000_SB164_uv.MS,L527637_SAP000_SB165_uv.MS,L527637_SAP000_SB166_uv.MS,L527637_SAP000_SB167_uv.MS,L527637_SAP000_SB168_uv.MS,L527637_SAP000_SB169_uv.MS,L527637_SAP000_SB170_uv.MS,L527637_SAP000_SB171_uv.MS,L527637_SAP000_SB172_uv.MS,L527637_SAP000_SB173_uv.MS,L527637_SAP000_SB174_uv.MS,L527637_SAP000_SB175_uv.MS,L527637_SAP000_SB176_uv.MS,L527637_SAP000_SB177_uv.MS,L527637_SAP000_SB178_uv.MS,L527637_SAP000_SB179_uv.MS,L527637_SAP000_SB180_uv.MS,L527637_SAP000_SB181_uv.MS,L527637_SAP000_SB182_uv.MS,L527637_SAP000_SB183_uv.MS,L527637_SAP000_SB184_uv.MS,L527637_SAP000_SB185_uv.MS,L527637_SAP000_SB186_uv.MS,L527637_SAP000_SB187_uv.MS,L527637_SAP000_SB188_uv.MS,L527637_SAP000_SB189_uv.MS,L527637_SAP000_SB190_uv.MS,L527637_SAP000_SB191_uv.MS,L527637_SAP000_SB192_uv.MS,L527637_SAP000_SB193_uv.MS,L527637_SAP000_SB194_uv.MS,L527637_SAP000_SB195_uv.MS,L527637_SAP000_SB196_uv.MS,L527637_SAP000_SB197_uv.MS,L527637_SAP000_SB198_uv.MS,L527637_SAP000_SB199_uv.MS,L527637_SAP000_SB200_uv.MS,L527637_SAP000_SB201_uv.MS,L527637_SAP000_SB202_uv.MS,L527637_SAP000_SB203_uv.MS,L527637_SAP000_SB204_uv.MS,L527637_SAP000_SB205_uv.MS,L527637_SAP000_SB206_uv.MS,L527637_SAP000_SB207_uv.MS,L527637_SAP000_SB208_uv.MS,L527637_SAP000_SB209_uv.MS,L527637_SAP000_SB210_uv.MS,L527637_SAP000_SB211_uv.MS,L527637_SAP000_SB212_uv.MS,L527637_SAP000_SB213_uv.MS,L527637_SAP000_SB214_uv.MS,L527637_SAP000_SB215_uv.MS,L527637_SAP000_SB216_uv.MS,L527637_SAP000_SB217_uv.MS,L527637_SAP000_SB218_uv.MS,L527637_SAP000_SB219_uv.MS,L527637_SAP000_SB220_uv.MS,L527637_SAP000_SB221_uv.MS,L527637_SAP000_SB222_uv.MS,L527637_SAP000_SB223_uv.MS,L527637_SAP000_SB224_uv.MS,L527637_SAP000_SB225_uv.MS,L527637_SAP000_SB226_uv.MS,L527637_SAP000_SB227_uv.MS,L527637_SAP000_SB228_uv.MS,L527637_SAP000_SB229_uv.MS,L527637_SAP000_SB230_uv.MS,L527637_SAP000_SB231_uv.MS,L527637_SAP000_SB232_uv.MS,L527637_SAP000_SB233_uv.MS,L527637_SAP000_SB234_uv.MS,L527637_SAP000_SB235_uv.MS,L527637_SAP000_SB236_uv.MS,L527637_SAP000_SB237_uv.MS,L527637_SAP000_SB238_uv.MS,L527637_SAP000_SB239_uv.MS,L527637_SAP000_SB240_uv.MS,L527637_SAP000_SB241_uv.MS,L527637_SAP000_SB242_uv.MS,L527637_SAP000_SB243_uv.MS]
+ObsSW.Observation.DataProducts.Input_Correlated.identifications=[mom.G697898.B4.1.T.SAP000.uv.dps]
+ObsSW.Observation.DataProducts.Input_Correlated.locations=[locus001:/data/L527637/,locus003:/data/L527637/,locus004:/data/L527637/,locus005:/data/L527637/,locus006:/data/L527637/,locus007:/data/L527637/,locus008:/data/L527637/,locus009:/data/L527637/,locus010:/data/L527637/,locus011:/data/L527637/,locus012:/data/L527637/,locus014:/data/L527637/,locus015:/data/L527637/,locus016:/data/L527637/,locus017:/data/L527637/,locus018:/data/L527637/,locus019:/data/L527637/,locus020:/data/L527637/,locus021:/data/L527637/,locus023:/data/L527637/,locus025:/data/L527637/,locus026:/data/L527637/,locus028:/data/L527637/,locus029:/data/L527637/,locus031:/data/L527637/,locus032:/data/L527637/,locus034:/data/L527637/,locus035:/data/L527637/,locus036:/data/L527637/,locus037:/data/L527637/,locus038:/data/L527637/,locus039:/data/L527637/,locus040:/data/L527637/,locus041:/data/L527637/,locus042:/data/L527637/,locus043:/data/L527637/,locus044:/data/L527637/,locus045:/data/L527637/,locus046:/data/L527637/,locus047:/data/L527637/,locus048:/data/L527637/,locus049:/data/L527637/,locus050:/data/L527637/,locus051:/data/L527637/,locus052:/data/L527637/,locus053:/data/L527637/,locus054:/data/L527637/,locus055:/data/L527637/,locus056:/data/L527637/,locus057:/data/L527637/,locus058:/data/L527637/,locus060:/data/L527637/,locus061:/data/L527637/,locus062:/data/L527637/,locus063:/data/L527637/,locus064:/data/L527637/,locus065:/data/L527637/,locus066:/data/L527637/,locus067:/data/L527637/,locus068:/data/L527637/,locus069:/data/L527637/,locus070:/data/L527637/,locus071:/data/L527637/,locus072:/data/L527637/,locus073:/data/L527637/,locus074:/data/L527637/,locus075:/data/L527637/,locus076:/data/L527637/,locus077:/data/L527637/,locus078:/data/L527637/,locus079:/data/L527637/,locus080:/data/L527637/,locus081:/data/L527637/,locus082:/data/L527637/,locus084:/data/L527637/,locus085:/data/L527637/,locus086:/data/L527637/,locus087:/data/L527637/,locus088:/data/L527637/,locus089:/data/L527637/,locus090:/data/L527637/,locus091:/data/L527637/,locus001:/data/L527637/,locus003:/data/L527637/,locus004:/data/L527637/,locus005:/data/L527637/,locus006:/data/L527637/,locus007:/data/L527637/,locus008:/data/L527637/,locus009:/data/L527637/,locus010:/data/L527637/,locus011:/data/L527637/,locus012:/data/L527637/,locus014:/data/L527637/,locus015:/data/L527637/,locus016:/data/L527637/,locus017:/data/L527637/,locus018:/data/L527637/,locus019:/data/L527637/,locus020:/data/L527637/,locus021:/data/L527637/,locus023:/data/L527637/,locus025:/data/L527637/,locus026:/data/L527637/,locus028:/data/L527637/,locus029:/data/L527637/,locus031:/data/L527637/,locus032:/data/L527637/,locus034:/data/L527637/,locus035:/data/L527637/,locus036:/data/L527637/,locus037:/data/L527637/,locus038:/data/L527637/,locus039:/data/L527637/,locus040:/data/L527637/,locus041:/data/L527637/,locus042:/data/L527637/,locus043:/data/L527637/,locus044:/data/L527637/,locus045:/data/L527637/,locus046:/data/L527637/,locus047:/data/L527637/,locus048:/data/L527637/,locus049:/data/L527637/,locus050:/data/L527637/,locus051:/data/L527637/,locus052:/data/L527637/,locus053:/data/L527637/,locus054:/data/L527637/,locus055:/data/L527637/,locus056:/data/L527637/,locus057:/data/L527637/,locus058:/data/L527637/,locus060:/data/L527637/,locus061:/data/L527637/,locus062:/data/L527637/,locus063:/data/L527637/,locus064:/data/L527637/,locus065:/data/L527637/,locus066:/data/L527637/,locus067:/data/L527637/,locus068:/data/L527637/,locus069:/data/L527637/,locus070:/data/L527637/,locus071:/data/L527637/,locus072:/data/L527637/,locus073:/data/L527637/,locus074:/data/L527637/,locus075:/data/L527637/,locus076:/data/L527637/,locus077:/data/L527637/,locus078:/data/L527637/,locus079:/data/L527637/,locus080:/data/L527637/,locus081:/data/L527637/,locus082:/data/L527637/,locus084:/data/L527637/,locus085:/data/L527637/,locus086:/data/L527637/,locus087:/data/L527637/,locus088:/data/L527637/,locus089:/data/L527637/,locus090:/data/L527637/,locus091:/data/L527637/,locus001:/data/L527637/,locus003:/data/L527637/,locus004:/data/L527637/,locus005:/data/L527637/,locus006:/data/L527637/,locus007:/data/L527637/,locus008:/data/L527637/,locus009:/data/L527637/,locus010:/data/L527637/,locus011:/data/L527637/,locus012:/data/L527637/,locus014:/data/L527637/,locus015:/data/L527637/,locus016:/data/L527637/,locus017:/data/L527637/,locus018:/data/L527637/,locus019:/data/L527637/,locus020:/data/L527637/,locus021:/data/L527637/,locus023:/data/L527637/,locus025:/data/L527637/,locus026:/data/L527637/,locus028:/data/L527637/,locus029:/data/L527637/,locus031:/data/L527637/,locus032:/data/L527637/,locus034:/data/L527637/,locus035:/data/L527637/,locus036:/data/L527637/,locus037:/data/L527637/,locus038:/data/L527637/,locus039:/data/L527637/,locus040:/data/L527637/,locus041:/data/L527637/,locus042:/data/L527637/,locus043:/data/L527637/,locus044:/data/L527637/,locus045:/data/L527637/,locus046:/data/L527637/,locus047:/data/L527637/,locus048:/data/L527637/,locus049:/data/L527637/,locus050:/data/L527637/,locus051:/data/L527637/,locus052:/data/L527637/,locus053:/data/L527637/,locus054:/data/L527637/,locus055:/data/L527637/,locus056:/data/L527637/,locus057:/data/L527637/,locus058:/data/L527637/,locus060:/data/L527637/,locus061:/data/L527637/,locus062:/data/L527637/,locus063:/data/L527637/,locus064:/data/L527637/,locus065:/data/L527637/,locus066:/data/L527637/,locus067:/data/L527637/,locus068:/data/L527637/,locus069:/data/L527637/,locus070:/data/L527637/,locus071:/data/L527637/,locus072:/data/L527637/,locus073:/data/L527637/,locus074:/data/L527637/,locus075:/data/L527637/,locus076:/data/L527637/,locus077:/data/L527637/,locus078:/data/L527637/,locus079:/data/L527637/,locus080:/data/L527637/,locus081:/data/L527637/,locus082:/data/L527637/,locus084:/data/L527637/,locus085:/data/L527637/,locus086:/data/L527637/,locus087:/data/L527637/,locus088:/data/L527637/,locus089:/data/L527637/]
+ObsSW.Observation.DataProducts.Input_Correlated.mountpoints=[]
+ObsSW.Observation.DataProducts.Input_Correlated.namemask=
+ObsSW.Observation.DataProducts.Input_Correlated.skip=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
+ObsSW.Observation.DataProducts.Input_IncoherentStokes.clustername=
+ObsSW.Observation.DataProducts.Input_IncoherentStokes.clusterpartition=
+ObsSW.Observation.DataProducts.Input_IncoherentStokes.dirmask=
+ObsSW.Observation.DataProducts.Input_IncoherentStokes.enabled=false
+ObsSW.Observation.DataProducts.Input_IncoherentStokes.filenames=[]
+ObsSW.Observation.DataProducts.Input_IncoherentStokes.identifications=[]
+ObsSW.Observation.DataProducts.Input_IncoherentStokes.locations=[]
+ObsSW.Observation.DataProducts.Input_IncoherentStokes.mountpoints=[]
+ObsSW.Observation.DataProducts.Input_IncoherentStokes.namemask=
+ObsSW.Observation.DataProducts.Input_IncoherentStokes.skip=[]
+ObsSW.Observation.DataProducts.Input_InstrumentModel.clustername=
+ObsSW.Observation.DataProducts.Input_InstrumentModel.clusterpartition=
+ObsSW.Observation.DataProducts.Input_InstrumentModel.dirmask=
+ObsSW.Observation.DataProducts.Input_InstrumentModel.enabled=false
+ObsSW.Observation.DataProducts.Input_InstrumentModel.filenames=[]
+ObsSW.Observation.DataProducts.Input_InstrumentModel.identifications=[]
+ObsSW.Observation.DataProducts.Input_InstrumentModel.locations=[]
+ObsSW.Observation.DataProducts.Input_InstrumentModel.mountpoints=[]
+ObsSW.Observation.DataProducts.Input_InstrumentModel.namemask=
+ObsSW.Observation.DataProducts.Input_InstrumentModel.skip=[]
+ObsSW.Observation.DataProducts.Input_SkyImage.clustername=
+ObsSW.Observation.DataProducts.Input_SkyImage.clusterpartition=
+ObsSW.Observation.DataProducts.Input_SkyImage.dirmask=
+ObsSW.Observation.DataProducts.Input_SkyImage.enabled=false
+ObsSW.Observation.DataProducts.Input_SkyImage.filenames=[]
+ObsSW.Observation.DataProducts.Input_SkyImage.identifications=[]
+ObsSW.Observation.DataProducts.Input_SkyImage.locations=[]
+ObsSW.Observation.DataProducts.Input_SkyImage.mountpoints=[]
+ObsSW.Observation.DataProducts.Input_SkyImage.namemask=
+ObsSW.Observation.DataProducts.Input_SkyImage.skip=[]
+ObsSW.Observation.DataProducts.Output_CoherentStokes.archived=false
+ObsSW.Observation.DataProducts.Output_CoherentStokes.deleted=false
+ObsSW.Observation.DataProducts.Output_CoherentStokes.dirmask=
+ObsSW.Observation.DataProducts.Output_CoherentStokes.enabled=false
+ObsSW.Observation.DataProducts.Output_CoherentStokes.filenames=[]
+ObsSW.Observation.DataProducts.Output_CoherentStokes.identifications=[]
+ObsSW.Observation.DataProducts.Output_CoherentStokes.locations=[]
+ObsSW.Observation.DataProducts.Output_CoherentStokes.mountpoints=[]
+ObsSW.Observation.DataProducts.Output_CoherentStokes.namemask=
+ObsSW.Observation.DataProducts.Output_CoherentStokes.percentageWritten=[]
+ObsSW.Observation.DataProducts.Output_CoherentStokes.retentiontime=14
+ObsSW.Observation.DataProducts.Output_CoherentStokes.skip=[]
+ObsSW.Observation.DataProducts.Output_CoherentStokes.storageClusterName=
+ObsSW.Observation.DataProducts.Output_CoherentStokes.storageClusterPartition=
+ObsSW.Observation.DataProducts.Output_Correlated.archived=false
+ObsSW.Observation.DataProducts.Output_Correlated.deleted=false
+ObsSW.Observation.DataProducts.Output_Correlated.dirmask=L${OBSID}
+ObsSW.Observation.DataProducts.Output_Correlated.enabled=true
+ObsSW.Observation.DataProducts.Output_Correlated.filenames=[L527639_SB000_uv.dppp.MS,L527639_SB001_uv.dppp.MS,L527639_SB002_uv.dppp.MS,L527639_SB003_uv.dppp.MS,L527639_SB004_uv.dppp.MS,L527639_SB005_uv.dppp.MS,L527639_SB006_uv.dppp.MS,L527639_SB007_uv.dppp.MS,L527639_SB008_uv.dppp.MS,L527639_SB009_uv.dppp.MS,L527639_SB010_uv.dppp.MS,L527639_SB011_uv.dppp.MS,L527639_SB012_uv.dppp.MS,L527639_SB013_uv.dppp.MS,L527639_SB014_uv.dppp.MS,L527639_SB015_uv.dppp.MS,L527639_SB016_uv.dppp.MS,L527639_SB017_uv.dppp.MS,L527639_SB018_uv.dppp.MS,L527639_SB019_uv.dppp.MS,L527639_SB020_uv.dppp.MS,L527639_SB021_uv.dppp.MS,L527639_SB022_uv.dppp.MS,L527639_SB023_uv.dppp.MS,L527639_SB024_uv.dppp.MS,L527639_SB025_uv.dppp.MS,L527639_SB026_uv.dppp.MS,L527639_SB027_uv.dppp.MS,L527639_SB028_uv.dppp.MS,L527639_SB029_uv.dppp.MS,L527639_SB030_uv.dppp.MS,L527639_SB031_uv.dppp.MS,L527639_SB032_uv.dppp.MS,L527639_SB033_uv.dppp.MS,L527639_SB034_uv.dppp.MS,L527639_SB035_uv.dppp.MS,L527639_SB036_uv.dppp.MS,L527639_SB037_uv.dppp.MS,L527639_SB038_uv.dppp.MS,L527639_SB039_uv.dppp.MS,L527639_SB040_uv.dppp.MS,L527639_SB041_uv.dppp.MS,L527639_SB042_uv.dppp.MS,L527639_SB043_uv.dppp.MS,L527639_SB044_uv.dppp.MS,L527639_SB045_uv.dppp.MS,L527639_SB046_uv.dppp.MS,L527639_SB047_uv.dppp.MS,L527639_SB048_uv.dppp.MS,L527639_SB049_uv.dppp.MS,L527639_SB050_uv.dppp.MS,L527639_SB051_uv.dppp.MS,L527639_SB052_uv.dppp.MS,L527639_SB053_uv.dppp.MS,L527639_SB054_uv.dppp.MS,L527639_SB055_uv.dppp.MS,L527639_SB056_uv.dppp.MS,L527639_SB057_uv.dppp.MS,L527639_SB058_uv.dppp.MS,L527639_SB059_uv.dppp.MS,L527639_SB060_uv.dppp.MS,L527639_SB061_uv.dppp.MS,L527639_SB062_uv.dppp.MS,L527639_SB063_uv.dppp.MS,L527639_SB064_uv.dppp.MS,L527639_SB065_uv.dppp.MS,L527639_SB066_uv.dppp.MS,L527639_SB067_uv.dppp.MS,L527639_SB068_uv.dppp.MS,L527639_SB069_uv.dppp.MS,L527639_SB070_uv.dppp.MS,L527639_SB071_uv.dppp.MS,L527639_SB072_uv.dppp.MS,L527639_SB073_uv.dppp.MS,L527639_SB074_uv.dppp.MS,L527639_SB075_uv.dppp.MS,L527639_SB076_uv.dppp.MS,L527639_SB077_uv.dppp.MS,L527639_SB078_uv.dppp.MS,L527639_SB079_uv.dppp.MS,L527639_SB080_uv.dppp.MS,L527639_SB081_uv.dppp.MS,L527639_SB082_uv.dppp.MS,L527639_SB083_uv.dppp.MS,L527639_SB084_uv.dppp.MS,L527639_SB085_uv.dppp.MS,L527639_SB086_uv.dppp.MS,L527639_SB087_uv.dppp.MS,L527639_SB088_uv.dppp.MS,L527639_SB089_uv.dppp.MS,L527639_SB090_uv.dppp.MS,L527639_SB091_uv.dppp.MS,L527639_SB092_uv.dppp.MS,L527639_SB093_uv.dppp.MS,L527639_SB094_uv.dppp.MS,L527639_SB095_uv.dppp.MS,L527639_SB096_uv.dppp.MS,L527639_SB097_uv.dppp.MS,L527639_SB098_uv.dppp.MS,L527639_SB099_uv.dppp.MS,L527639_SB100_uv.dppp.MS,L527639_SB101_uv.dppp.MS,L527639_SB102_uv.dppp.MS,L527639_SB103_uv.dppp.MS,L527639_SB104_uv.dppp.MS,L527639_SB105_uv.dppp.MS,L527639_SB106_uv.dppp.MS,L527639_SB107_uv.dppp.MS,L527639_SB108_uv.dppp.MS,L527639_SB109_uv.dppp.MS,L527639_SB110_uv.dppp.MS,L527639_SB111_uv.dppp.MS,L527639_SB112_uv.dppp.MS,L527639_SB113_uv.dppp.MS,L527639_SB114_uv.dppp.MS,L527639_SB115_uv.dppp.MS,L527639_SB116_uv.dppp.MS,L527639_SB117_uv.dppp.MS,L527639_SB118_uv.dppp.MS,L527639_SB119_uv.dppp.MS,L527639_SB120_uv.dppp.MS,L527639_SB121_uv.dppp.MS,L527639_SB122_uv.dppp.MS,L527639_SB123_uv.dppp.MS,L527639_SB124_uv.dppp.MS,L527639_SB125_uv.dppp.MS,L527639_SB126_uv.dppp.MS,L527639_SB127_uv.dppp.MS,L527639_SB128_uv.dppp.MS,L527639_SB129_uv.dppp.MS,L527639_SB130_uv.dppp.MS,L527639_SB131_uv.dppp.MS,L527639_SB132_uv.dppp.MS,L527639_SB133_uv.dppp.MS,L527639_SB134_uv.dppp.MS,L527639_SB135_uv.dppp.MS,L527639_SB136_uv.dppp.MS,L527639_SB137_uv.dppp.MS,L527639_SB138_uv.dppp.MS,L527639_SB139_uv.dppp.MS,L527639_SB140_uv.dppp.MS,L527639_SB141_uv.dppp.MS,L527639_SB142_uv.dppp.MS,L527639_SB143_uv.dppp.MS,L527639_SB144_uv.dppp.MS,L527639_SB145_uv.dppp.MS,L527639_SB146_uv.dppp.MS,L527639_SB147_uv.dppp.MS,L527639_SB148_uv.dppp.MS,L527639_SB149_uv.dppp.MS,L527639_SB150_uv.dppp.MS,L527639_SB151_uv.dppp.MS,L527639_SB152_uv.dppp.MS,L527639_SB153_uv.dppp.MS,L527639_SB154_uv.dppp.MS,L527639_SB155_uv.dppp.MS,L527639_SB156_uv.dppp.MS,L527639_SB157_uv.dppp.MS,L527639_SB158_uv.dppp.MS,L527639_SB159_uv.dppp.MS,L527639_SB160_uv.dppp.MS,L527639_SB161_uv.dppp.MS,L527639_SB162_uv.dppp.MS,L527639_SB163_uv.dppp.MS,L527639_SB164_uv.dppp.MS,L527639_SB165_uv.dppp.MS,L527639_SB166_uv.dppp.MS,L527639_SB167_uv.dppp.MS,L527639_SB168_uv.dppp.MS,L527639_SB169_uv.dppp.MS,L527639_SB170_uv.dppp.MS,L527639_SB171_uv.dppp.MS,L527639_SB172_uv.dppp.MS,L527639_SB173_uv.dppp.MS,L527639_SB174_uv.dppp.MS,L527639_SB175_uv.dppp.MS,L527639_SB176_uv.dppp.MS,L527639_SB177_uv.dppp.MS,L527639_SB178_uv.dppp.MS,L527639_SB179_uv.dppp.MS,L527639_SB180_uv.dppp.MS,L527639_SB181_uv.dppp.MS,L527639_SB182_uv.dppp.MS,L527639_SB183_uv.dppp.MS,L527639_SB184_uv.dppp.MS,L527639_SB185_uv.dppp.MS,L527639_SB186_uv.dppp.MS,L527639_SB187_uv.dppp.MS,L527639_SB188_uv.dppp.MS,L527639_SB189_uv.dppp.MS,L527639_SB190_uv.dppp.MS,L527639_SB191_uv.dppp.MS,L527639_SB192_uv.dppp.MS,L527639_SB193_uv.dppp.MS,L527639_SB194_uv.dppp.MS,L527639_SB195_uv.dppp.MS,L527639_SB196_uv.dppp.MS,L527639_SB197_uv.dppp.MS,L527639_SB198_uv.dppp.MS,L527639_SB199_uv.dppp.MS,L527639_SB200_uv.dppp.MS,L527639_SB201_uv.dppp.MS,L527639_SB202_uv.dppp.MS,L527639_SB203_uv.dppp.MS,L527639_SB204_uv.dppp.MS,L527639_SB205_uv.dppp.MS,L527639_SB206_uv.dppp.MS,L527639_SB207_uv.dppp.MS,L527639_SB208_uv.dppp.MS,L527639_SB209_uv.dppp.MS,L527639_SB210_uv.dppp.MS,L527639_SB211_uv.dppp.MS,L527639_SB212_uv.dppp.MS,L527639_SB213_uv.dppp.MS,L527639_SB214_uv.dppp.MS,L527639_SB215_uv.dppp.MS,L527639_SB216_uv.dppp.MS,L527639_SB217_uv.dppp.MS,L527639_SB218_uv.dppp.MS,L527639_SB219_uv.dppp.MS,L527639_SB220_uv.dppp.MS,L527639_SB221_uv.dppp.MS,L527639_SB222_uv.dppp.MS,L527639_SB223_uv.dppp.MS,L527639_SB224_uv.dppp.MS,L527639_SB225_uv.dppp.MS,L527639_SB226_uv.dppp.MS,L527639_SB227_uv.dppp.MS,L527639_SB228_uv.dppp.MS,L527639_SB229_uv.dppp.MS,L527639_SB230_uv.dppp.MS,L527639_SB231_uv.dppp.MS,L527639_SB232_uv.dppp.MS,L527639_SB233_uv.dppp.MS,L527639_SB234_uv.dppp.MS,L527639_SB235_uv.dppp.MS,L527639_SB236_uv.dppp.MS,L527639_SB237_uv.dppp.MS,L527639_SB238_uv.dppp.MS,L527639_SB239_uv.dppp.MS,L527639_SB240_uv.dppp.MS,L527639_SB241_uv.dppp.MS,L527639_SB242_uv.dppp.MS,L527639_SB243_uv.dppp.MS]
+ObsSW.Observation.DataProducts.Output_Correlated.identifications=[mom.G697898.B4.1.PT0.uv.dps]
+ObsSW.Observation.DataProducts.Output_Correlated.locations=[locus001:/data/L527639/,locus003:/data/L527639/,locus004:/data/L527639/,locus005:/data/L527639/,locus006:/data/L527639/,locus007:/data/L527639/,locus008:/data/L527639/,locus009:/data/L527639/,locus010:/data/L527639/,locus011:/data/L527639/,locus012:/data/L527639/,locus014:/data/L527639/,locus015:/data/L527639/,locus016:/data/L527639/,locus017:/data/L527639/,locus018:/data/L527639/,locus019:/data/L527639/,locus020:/data/L527639/,locus021:/data/L527639/,locus023:/data/L527639/,locus025:/data/L527639/,locus026:/data/L527639/,locus028:/data/L527639/,locus029:/data/L527639/,locus031:/data/L527639/,locus032:/data/L527639/,locus034:/data/L527639/,locus035:/data/L527639/,locus036:/data/L527639/,locus037:/data/L527639/,locus038:/data/L527639/,locus039:/data/L527639/,locus040:/data/L527639/,locus041:/data/L527639/,locus042:/data/L527639/,locus043:/data/L527639/,locus044:/data/L527639/,locus045:/data/L527639/,locus046:/data/L527639/,locus047:/data/L527639/,locus048:/data/L527639/,locus049:/data/L527639/,locus050:/data/L527639/,locus051:/data/L527639/,locus052:/data/L527639/,locus053:/data/L527639/,locus054:/data/L527639/,locus055:/data/L527639/,locus056:/data/L527639/,locus057:/data/L527639/,locus058:/data/L527639/,locus060:/data/L527639/,locus061:/data/L527639/,locus062:/data/L527639/,locus063:/data/L527639/,locus064:/data/L527639/,locus065:/data/L527639/,locus066:/data/L527639/,locus067:/data/L527639/,locus068:/data/L527639/,locus069:/data/L527639/,locus070:/data/L527639/,locus071:/data/L527639/,locus072:/data/L527639/,locus073:/data/L527639/,locus074:/data/L527639/,locus075:/data/L527639/,locus076:/data/L527639/,locus077:/data/L527639/,locus078:/data/L527639/,locus079:/data/L527639/,locus080:/data/L527639/,locus081:/data/L527639/,locus082:/data/L527639/,locus084:/data/L527639/,locus085:/data/L527639/,locus086:/data/L527639/,locus087:/data/L527639/,locus088:/data/L527639/,locus089:/data/L527639/,locus090:/data/L527639/,locus091:/data/L527639/,locus001:/data/L527639/,locus003:/data/L527639/,locus004:/data/L527639/,locus005:/data/L527639/,locus006:/data/L527639/,locus007:/data/L527639/,locus008:/data/L527639/,locus009:/data/L527639/,locus010:/data/L527639/,locus011:/data/L527639/,locus012:/data/L527639/,locus014:/data/L527639/,locus015:/data/L527639/,locus016:/data/L527639/,locus017:/data/L527639/,locus018:/data/L527639/,locus019:/data/L527639/,locus020:/data/L527639/,locus021:/data/L527639/,locus023:/data/L527639/,locus025:/data/L527639/,locus026:/data/L527639/,locus028:/data/L527639/,locus029:/data/L527639/,locus031:/data/L527639/,locus032:/data/L527639/,locus034:/data/L527639/,locus035:/data/L527639/,locus036:/data/L527639/,locus037:/data/L527639/,locus038:/data/L527639/,locus039:/data/L527639/,locus040:/data/L527639/,locus041:/data/L527639/,locus042:/data/L527639/,locus043:/data/L527639/,locus044:/data/L527639/,locus045:/data/L527639/,locus046:/data/L527639/,locus047:/data/L527639/,locus048:/data/L527639/,locus049:/data/L527639/,locus050:/data/L527639/,locus051:/data/L527639/,locus052:/data/L527639/,locus053:/data/L527639/,locus054:/data/L527639/,locus055:/data/L527639/,locus056:/data/L527639/,locus057:/data/L527639/,locus058:/data/L527639/,locus060:/data/L527639/,locus061:/data/L527639/,locus062:/data/L527639/,locus063:/data/L527639/,locus064:/data/L527639/,locus065:/data/L527639/,locus066:/data/L527639/,locus067:/data/L527639/,locus068:/data/L527639/,locus069:/data/L527639/,locus070:/data/L527639/,locus071:/data/L527639/,locus072:/data/L527639/,locus073:/data/L527639/,locus074:/data/L527639/,locus075:/data/L527639/,locus076:/data/L527639/,locus077:/data/L527639/,locus078:/data/L527639/,locus079:/data/L527639/,locus080:/data/L527639/,locus081:/data/L527639/,locus082:/data/L527639/,locus084:/data/L527639/,locus085:/data/L527639/,locus086:/data/L527639/,locus087:/data/L527639/,locus088:/data/L527639/,locus089:/data/L527639/,locus090:/data/L527639/,locus091:/data/L527639/,locus001:/data/L527639/,locus003:/data/L527639/,locus004:/data/L527639/,locus005:/data/L527639/,locus006:/data/L527639/,locus007:/data/L527639/,locus008:/data/L527639/,locus009:/data/L527639/,locus010:/data/L527639/,locus011:/data/L527639/,locus012:/data/L527639/,locus014:/data/L527639/,locus015:/data/L527639/,locus016:/data/L527639/,locus017:/data/L527639/,locus018:/data/L527639/,locus019:/data/L527639/,locus020:/data/L527639/,locus021:/data/L527639/,locus023:/data/L527639/,locus025:/data/L527639/,locus026:/data/L527639/,locus028:/data/L527639/,locus029:/data/L527639/,locus031:/data/L527639/,locus032:/data/L527639/,locus034:/data/L527639/,locus035:/data/L527639/,locus036:/data/L527639/,locus037:/data/L527639/,locus038:/data/L527639/,locus039:/data/L527639/,locus040:/data/L527639/,locus041:/data/L527639/,locus042:/data/L527639/,locus043:/data/L527639/,locus044:/data/L527639/,locus045:/data/L527639/,locus046:/data/L527639/,locus047:/data/L527639/,locus048:/data/L527639/,locus049:/data/L527639/,locus050:/data/L527639/,locus051:/data/L527639/,locus052:/data/L527639/,locus053:/data/L527639/,locus054:/data/L527639/,locus055:/data/L527639/,locus056:/data/L527639/,locus057:/data/L527639/,locus058:/data/L527639/,locus060:/data/L527639/,locus061:/data/L527639/,locus062:/data/L527639/,locus063:/data/L527639/,locus064:/data/L527639/,locus065:/data/L527639/,locus066:/data/L527639/,locus067:/data/L527639/,locus068:/data/L527639/,locus069:/data/L527639/,locus070:/data/L527639/,locus071:/data/L527639/,locus072:/data/L527639/,locus073:/data/L527639/,locus074:/data/L527639/,locus075:/data/L527639/,locus076:/data/L527639/,locus077:/data/L527639/,locus078:/data/L527639/,locus079:/data/L527639/,locus080:/data/L527639/,locus081:/data/L527639/,locus082:/data/L527639/,locus084:/data/L527639/,locus085:/data/L527639/,locus086:/data/L527639/,locus087:/data/L527639/,locus088:/data/L527639/,locus089:/data/L527639/]
+ObsSW.Observation.DataProducts.Output_Correlated.mountpoints=[locus001:/data,locus003:/data,locus004:/data,locus005:/data,locus006:/data,locus007:/data,locus008:/data,locus009:/data,locus010:/data,locus011:/data,locus012:/data,locus014:/data,locus015:/data,locus016:/data,locus017:/data,locus018:/data,locus019:/data,locus020:/data,locus021:/data,locus023:/data,locus025:/data,locus026:/data,locus028:/data,locus029:/data,locus031:/data,locus032:/data,locus034:/data,locus035:/data,locus036:/data,locus037:/data,locus038:/data,locus039:/data,locus040:/data,locus041:/data,locus042:/data,locus043:/data,locus044:/data,locus045:/data,locus046:/data,locus047:/data,locus048:/data,locus049:/data,locus050:/data,locus051:/data,locus052:/data,locus053:/data,locus054:/data,locus055:/data,locus056:/data,locus057:/data,locus058:/data,locus060:/data,locus061:/data,locus062:/data,locus063:/data,locus064:/data,locus065:/data,locus066:/data,locus067:/data,locus068:/data,locus069:/data,locus070:/data,locus071:/data,locus072:/data,locus073:/data,locus074:/data,locus075:/data,locus076:/data,locus077:/data,locus078:/data,locus079:/data,locus080:/data,locus081:/data,locus082:/data,locus084:/data,locus085:/data,locus086:/data,locus087:/data,locus088:/data,locus089:/data,locus090:/data,locus091:/data]
+ObsSW.Observation.DataProducts.Output_Correlated.namemask=L${OBSID}_SAP${SAP}_SB${SUBBAND}_uv.MS
+ObsSW.Observation.DataProducts.Output_Correlated.percentageWritten=[]
+ObsSW.Observation.DataProducts.Output_Correlated.retentiontime=14
+ObsSW.Observation.DataProducts.Output_Correlated.skip=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
+ObsSW.Observation.DataProducts.Output_Correlated.storageClusterName=
+ObsSW.Observation.DataProducts.Output_Correlated.storageClusterPartition=
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.archived=false
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.deleted=false
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.dirmask=
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.enabled=false
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.filenames=[]
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.identifications=[]
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.locations=[]
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.mountpoints=[]
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.namemask=
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.percentageWritten=[]
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.retentiontime=14
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.skip=[]
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.storageClusterName=
+ObsSW.Observation.DataProducts.Output_IncoherentStokes.storageClusterPartition=
+ObsSW.Observation.DataProducts.Output_InstrumentModel.archived=false
+ObsSW.Observation.DataProducts.Output_InstrumentModel.deleted=false
+ObsSW.Observation.DataProducts.Output_InstrumentModel.dirmask=
+ObsSW.Observation.DataProducts.Output_InstrumentModel.enabled=false
+ObsSW.Observation.DataProducts.Output_InstrumentModel.filenames=[]
+ObsSW.Observation.DataProducts.Output_InstrumentModel.identifications=[]
+ObsSW.Observation.DataProducts.Output_InstrumentModel.locations=[]
+ObsSW.Observation.DataProducts.Output_InstrumentModel.mountpoints=[]
+ObsSW.Observation.DataProducts.Output_InstrumentModel.namemask=
+ObsSW.Observation.DataProducts.Output_InstrumentModel.percentageWritten=[]
+ObsSW.Observation.DataProducts.Output_InstrumentModel.retentiontime=14
+ObsSW.Observation.DataProducts.Output_InstrumentModel.skip=[]
+ObsSW.Observation.DataProducts.Output_InstrumentModel.storageClusterName=
+ObsSW.Observation.DataProducts.Output_InstrumentModel.storageClusterPartition=
+ObsSW.Observation.DataProducts.Output_Pulsar.archived=false
+ObsSW.Observation.DataProducts.Output_Pulsar.deleted=false
+ObsSW.Observation.DataProducts.Output_Pulsar.dirmask=
+ObsSW.Observation.DataProducts.Output_Pulsar.enabled=false
+ObsSW.Observation.DataProducts.Output_Pulsar.filenames=[]
+ObsSW.Observation.DataProducts.Output_Pulsar.identifications=[]
+ObsSW.Observation.DataProducts.Output_Pulsar.locations=[]
+ObsSW.Observation.DataProducts.Output_Pulsar.mountpoints=[]
+ObsSW.Observation.DataProducts.Output_Pulsar.namemask=
+ObsSW.Observation.DataProducts.Output_Pulsar.percentageWritten=[]
+ObsSW.Observation.DataProducts.Output_Pulsar.retentiontime=14
+ObsSW.Observation.DataProducts.Output_Pulsar.skip=[]
+ObsSW.Observation.DataProducts.Output_Pulsar.storageClusterName=
+ObsSW.Observation.DataProducts.Output_Pulsar.storageClusterPartition=
+ObsSW.Observation.DataProducts.Output_SkyImage.archived=false
+ObsSW.Observation.DataProducts.Output_SkyImage.deleted=false
+ObsSW.Observation.DataProducts.Output_SkyImage.dirmask=
+ObsSW.Observation.DataProducts.Output_SkyImage.enabled=false
+ObsSW.Observation.DataProducts.Output_SkyImage.filenames=[]
+ObsSW.Observation.DataProducts.Output_SkyImage.identifications=[]
+ObsSW.Observation.DataProducts.Output_SkyImage.locations=[]
+ObsSW.Observation.DataProducts.Output_SkyImage.mountpoints=[]
+ObsSW.Observation.DataProducts.Output_SkyImage.namemask=
+ObsSW.Observation.DataProducts.Output_SkyImage.percentageWritten=[]
+ObsSW.Observation.DataProducts.Output_SkyImage.retentiontime=14
+ObsSW.Observation.DataProducts.Output_SkyImage.skip=[]
+ObsSW.Observation.DataProducts.Output_SkyImage.storageClusterName=
+ObsSW.Observation.DataProducts.Output_SkyImage.storageClusterPartition=
+ObsSW.Observation.ObservationControl.heartbeatInterval=10
+ObsSW.Observation.ObservationControl._hostname=MCU001
+ObsSW.Observation.ObservationControl.PythonControl.canCommunicate=false
+ObsSW.Observation.ObservationControl.PythonControl._hostname=CCU001
+ObsSW.Observation.ObservationControl.PythonControl.pythonHost=lhn001.cep2.lofar
+ObsSW.Observation.ObservationControl.PythonControl.pythonProgram=preprocessing_pipeline.py
+ObsSW.Observation.ObservationControl.PythonControl.softwareVersion=
+ObsSW.Observation.ObservationControl.PythonControl.Calibration.exportCalibrationParameters=false
+ObsSW.Observation.ObservationControl.PythonControl.Calibration.SkyModel=
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.checkparset=-1
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.showprogress=F
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.showtimings=F
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.steps=[preflagger[0],preflagger[1],aoflagger,demixer]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.uselogger=T
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.aoflagger.autocorr=F
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.aoflagger.keepstatistics=T
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.aoflagger.memorymax=10
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.aoflagger.memoryperc=0
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.aoflagger.overlapmax=0
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.aoflagger.overlapperc=0
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.aoflagger.pedantic=F
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.aoflagger.pulsar=F
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.aoflagger.strategy=HBAdefault
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.aoflagger.timewindow=0
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.aoflagger.type=aoflagger
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.aoflagger.count.path=-
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.aoflagger.count.save=FALSE
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.demixer.baseline=CS*,RS*&amp;
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.demixer.blrange=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.demixer.corrtype=cross
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.demixer.demixfreqstep=8
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.demixer.demixtimestep=1
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.demixer.elevationcutoff=0.0deg
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.demixer.freqstep=8
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.demixer.ignoretarget=false
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.demixer.instrumentmodel=instrument
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.demixer.modelsources=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.demixer.ntimechunk=0
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.demixer.othersources=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.demixer.skymodel=sky
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.demixer.subtractsources=
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.demixer.targetsource=
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.demixer.timestep=1
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.demixer.type=demixer
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.msin.autoweight=true
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.msin.band=-1
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.msin.baseline=
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.msin.blrange=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.msin.corrtype=
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.msin.datacolumn=DATA
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.msin.forceautoweight=false
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.msin.missingdata=false
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.msin.nchan=nchan
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.msin.orderms=false
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.msin.sort=false
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.msin.startchan=0
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.msin.useflag=true
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.msout.overwrite=false
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.msout.tilenchan=8
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.msout.tilesize=1024
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.msout.vdsdir=A
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.msout.writefullresflag=true
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[0].abstime=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[0].azimuth=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[0].baseline=
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[0].blrange=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[0].chan=[0..nchan/32-1,31*nchan/32..nchan-1]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[0].corrtype=
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[0].elevation=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[0].expr=
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[0].freqrange=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[0].lst=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[0].reltime=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[0].timeofday=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[0].timeslot=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[0].type=preflagger
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[0].count.path=-
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[0].count.save=false
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[1].abstime=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[1].azimuth=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[1].baseline=
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[1].blrange=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[1].chan=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[1].corrtype=auto
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[1].elevation=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[1].expr=
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[1].freqrange=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[1].lst=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[1].reltime=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[1].timeofday=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[1].timeslot=[]
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[1].type=preflagger
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[1].count.path=-
+ObsSW.Observation.ObservationControl.PythonControl.DPPP.preflagger[1].count.save=false
+ObsSW.Observation.ObservationControl.PythonControl.LongBaseline.subbandgroups_per_ms=1
+ObsSW.Observation.ObservationControl.PythonControl.LongBaseline.subbands_per_subbandgroup=1
+ObsSW.Observation.ObservationControl.PythonControl.PreProcessing.demix_always=[]
+ObsSW.Observation.ObservationControl.PythonControl.PreProcessing.demix_if_needed=[]
+ObsSW.Observation.ObservationControl.PythonControl.PreProcessing.SkyModel=Ateam_LBA_CC
+ObsSW.Observation.Scheduler.contactEmail=
+ObsSW.Observation.Scheduler.contactName=
+ObsSW.Observation.Scheduler.contactPhone=
+ObsSW.Observation.Scheduler.firstPossibleDay=0
+ObsSW.Observation.Scheduler.fixedDay=false
+ObsSW.Observation.Scheduler.fixedTime=false
+ObsSW.Observation.Scheduler.lastPossibleDay=0
+ObsSW.Observation.Scheduler.late=false
+ObsSW.Observation.Scheduler.nightTimeWeightFactor=0
+ObsSW.Observation.Scheduler.predecessors=[L527637]
+ObsSW.Observation.Scheduler.predMaxTimeDif=
+ObsSW.Observation.Scheduler.predMinTimeDif=
+ObsSW.Observation.Scheduler.priority=0.0
+ObsSW.Observation.Scheduler.reason=
+ObsSW.Observation.Scheduler.referenceFrame=0
+ObsSW.Observation.Scheduler.reservation=0
+ObsSW.Observation.Scheduler.storageSelectionMode=1
+ObsSW.Observation.Scheduler.taskDuration=14400
+ObsSW.Observation.Scheduler.taskID=301
+ObsSW.Observation.Scheduler.taskName=CygA/1.0/TP
+ObsSW.Observation.Scheduler.taskType=0
+ObsSW.Observation.Scheduler.windowMaximumTime=
+ObsSW.Observation.Scheduler.windowMinimumTime=
+ObsSW.Observation.VirtualInstrument.minimalNrStations=1
+ObsSW.Observation.VirtualInstrument.stationList=[]
+ObsSW.Observation.VirtualInstrument.stationSet=
+Version.number=33385
+ObsSW.Observation.processType=Pipeline
+ObsSW.Observation.processSubtype=Averaging Pipeline
+ObsSW.Observation.strategy=Preprocessing only
+ObsSW.Observation.Campaign.name="LC6_016"
+ObsSW.Observation.Campaign.title="Investigating the peculiar nature of mixed morphology supernova remnants: W63 and HB9"
+ObsSW.Observation.Campaign.PI="Arias de Saavedra Benitez,  Maria"
+ObsSW.Observation.Campaign.CO_I="Raymond Oonk"
+ObsSW.Observation.Campaign.contact="Arias de Saavedra Benitez,  Maria"
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[0].centralFrequency=147851562.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[0].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[0].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[0].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[0].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[0].filename=L527639_SB000_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[0].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[0].job_duration=4.7294511795
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[0].location=locus001:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[0].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[0].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[0].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[0].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[0].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[0].subband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[100].centralFrequency=167382812.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[100].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[100].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[100].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[100].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[100].filename=L527639_SB100_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[100].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[100].job_duration=4.61059808731
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[100].location=locus021:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[100].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[100].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[100].size=5798401136
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[100].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[100].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[100].subband=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[101].centralFrequency=167578125.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[101].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[101].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[101].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[101].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[101].filename=L527639_SB101_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[101].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[101].job_duration=4.57132196426
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[101].location=locus023:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[101].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[101].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[101].size=5798302808
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[101].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[101].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[101].subband=101
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[102].centralFrequency=167773437.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[102].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[102].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[102].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[102].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[102].filename=L527639_SB102_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[102].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[102].job_duration=5.91164398193
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[102].location=locus025:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[102].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[102].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[102].size=5798204480
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[102].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[102].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[102].subband=102
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[103].centralFrequency=167968750.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[103].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[103].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[103].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[103].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[103].filename=L527639_SB103_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[103].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[103].job_duration=4.84782099724
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[103].location=locus026:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[103].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[103].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[103].size=5798138928
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[103].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[103].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[103].subband=103
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[104].centralFrequency=168164062.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[104].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[104].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[104].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[104].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[104].filename=L527639_SB104_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[104].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[104].job_duration=5.88464689255
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[104].location=locus028:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[104].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[104].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[104].size=5798106152
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[104].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[104].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[104].subband=104
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[105].centralFrequency=168359375.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[105].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[105].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[105].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[105].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[105].filename=L527639_SB105_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[105].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[105].job_duration=5.91808605194
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[105].location=locus029:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[105].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[105].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[105].size=5798073376
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[105].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[105].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[105].subband=105
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[106].centralFrequency=168554687.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[106].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[106].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[106].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[106].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[106].filename=L527639_SB106_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[106].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[106].job_duration=5.32743096352
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[106].location=locus031:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[106].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[106].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[106].size=5798040600
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[106].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[106].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[106].subband=106
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[107].centralFrequency=168750000.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[107].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[107].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[107].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[107].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[107].filename=L527639_SB107_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[107].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[107].job_duration=5.85526919365
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[107].location=locus032:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[107].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[107].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[107].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[107].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[107].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[107].subband=107
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[108].centralFrequency=168945312.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[108].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[108].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[108].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[108].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[108].filename=L527639_SB108_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[108].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[108].job_duration=4.99366903305
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[108].location=locus034:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[108].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[108].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[108].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[108].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[108].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[108].subband=108
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[109].centralFrequency=169140625.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[109].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[109].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[109].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[109].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[109].filename=L527639_SB109_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[109].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[109].job_duration=4.97597885132
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[109].location=locus035:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[109].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[109].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[109].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[109].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[109].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[109].subband=109
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[10].centralFrequency=149804687.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[10].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[10].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[10].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[10].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[10].filename=L527639_SB010_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[10].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[10].job_duration=4.72731399536
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[10].location=locus012:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[10].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[10].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[10].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[10].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[10].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[10].subband=10
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[110].centralFrequency=169335937.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[110].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[110].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[110].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[110].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[110].filename=L527639_SB110_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[110].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[110].job_duration=5.02079105377
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[110].location=locus036:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[110].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[110].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[110].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[110].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[110].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[110].subband=110
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[111].centralFrequency=169531250.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[111].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[111].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[111].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[111].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[111].filename=L527639_SB111_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[111].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[111].job_duration=6.03952598572
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[111].location=locus037:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[111].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[111].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[111].size=5799220536
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[111].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[111].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[111].subband=111
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[112].centralFrequency=169726562.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[112].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[112].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[112].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[112].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[112].filename=L527639_SB112_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[112].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[112].job_duration=4.98527503014
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[112].location=locus038:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[112].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[112].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[112].size=5798630568
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[112].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[112].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[112].subband=112
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[113].centralFrequency=169921875.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[113].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[113].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[113].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[113].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[113].filename=L527639_SB113_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[113].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[113].job_duration=5.13204693794
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[113].location=locus039:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[113].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[113].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[113].size=5797909496
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[113].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[113].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[113].subband=113
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[114].centralFrequency=170117187.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[114].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[114].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[114].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[114].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[114].filename=L527639_SB114_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[114].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[114].job_duration=5.0974509716
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[114].location=locus040:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[114].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[114].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[114].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[114].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[114].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[114].subband=114
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[115].centralFrequency=170312500.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[115].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[115].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[115].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[115].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[115].filename=L527639_SB115_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[115].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[115].job_duration=5.17209792137
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[115].location=locus041:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[115].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[115].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[115].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[115].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[115].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[115].subband=115
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[116].centralFrequency=170507812.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[116].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[116].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[116].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[116].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[116].filename=L527639_SB116_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[116].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[116].job_duration=5.22628498077
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[116].location=locus042:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[116].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[116].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[116].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[116].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[116].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[116].subband=116
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[117].centralFrequency=170703125.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[117].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[117].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[117].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[117].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[117].filename=L527639_SB117_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[117].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[117].job_duration=5.10802197456
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[117].location=locus043:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[117].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[117].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[117].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[117].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[117].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[117].subband=117
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[118].centralFrequency=170898437.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[118].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[118].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[118].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[118].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[118].filename=L527639_SB118_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[118].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[118].job_duration=5.19104599953
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[118].location=locus044:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[118].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[118].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[118].size=5798040600
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[118].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[118].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[118].subband=118
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[119].centralFrequency=171093750.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[119].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[119].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[119].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[119].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[119].filename=L527639_SB119_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[119].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[119].job_duration=6.43775105476
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[119].location=locus045:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[119].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[119].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[119].size=5798040600
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[119].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[119].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[119].subband=119
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[11].centralFrequency=150000000.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[11].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[11].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[11].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[11].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[11].filename=L527639_SB011_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[11].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[11].job_duration=4.73003411293
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[11].location=locus014:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[11].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[11].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[11].size=5797909496
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[11].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[11].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[11].subband=11
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[120].centralFrequency=171289062.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[120].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[120].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[120].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[120].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[120].filename=L527639_SB120_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[120].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[120].job_duration=6.5562710762
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[120].location=locus046:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[120].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[120].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[120].size=5798040600
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[120].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[120].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[120].subband=120
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[121].centralFrequency=171484375.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[121].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[121].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[121].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[121].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[121].filename=L527639_SB121_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[121].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[121].job_duration=4.52708101273
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[121].location=locus047:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[121].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[121].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[121].size=5798040600
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[121].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[121].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[121].subband=121
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[122].centralFrequency=171679687.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[122].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[122].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[122].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[122].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[122].filename=L527639_SB122_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[122].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[122].job_duration=6.66743302345
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[122].location=locus048:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[122].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[122].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[122].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[122].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[122].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[122].subband=122
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[123].centralFrequency=171875000.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[123].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[123].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[123].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[123].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[123].filename=L527639_SB123_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[123].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[123].job_duration=5.13240194321
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[123].location=locus049:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[123].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[123].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[123].size=5798040600
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[123].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[123].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[123].subband=123
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[124].centralFrequency=172070312.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[124].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[124].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[124].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[124].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[124].filename=L527639_SB124_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[124].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[124].job_duration=5.3049519062
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[124].location=locus050:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[124].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[124].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[124].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[124].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[124].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[124].subband=124
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[125].centralFrequency=172265625.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[125].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[125].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[125].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[125].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[125].filename=L527639_SB125_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[125].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[125].job_duration=5.09008598328
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[125].location=locus051:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[125].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[125].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[125].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[125].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[125].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[125].subband=125
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[126].centralFrequency=172460937.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[126].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[126].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[126].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[126].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[126].filename=L527639_SB126_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[126].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[126].job_duration=5.18935084343
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[126].location=locus052:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[126].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[126].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[126].size=5797221200
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[126].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[126].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[126].subband=126
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[127].centralFrequency=172656250.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[127].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[127].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[127].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[127].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[127].filename=L527639_SB127_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[127].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[127].job_duration=5.27698993683
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[127].location=locus053:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[127].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[127].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[127].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[127].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[127].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[127].subband=127
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[128].centralFrequency=172851562.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[128].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[128].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[128].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[128].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[128].filename=L527639_SB128_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[128].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[128].job_duration=4.51409816742
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[128].location=locus054:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[128].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[128].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[128].size=5798040600
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[128].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[128].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[128].subband=128
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[129].centralFrequency=173046875.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[129].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[129].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[129].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[129].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[129].filename=L527639_SB129_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[129].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[129].job_duration=5.11812496185
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[129].location=locus055:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[129].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[129].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[129].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[129].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[129].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[129].subband=129
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[12].centralFrequency=150195312.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[12].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[12].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[12].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[12].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[12].filename=L527639_SB012_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[12].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[12].job_duration=4.73743200302
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[12].location=locus015:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[12].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[12].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[12].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[12].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[12].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[12].subband=12
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[130].centralFrequency=173242187.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[130].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[130].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[130].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[130].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[130].filename=L527639_SB130_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[130].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[130].job_duration=6.64684414864
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[130].location=locus056:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[130].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[130].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[130].size=5798040600
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[130].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[130].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[130].subband=130
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[131].centralFrequency=173437500.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[131].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[131].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[131].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[131].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[131].filename=L527639_SB131_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[131].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[131].job_duration=5.16987800598
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[131].location=locus057:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[131].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[131].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[131].size=5798073376
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[131].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[131].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[131].subband=131
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[132].centralFrequency=173632812.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[132].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[132].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[132].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[132].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[132].filename=L527639_SB132_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[132].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[132].job_duration=5.15916585922
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[132].location=locus058:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[132].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[132].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[132].size=5798073376
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[132].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[132].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[132].subband=132
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[133].centralFrequency=173828125.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[133].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[133].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[133].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[133].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[133].filename=L527639_SB133_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[133].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[133].job_duration=5.12267780304
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[133].location=locus060:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[133].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[133].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[133].size=5798073376
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[133].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[133].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[133].subband=133
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[134].centralFrequency=174023437.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[134].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[134].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[134].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[134].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[134].filename=L527639_SB134_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[134].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[134].job_duration=5.16845488548
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[134].location=locus061:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[134].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[134].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[134].size=5798073376
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[134].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[134].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[134].subband=134
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[135].centralFrequency=174218750.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[135].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[135].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[135].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[135].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[135].filename=L527639_SB135_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[135].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[135].job_duration=5.16426706314
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[135].location=locus062:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[135].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[135].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[135].size=5798106152
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[135].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[135].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[135].subband=135
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[136].centralFrequency=174414062.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[136].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[136].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[136].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[136].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[136].filename=L527639_SB136_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[136].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[136].job_duration=5.28780913353
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[136].location=locus063:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[136].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[136].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[136].size=5798106152
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[136].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[136].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[136].subband=136
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[137].centralFrequency=174609375.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[137].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[137].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[137].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[137].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[137].filename=L527639_SB137_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[137].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[137].job_duration=5.12020111084
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[137].location=locus064:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[137].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[137].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[137].size=5798138928
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[137].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[137].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[137].subband=137
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[138].centralFrequency=174804687.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[138].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[138].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[138].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[138].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[138].filename=L527639_SB138_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[138].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[138].job_duration=5.27190804482
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[138].location=locus065:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[138].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[138].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[138].size=5798171704
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[138].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[138].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[138].subband=138
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[139].centralFrequency=175000000.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[139].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[139].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[139].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[139].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[139].filename=L527639_SB139_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[139].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[139].job_duration=5.15721893311
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[139].location=locus066:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[139].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[139].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[139].size=5798204480
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[139].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[139].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[139].subband=139
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[13].centralFrequency=150390625.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[13].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[13].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[13].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[13].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[13].filename=L527639_SB013_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[13].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[13].job_duration=4.7379617691
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[13].location=locus016:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[13].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[13].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[13].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[13].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[13].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[13].subband=13
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[140].centralFrequency=175195312.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[140].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[140].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[140].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[140].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[140].filename=L527639_SB140_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[140].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[140].job_duration=6.84736609459
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[140].location=locus067:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[140].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[140].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[140].size=5798237256
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[140].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[140].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[140].subband=140
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[141].centralFrequency=175390625.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[141].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[141].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[141].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[141].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[141].filename=L527639_SB141_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[141].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[141].job_duration=6.79778695107
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[141].location=locus068:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[141].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[141].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[141].size=5798237256
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[141].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[141].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[141].subband=141
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[142].centralFrequency=175585937.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[142].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[142].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[142].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[142].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[142].filename=L527639_SB142_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[142].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[142].job_duration=5.15023899078
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[142].location=locus069:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[142].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[142].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[142].size=5798237256
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[142].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[142].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[142].subband=142
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[143].centralFrequency=175781250.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[143].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[143].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[143].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[143].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[143].filename=L527639_SB143_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[143].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[143].job_duration=5.9054479599
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[143].location=locus070:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[143].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[143].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[143].size=5798302808
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[143].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[143].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[143].subband=143
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[144].centralFrequency=175976562.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[144].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[144].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[144].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[144].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[144].filename=L527639_SB144_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[144].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[144].job_duration=5.14651489258
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[144].location=locus071:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[144].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[144].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[144].size=5798401136
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[144].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[144].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[144].subband=144
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[145].centralFrequency=176171875.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[145].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[145].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[145].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[145].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[145].filename=L527639_SB145_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[145].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[145].job_duration=5.16075491905
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[145].location=locus072:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[145].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[145].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[145].size=5798368360
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[145].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[145].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[145].subband=145
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[146].centralFrequency=176367187.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[146].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[146].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[146].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[146].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[146].filename=L527639_SB146_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[146].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[146].job_duration=5.16834497452
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[146].location=locus073:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[146].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[146].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[146].size=5798401136
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[146].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[146].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[146].subband=146
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[147].centralFrequency=176562500.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[147].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[147].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[147].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[147].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[147].filename=L527639_SB147_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[147].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[147].job_duration=5.13633799553
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[147].location=locus074:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[147].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[147].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[147].size=5798401136
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[147].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[147].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[147].subband=147
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[148].centralFrequency=176757812.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[148].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[148].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[148].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[148].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[148].filename=L527639_SB148_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[148].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[148].job_duration=5.16863393784
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[148].location=locus075:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[148].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[148].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[148].size=5798433912
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[148].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[148].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[148].subband=148
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[149].centralFrequency=176953125.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[149].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[149].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[149].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[149].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[149].filename=L527639_SB149_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[149].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[149].job_duration=5.15864300728
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[149].location=locus076:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[149].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[149].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[149].size=5798433912
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[149].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[149].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[149].subband=149
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[14].centralFrequency=150585937.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[14].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[14].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[14].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[14].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[14].filename=L527639_SB014_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[14].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[14].job_duration=4.72560405731
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[14].location=locus017:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[14].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[14].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[14].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[14].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[14].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[14].subband=14
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[150].centralFrequency=177148437.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[150].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[150].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[150].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[150].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[150].filename=L527639_SB150_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[150].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[150].job_duration=5.14532494545
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[150].location=locus077:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[150].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[150].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[150].size=5798433912
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[150].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[150].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[150].subband=150
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[151].centralFrequency=177343750.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[151].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[151].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[151].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[151].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[151].filename=L527639_SB151_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[151].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[151].job_duration=5.16462898254
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[151].location=locus078:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[151].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[151].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[151].size=5798433912
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[151].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[151].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[151].subband=151
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[152].centralFrequency=177539062.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[152].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[152].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[152].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[152].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[152].filename=L527639_SB152_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[152].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[152].job_duration=5.13195300102
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[152].location=locus079:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[152].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[152].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[152].size=5798106152
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[152].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[152].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[152].subband=152
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[153].centralFrequency=177734375.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[153].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[153].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[153].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[153].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[153].filename=L527639_SB153_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[153].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[153].job_duration=5.02042913437
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[153].location=locus080:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[153].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[153].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[153].size=5827637328
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[153].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[153].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[153].subband=153
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[154].centralFrequency=177929687.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[154].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[154].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[154].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[154].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[154].filename=L527639_SB154_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[154].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[154].job_duration=6.2583770752
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[154].location=locus081:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[154].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[154].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[154].size=5827342344
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[154].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[154].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[154].subband=154
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[155].centralFrequency=178125000.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[155].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[155].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[155].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[155].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[155].filename=L527639_SB155_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[155].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[155].job_duration=5.31013202667
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[155].location=locus082:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[155].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[155].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[155].size=5827276792
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[155].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[155].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[155].subband=155
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[156].centralFrequency=178320312.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[156].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[156].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[156].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[156].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[156].filename=L527639_SB156_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[156].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[156].job_duration=5.17778587341
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[156].location=locus084:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[156].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[156].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[156].size=5827112912
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[156].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[156].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[156].subband=156
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[157].centralFrequency=178515625.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[157].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[157].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[157].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[157].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[157].filename=L527639_SB157_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[157].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[157].job_duration=5.19072604179
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[157].location=locus085:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[157].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[157].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[157].size=5827014584
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[157].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[157].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[157].subband=157
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[158].centralFrequency=178710937.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[158].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[158].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[158].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[158].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[158].filename=L527639_SB158_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[158].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[158].job_duration=5.13617801666
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[158].location=locus086:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[158].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[158].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[158].size=5827735656
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[158].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[158].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[158].subband=158
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[159].centralFrequency=178906250.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[159].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[159].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[159].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[159].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[159].filename=L527639_SB159_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[159].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[159].job_duration=5.14692187309
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[159].location=locus087:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[159].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[159].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[159].size=5826752376
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[159].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[159].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[159].subband=159
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[15].centralFrequency=150781250.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[15].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[15].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[15].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[15].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[15].filename=L527639_SB015_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[15].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[15].job_duration=4.72983598709
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[15].location=locus018:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[15].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[15].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[15].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[15].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[15].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[15].subband=15
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[160].centralFrequency=179101562.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[160].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[160].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[160].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[160].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[160].filename=L527639_SB160_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[160].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[160].job_duration=5.07548809052
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[160].location=locus088:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[160].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[160].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[160].size=5797680064
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[160].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[160].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[160].subband=160
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[161].centralFrequency=179296875.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[161].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[161].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[161].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[161].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[161].filename=L527639_SB161_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[161].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[161].job_duration=5.15407800674
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[161].location=locus089:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[161].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[161].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[161].size=5798368360
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[161].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[161].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[161].subband=161
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[162].centralFrequency=179492187.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[162].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[162].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[162].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[162].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[162].filename=L527639_SB162_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[162].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[162].job_duration=5.28420090675
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[162].location=locus090:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[162].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[162].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[162].size=5798401136
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[162].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[162].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[162].subband=162
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[163].centralFrequency=179687500.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[163].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[163].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[163].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[163].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[163].filename=L527639_SB163_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[163].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[163].job_duration=5.16064095497
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[163].location=locus091:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[163].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[163].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[163].size=5798368360
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[163].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[163].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[163].subband=163
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[164].centralFrequency=179882812.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[164].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[164].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[164].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[164].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[164].filename=L527639_SB164_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[164].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[164].job_duration=5.56137609482
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[164].location=locus001:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[164].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[164].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[164].size=5798401136
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[164].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[164].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[164].subband=164
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[165].centralFrequency=180078125.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[165].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[165].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[165].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[165].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[165].filename=L527639_SB165_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[165].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[165].job_duration=5.03216099739
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[165].location=locus003:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[165].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[165].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[165].size=5798171704
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[165].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[165].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[165].subband=165
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[166].centralFrequency=180273437.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[166].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[166].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[166].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[166].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[166].filename=L527639_SB166_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[166].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[166].job_duration=5.04014205933
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[166].location=locus004:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[166].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[166].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[166].size=5798335584
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[166].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[166].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[166].subband=166
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[167].centralFrequency=180468750.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[167].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[167].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[167].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[167].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[167].filename=L527639_SB167_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[167].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[167].job_duration=4.41337609291
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[167].location=locus005:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[167].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[167].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[167].size=5798368360
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[167].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[167].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[167].subband=167
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[168].centralFrequency=180664062.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[168].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[168].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[168].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[168].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[168].filename=L527639_SB168_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[168].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[168].job_duration=5.31026506424
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[168].location=locus006:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[168].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[168].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[168].size=5798302808
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[168].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[168].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[168].subband=168
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[169].centralFrequency=180859375.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[169].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[169].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[169].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[169].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[169].filename=L527639_SB169_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[169].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[169].job_duration=5.03876495361
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[169].location=locus007:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[169].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[169].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[169].size=5798335584
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[169].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[169].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[169].subband=169
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[16].centralFrequency=150976562.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[16].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[16].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[16].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[16].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[16].filename=L527639_SB016_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[16].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[16].job_duration=4.84640312195
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[16].location=locus019:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[16].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[16].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[16].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[16].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[16].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[16].subband=16
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[170].centralFrequency=181054687.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[170].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[170].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[170].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[170].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[170].filename=L527639_SB170_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[170].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[170].job_duration=4.41254687309
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[170].location=locus008:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[170].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[170].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[170].size=5798270032
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[170].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[170].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[170].subband=170
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[171].centralFrequency=181250000.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[171].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[171].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[171].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[171].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[171].filename=L527639_SB171_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[171].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[171].job_duration=7.13564682007
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[171].location=locus009:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[171].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[171].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[171].size=5798597792
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[171].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[171].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[171].subband=171
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[172].centralFrequency=181445312.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[172].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[172].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[172].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[172].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[172].filename=L527639_SB172_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[172].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[172].job_duration=5.12568902969
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[172].location=locus010:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[172].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[172].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[172].size=5798630568
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[172].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[172].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[172].subband=172
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[173].centralFrequency=181640625.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[173].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[173].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[173].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[173].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[173].filename=L527639_SB173_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[173].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[173].job_duration=7.15060806274
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[173].location=locus011:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[173].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[173].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[173].size=5798630568
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[173].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[173].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[173].subband=173
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[174].centralFrequency=181835937.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[174].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[174].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[174].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[174].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[174].filename=L527639_SB174_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[174].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[174].job_duration=5.02869701385
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[174].location=locus012:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[174].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[174].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[174].size=5798630568
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[174].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[174].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[174].subband=174
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[175].centralFrequency=182031250.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[175].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[175].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[175].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[175].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[175].filename=L527639_SB175_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[175].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[175].job_duration=4.40090990067
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[175].location=locus014:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[175].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[175].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[175].size=5798565016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[175].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[175].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[175].subband=175
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[176].centralFrequency=182226562.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[176].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[176].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[176].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[176].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[176].filename=L527639_SB176_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[176].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[176].job_duration=7.18154001236
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[176].location=locus015:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[176].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[176].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[176].size=5798532240
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[176].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[176].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[176].subband=176
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[177].centralFrequency=182421875.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[177].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[177].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[177].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[177].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[177].filename=L527639_SB177_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[177].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[177].job_duration=4.34065699577
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[177].location=locus016:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[177].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[177].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[177].size=5798499464
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[177].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[177].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[177].subband=177
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[178].centralFrequency=182617187.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[178].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[178].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[178].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[178].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[178].filename=L527639_SB178_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[178].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[178].job_duration=4.99921703339
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[178].location=locus017:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[178].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[178].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[178].size=5798466688
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[178].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[178].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[178].subband=178
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[179].centralFrequency=182812500.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[179].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[179].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[179].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[179].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[179].filename=L527639_SB179_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[179].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[179].job_duration=5.03761315346
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[179].location=locus018:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[179].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[179].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[179].size=5804661352
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[179].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[179].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[179].subband=179
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[17].centralFrequency=151171875.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[17].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[17].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[17].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[17].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[17].filename=L527639_SB017_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[17].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[17].job_duration=4.73718905449
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[17].location=locus020:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[17].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[17].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[17].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[17].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[17].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[17].subband=17
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[180].centralFrequency=183007812.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[180].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[180].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[180].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[180].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[180].filename=L527639_SB180_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[180].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[180].job_duration=5.37672019005
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[180].location=locus019:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[180].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[180].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[180].size=5826162408
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[180].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[180].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[180].subband=180
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[181].centralFrequency=183203125.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[181].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[181].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[181].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[181].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[181].filename=L527639_SB181_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[181].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[181].job_duration=5.36809206009
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[181].location=locus020:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[181].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[181].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[181].size=5825703544
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[181].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[181].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[181].subband=181
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[182].centralFrequency=183398437.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[182].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[182].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[182].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[182].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[182].filename=L527639_SB182_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[182].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[182].job_duration=5.32325792313
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[182].location=locus021:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[182].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[182].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[182].size=5826293512
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[182].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[182].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[182].subband=182
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[183].centralFrequency=183593750.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[183].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[183].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[183].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[183].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[183].filename=L527639_SB183_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[183].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[183].job_duration=4.94855809212
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[183].location=locus023:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[183].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[183].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[183].size=5826031304
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[183].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[183].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[183].subband=183
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[184].centralFrequency=183789062.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[184].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[184].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[184].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[184].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[184].filename=L527639_SB184_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[184].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[184].job_duration=5.36679196358
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[184].location=locus025:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[184].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[184].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[184].size=5826096856
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[184].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[184].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[184].subband=184
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[185].centralFrequency=183984375.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[185].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[185].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[185].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[185].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[185].filename=L527639_SB185_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[185].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[185].job_duration=4.98472809792
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[185].location=locus026:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[185].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[185].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[185].size=5826326288
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[185].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[185].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[185].subband=185
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[186].centralFrequency=184179687.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[186].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[186].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[186].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[186].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[186].filename=L527639_SB186_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[186].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[186].job_duration=5.34659910202
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[186].location=locus028:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[186].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[186].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[186].size=5826359064
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[186].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[186].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[186].subband=186
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[187].centralFrequency=184375000.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[187].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[187].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[187].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[187].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[187].filename=L527639_SB187_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[187].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[187].job_duration=5.01148414612
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[187].location=locus029:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[187].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[187].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[187].size=5824916920
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[187].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[187].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[187].subband=187
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[188].centralFrequency=184570312.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[188].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[188].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[188].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[188].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[188].filename=L527639_SB188_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[188].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[188].job_duration=4.36807990074
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[188].location=locus031:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[188].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[188].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[188].size=5797450632
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[188].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[188].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[188].subband=188
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[189].centralFrequency=184765625.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[189].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[189].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[189].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[189].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[189].filename=L527639_SB189_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[189].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[189].job_duration=4.37625312805
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[189].location=locus032:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[189].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[189].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[189].size=5798040600
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[189].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[189].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[189].subband=189
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[18].centralFrequency=151367187.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[18].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[18].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[18].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[18].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[18].filename=L527639_SB018_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[18].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[18].job_duration=4.72386407852
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[18].location=locus021:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[18].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[18].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[18].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[18].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[18].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[18].subband=18
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[190].centralFrequency=184960937.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[190].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[190].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[190].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[190].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[190].filename=L527639_SB190_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[190].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[190].job_duration=5.37487316132
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[190].location=locus034:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[190].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[190].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[190].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[190].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[190].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[190].subband=190
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[191].centralFrequency=185156250.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[191].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[191].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[191].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[191].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[191].filename=L527639_SB191_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[191].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[191].job_duration=4.96430397034
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[191].location=locus035:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[191].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[191].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[191].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[191].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[191].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[191].subband=191
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[192].centralFrequency=185351562.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[192].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[192].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[192].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[192].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[192].filename=L527639_SB192_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[192].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[192].job_duration=5.02150511742
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[192].location=locus036:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[192].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[192].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[192].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[192].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[192].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[192].subband=192
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[193].centralFrequency=185546875.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[193].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[193].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[193].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[193].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[193].filename=L527639_SB193_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[193].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[193].job_duration=4.98496007919
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[193].location=locus037:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[193].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[193].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[193].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[193].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[193].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[193].subband=193
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[194].centralFrequency=185742187.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[194].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[194].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[194].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[194].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[194].filename=L527639_SB194_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[194].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[194].job_duration=4.99621200562
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[194].location=locus038:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[194].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[194].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[194].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[194].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[194].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[194].subband=194
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[195].centralFrequency=185937500.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[195].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[195].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[195].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[195].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[195].filename=L527639_SB195_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[195].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[195].job_duration=4.97474503517
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[195].location=locus039:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[195].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[195].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[195].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[195].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[195].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[195].subband=195
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[196].centralFrequency=186132812.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[196].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[196].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[196].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[196].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[196].filename=L527639_SB196_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[196].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[196].job_duration=5.48880696297
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[196].location=locus040:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[196].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[196].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[196].size=5797909496
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[196].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[196].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[196].subband=196
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[197].centralFrequency=186328125.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[197].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[197].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[197].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[197].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[197].filename=L527639_SB197_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[197].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[197].job_duration=5.49170899391
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[197].location=locus041:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[197].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[197].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[197].size=5797909496
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[197].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[197].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[197].subband=197
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[198].centralFrequency=186523437.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[198].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[198].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[198].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[198].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[198].filename=L527639_SB198_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[198].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[198].job_duration=5.52418708801
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[198].location=locus042:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[198].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[198].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[198].size=5799089432
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[198].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[198].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[198].subband=198
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[199].centralFrequency=186718750.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[199].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[199].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[199].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[199].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[199].filename=L527639_SB199_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[199].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[199].job_duration=4.25491309166
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[199].location=locus043:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[199].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[199].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[199].size=5804726904
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[199].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[199].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[199].subband=199
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[19].centralFrequency=151562500.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[19].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[19].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[19].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[19].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[19].filename=L527639_SB019_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[19].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[19].job_duration=4.70974707603
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[19].location=locus023:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[19].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[19].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[19].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[19].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[19].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[19].subband=19
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[1].centralFrequency=148046875.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[1].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[1].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[1].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[1].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[1].filename=L527639_SB001_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[1].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[1].job_duration=4.73355293274
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[1].location=locus003:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[1].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[1].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[1].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[1].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[1].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[1].subband=1
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[200].centralFrequency=186914062.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[200].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[200].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[200].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[200].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[200].filename=L527639_SB200_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[200].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[200].job_duration=4.98398089409
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[200].location=locus044:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[200].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[200].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[200].size=5811314880
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[200].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[200].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[200].subband=200
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[201].centralFrequency=187109375.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[201].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[201].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[201].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[201].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[201].filename=L527639_SB201_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[201].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[201].job_duration=4.99687480927
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[201].location=locus045:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[201].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[201].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[201].size=5811904848
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[201].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[201].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[201].subband=201
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[202].centralFrequency=187304687.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[202].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[202].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[202].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[202].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[202].filename=L527639_SB202_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[202].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[202].job_duration=4.42162895203
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[202].location=locus046:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[202].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[202].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[202].size=5799187760
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[202].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[202].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[202].subband=202
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[203].centralFrequency=187500000.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[203].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[203].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[203].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[203].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[203].filename=L527639_SB203_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[203].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[203].job_duration=4.9785618782
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[203].location=locus047:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[203].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[203].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[203].size=5798368360
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[203].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[203].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[203].subband=203
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[204].centralFrequency=187695312.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[204].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[204].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[204].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[204].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[204].filename=L527639_SB204_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[204].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[204].job_duration=4.23872590065
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[204].location=locus048:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[204].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[204].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[204].size=5798401136
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[204].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[204].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[204].subband=204
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[205].centralFrequency=187890625.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[205].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[205].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[205].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[205].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[205].filename=L527639_SB205_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[205].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[205].job_duration=4.97380518913
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[205].location=locus049:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[205].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[205].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[205].size=5797778392
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[205].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[205].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[205].subband=205
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[206].centralFrequency=188085937.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[206].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[206].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[206].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[206].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[206].filename=L527639_SB206_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[206].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[206].job_duration=4.98690986633
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[206].location=locus050:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[206].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[206].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[206].size=5797745616
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[206].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[206].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[206].subband=206
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[207].centralFrequency=188281250.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[207].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[207].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[207].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[207].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[207].filename=L527639_SB207_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[207].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[207].job_duration=4.99137783051
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[207].location=locus051:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[207].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[207].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[207].size=5797843944
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[207].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[207].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[207].subband=207
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[208].centralFrequency=188476562.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[208].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[208].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[208].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[208].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[208].filename=L527639_SB208_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[208].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[208].job_duration=4.5660738945
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[208].location=locus052:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[208].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[208].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[208].size=5797778392
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[208].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[208].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[208].subband=208
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[209].centralFrequency=188671875.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[209].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[209].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[209].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[209].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[209].filename=L527639_SB209_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[209].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[209].job_duration=4.98579692841
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[209].location=locus053:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[209].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[209].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[209].size=5797712840
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[209].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[209].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[209].subband=209
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[20].centralFrequency=151757812.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[20].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[20].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[20].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[20].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[20].filename=L527639_SB020_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[20].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[20].job_duration=4.71465182304
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[20].location=locus025:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[20].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[20].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[20].size=5797909496
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[20].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[20].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[20].subband=20
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[210].centralFrequency=188867187.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[210].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[210].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[210].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[210].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[210].filename=L527639_SB210_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[210].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[210].job_duration=5.91144704819
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[210].location=locus054:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[210].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[210].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[210].size=5797680064
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[210].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[210].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[210].subband=210
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[211].centralFrequency=189062500.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[211].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[211].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[211].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[211].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[211].filename=L527639_SB211_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[211].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[211].job_duration=4.22186994553
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[211].location=locus055:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[211].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[211].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[211].size=5797745616
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[211].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[211].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[211].subband=211
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[212].centralFrequency=189257812.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[212].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[212].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[212].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[212].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[212].filename=L527639_SB212_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[212].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[212].job_duration=5.60366892815
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[212].location=locus056:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[212].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[212].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[212].size=5797614512
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[212].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[212].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[212].subband=212
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[213].centralFrequency=189453125.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[213].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[213].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[213].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[213].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[213].filename=L527639_SB213_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[213].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[213].job_duration=5.90766406059
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[213].location=locus057:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[213].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[213].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[213].size=5797581736
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[213].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[213].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[213].subband=213
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[214].centralFrequency=189648437.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[214].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[214].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[214].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[214].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[214].filename=L527639_SB214_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[214].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[214].job_duration=5.91526603699
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[214].location=locus058:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[214].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[214].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[214].size=5797516184
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[214].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[214].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[214].subband=214
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[215].centralFrequency=189843750.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[215].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[215].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[215].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[215].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[215].filename=L527639_SB215_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[215].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[215].job_duration=4.95154094696
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[215].location=locus060:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[215].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[215].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[215].size=5797581736
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[215].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[215].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[215].subband=215
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[216].centralFrequency=190039062.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[216].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[216].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[216].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[216].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[216].filename=L527639_SB216_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[216].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[216].job_duration=4.95075392723
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[216].location=locus061:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[216].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[216].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[216].size=5817509544
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[216].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[216].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[216].subband=216
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[217].centralFrequency=190234375.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[217].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[217].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[217].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[217].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[217].filename=L527639_SB217_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[217].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[217].job_duration=4.96779584885
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[217].location=locus062:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[217].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[217].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[217].size=5816722920
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[217].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[217].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[217].subband=217
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[218].centralFrequency=190429687.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[218].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[218].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[218].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[218].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[218].filename=L527639_SB218_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[218].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[218].job_duration=4.94727301598
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[218].location=locus063:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[218].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[218].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[218].size=5816952352
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[218].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[218].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[218].subband=218
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[219].centralFrequency=190625000.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[219].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[219].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[219].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[219].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[219].filename=L527639_SB219_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[219].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[219].job_duration=4.97408890724
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[219].location=locus064:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[219].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[219].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[219].size=5817738976
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[219].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[219].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[219].subband=219
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[21].centralFrequency=151953125.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[21].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[21].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[21].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[21].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[21].filename=L527639_SB021_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[21].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[21].job_duration=4.70037794113
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[21].location=locus026:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[21].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[21].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[21].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[21].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[21].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[21].subband=21
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[220].centralFrequency=190820312.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[220].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[220].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[220].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[220].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[220].filename=L527639_SB220_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[220].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[220].job_duration=4.98849105835
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[220].location=locus065:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[220].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[220].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[220].size=5817411216
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[220].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[220].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[220].subband=220
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[221].centralFrequency=191015625.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[221].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[221].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[221].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[221].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[221].filename=L527639_SB221_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[221].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[221].job_duration=4.99556899071
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[221].location=locus066:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[221].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[221].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[221].size=5817902856
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[221].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[221].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[221].subband=221
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[222].centralFrequency=191210937.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[222].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[222].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[222].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[222].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[222].filename=L527639_SB222_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[222].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[222].job_duration=5.00004911423
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[222].location=locus067:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[222].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[222].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[222].size=5817411216
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[222].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[222].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[222].subband=222
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[223].centralFrequency=191406250.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[223].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[223].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[223].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[223].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[223].filename=L527639_SB223_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[223].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[223].job_duration=4.99960303307
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[223].location=locus068:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[223].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[223].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[223].size=5797811168
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[223].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[223].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[223].subband=223
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[224].centralFrequency=191601562.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[224].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[224].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[224].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[224].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[224].filename=L527639_SB224_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[224].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[224].job_duration=6.01164603233
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[224].location=locus069:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[224].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[224].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[224].size=5797811168
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[224].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[224].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[224].subband=224
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[225].centralFrequency=191796875.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[225].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[225].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[225].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[225].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[225].filename=L527639_SB225_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[225].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[225].job_duration=5.02566003799
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[225].location=locus070:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[225].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[225].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[225].size=5799974384
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[225].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[225].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[225].subband=225
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[226].centralFrequency=191992187.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[226].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[226].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[226].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[226].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[226].filename=L527639_SB226_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[226].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[226].job_duration=4.17276597023
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[226].location=locus071:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[226].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[226].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[226].size=5800269368
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[226].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[226].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[226].subband=226
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[227].centralFrequency=192187500.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[227].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[227].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[227].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[227].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[227].filename=L527639_SB227_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[227].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[227].job_duration=5.08473587036
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[227].location=locus072:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[227].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[227].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[227].size=5800203816
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[227].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[227].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[227].subband=227
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[228].centralFrequency=192382812.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[228].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[228].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[228].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[228].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[228].filename=L527639_SB228_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[228].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[228].job_duration=5.02599096298
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[228].location=locus073:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[228].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[228].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[228].size=5800498800
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[228].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[228].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[228].subband=228
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[229].centralFrequency=192578125.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[229].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[229].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[229].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[229].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[229].filename=L527639_SB229_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[229].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[229].job_duration=4.15381407738
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[229].location=locus074:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[229].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[229].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[229].size=5801187096
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[229].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[229].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[229].subband=229
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[22].centralFrequency=152148437.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[22].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[22].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[22].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[22].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[22].filename=L527639_SB022_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[22].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[22].job_duration=4.70232796669
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[22].location=locus028:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[22].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[22].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[22].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[22].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[22].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[22].subband=22
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[230].centralFrequency=192773437.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[230].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[230].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[230].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[230].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[230].filename=L527639_SB230_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[230].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[230].job_duration=5.09173417091
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[230].location=locus075:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[230].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[230].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[230].size=5800039936
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[230].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[230].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[230].subband=230
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[231].centralFrequency=192968750.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[231].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[231].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[231].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[231].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[231].filename=L527639_SB231_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[231].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[231].job_duration=5.06068301201
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[231].location=locus076:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[231].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[231].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[231].size=5799941608
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[231].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[231].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[231].subband=231
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[232].centralFrequency=193164062.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[232].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[232].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[232].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[232].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[232].filename=L527639_SB232_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[232].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[232].job_duration=4.88704800606
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[232].location=locus077:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[232].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[232].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[232].size=5797581736
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[232].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[232].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[232].subband=232
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[233].centralFrequency=193359375.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[233].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[233].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[233].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[233].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[233].filename=L527639_SB233_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[233].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[233].job_duration=4.16161990166
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[233].location=locus078:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[233].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[233].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[233].size=5797286752
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[233].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[233].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[233].subband=233
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[234].centralFrequency=193554687.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[234].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[234].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[234].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[234].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[234].filename=L527639_SB234_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[234].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[234].job_duration=5.08783888817
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[234].location=locus079:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[234].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[234].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[234].size=5797286752
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[234].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[234].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[234].subband=234
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[235].centralFrequency=193750000.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[235].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[235].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[235].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[235].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[235].filename=L527639_SB235_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[235].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[235].job_duration=4.1455450058
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[235].location=locus080:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[235].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[235].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[235].size=5797286752
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[235].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[235].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[235].subband=235
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[236].centralFrequency=193945312.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[236].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[236].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[236].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[236].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[236].filename=L527639_SB236_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[236].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[236].job_duration=4.14898705482
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[236].location=locus081:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[236].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[236].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[236].size=5797286752
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[236].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[236].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[236].subband=236
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[237].centralFrequency=194140625.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[237].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[237].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[237].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[237].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[237].filename=L527639_SB237_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[237].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[237].job_duration=5.97907590866
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[237].location=locus082:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[237].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[237].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[237].size=5797286752
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[237].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[237].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[237].subband=237
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[238].centralFrequency=194335937.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[238].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[238].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[238].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[238].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[238].filename=L527639_SB238_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[238].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[238].job_duration=5.13051700592
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[238].location=locus084:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[238].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[238].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[238].size=5797253976
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[238].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[238].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[238].subband=238
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[239].centralFrequency=194531250.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[239].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[239].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[239].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[239].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[239].filename=L527639_SB239_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[239].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[239].job_duration=4.15061688423
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[239].location=locus085:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[239].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[239].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[239].size=5797253976
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[239].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[239].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[239].subband=239
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[23].centralFrequency=152343750.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[23].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[23].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[23].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[23].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[23].filename=L527639_SB023_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[23].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[23].job_duration=4.69536995888
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[23].location=locus029:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[23].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[23].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[23].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[23].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[23].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[23].subband=23
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[240].centralFrequency=194726562.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[240].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[240].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[240].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[240].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[240].filename=L527639_SB240_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[240].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[240].job_duration=5.12550115585
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[240].location=locus086:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[240].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[240].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[240].size=5797253976
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[240].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[240].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[240].subband=240
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[241].centralFrequency=194921875.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[241].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[241].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[241].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[241].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[241].filename=L527639_SB241_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[241].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[241].job_duration=4.14870095253
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[241].location=locus087:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[241].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[241].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[241].size=5797253976
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[241].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[241].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[241].subband=241
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[242].centralFrequency=195117187.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[242].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[242].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[242].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[242].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[242].filename=L527639_SB242_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[242].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[242].job_duration=5.13355994225
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[242].location=locus088:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[242].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[242].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[242].size=5797286752
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[242].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[242].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[242].subband=242
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[243].centralFrequency=195312500.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[243].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[243].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[243].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[243].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[243].filename=L527639_SB243_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[243].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[243].job_duration=4.13449501991
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[243].location=locus089:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[243].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[243].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[243].size=5797253976
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[243].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[243].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[243].subband=243
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[24].centralFrequency=152539062.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[24].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[24].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[24].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[24].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[24].filename=L527639_SB024_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[24].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[24].job_duration=4.69851708412
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[24].location=locus031:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[24].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[24].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[24].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[24].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[24].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[24].subband=24
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[25].centralFrequency=152734375.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[25].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[25].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[25].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[25].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[25].filename=L527639_SB025_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[25].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[25].job_duration=4.82171201706
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[25].location=locus032:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[25].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[25].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[25].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[25].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[25].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[25].subband=25
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[26].centralFrequency=152929687.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[26].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[26].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[26].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[26].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[26].filename=L527639_SB026_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[26].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[26].job_duration=4.80797100067
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[26].location=locus034:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[26].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[26].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[26].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[26].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[26].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[26].subband=26
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[27].centralFrequency=153125000.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[27].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[27].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[27].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[27].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[27].filename=L527639_SB027_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[27].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[27].job_duration=4.70171713829
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[27].location=locus035:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[27].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[27].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[27].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[27].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[27].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[27].subband=27
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[28].centralFrequency=153320312.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[28].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[28].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[28].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[28].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[28].filename=L527639_SB028_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[28].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[28].job_duration=4.69481110573
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[28].location=locus036:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[28].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[28].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[28].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[28].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[28].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[28].subband=28
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[29].centralFrequency=153515625.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[29].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[29].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[29].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[29].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[29].filename=L527639_SB029_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[29].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[29].job_duration=4.69488286972
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[29].location=locus037:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[29].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[29].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[29].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[29].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[29].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[29].subband=29
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[2].centralFrequency=148242187.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[2].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[2].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[2].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[2].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[2].filename=L527639_SB002_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[2].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[2].job_duration=4.72693300247
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[2].location=locus004:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[2].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[2].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[2].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[2].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[2].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[2].subband=2
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[30].centralFrequency=153710937.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[30].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[30].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[30].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[30].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[30].filename=L527639_SB030_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[30].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[30].job_duration=4.72424793243
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[30].location=locus038:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[30].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[30].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[30].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[30].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[30].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[30].subband=30
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[31].centralFrequency=153906250.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[31].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[31].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[31].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[31].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[31].filename=L527639_SB031_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[31].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[31].job_duration=4.69446396828
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[31].location=locus039:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[31].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[31].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[31].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[31].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[31].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[31].subband=31
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[32].centralFrequency=154101562.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[32].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[32].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[32].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[32].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[32].filename=L527639_SB032_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[32].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[32].job_duration=4.7011449337
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[32].location=locus040:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[32].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[32].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[32].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[32].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[32].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[32].subband=32
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[33].centralFrequency=154296875.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[33].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[33].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[33].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[33].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[33].filename=L527639_SB033_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[33].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[33].job_duration=4.69960784912
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[33].location=locus041:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[33].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[33].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[33].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[33].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[33].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[33].subband=33
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[34].centralFrequency=154492187.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[34].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[34].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[34].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[34].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[34].filename=L527639_SB034_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[34].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[34].job_duration=4.70125102997
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[34].location=locus042:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[34].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[34].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[34].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[34].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[34].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[34].subband=34
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[35].centralFrequency=154687500.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[35].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[35].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[35].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[35].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[35].filename=L527639_SB035_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[35].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[35].job_duration=4.69491100311
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[35].location=locus043:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[35].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[35].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[35].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[35].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[35].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[35].subband=35
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[36].centralFrequency=154882812.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[36].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[36].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[36].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[36].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[36].filename=L527639_SB036_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[36].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[36].job_duration=4.6934299469
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[36].location=locus044:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[36].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[36].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[36].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[36].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[36].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[36].subband=36
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[37].centralFrequency=155078125.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[37].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[37].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[37].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[37].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[37].filename=L527639_SB037_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[37].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[37].job_duration=4.69201397896
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[37].location=locus045:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[37].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[37].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[37].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[37].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[37].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[37].subband=37
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[38].centralFrequency=155273437.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[38].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[38].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[38].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[38].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[38].filename=L527639_SB038_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[38].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[38].job_duration=4.68677711487
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[38].location=locus046:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[38].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[38].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[38].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[38].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[38].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[38].subband=38
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[39].centralFrequency=155468750.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[39].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[39].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[39].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[39].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[39].filename=L527639_SB039_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[39].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[39].job_duration=4.69246101379
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[39].location=locus047:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[39].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[39].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[39].size=5798040600
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[39].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[39].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[39].subband=39
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[3].centralFrequency=148437500.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[3].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[3].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[3].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[3].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[3].filename=L527639_SB003_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[3].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[3].job_duration=4.73701119423
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[3].location=locus005:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[3].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[3].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[3].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[3].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[3].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[3].subband=3
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[40].centralFrequency=155664062.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[40].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[40].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[40].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[40].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[40].filename=L527639_SB040_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[40].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[40].job_duration=4.69094610214
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[40].location=locus048:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[40].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[40].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[40].size=5798040600
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[40].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[40].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[40].subband=40
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[41].centralFrequency=155859375.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[41].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[41].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[41].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[41].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[41].filename=L527639_SB041_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[41].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[41].job_duration=4.69483685493
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[41].location=locus049:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[41].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[41].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[41].size=5798040600
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[41].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[41].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[41].subband=41
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[42].centralFrequency=156054687.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[42].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[42].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[42].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[42].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[42].filename=L527639_SB042_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[42].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[42].job_duration=4.69034314156
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[42].location=locus050:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[42].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[42].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[42].size=5798073376
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[42].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[42].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[42].subband=42
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[43].centralFrequency=156250000.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[43].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[43].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[43].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[43].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[43].filename=L527639_SB043_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[43].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[43].job_duration=4.68765997887
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[43].location=locus051:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[43].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[43].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[43].size=5798073376
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[43].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[43].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[43].subband=43
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[44].centralFrequency=156445312.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[44].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[44].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[44].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[44].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[44].filename=L527639_SB044_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[44].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[44].job_duration=4.6916000843
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[44].location=locus052:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[44].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[44].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[44].size=5798106152
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[44].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[44].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[44].subband=44
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[45].centralFrequency=156640625.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[45].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[45].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[45].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[45].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[45].filename=L527639_SB045_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[45].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[45].job_duration=4.6940882206
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[45].location=locus053:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[45].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[45].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[45].size=5798106152
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[45].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[45].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[45].subband=45
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[46].centralFrequency=156835937.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[46].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[46].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[46].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[46].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[46].filename=L527639_SB046_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[46].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[46].job_duration=5.57155299187
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[46].location=locus054:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[46].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[46].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[46].size=5798106152
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[46].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[46].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[46].subband=46
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[47].centralFrequency=157031250.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[47].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[47].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[47].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[47].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[47].filename=L527639_SB047_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[47].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[47].job_duration=5.6551618576
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[47].location=locus055:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[47].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[47].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[47].size=5798073376
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[47].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[47].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[47].subband=47
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[48].centralFrequency=157226562.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[48].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[48].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[48].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[48].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[48].filename=L527639_SB048_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[48].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[48].job_duration=5.67009592056
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[48].location=locus056:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[48].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[48].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[48].size=5798040600
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[48].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[48].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[48].subband=48
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[49].centralFrequency=157421875.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[49].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[49].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[49].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[49].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[49].filename=L527639_SB049_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[49].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[49].job_duration=4.68716979027
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[49].location=locus057:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[49].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[49].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[49].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[49].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[49].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[49].subband=49
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[4].centralFrequency=148632812.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[4].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[4].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[4].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[4].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[4].filename=L527639_SB004_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[4].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[4].job_duration=4.71975898743
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[4].location=locus006:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[4].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[4].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[4].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[4].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[4].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[4].subband=4
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[50].centralFrequency=157617187.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[50].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[50].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[50].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[50].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[50].filename=L527639_SB050_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[50].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[50].job_duration=4.6848320961
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[50].location=locus058:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[50].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[50].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[50].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[50].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[50].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[50].subband=50
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[51].centralFrequency=157812500.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[51].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[51].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[51].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[51].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[51].filename=L527639_SB051_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[51].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[51].job_duration=5.84136486053
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[51].location=locus060:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[51].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[51].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[51].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[51].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[51].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[51].subband=51
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[52].centralFrequency=158007812.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[52].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[52].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[52].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[52].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[52].filename=L527639_SB052_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[52].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[52].job_duration=5.74391388893
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[52].location=locus061:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[52].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[52].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[52].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[52].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[52].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[52].subband=52
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[53].centralFrequency=158203125.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[53].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[53].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[53].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[53].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[53].filename=L527639_SB053_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[53].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[53].job_duration=5.69633388519
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[53].location=locus062:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[53].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[53].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[53].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[53].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[53].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[53].subband=53
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[54].centralFrequency=158398437.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[54].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[54].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[54].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[54].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[54].filename=L527639_SB054_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[54].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[54].job_duration=4.77108287811
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[54].location=locus063:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[54].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[54].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[54].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[54].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[54].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[54].subband=54
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[55].centralFrequency=158593750.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[55].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[55].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[55].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[55].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[55].filename=L527639_SB055_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[55].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[55].job_duration=4.67524600029
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[55].location=locus064:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[55].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[55].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[55].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[55].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[55].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[55].subband=55
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[56].centralFrequency=158789062.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[56].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[56].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[56].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[56].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[56].filename=L527639_SB056_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[56].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[56].job_duration=4.85385084152
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[56].location=locus065:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[56].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[56].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[56].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[56].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[56].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[56].subband=56
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[57].centralFrequency=158984375.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[57].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[57].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[57].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[57].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[57].filename=L527639_SB057_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[57].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[57].job_duration=4.85001802444
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[57].location=locus066:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[57].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[57].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[57].size=5798007824
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[57].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[57].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[57].subband=57
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[58].centralFrequency=159179687.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[58].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[58].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[58].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[58].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[58].filename=L527639_SB058_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[58].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[58].job_duration=4.66505622864
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[58].location=locus067:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[58].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[58].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[58].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[58].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[58].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[58].subband=58
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[59].centralFrequency=159375000.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[59].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[59].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[59].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[59].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[59].filename=L527639_SB059_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[59].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[59].job_duration=4.93024015427
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[59].location=locus068:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[59].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[59].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[59].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[59].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[59].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[59].subband=59
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[5].centralFrequency=148828125.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[5].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[5].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[5].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[5].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[5].filename=L527639_SB005_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[5].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[5].job_duration=4.72714495659
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[5].location=locus007:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[5].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[5].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[5].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[5].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[5].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[5].subband=5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[60].centralFrequency=159570312.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[60].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[60].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[60].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[60].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[60].filename=L527639_SB060_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[60].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[60].job_duration=4.65741801262
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[60].location=locus069:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[60].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[60].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[60].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[60].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[60].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[60].subband=60
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[61].centralFrequency=159765625.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[61].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[61].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[61].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[61].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[61].filename=L527639_SB061_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[61].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[61].job_duration=4.664686203
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[61].location=locus070:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[61].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[61].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[61].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[61].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[61].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[61].subband=61
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[62].centralFrequency=159960937.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[62].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[62].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[62].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[62].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[62].filename=L527639_SB062_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[62].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[62].job_duration=4.65758705139
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[62].location=locus071:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[62].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[62].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[62].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[62].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[62].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[62].subband=62
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[63].centralFrequency=160156250.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[63].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[63].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[63].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[63].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[63].filename=L527639_SB063_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[63].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[63].job_duration=5.04395794868
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[63].location=locus072:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[63].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[63].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[63].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[63].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[63].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[63].subband=63
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[64].centralFrequency=160351562.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[64].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[64].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[64].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[64].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[64].filename=L527639_SB064_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[64].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[64].job_duration=4.64732789993
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[64].location=locus073:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[64].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[64].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[64].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[64].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[64].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[64].subband=64
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[65].centralFrequency=160546875.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[65].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[65].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[65].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[65].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[65].filename=L527639_SB065_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[65].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[65].job_duration=4.64762997627
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[65].location=locus074:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[65].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[65].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[65].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[65].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[65].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[65].subband=65
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[66].centralFrequency=160742187.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[66].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[66].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[66].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[66].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[66].filename=L527639_SB066_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[66].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[66].job_duration=4.64840483665
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[66].location=locus075:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[66].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[66].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[66].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[66].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[66].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[66].subband=66
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[67].centralFrequency=160937500.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[67].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[67].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[67].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[67].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[67].filename=L527639_SB067_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[67].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[67].job_duration=4.64307308197
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[67].location=locus076:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[67].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[67].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[67].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[67].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[67].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[67].subband=67
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[68].centralFrequency=161132812.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[68].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[68].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[68].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[68].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[68].filename=L527639_SB068_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[68].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[68].job_duration=4.64142513275
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[68].location=locus077:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[68].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[68].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[68].size=5797909496
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[68].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[68].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[68].subband=68
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[69].centralFrequency=161328125.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[69].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[69].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[69].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[69].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[69].filename=L527639_SB069_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[69].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[69].job_duration=4.64188194275
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[69].location=locus078:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[69].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[69].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[69].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[69].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[69].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[69].subband=69
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[6].centralFrequency=149023437.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[6].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[6].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[6].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[6].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[6].filename=L527639_SB006_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[6].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[6].job_duration=4.7366309166
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[6].location=locus008:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[6].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[6].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[6].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[6].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[6].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[6].subband=6
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[70].centralFrequency=161523437.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[70].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[70].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[70].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[70].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[70].filename=L527639_SB070_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[70].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[70].job_duration=6.29970908165
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[70].location=locus079:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[70].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[70].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[70].size=5797909496
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[70].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[70].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[70].subband=70
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[71].centralFrequency=161718750.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[71].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[71].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[71].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[71].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[71].filename=L527639_SB071_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[71].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[71].job_duration=9.73532700539
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[71].location=locus080:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[71].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[71].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[71].size=5797909496
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[71].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[71].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[71].subband=71
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[72].centralFrequency=161914062.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[72].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[72].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[72].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[72].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[72].filename=L527639_SB072_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[72].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[72].job_duration=4.625893116
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[72].location=locus081:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[72].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[72].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[72].size=5797909496
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[72].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[72].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[72].subband=72
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[73].centralFrequency=162109375.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[73].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[73].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[73].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[73].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[73].filename=L527639_SB073_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[73].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[73].job_duration=4.63367319107
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[73].location=locus082:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[73].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[73].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[73].size=5797909496
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[73].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[73].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[73].subband=73
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[74].centralFrequency=162304687.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[74].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[74].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[74].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[74].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[74].filename=L527639_SB074_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[74].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[74].job_duration=5.39657115936
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[74].location=locus084:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[74].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[74].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[74].size=5797909496
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[74].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[74].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[74].subband=74
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[75].centralFrequency=162500000.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[75].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[75].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[75].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[75].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[75].filename=L527639_SB075_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[75].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[75].job_duration=5.42249894142
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[75].location=locus085:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[75].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[75].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[75].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[75].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[75].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[75].subband=75
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[76].centralFrequency=162695312.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[76].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[76].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[76].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[76].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[76].filename=L527639_SB076_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[76].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[76].job_duration=5.86383891106
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[76].location=locus086:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[76].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[76].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[76].size=5797909496
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[76].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[76].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[76].subband=76
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[77].centralFrequency=162890625.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[77].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[77].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[77].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[77].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[77].filename=L527639_SB077_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[77].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[77].job_duration=5.35885810852
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[77].location=locus087:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[77].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[77].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[77].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[77].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[77].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[77].subband=77
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[78].centralFrequency=163085937.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[78].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[78].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[78].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[78].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[78].filename=L527639_SB078_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[78].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[78].job_duration=5.14798998833
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[78].location=locus088:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[78].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[78].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[78].size=5797909496
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[78].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[78].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[78].subband=78
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[79].centralFrequency=163281250.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[79].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[79].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[79].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[79].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[79].filename=L527639_SB079_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[79].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[79].job_duration=5.25829482079
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[79].location=locus089:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[79].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[79].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[79].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[79].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[79].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[79].subband=79
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[7].centralFrequency=149218750.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[7].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[7].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[7].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[7].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[7].filename=L527639_SB007_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[7].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[7].job_duration=4.73183298111
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[7].location=locus009:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[7].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[7].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[7].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[7].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[7].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[7].subband=7
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[80].centralFrequency=163476562.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[80].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[80].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[80].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[80].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[80].filename=L527639_SB080_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[80].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[80].job_duration=5.68825006485
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[80].location=locus090:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[80].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[80].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[80].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[80].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[80].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[80].subband=80
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[81].centralFrequency=163671875.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[81].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[81].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[81].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[81].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[81].filename=L527639_SB081_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[81].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[81].job_duration=5.32785201073
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[81].location=locus091:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[81].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[81].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[81].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[81].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[81].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[81].subband=81
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[82].centralFrequency=163867187.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[82].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[82].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[82].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[82].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[82].filename=L527639_SB082_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[82].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[82].job_duration=5.73968410492
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[82].location=locus001:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[82].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[82].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[82].size=5797909496
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[82].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[82].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[82].subband=82
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[83].centralFrequency=164062500.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[83].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[83].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[83].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[83].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[83].filename=L527639_SB083_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[83].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[83].job_duration=5.17065906525
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[83].location=locus003:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[83].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[83].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[83].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[83].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[83].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[83].subband=83
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[84].centralFrequency=164257812.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[84].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[84].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[84].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[84].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[84].filename=L527639_SB084_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[84].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[84].job_duration=4.59308290482
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[84].location=locus004:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[84].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[84].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[84].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[84].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[84].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[84].subband=84
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[85].centralFrequency=164453125.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[85].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[85].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[85].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[85].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[85].filename=L527639_SB085_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[85].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[85].job_duration=5.44520998001
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[85].location=locus005:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[85].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[85].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[85].size=5797909496
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[85].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[85].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[85].subband=85
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[86].centralFrequency=164648437.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[86].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[86].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[86].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[86].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[86].filename=L527639_SB086_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[86].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[86].job_duration=4.59821581841
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[86].location=locus006:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[86].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[86].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[86].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[86].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[86].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[86].subband=86
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[87].centralFrequency=164843750.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[87].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[87].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[87].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[87].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[87].filename=L527639_SB087_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[87].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[87].job_duration=5.3797750473
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[87].location=locus007:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[87].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[87].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[87].size=5797843944
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[87].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[87].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[87].subband=87
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[88].centralFrequency=165039062.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[88].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[88].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[88].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[88].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[88].filename=L527639_SB088_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[88].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[88].job_duration=4.60826301575
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[88].location=locus008:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[88].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[88].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[88].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[88].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[88].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[88].subband=88
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[89].centralFrequency=165234375.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[89].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[89].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[89].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[89].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[89].filename=L527639_SB089_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[89].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[89].job_duration=6.34883213043
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[89].location=locus009:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[89].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[89].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[89].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[89].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[89].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[89].subband=89
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[8].centralFrequency=149414062.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[8].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[8].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[8].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[8].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[8].filename=L527639_SB008_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[8].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[8].job_duration=4.72490000725
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[8].location=locus010:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[8].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[8].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[8].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[8].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[8].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[8].subband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[90].centralFrequency=165429687.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[90].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[90].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[90].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[90].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[90].filename=L527639_SB090_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[90].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[90].job_duration=5.52203297615
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[90].location=locus010:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[90].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[90].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[90].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[90].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[90].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[90].subband=90
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[91].centralFrequency=165625000.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[91].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[91].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[91].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[91].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[91].filename=L527639_SB091_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[91].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[91].job_duration=4.5984749794
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[91].location=locus011:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[91].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[91].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[91].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[91].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[91].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[91].subband=91
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[92].centralFrequency=165820312.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[92].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[92].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[92].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[92].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[92].filename=L527639_SB092_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[92].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[92].job_duration=5.38614106178
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[92].location=locus012:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[92].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[92].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[92].size=5797975048
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[92].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[92].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[92].subband=92
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[93].centralFrequency=166015625.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[93].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[93].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[93].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[93].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[93].filename=L527639_SB093_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[93].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[93].job_duration=4.61640977859
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[93].location=locus014:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[93].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[93].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[93].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[93].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[93].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[93].subband=93
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[94].centralFrequency=166210937.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[94].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[94].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[94].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[94].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[94].filename=L527639_SB094_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[94].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[94].job_duration=4.62309098244
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[94].location=locus015:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[94].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[94].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[94].size=5798040600
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[94].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[94].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[94].subband=94
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[95].centralFrequency=166406250.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[95].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[95].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[95].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[95].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[95].filename=L527639_SB095_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[95].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[95].job_duration=5.48683309555
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[95].location=locus016:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[95].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[95].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[95].size=5798073376
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[95].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[95].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[95].subband=95
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[96].centralFrequency=166601562.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[96].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[96].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[96].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[96].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[96].filename=L527639_SB096_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[96].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[96].job_duration=5.51213383675
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[96].location=locus017:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[96].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[96].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[96].size=5798138928
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[96].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[96].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[96].subband=96
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[97].centralFrequency=166796875.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[97].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[97].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[97].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[97].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[97].filename=L527639_SB097_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[97].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[97].job_duration=5.53731393814
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[97].location=locus018:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[97].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[97].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[97].size=5798270032
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[97].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[97].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[97].subband=97
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[98].centralFrequency=166992187.5
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[98].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[98].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[98].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[98].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[98].filename=L527639_SB098_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[98].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[98].job_duration=4.63490819931
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[98].location=locus019:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[98].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[98].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[98].size=5798335584
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[98].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[98].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[98].subband=98
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[99].centralFrequency=167187500.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[99].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[99].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[99].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[99].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[99].filename=L527639_SB099_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[99].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[99].job_duration=5.59553813934
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[99].location=locus020:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[99].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[99].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[99].size=5798368360
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[99].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[99].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[99].subband=99
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[9].centralFrequency=149609375.0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[9].channelWidth=24414.0625
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[9].channelsPerSubband=8
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[9].duration=13859.2387075
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[9].fileFormat=AIPS++/CASA
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[9].filename=L527639_SB009_uv.dppp.MS
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[9].integrationInterval=2.00278016
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[9].job_duration=4.71954989433
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[9].location=locus011:/data/L527639
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[9].percentageWritten=100
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[9].returncode=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[9].size=5797942272
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[9].startTime=2016-07-30T00:09:00.000
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[9].stationSubband=0
+LOFAR.ObsSW.Observation.DataProducts.Output_Correlated_[9].subband=9
+LOFAR.ObsSW.Observation.DataProducts.nrOfOutput_Correlated_=244
+
+</contents>
+    </parset>
+</sip:ltaSip>
diff --git a/test/testmetadata_file.Correlated.modified b/test/testmetadata_file.Correlated.modified
new file mode 100644
index 0000000000000000000000000000000000000000..4d17a1d5f0f9a868f28730d6411846e6801684fc
--- /dev/null
+++ b/test/testmetadata_file.Correlated.modified
@@ -0,0 +1,31 @@
+test.prefix.Output_Correlated_[0].centralFrequency=119042968.75
+test.prefix.Output_Correlated_[0].channelWidth=48828.125
+test.prefix.Output_Correlated_[0].channelsPerSubband=8
+test.prefix.Output_Correlated_[0].duration=3600.99872684
+test.prefix.Output_Correlated_[0].fileFormat=AIPS++/CASA
+test.prefix.Output_Correlated_[0].filename=L74759_SAP000_SB001_uv.copySubtracted
+test.prefix.Output_Correlated_[0].integrationInterval=4.00556032
+test.prefix.Output_Correlated_[0].job_duration=5.0088031292
+test.prefix.Output_Correlated_[0].location=jrc0636:/work/htb00/htb003/cookbook_working_dir/Cookbook-Tutorial
+test.prefix.Output_Correlated_[0].percentageWritten=100
+test.prefix.Output_Correlated_[0].returncode=0
+test.prefix.Output_Correlated_[0].size=1381625751
+test.prefix.Output_Correlated_[0].startTime=2012-11-12T12:47:00.000
+test.prefix.Output_Correlated_[0].stationSubband=0
+test.prefix.Output_Correlated_[0].subband=0
+test.prefix.Output_Correlated_[1].centralFrequency=119042968.75
+test.prefix.Output_Correlated_[1].channelWidth=48828.125
+test.prefix.Output_Correlated_[1].channelsPerSubband=8
+test.prefix.Output_Correlated_[1].duration=3600.99872684
+test.prefix.Output_Correlated_[1].fileFormat=AIPS++/CASA
+test.prefix.Output_Correlated_[1].filename=L74759_SAP000_SB001_uv.copySubtracted.2
+test.prefix.Output_Correlated_[1].integrationInterval=4.00556032
+test.prefix.Output_Correlated_[1].job_duration=5.0088031292
+test.prefix.Output_Correlated_[1].location=jrc0636:/work/htb00/htb003/cookbook_working_dir/Cookbook-Tutorial
+test.prefix.Output_Correlated_[1].percentageWritten=100
+test.prefix.Output_Correlated_[1].returncode=1
+test.prefix.Output_Correlated_[1].size=1381625751
+test.prefix.Output_Correlated_[1].startTime=2012-11-12T12:47:00.000
+test.prefix.Output_Correlated_[1].stationSubband=1
+test.prefix.Output_Correlated_[1].subband=1
+test.prefix.nrOfOutput_Correlated_=2
\ No newline at end of file