diff --git a/LCS/Stream/include/Stream/StringStream.h b/LCS/Stream/include/Stream/StringStream.h
index 57271587c4972743d056e9ddf32de917a4ae5725..75c16c6c6670956bdfd1d555895e0d7d2043c1a0 100644
--- a/LCS/Stream/include/Stream/StringStream.h
+++ b/LCS/Stream/include/Stream/StringStream.h
@@ -46,6 +46,9 @@ class StringStream : public Stream
 
     virtual std::string description() const { return "StringStream "; }
 
+    // Amount of data that was written, but not read.
+    size_t bufferSize() { return itsBuffer.tellp() - itsBuffer.tellg(); }
+
   private:
     Mutex itsMutex;
 
diff --git a/LCS/Stream/test/tStringStream.cc b/LCS/Stream/test/tStringStream.cc
index fb7015805133e4852898dfe3ef75c09fad89951c..1050e1290821af5d02621176fa6dccceab274f03 100644
--- a/LCS/Stream/test/tStringStream.cc
+++ b/LCS/Stream/test/tStringStream.cc
@@ -44,8 +44,10 @@ void test(size_t numbytes)
     buf_in[i] = i % 128;
 
   s.write(&buf_in[0], numbytes);
+  ASSERTSTR(s.bufferSize() == numbytes, "Buffer reports " << s.bufferSize() << " bytes, but should have " << numbytes << " bytes.");
 
   s.read(&buf_out[0], numbytes);
+  ASSERTSTR(s.bufferSize() == 0, "Buffer reports " << s.bufferSize() << " bytes, but should be empty.");
 
   for (size_t i = 0; i < numbytes; i++)
     ASSERTSTR(buf_in[i] == buf_out[i], "Mismatch at position " << i << ": buf_in[i] = " << (int)buf_in[i] << ", buf_out[i] = " << (int)buf_out[i]);
diff --git a/RTCP/Cobalt/CoInterface/src/CommonLofarAttributes.cc b/RTCP/Cobalt/CoInterface/src/CommonLofarAttributes.cc
index dbefc02b31c32ea7bbcf90a3d1360bb32317b742..2a3b2d1085f659a180b4e1344ae37bf3565769b0 100644
--- a/RTCP/Cobalt/CoInterface/src/CommonLofarAttributes.cc
+++ b/RTCP/Cobalt/CoInterface/src/CommonLofarAttributes.cc
@@ -91,8 +91,8 @@ namespace LOFAR
       file.observationStartUTC().value = toUTC(parset.settings.startTime);
       file.observationStartMJD().value = toMJD(parset.settings.startTime);
 
-      file.observationEndUTC().value = toUTC(parset.getRealStopTime());
-      file.observationEndMJD().value = toMJD(parset.getRealStopTime());
+      file.observationEndUTC().value = toUTC(parset.settings.getRealStopTime());
+      file.observationEndMJD().value = toMJD(parset.settings.getRealStopTime());
 
       file.observationNofStations().value = parset.settings.antennaFields.size(); // TODO: check/fix when superstation beamformer is supp
       const vector<string> allStNames = ObservationSettings::AntennaFieldName::names(parset.settings.antennaFieldNames);
diff --git a/RTCP/Cobalt/CoInterface/src/FinalMetaData.cc b/RTCP/Cobalt/CoInterface/src/FinalMetaData.cc
index 968fb499f9155fe8c6aa3ca36f844f8e93c82994..f3a5f88b7ea2cfb91c4bfb071ecd395fd1ffb507 100644
--- a/RTCP/Cobalt/CoInterface/src/FinalMetaData.cc
+++ b/RTCP/Cobalt/CoInterface/src/FinalMetaData.cc
@@ -136,12 +136,14 @@ namespace LOFAR
     {
       StreamWriter< std::vector<struct BrokenRCU> >::write(s, brokenRCUsAtBegin);
       StreamWriter< std::vector<struct BrokenRCU> >::write(s, brokenRCUsDuring);
+      StreamWriter<size_t>                         ::write(s, nrBlocksInObservation);
     }
 
     void FinalMetaData::read(Stream &s)
     {
       StreamWriter< std::vector<struct BrokenRCU> >::read(s, brokenRCUsAtBegin);
       StreamWriter< std::vector<struct BrokenRCU> >::read(s, brokenRCUsDuring);
+      StreamWriter<size_t>                         ::read(s, nrBlocksInObservation);
     }
 
     std::ostream& operator<<(std::ostream& os, const struct FinalMetaData::BrokenRCU &rcu)
@@ -175,6 +177,8 @@ namespace LOFAR
         os << rcu;
       }
 
+      os << " Nr blocks in observation: " << finalMetaData.nrBlocksInObservation;
+
       return os;
     }
 
diff --git a/RTCP/Cobalt/CoInterface/src/FinalMetaData.h b/RTCP/Cobalt/CoInterface/src/FinalMetaData.h
index 1b621abcf9587a54a5625cbd971e43599f9daf27..c443f7a18a4e7b32f7b0be4d67295fb394907c43 100644
--- a/RTCP/Cobalt/CoInterface/src/FinalMetaData.h
+++ b/RTCP/Cobalt/CoInterface/src/FinalMetaData.h
@@ -60,6 +60,9 @@ namespace LOFAR
 
       std::vector<BrokenRCU>  brokenRCUsAtBegin, brokenRCUsDuring;
 
+      // the number of blocks we managed to process. tends to be as specified, unless we abort earlier.
+      size_t nrBlocksInObservation;
+
       void write(Stream &s);
       void read(Stream &s);
     };
diff --git a/RTCP/Cobalt/CoInterface/src/LTAFeedback.cc b/RTCP/Cobalt/CoInterface/src/LTAFeedback.cc
index 2b15378647e57396177da1a78b74cd9a67ce1b70..caf6e04346670b21caa82e1de755045f704c56b7 100644
--- a/RTCP/Cobalt/CoInterface/src/LTAFeedback.cc
+++ b/RTCP/Cobalt/CoInterface/src/LTAFeedback.cc
@@ -24,6 +24,7 @@
 #include <CoInterface/LTAFeedback.h>
 #include <CoInterface/TimeFuncs.h>
 #include <CoInterface/PrintVector.h>
+#include <CoInterface/CommonLofarAttributes.h>
 
 #include <string>
 #include <boost/format.hpp>
@@ -38,7 +39,7 @@ namespace LOFAR
     // LOFAR-RELEASE 3.1.0
     // See also CEP/pipeline/framework/lofarpipe/support/feedback.py
     int LTAFeedback::major_version(3);
-    int LTAFeedback::minor_version(1);
+    int LTAFeedback::minor_version(2);
     int LTAFeedback::patch_number(0);
     std::string LTAFeedback::feedback_version(boost::str(boost::format("%02d.%02d.%02d") %
                                         major_version % minor_version % patch_number));
@@ -95,6 +96,7 @@ namespace LOFAR
       ps.add(prefix + "Pointing.directionType", sap.direction.type);
       ps.add(prefix + "Pointing.angle1",      str(format("%f") % sap.direction.angle1));
       ps.add(prefix + "Pointing.angle2",      str(format("%f") % sap.direction.angle2));
+      ps.add(prefix + "Pointing.target",      sap.target);
 
       return ps;
     }
@@ -209,6 +211,7 @@ namespace LOFAR
       ps.add(beamPrefix + "Pointing.directionType", tab.direction.type);
       ps.add(beamPrefix + "Pointing.angle1",    str(format("%f") % tab.direction.angle1));
       ps.add(beamPrefix + "Pointing.angle2",    str(format("%f") % tab.direction.angle2));
+      ps.add(beamPrefix + "Pointing.target",    tab.target);
 
       if (type == "CoherentStokesBeam") {
         ps.add(beamPrefix + "Offset.equinox",     "J2000");
@@ -233,7 +236,7 @@ namespace LOFAR
     }
 
 
-    ParameterSet LTAFeedback::processingFeedback() const
+    ParameterSet LTAFeedback::processingFeedback(size_t nr_blocks) const
     {
       ParameterSet ps;
 
@@ -243,6 +246,10 @@ namespace LOFAR
       // for MoM, to discriminate between Cobalt and BG/P observations
       ps.add("_isCobalt", "T");
 
+      // actual start/end times that we used
+      ps.add("Observation.startTime", toUTC(settings.startTime));
+      ps.add("Observation.stopTime", toUTC(settings.getBlockEndTime((ssize_t)nr_blocks - 1)));
+
       ps.add("Observation.DataProducts.nrOfOutput_Correlated_", 
              str(format("%u") % (settings.correlator.enabled ? settings.correlator.files.size() : 0)));
 
@@ -367,11 +374,11 @@ namespace LOFAR
     }
 
 
-    ParameterSet LTAFeedback::allFeedback() const
+    ParameterSet LTAFeedback::allFeedback(size_t nr_blocks) const
     {
       ParameterSet ps;
 
-      ps.adoptCollection(processingFeedback());
+      ps.adoptCollection(processingFeedback(nr_blocks));
 
       // add the feedback for the individual files
       if (settings.correlator.enabled) {
diff --git a/RTCP/Cobalt/CoInterface/src/LTAFeedback.h b/RTCP/Cobalt/CoInterface/src/LTAFeedback.h
index 8005e83cc86d1b6385738ec0910c77fc2cd95787..7785719f8564c248f4e0923b6ff68933db50635c 100644
--- a/RTCP/Cobalt/CoInterface/src/LTAFeedback.h
+++ b/RTCP/Cobalt/CoInterface/src/LTAFeedback.h
@@ -50,15 +50,19 @@ namespace LOFAR
       // \note Details about the meaning of the different meta-data parameters
       // can be found in the XSD that describes the Submission Information
       // Package (sip) for the LTA.
+      //
+      // "nr_blocks" is the number of blocks processed (normally ps.settings.nrBlocks())
       // \see http://proposal.astron.nl/schemas/LTA-SIP.xsd
-      ParameterSet                processingFeedback() const;
+      ParameterSet                processingFeedback(size_t nr_blocks) const;
 
       // Return the LTA feedback parameters.
       // \note Details about the meaning of the different meta-data parameters
       // can be found in the XSD that describes the Submission Information
       // Package (sip) for the LTA.
+      //
+      // "nr_blocks" is the number of blocks processed (normally ps.settings.nrBlocks())
       // \see http://proposal.astron.nl/schemas/LTA-SIP.xsd
-      ParameterSet                allFeedback() const;
+      ParameterSet                allFeedback(size_t nr_blocks) const;
       static int major_version;
       static int minor_version;
       static int patch_number;
diff --git a/RTCP/Cobalt/CoInterface/src/Parset.cc b/RTCP/Cobalt/CoInterface/src/Parset.cc
index 7149dd30e2086cac4ed465c66272f293856dba17..257ad6beb0053df3af140d7033c12c5bbe6bc8e6 100644
--- a/RTCP/Cobalt/CoInterface/src/Parset.cc
+++ b/RTCP/Cobalt/CoInterface/src/Parset.cc
@@ -687,6 +687,7 @@ namespace LOFAR
             // pipelines do not use the angles, but the data writer does as part of its annotation.
             tab.direction.angle1  = tab.coherent ? getDouble(prefix + ".angle1", 0.0) : sap.direction.angle1;
             tab.direction.angle2  = tab.coherent ? getDouble(prefix + ".angle2", 0.0) : sap.direction.angle2;
+            tab.target            = tab.coherent ? getString(prefix + ".target", "")  : sap.target;
           }
           else
           {
@@ -756,6 +757,7 @@ namespace LOFAR
           tab.direction.type    = getString(prefix + ".directionType", "J2000");
           tab.direction.angle1  = getDouble(prefix + ".angle1", 0.0);
           tab.direction.angle2  = getDouble(prefix + ".angle2", 0.0);
+          tab.target            = getString(prefix + ".target", "");
           tab.dispersionMeasure = 0.0;
           tab.coherent          = true;
 
@@ -1062,6 +1064,7 @@ namespace LOFAR
             bfSAP.globalSapIdx = sapNr;
             bfTAB.localTabNr = localTabNr;
             bfTAB.direction = obsTAB.direction;
+            bfTAB.target = obsTAB.target;
             bfTAB.coherent = obsTAB.coherent;
             bfTAB.dispersionMeasure = obsTAB.dispersionMeasure;
             // The tab.files entry is filled below
@@ -1788,10 +1791,19 @@ namespace LOFAR
 
     // The real stop time can be a bit further than the one actually specified,
     // because we process in blocks.
-    double Parset::getRealStopTime() const 
+    double ObservationSettings::getRealStopTime() const 
     {
-      return settings.startTime +
-             settings.nrBlocks() * settings.blockDuration();
+      return getBlockEndTime(nrBlocks() - 1);
+    }
+
+    double ObservationSettings::getBlockStartTime(ssize_t block) const
+    {
+      return startTime + block * blockDuration();
+    }
+
+    double ObservationSettings::getBlockEndTime(ssize_t block) const
+    {
+      return getBlockStartTime(block + 1);
     }
 
     std::string Parset::getHostName(OutputType outputType, unsigned streamNr) const
diff --git a/RTCP/Cobalt/CoInterface/src/Parset.h b/RTCP/Cobalt/CoInterface/src/Parset.h
index fe420c9d64b671a03691a47bb9355ac1ab75ef75..765d058d9c2d0b66a3c2921f2cc77f88b15479ec 100644
--- a/RTCP/Cobalt/CoInterface/src/Parset.h
+++ b/RTCP/Cobalt/CoInterface/src/Parset.h
@@ -91,6 +91,13 @@ namespace LOFAR
       // key: Observation.stopTime
       double stopTime;
 
+      // actual stop time, which is different, as we round to block boundaries 
+      double getRealStopTime() const;
+
+      // start and stop times for a given block
+      double getBlockStartTime(ssize_t block) const;
+      double getBlockEndTime(ssize_t block) const;
+
       // The station clock, in MHz (200 or 160)
       //
       // key: Observation.sampleClock
@@ -399,6 +406,11 @@ namespace LOFAR
         // The list of files to write, one file
         // per part/stokes.
         //std::vector<struct File> files;
+
+        // Name of target
+        //
+        // key: Observation.Beam[sap].TiedArrayBeam[tab].target
+        std::string target;
       };
 
       struct SAP {
@@ -661,6 +673,11 @@ namespace LOFAR
 
           // The index of the beamFormer pipeline processing this TAB
           unsigned pipelineNr;
+
+          // Name of target
+          //
+          // key: Observation.Beam[sap].TiedArrayBeam[tab].target
+          std::string target;
         };
 
         struct SAP {
@@ -1032,7 +1049,6 @@ namespace LOFAR
 
       void                        write(Stream *) const;
 
-      double                      getRealStopTime() const;
       unsigned                    nrTabStations() const;
       unsigned                    nrMergedStations() const;
       std::vector<std::string>    mergedStationNames() const;
diff --git a/RTCP/Cobalt/CoInterface/src/createFeedback.cc b/RTCP/Cobalt/CoInterface/src/createFeedback.cc
index 01650f531a29312394bdf88d1c5be2357a3012d7..cdb04bf538e7e484a12aa0052aef4d722e42817a 100644
--- a/RTCP/Cobalt/CoInterface/src/createFeedback.cc
+++ b/RTCP/Cobalt/CoInterface/src/createFeedback.cc
@@ -59,7 +59,7 @@ int main(int argc, char *argv[])
   Parset feedbackLTA;
 
   // add all parameters
-  feedbackLTA.adoptCollection(fb.allFeedback());
+  feedbackLTA.adoptCollection(fb.allFeedback(parset.settings.nrBlocks()));
 
   // Write to disk
   feedbackLTA.writeFile(str(format("Observation%d_feedback") % parset.settings.observationID), false);
diff --git a/RTCP/Cobalt/CoInterface/test/CMakeLists.txt b/RTCP/Cobalt/CoInterface/test/CMakeLists.txt
index 01430e15d4d7c273a74d756c73b47dbf64fb12d3..588afe1f802101dc9e2bd6c3dd19798d9675e3e6 100644
--- a/RTCP/Cobalt/CoInterface/test/CMakeLists.txt
+++ b/RTCP/Cobalt/CoInterface/test/CMakeLists.txt
@@ -17,6 +17,7 @@ lofar_add_test(tRSP tRSP.cc)
 if(UNITTEST++_FOUND)
   lofar_add_test(t_cpu_utils t_cpu_utils.cc)
   lofar_add_test(tAlign tAlign.cc)
+  lofar_add_test(tFinalMetaData tFinalMetaData.cc)
   lofar_add_test(tOMPThread tOMPThread.cc)
   lofar_add_test(tParset tParset.cc tParsetDefault.cc)
   lofar_add_test(tQueue2 tQueue2.cc)
diff --git a/RTCP/Cobalt/CoInterface/test/tFinalMetaData.cc b/RTCP/Cobalt/CoInterface/test/tFinalMetaData.cc
new file mode 100644
index 0000000000000000000000000000000000000000..50b1e50de14e9dc53ccb9d02b857906e499295b7
--- /dev/null
+++ b/RTCP/Cobalt/CoInterface/test/tFinalMetaData.cc
@@ -0,0 +1,98 @@
+//# tOMPThread.cc
+//# Copyright (C) 2012-2013  ASTRON (Netherlands Institute for Radio Astronomy)
+//# P.O. Box 2, 7990 AA Dwingeloo, The Netherlands
+//#
+//# This file is part of the LOFAR software suite.
+//# The LOFAR software suite is free software: you can redistribute it and/or
+//# modify it under the terms of the GNU General Public License as published
+//# by the Free Software Foundation, either version 3 of the License, or
+//# (at your option) any later version.
+//#
+//# The LOFAR software suite is distributed in the hope that it will be useful,
+//# but WITHOUT ANY WARRANTY; without even the implied warranty of
+//# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+//# GNU General Public License for more details.
+//#
+//# You should have received a copy of the GNU General Public License along
+//# with the LOFAR software suite. If not, see <http://www.gnu.org/licenses/>.
+//#
+//# $Id$
+
+#include <lofar_config.h>
+
+#include <Common/LofarLogger.h>
+#include <Stream/StringStream.h>
+#include <CoInterface/FinalMetaData.h>
+
+#include <UnitTest++.h>
+
+using namespace LOFAR;
+using namespace LOFAR::Cobalt;
+using namespace std;
+
+SUITE(FinalMetaData) {
+  TEST(Basic) {
+    FinalMetaData f;
+  }
+}
+
+SUITE(ReadWrite) {
+  TEST(NoRCUs) {
+    FinalMetaData f_in, f_out;
+
+    f_in.nrBlocksInObservation = 42;
+
+    StringStream ss;
+    f_in.write(ss);
+    f_out.read(ss);
+    CHECK_EQUAL(0,  ss.bufferSize());
+
+    CHECK_EQUAL(42, f_out.nrBlocksInObservation);
+    CHECK_EQUAL(0,  f_out.brokenRCUsAtBegin.size());
+    CHECK_EQUAL(0,  f_out.brokenRCUsDuring.size());
+  }
+
+  TEST(RCUsAtBegin) {
+    FinalMetaData f_in, f_out;
+    FinalMetaData::BrokenRCU brokenRCU( "CS001",  "LBA", 3, "now" );
+
+    f_in.nrBlocksInObservation = 42;
+    f_in.brokenRCUsAtBegin.push_back(brokenRCU);
+
+    StringStream ss;
+    f_in.write(ss);
+    f_out.read(ss);
+    CHECK_EQUAL(0,  ss.bufferSize());
+
+    CHECK_EQUAL(42, f_out.nrBlocksInObservation);
+    CHECK_EQUAL(1,  f_out.brokenRCUsAtBegin.size());
+    CHECK_EQUAL(0,  f_out.brokenRCUsDuring.size());
+    CHECK_EQUAL(brokenRCU,  f_out.brokenRCUsAtBegin[0]);
+  }
+
+  TEST(RCUsDuring) {
+    FinalMetaData f_in, f_out;
+    FinalMetaData::BrokenRCU brokenRCU( "CS001",  "LBA", 3, "now" );
+
+    f_in.nrBlocksInObservation = 42;
+    f_in.brokenRCUsDuring.push_back(brokenRCU);
+
+    StringStream ss;
+    f_in.write(ss);
+    f_out.read(ss);
+    CHECK_EQUAL(0,  ss.bufferSize());
+
+    CHECK_EQUAL(42, f_out.nrBlocksInObservation);
+    CHECK_EQUAL(0,  f_out.brokenRCUsAtBegin.size());
+    CHECK_EQUAL(1,  f_out.brokenRCUsDuring.size());
+    CHECK_EQUAL(brokenRCU,  f_out.brokenRCUsDuring[0]);
+  }
+}
+
+int main(void)
+{
+  INIT_LOGGER("tFinalMetaData");
+
+  return UnitTest::RunAllTests() > 0;
+}
+
diff --git a/RTCP/Cobalt/CoInterface/test/tLTAFeedback.in_reference/Observation220133_feedback b/RTCP/Cobalt/CoInterface/test/tLTAFeedback.in_reference/Observation220133_feedback
index 17e88c80aec76eea68744ef0b780ed655d96bb6d..f1f8a5ec1d68dd480496db38716b4961014f37f2 100644
--- a/RTCP/Cobalt/CoInterface/test/tLTAFeedback.in_reference/Observation220133_feedback
+++ b/RTCP/Cobalt/CoInterface/test/tLTAFeedback.in_reference/Observation220133_feedback
@@ -4,6 +4,7 @@ Observation.Correlator.integrationInterval=1.00663296
 Observation.DataProducts.Output_Correlated_[0].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[0].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[0].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[0].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[0].SAP=0
 Observation.DataProducts.Output_Correlated_[0].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[0].antennaSet=LBA_INNER
@@ -25,6 +26,7 @@ Observation.DataProducts.Output_Correlated_[0].subband=0
 Observation.DataProducts.Output_Correlated_[100].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[100].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[100].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[100].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[100].SAP=0
 Observation.DataProducts.Output_Correlated_[100].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[100].antennaSet=LBA_INNER
@@ -46,6 +48,7 @@ Observation.DataProducts.Output_Correlated_[100].subband=100
 Observation.DataProducts.Output_Correlated_[101].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[101].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[101].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[101].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[101].SAP=0
 Observation.DataProducts.Output_Correlated_[101].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[101].antennaSet=LBA_INNER
@@ -67,6 +70,7 @@ Observation.DataProducts.Output_Correlated_[101].subband=101
 Observation.DataProducts.Output_Correlated_[102].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[102].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[102].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[102].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[102].SAP=0
 Observation.DataProducts.Output_Correlated_[102].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[102].antennaSet=LBA_INNER
@@ -88,6 +92,7 @@ Observation.DataProducts.Output_Correlated_[102].subband=102
 Observation.DataProducts.Output_Correlated_[103].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[103].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[103].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[103].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[103].SAP=0
 Observation.DataProducts.Output_Correlated_[103].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[103].antennaSet=LBA_INNER
@@ -109,6 +114,7 @@ Observation.DataProducts.Output_Correlated_[103].subband=103
 Observation.DataProducts.Output_Correlated_[104].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[104].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[104].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[104].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[104].SAP=0
 Observation.DataProducts.Output_Correlated_[104].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[104].antennaSet=LBA_INNER
@@ -130,6 +136,7 @@ Observation.DataProducts.Output_Correlated_[104].subband=104
 Observation.DataProducts.Output_Correlated_[105].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[105].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[105].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[105].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[105].SAP=0
 Observation.DataProducts.Output_Correlated_[105].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[105].antennaSet=LBA_INNER
@@ -151,6 +158,7 @@ Observation.DataProducts.Output_Correlated_[105].subband=105
 Observation.DataProducts.Output_Correlated_[106].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[106].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[106].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[106].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[106].SAP=0
 Observation.DataProducts.Output_Correlated_[106].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[106].antennaSet=LBA_INNER
@@ -172,6 +180,7 @@ Observation.DataProducts.Output_Correlated_[106].subband=106
 Observation.DataProducts.Output_Correlated_[107].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[107].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[107].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[107].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[107].SAP=0
 Observation.DataProducts.Output_Correlated_[107].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[107].antennaSet=LBA_INNER
@@ -193,6 +202,7 @@ Observation.DataProducts.Output_Correlated_[107].subband=107
 Observation.DataProducts.Output_Correlated_[108].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[108].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[108].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[108].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[108].SAP=0
 Observation.DataProducts.Output_Correlated_[108].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[108].antennaSet=LBA_INNER
@@ -214,6 +224,7 @@ Observation.DataProducts.Output_Correlated_[108].subband=108
 Observation.DataProducts.Output_Correlated_[109].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[109].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[109].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[109].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[109].SAP=0
 Observation.DataProducts.Output_Correlated_[109].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[109].antennaSet=LBA_INNER
@@ -235,6 +246,7 @@ Observation.DataProducts.Output_Correlated_[109].subband=109
 Observation.DataProducts.Output_Correlated_[10].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[10].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[10].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[10].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[10].SAP=0
 Observation.DataProducts.Output_Correlated_[10].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[10].antennaSet=LBA_INNER
@@ -256,6 +268,7 @@ Observation.DataProducts.Output_Correlated_[10].subband=10
 Observation.DataProducts.Output_Correlated_[110].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[110].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[110].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[110].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[110].SAP=0
 Observation.DataProducts.Output_Correlated_[110].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[110].antennaSet=LBA_INNER
@@ -277,6 +290,7 @@ Observation.DataProducts.Output_Correlated_[110].subband=110
 Observation.DataProducts.Output_Correlated_[111].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[111].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[111].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[111].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[111].SAP=0
 Observation.DataProducts.Output_Correlated_[111].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[111].antennaSet=LBA_INNER
@@ -298,6 +312,7 @@ Observation.DataProducts.Output_Correlated_[111].subband=111
 Observation.DataProducts.Output_Correlated_[112].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[112].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[112].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[112].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[112].SAP=0
 Observation.DataProducts.Output_Correlated_[112].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[112].antennaSet=LBA_INNER
@@ -319,6 +334,7 @@ Observation.DataProducts.Output_Correlated_[112].subband=112
 Observation.DataProducts.Output_Correlated_[113].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[113].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[113].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[113].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[113].SAP=0
 Observation.DataProducts.Output_Correlated_[113].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[113].antennaSet=LBA_INNER
@@ -340,6 +356,7 @@ Observation.DataProducts.Output_Correlated_[113].subband=113
 Observation.DataProducts.Output_Correlated_[114].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[114].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[114].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[114].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[114].SAP=0
 Observation.DataProducts.Output_Correlated_[114].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[114].antennaSet=LBA_INNER
@@ -361,6 +378,7 @@ Observation.DataProducts.Output_Correlated_[114].subband=114
 Observation.DataProducts.Output_Correlated_[115].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[115].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[115].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[115].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[115].SAP=0
 Observation.DataProducts.Output_Correlated_[115].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[115].antennaSet=LBA_INNER
@@ -382,6 +400,7 @@ Observation.DataProducts.Output_Correlated_[115].subband=115
 Observation.DataProducts.Output_Correlated_[116].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[116].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[116].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[116].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[116].SAP=0
 Observation.DataProducts.Output_Correlated_[116].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[116].antennaSet=LBA_INNER
@@ -403,6 +422,7 @@ Observation.DataProducts.Output_Correlated_[116].subband=116
 Observation.DataProducts.Output_Correlated_[117].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[117].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[117].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[117].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[117].SAP=0
 Observation.DataProducts.Output_Correlated_[117].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[117].antennaSet=LBA_INNER
@@ -424,6 +444,7 @@ Observation.DataProducts.Output_Correlated_[117].subband=117
 Observation.DataProducts.Output_Correlated_[118].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[118].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[118].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[118].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[118].SAP=0
 Observation.DataProducts.Output_Correlated_[118].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[118].antennaSet=LBA_INNER
@@ -445,6 +466,7 @@ Observation.DataProducts.Output_Correlated_[118].subband=118
 Observation.DataProducts.Output_Correlated_[119].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[119].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[119].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[119].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[119].SAP=0
 Observation.DataProducts.Output_Correlated_[119].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[119].antennaSet=LBA_INNER
@@ -466,6 +488,7 @@ Observation.DataProducts.Output_Correlated_[119].subband=119
 Observation.DataProducts.Output_Correlated_[11].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[11].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[11].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[11].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[11].SAP=0
 Observation.DataProducts.Output_Correlated_[11].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[11].antennaSet=LBA_INNER
@@ -487,6 +510,7 @@ Observation.DataProducts.Output_Correlated_[11].subband=11
 Observation.DataProducts.Output_Correlated_[120].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[120].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[120].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[120].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[120].SAP=0
 Observation.DataProducts.Output_Correlated_[120].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[120].antennaSet=LBA_INNER
@@ -508,6 +532,7 @@ Observation.DataProducts.Output_Correlated_[120].subband=120
 Observation.DataProducts.Output_Correlated_[121].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[121].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[121].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[121].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[121].SAP=0
 Observation.DataProducts.Output_Correlated_[121].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[121].antennaSet=LBA_INNER
@@ -529,6 +554,7 @@ Observation.DataProducts.Output_Correlated_[121].subband=121
 Observation.DataProducts.Output_Correlated_[122].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[122].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[122].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[122].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[122].SAP=0
 Observation.DataProducts.Output_Correlated_[122].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[122].antennaSet=LBA_INNER
@@ -550,6 +576,7 @@ Observation.DataProducts.Output_Correlated_[122].subband=122
 Observation.DataProducts.Output_Correlated_[123].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[123].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[123].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[123].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[123].SAP=0
 Observation.DataProducts.Output_Correlated_[123].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[123].antennaSet=LBA_INNER
@@ -571,6 +598,7 @@ Observation.DataProducts.Output_Correlated_[123].subband=123
 Observation.DataProducts.Output_Correlated_[124].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[124].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[124].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[124].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[124].SAP=0
 Observation.DataProducts.Output_Correlated_[124].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[124].antennaSet=LBA_INNER
@@ -592,6 +620,7 @@ Observation.DataProducts.Output_Correlated_[124].subband=124
 Observation.DataProducts.Output_Correlated_[125].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[125].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[125].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[125].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[125].SAP=0
 Observation.DataProducts.Output_Correlated_[125].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[125].antennaSet=LBA_INNER
@@ -613,6 +642,7 @@ Observation.DataProducts.Output_Correlated_[125].subband=125
 Observation.DataProducts.Output_Correlated_[126].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[126].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[126].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[126].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[126].SAP=0
 Observation.DataProducts.Output_Correlated_[126].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[126].antennaSet=LBA_INNER
@@ -634,6 +664,7 @@ Observation.DataProducts.Output_Correlated_[126].subband=126
 Observation.DataProducts.Output_Correlated_[127].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[127].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[127].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[127].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[127].SAP=0
 Observation.DataProducts.Output_Correlated_[127].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[127].antennaSet=LBA_INNER
@@ -655,6 +686,7 @@ Observation.DataProducts.Output_Correlated_[127].subband=127
 Observation.DataProducts.Output_Correlated_[128].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[128].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[128].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[128].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[128].SAP=0
 Observation.DataProducts.Output_Correlated_[128].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[128].antennaSet=LBA_INNER
@@ -676,6 +708,7 @@ Observation.DataProducts.Output_Correlated_[128].subband=128
 Observation.DataProducts.Output_Correlated_[129].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[129].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[129].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[129].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[129].SAP=0
 Observation.DataProducts.Output_Correlated_[129].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[129].antennaSet=LBA_INNER
@@ -697,6 +730,7 @@ Observation.DataProducts.Output_Correlated_[129].subband=129
 Observation.DataProducts.Output_Correlated_[12].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[12].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[12].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[12].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[12].SAP=0
 Observation.DataProducts.Output_Correlated_[12].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[12].antennaSet=LBA_INNER
@@ -718,6 +752,7 @@ Observation.DataProducts.Output_Correlated_[12].subband=12
 Observation.DataProducts.Output_Correlated_[130].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[130].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[130].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[130].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[130].SAP=0
 Observation.DataProducts.Output_Correlated_[130].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[130].antennaSet=LBA_INNER
@@ -739,6 +774,7 @@ Observation.DataProducts.Output_Correlated_[130].subband=130
 Observation.DataProducts.Output_Correlated_[131].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[131].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[131].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[131].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[131].SAP=0
 Observation.DataProducts.Output_Correlated_[131].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[131].antennaSet=LBA_INNER
@@ -760,6 +796,7 @@ Observation.DataProducts.Output_Correlated_[131].subband=131
 Observation.DataProducts.Output_Correlated_[132].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[132].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[132].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[132].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[132].SAP=0
 Observation.DataProducts.Output_Correlated_[132].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[132].antennaSet=LBA_INNER
@@ -781,6 +818,7 @@ Observation.DataProducts.Output_Correlated_[132].subband=132
 Observation.DataProducts.Output_Correlated_[133].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[133].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[133].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[133].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[133].SAP=0
 Observation.DataProducts.Output_Correlated_[133].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[133].antennaSet=LBA_INNER
@@ -802,6 +840,7 @@ Observation.DataProducts.Output_Correlated_[133].subband=133
 Observation.DataProducts.Output_Correlated_[134].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[134].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[134].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[134].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[134].SAP=0
 Observation.DataProducts.Output_Correlated_[134].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[134].antennaSet=LBA_INNER
@@ -823,6 +862,7 @@ Observation.DataProducts.Output_Correlated_[134].subband=134
 Observation.DataProducts.Output_Correlated_[135].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[135].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[135].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[135].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[135].SAP=0
 Observation.DataProducts.Output_Correlated_[135].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[135].antennaSet=LBA_INNER
@@ -844,6 +884,7 @@ Observation.DataProducts.Output_Correlated_[135].subband=135
 Observation.DataProducts.Output_Correlated_[136].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[136].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[136].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[136].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[136].SAP=0
 Observation.DataProducts.Output_Correlated_[136].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[136].antennaSet=LBA_INNER
@@ -865,6 +906,7 @@ Observation.DataProducts.Output_Correlated_[136].subband=136
 Observation.DataProducts.Output_Correlated_[137].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[137].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[137].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[137].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[137].SAP=0
 Observation.DataProducts.Output_Correlated_[137].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[137].antennaSet=LBA_INNER
@@ -886,6 +928,7 @@ Observation.DataProducts.Output_Correlated_[137].subband=137
 Observation.DataProducts.Output_Correlated_[138].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[138].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[138].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[138].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[138].SAP=0
 Observation.DataProducts.Output_Correlated_[138].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[138].antennaSet=LBA_INNER
@@ -907,6 +950,7 @@ Observation.DataProducts.Output_Correlated_[138].subband=138
 Observation.DataProducts.Output_Correlated_[139].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[139].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[139].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[139].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[139].SAP=0
 Observation.DataProducts.Output_Correlated_[139].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[139].antennaSet=LBA_INNER
@@ -928,6 +972,7 @@ Observation.DataProducts.Output_Correlated_[139].subband=139
 Observation.DataProducts.Output_Correlated_[13].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[13].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[13].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[13].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[13].SAP=0
 Observation.DataProducts.Output_Correlated_[13].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[13].antennaSet=LBA_INNER
@@ -949,6 +994,7 @@ Observation.DataProducts.Output_Correlated_[13].subband=13
 Observation.DataProducts.Output_Correlated_[140].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[140].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[140].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[140].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[140].SAP=0
 Observation.DataProducts.Output_Correlated_[140].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[140].antennaSet=LBA_INNER
@@ -970,6 +1016,7 @@ Observation.DataProducts.Output_Correlated_[140].subband=140
 Observation.DataProducts.Output_Correlated_[141].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[141].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[141].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[141].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[141].SAP=0
 Observation.DataProducts.Output_Correlated_[141].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[141].antennaSet=LBA_INNER
@@ -991,6 +1038,7 @@ Observation.DataProducts.Output_Correlated_[141].subband=141
 Observation.DataProducts.Output_Correlated_[142].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[142].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[142].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[142].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[142].SAP=0
 Observation.DataProducts.Output_Correlated_[142].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[142].antennaSet=LBA_INNER
@@ -1012,6 +1060,7 @@ Observation.DataProducts.Output_Correlated_[142].subband=142
 Observation.DataProducts.Output_Correlated_[143].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[143].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[143].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[143].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[143].SAP=0
 Observation.DataProducts.Output_Correlated_[143].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[143].antennaSet=LBA_INNER
@@ -1033,6 +1082,7 @@ Observation.DataProducts.Output_Correlated_[143].subband=143
 Observation.DataProducts.Output_Correlated_[144].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[144].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[144].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[144].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[144].SAP=0
 Observation.DataProducts.Output_Correlated_[144].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[144].antennaSet=LBA_INNER
@@ -1054,6 +1104,7 @@ Observation.DataProducts.Output_Correlated_[144].subband=144
 Observation.DataProducts.Output_Correlated_[145].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[145].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[145].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[145].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[145].SAP=0
 Observation.DataProducts.Output_Correlated_[145].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[145].antennaSet=LBA_INNER
@@ -1075,6 +1126,7 @@ Observation.DataProducts.Output_Correlated_[145].subband=145
 Observation.DataProducts.Output_Correlated_[146].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[146].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[146].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[146].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[146].SAP=0
 Observation.DataProducts.Output_Correlated_[146].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[146].antennaSet=LBA_INNER
@@ -1096,6 +1148,7 @@ Observation.DataProducts.Output_Correlated_[146].subband=146
 Observation.DataProducts.Output_Correlated_[147].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[147].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[147].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[147].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[147].SAP=0
 Observation.DataProducts.Output_Correlated_[147].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[147].antennaSet=LBA_INNER
@@ -1117,6 +1170,7 @@ Observation.DataProducts.Output_Correlated_[147].subband=147
 Observation.DataProducts.Output_Correlated_[148].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[148].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[148].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[148].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[148].SAP=0
 Observation.DataProducts.Output_Correlated_[148].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[148].antennaSet=LBA_INNER
@@ -1138,6 +1192,7 @@ Observation.DataProducts.Output_Correlated_[148].subband=148
 Observation.DataProducts.Output_Correlated_[149].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[149].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[149].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[149].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[149].SAP=0
 Observation.DataProducts.Output_Correlated_[149].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[149].antennaSet=LBA_INNER
@@ -1159,6 +1214,7 @@ Observation.DataProducts.Output_Correlated_[149].subband=149
 Observation.DataProducts.Output_Correlated_[14].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[14].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[14].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[14].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[14].SAP=0
 Observation.DataProducts.Output_Correlated_[14].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[14].antennaSet=LBA_INNER
@@ -1180,6 +1236,7 @@ Observation.DataProducts.Output_Correlated_[14].subband=14
 Observation.DataProducts.Output_Correlated_[150].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[150].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[150].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[150].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[150].SAP=0
 Observation.DataProducts.Output_Correlated_[150].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[150].antennaSet=LBA_INNER
@@ -1201,6 +1258,7 @@ Observation.DataProducts.Output_Correlated_[150].subband=150
 Observation.DataProducts.Output_Correlated_[151].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[151].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[151].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[151].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[151].SAP=0
 Observation.DataProducts.Output_Correlated_[151].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[151].antennaSet=LBA_INNER
@@ -1222,6 +1280,7 @@ Observation.DataProducts.Output_Correlated_[151].subband=151
 Observation.DataProducts.Output_Correlated_[152].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[152].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[152].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[152].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[152].SAP=0
 Observation.DataProducts.Output_Correlated_[152].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[152].antennaSet=LBA_INNER
@@ -1243,6 +1302,7 @@ Observation.DataProducts.Output_Correlated_[152].subband=152
 Observation.DataProducts.Output_Correlated_[153].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[153].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[153].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[153].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[153].SAP=0
 Observation.DataProducts.Output_Correlated_[153].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[153].antennaSet=LBA_INNER
@@ -1264,6 +1324,7 @@ Observation.DataProducts.Output_Correlated_[153].subband=153
 Observation.DataProducts.Output_Correlated_[154].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[154].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[154].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[154].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[154].SAP=0
 Observation.DataProducts.Output_Correlated_[154].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[154].antennaSet=LBA_INNER
@@ -1285,6 +1346,7 @@ Observation.DataProducts.Output_Correlated_[154].subband=154
 Observation.DataProducts.Output_Correlated_[155].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[155].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[155].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[155].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[155].SAP=0
 Observation.DataProducts.Output_Correlated_[155].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[155].antennaSet=LBA_INNER
@@ -1306,6 +1368,7 @@ Observation.DataProducts.Output_Correlated_[155].subband=155
 Observation.DataProducts.Output_Correlated_[156].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[156].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[156].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[156].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[156].SAP=0
 Observation.DataProducts.Output_Correlated_[156].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[156].antennaSet=LBA_INNER
@@ -1327,6 +1390,7 @@ Observation.DataProducts.Output_Correlated_[156].subband=156
 Observation.DataProducts.Output_Correlated_[157].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[157].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[157].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[157].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[157].SAP=0
 Observation.DataProducts.Output_Correlated_[157].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[157].antennaSet=LBA_INNER
@@ -1348,6 +1412,7 @@ Observation.DataProducts.Output_Correlated_[157].subband=157
 Observation.DataProducts.Output_Correlated_[158].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[158].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[158].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[158].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[158].SAP=0
 Observation.DataProducts.Output_Correlated_[158].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[158].antennaSet=LBA_INNER
@@ -1369,6 +1434,7 @@ Observation.DataProducts.Output_Correlated_[158].subband=158
 Observation.DataProducts.Output_Correlated_[159].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[159].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[159].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[159].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[159].SAP=0
 Observation.DataProducts.Output_Correlated_[159].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[159].antennaSet=LBA_INNER
@@ -1390,6 +1456,7 @@ Observation.DataProducts.Output_Correlated_[159].subband=159
 Observation.DataProducts.Output_Correlated_[15].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[15].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[15].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[15].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[15].SAP=0
 Observation.DataProducts.Output_Correlated_[15].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[15].antennaSet=LBA_INNER
@@ -1411,6 +1478,7 @@ Observation.DataProducts.Output_Correlated_[15].subband=15
 Observation.DataProducts.Output_Correlated_[160].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[160].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[160].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[160].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[160].SAP=0
 Observation.DataProducts.Output_Correlated_[160].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[160].antennaSet=LBA_INNER
@@ -1432,6 +1500,7 @@ Observation.DataProducts.Output_Correlated_[160].subband=160
 Observation.DataProducts.Output_Correlated_[161].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[161].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[161].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[161].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[161].SAP=0
 Observation.DataProducts.Output_Correlated_[161].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[161].antennaSet=LBA_INNER
@@ -1453,6 +1522,7 @@ Observation.DataProducts.Output_Correlated_[161].subband=161
 Observation.DataProducts.Output_Correlated_[162].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[162].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[162].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[162].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[162].SAP=0
 Observation.DataProducts.Output_Correlated_[162].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[162].antennaSet=LBA_INNER
@@ -1474,6 +1544,7 @@ Observation.DataProducts.Output_Correlated_[162].subband=162
 Observation.DataProducts.Output_Correlated_[163].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[163].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[163].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[163].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[163].SAP=0
 Observation.DataProducts.Output_Correlated_[163].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[163].antennaSet=LBA_INNER
@@ -1495,6 +1566,7 @@ Observation.DataProducts.Output_Correlated_[163].subband=163
 Observation.DataProducts.Output_Correlated_[164].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[164].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[164].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[164].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[164].SAP=0
 Observation.DataProducts.Output_Correlated_[164].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[164].antennaSet=LBA_INNER
@@ -1516,6 +1588,7 @@ Observation.DataProducts.Output_Correlated_[164].subband=164
 Observation.DataProducts.Output_Correlated_[165].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[165].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[165].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[165].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[165].SAP=0
 Observation.DataProducts.Output_Correlated_[165].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[165].antennaSet=LBA_INNER
@@ -1537,6 +1610,7 @@ Observation.DataProducts.Output_Correlated_[165].subband=165
 Observation.DataProducts.Output_Correlated_[166].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[166].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[166].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[166].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[166].SAP=0
 Observation.DataProducts.Output_Correlated_[166].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[166].antennaSet=LBA_INNER
@@ -1558,6 +1632,7 @@ Observation.DataProducts.Output_Correlated_[166].subband=166
 Observation.DataProducts.Output_Correlated_[167].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[167].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[167].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[167].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[167].SAP=0
 Observation.DataProducts.Output_Correlated_[167].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[167].antennaSet=LBA_INNER
@@ -1579,6 +1654,7 @@ Observation.DataProducts.Output_Correlated_[167].subband=167
 Observation.DataProducts.Output_Correlated_[168].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[168].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[168].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[168].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[168].SAP=0
 Observation.DataProducts.Output_Correlated_[168].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[168].antennaSet=LBA_INNER
@@ -1600,6 +1676,7 @@ Observation.DataProducts.Output_Correlated_[168].subband=168
 Observation.DataProducts.Output_Correlated_[169].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[169].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[169].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[169].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[169].SAP=0
 Observation.DataProducts.Output_Correlated_[169].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[169].antennaSet=LBA_INNER
@@ -1621,6 +1698,7 @@ Observation.DataProducts.Output_Correlated_[169].subband=169
 Observation.DataProducts.Output_Correlated_[16].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[16].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[16].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[16].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[16].SAP=0
 Observation.DataProducts.Output_Correlated_[16].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[16].antennaSet=LBA_INNER
@@ -1642,6 +1720,7 @@ Observation.DataProducts.Output_Correlated_[16].subband=16
 Observation.DataProducts.Output_Correlated_[170].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[170].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[170].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[170].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[170].SAP=0
 Observation.DataProducts.Output_Correlated_[170].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[170].antennaSet=LBA_INNER
@@ -1663,6 +1742,7 @@ Observation.DataProducts.Output_Correlated_[170].subband=170
 Observation.DataProducts.Output_Correlated_[171].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[171].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[171].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[171].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[171].SAP=0
 Observation.DataProducts.Output_Correlated_[171].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[171].antennaSet=LBA_INNER
@@ -1684,6 +1764,7 @@ Observation.DataProducts.Output_Correlated_[171].subband=171
 Observation.DataProducts.Output_Correlated_[172].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[172].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[172].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[172].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[172].SAP=0
 Observation.DataProducts.Output_Correlated_[172].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[172].antennaSet=LBA_INNER
@@ -1705,6 +1786,7 @@ Observation.DataProducts.Output_Correlated_[172].subband=172
 Observation.DataProducts.Output_Correlated_[173].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[173].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[173].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[173].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[173].SAP=0
 Observation.DataProducts.Output_Correlated_[173].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[173].antennaSet=LBA_INNER
@@ -1726,6 +1808,7 @@ Observation.DataProducts.Output_Correlated_[173].subband=173
 Observation.DataProducts.Output_Correlated_[174].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[174].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[174].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[174].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[174].SAP=0
 Observation.DataProducts.Output_Correlated_[174].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[174].antennaSet=LBA_INNER
@@ -1747,6 +1830,7 @@ Observation.DataProducts.Output_Correlated_[174].subband=174
 Observation.DataProducts.Output_Correlated_[175].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[175].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[175].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[175].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[175].SAP=0
 Observation.DataProducts.Output_Correlated_[175].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[175].antennaSet=LBA_INNER
@@ -1768,6 +1852,7 @@ Observation.DataProducts.Output_Correlated_[175].subband=175
 Observation.DataProducts.Output_Correlated_[176].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[176].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[176].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[176].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[176].SAP=0
 Observation.DataProducts.Output_Correlated_[176].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[176].antennaSet=LBA_INNER
@@ -1789,6 +1874,7 @@ Observation.DataProducts.Output_Correlated_[176].subband=176
 Observation.DataProducts.Output_Correlated_[177].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[177].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[177].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[177].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[177].SAP=0
 Observation.DataProducts.Output_Correlated_[177].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[177].antennaSet=LBA_INNER
@@ -1810,6 +1896,7 @@ Observation.DataProducts.Output_Correlated_[177].subband=177
 Observation.DataProducts.Output_Correlated_[178].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[178].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[178].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[178].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[178].SAP=0
 Observation.DataProducts.Output_Correlated_[178].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[178].antennaSet=LBA_INNER
@@ -1831,6 +1918,7 @@ Observation.DataProducts.Output_Correlated_[178].subband=178
 Observation.DataProducts.Output_Correlated_[179].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[179].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[179].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[179].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[179].SAP=0
 Observation.DataProducts.Output_Correlated_[179].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[179].antennaSet=LBA_INNER
@@ -1852,6 +1940,7 @@ Observation.DataProducts.Output_Correlated_[179].subband=179
 Observation.DataProducts.Output_Correlated_[17].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[17].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[17].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[17].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[17].SAP=0
 Observation.DataProducts.Output_Correlated_[17].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[17].antennaSet=LBA_INNER
@@ -1873,6 +1962,7 @@ Observation.DataProducts.Output_Correlated_[17].subband=17
 Observation.DataProducts.Output_Correlated_[180].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[180].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[180].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[180].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[180].SAP=0
 Observation.DataProducts.Output_Correlated_[180].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[180].antennaSet=LBA_INNER
@@ -1894,6 +1984,7 @@ Observation.DataProducts.Output_Correlated_[180].subband=180
 Observation.DataProducts.Output_Correlated_[181].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[181].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[181].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[181].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[181].SAP=0
 Observation.DataProducts.Output_Correlated_[181].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[181].antennaSet=LBA_INNER
@@ -1915,6 +2006,7 @@ Observation.DataProducts.Output_Correlated_[181].subband=181
 Observation.DataProducts.Output_Correlated_[182].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[182].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[182].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[182].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[182].SAP=0
 Observation.DataProducts.Output_Correlated_[182].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[182].antennaSet=LBA_INNER
@@ -1936,6 +2028,7 @@ Observation.DataProducts.Output_Correlated_[182].subband=182
 Observation.DataProducts.Output_Correlated_[183].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[183].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[183].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[183].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[183].SAP=0
 Observation.DataProducts.Output_Correlated_[183].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[183].antennaSet=LBA_INNER
@@ -1957,6 +2050,7 @@ Observation.DataProducts.Output_Correlated_[183].subband=183
 Observation.DataProducts.Output_Correlated_[184].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[184].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[184].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[184].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[184].SAP=0
 Observation.DataProducts.Output_Correlated_[184].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[184].antennaSet=LBA_INNER
@@ -1978,6 +2072,7 @@ Observation.DataProducts.Output_Correlated_[184].subband=184
 Observation.DataProducts.Output_Correlated_[185].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[185].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[185].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[185].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[185].SAP=0
 Observation.DataProducts.Output_Correlated_[185].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[185].antennaSet=LBA_INNER
@@ -1999,6 +2094,7 @@ Observation.DataProducts.Output_Correlated_[185].subband=185
 Observation.DataProducts.Output_Correlated_[186].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[186].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[186].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[186].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[186].SAP=0
 Observation.DataProducts.Output_Correlated_[186].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[186].antennaSet=LBA_INNER
@@ -2020,6 +2116,7 @@ Observation.DataProducts.Output_Correlated_[186].subband=186
 Observation.DataProducts.Output_Correlated_[187].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[187].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[187].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[187].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[187].SAP=0
 Observation.DataProducts.Output_Correlated_[187].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[187].antennaSet=LBA_INNER
@@ -2041,6 +2138,7 @@ Observation.DataProducts.Output_Correlated_[187].subband=187
 Observation.DataProducts.Output_Correlated_[188].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[188].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[188].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[188].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[188].SAP=0
 Observation.DataProducts.Output_Correlated_[188].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[188].antennaSet=LBA_INNER
@@ -2062,6 +2160,7 @@ Observation.DataProducts.Output_Correlated_[188].subband=188
 Observation.DataProducts.Output_Correlated_[189].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[189].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[189].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[189].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[189].SAP=0
 Observation.DataProducts.Output_Correlated_[189].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[189].antennaSet=LBA_INNER
@@ -2083,6 +2182,7 @@ Observation.DataProducts.Output_Correlated_[189].subband=189
 Observation.DataProducts.Output_Correlated_[18].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[18].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[18].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[18].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[18].SAP=0
 Observation.DataProducts.Output_Correlated_[18].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[18].antennaSet=LBA_INNER
@@ -2104,6 +2204,7 @@ Observation.DataProducts.Output_Correlated_[18].subband=18
 Observation.DataProducts.Output_Correlated_[190].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[190].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[190].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[190].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[190].SAP=0
 Observation.DataProducts.Output_Correlated_[190].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[190].antennaSet=LBA_INNER
@@ -2125,6 +2226,7 @@ Observation.DataProducts.Output_Correlated_[190].subband=190
 Observation.DataProducts.Output_Correlated_[191].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[191].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[191].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[191].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[191].SAP=0
 Observation.DataProducts.Output_Correlated_[191].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[191].antennaSet=LBA_INNER
@@ -2146,6 +2248,7 @@ Observation.DataProducts.Output_Correlated_[191].subband=191
 Observation.DataProducts.Output_Correlated_[192].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[192].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[192].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[192].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[192].SAP=0
 Observation.DataProducts.Output_Correlated_[192].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[192].antennaSet=LBA_INNER
@@ -2167,6 +2270,7 @@ Observation.DataProducts.Output_Correlated_[192].subband=192
 Observation.DataProducts.Output_Correlated_[193].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[193].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[193].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[193].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[193].SAP=0
 Observation.DataProducts.Output_Correlated_[193].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[193].antennaSet=LBA_INNER
@@ -2188,6 +2292,7 @@ Observation.DataProducts.Output_Correlated_[193].subband=193
 Observation.DataProducts.Output_Correlated_[194].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[194].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[194].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[194].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[194].SAP=0
 Observation.DataProducts.Output_Correlated_[194].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[194].antennaSet=LBA_INNER
@@ -2209,6 +2314,7 @@ Observation.DataProducts.Output_Correlated_[194].subband=194
 Observation.DataProducts.Output_Correlated_[195].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[195].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[195].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[195].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[195].SAP=0
 Observation.DataProducts.Output_Correlated_[195].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[195].antennaSet=LBA_INNER
@@ -2230,6 +2336,7 @@ Observation.DataProducts.Output_Correlated_[195].subband=195
 Observation.DataProducts.Output_Correlated_[196].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[196].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[196].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[196].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[196].SAP=0
 Observation.DataProducts.Output_Correlated_[196].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[196].antennaSet=LBA_INNER
@@ -2251,6 +2358,7 @@ Observation.DataProducts.Output_Correlated_[196].subband=196
 Observation.DataProducts.Output_Correlated_[197].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[197].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[197].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[197].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[197].SAP=0
 Observation.DataProducts.Output_Correlated_[197].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[197].antennaSet=LBA_INNER
@@ -2272,6 +2380,7 @@ Observation.DataProducts.Output_Correlated_[197].subband=197
 Observation.DataProducts.Output_Correlated_[198].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[198].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[198].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[198].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[198].SAP=0
 Observation.DataProducts.Output_Correlated_[198].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[198].antennaSet=LBA_INNER
@@ -2293,6 +2402,7 @@ Observation.DataProducts.Output_Correlated_[198].subband=198
 Observation.DataProducts.Output_Correlated_[199].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[199].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[199].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[199].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[199].SAP=0
 Observation.DataProducts.Output_Correlated_[199].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[199].antennaSet=LBA_INNER
@@ -2314,6 +2424,7 @@ Observation.DataProducts.Output_Correlated_[199].subband=199
 Observation.DataProducts.Output_Correlated_[19].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[19].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[19].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[19].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[19].SAP=0
 Observation.DataProducts.Output_Correlated_[19].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[19].antennaSet=LBA_INNER
@@ -2335,6 +2446,7 @@ Observation.DataProducts.Output_Correlated_[19].subband=19
 Observation.DataProducts.Output_Correlated_[1].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[1].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[1].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[1].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[1].SAP=0
 Observation.DataProducts.Output_Correlated_[1].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[1].antennaSet=LBA_INNER
@@ -2356,6 +2468,7 @@ Observation.DataProducts.Output_Correlated_[1].subband=1
 Observation.DataProducts.Output_Correlated_[200].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[200].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[200].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[200].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[200].SAP=0
 Observation.DataProducts.Output_Correlated_[200].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[200].antennaSet=LBA_INNER
@@ -2377,6 +2490,7 @@ Observation.DataProducts.Output_Correlated_[200].subband=200
 Observation.DataProducts.Output_Correlated_[201].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[201].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[201].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[201].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[201].SAP=0
 Observation.DataProducts.Output_Correlated_[201].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[201].antennaSet=LBA_INNER
@@ -2398,6 +2512,7 @@ Observation.DataProducts.Output_Correlated_[201].subband=201
 Observation.DataProducts.Output_Correlated_[202].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[202].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[202].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[202].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[202].SAP=0
 Observation.DataProducts.Output_Correlated_[202].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[202].antennaSet=LBA_INNER
@@ -2419,6 +2534,7 @@ Observation.DataProducts.Output_Correlated_[202].subband=202
 Observation.DataProducts.Output_Correlated_[203].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[203].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[203].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[203].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[203].SAP=0
 Observation.DataProducts.Output_Correlated_[203].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[203].antennaSet=LBA_INNER
@@ -2440,6 +2556,7 @@ Observation.DataProducts.Output_Correlated_[203].subband=203
 Observation.DataProducts.Output_Correlated_[204].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[204].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[204].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[204].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[204].SAP=0
 Observation.DataProducts.Output_Correlated_[204].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[204].antennaSet=LBA_INNER
@@ -2461,6 +2578,7 @@ Observation.DataProducts.Output_Correlated_[204].subband=204
 Observation.DataProducts.Output_Correlated_[205].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[205].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[205].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[205].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[205].SAP=0
 Observation.DataProducts.Output_Correlated_[205].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[205].antennaSet=LBA_INNER
@@ -2482,6 +2600,7 @@ Observation.DataProducts.Output_Correlated_[205].subband=205
 Observation.DataProducts.Output_Correlated_[206].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[206].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[206].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[206].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[206].SAP=0
 Observation.DataProducts.Output_Correlated_[206].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[206].antennaSet=LBA_INNER
@@ -2503,6 +2622,7 @@ Observation.DataProducts.Output_Correlated_[206].subband=206
 Observation.DataProducts.Output_Correlated_[207].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[207].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[207].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[207].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[207].SAP=0
 Observation.DataProducts.Output_Correlated_[207].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[207].antennaSet=LBA_INNER
@@ -2524,6 +2644,7 @@ Observation.DataProducts.Output_Correlated_[207].subband=207
 Observation.DataProducts.Output_Correlated_[208].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[208].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[208].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[208].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[208].SAP=0
 Observation.DataProducts.Output_Correlated_[208].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[208].antennaSet=LBA_INNER
@@ -2545,6 +2666,7 @@ Observation.DataProducts.Output_Correlated_[208].subband=208
 Observation.DataProducts.Output_Correlated_[209].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[209].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[209].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[209].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[209].SAP=0
 Observation.DataProducts.Output_Correlated_[209].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[209].antennaSet=LBA_INNER
@@ -2566,6 +2688,7 @@ Observation.DataProducts.Output_Correlated_[209].subband=209
 Observation.DataProducts.Output_Correlated_[20].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[20].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[20].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[20].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[20].SAP=0
 Observation.DataProducts.Output_Correlated_[20].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[20].antennaSet=LBA_INNER
@@ -2587,6 +2710,7 @@ Observation.DataProducts.Output_Correlated_[20].subband=20
 Observation.DataProducts.Output_Correlated_[210].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[210].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[210].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[210].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[210].SAP=0
 Observation.DataProducts.Output_Correlated_[210].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[210].antennaSet=LBA_INNER
@@ -2608,6 +2732,7 @@ Observation.DataProducts.Output_Correlated_[210].subband=210
 Observation.DataProducts.Output_Correlated_[211].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[211].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[211].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[211].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[211].SAP=0
 Observation.DataProducts.Output_Correlated_[211].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[211].antennaSet=LBA_INNER
@@ -2629,6 +2754,7 @@ Observation.DataProducts.Output_Correlated_[211].subband=211
 Observation.DataProducts.Output_Correlated_[212].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[212].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[212].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[212].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[212].SAP=0
 Observation.DataProducts.Output_Correlated_[212].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[212].antennaSet=LBA_INNER
@@ -2650,6 +2776,7 @@ Observation.DataProducts.Output_Correlated_[212].subband=212
 Observation.DataProducts.Output_Correlated_[213].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[213].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[213].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[213].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[213].SAP=0
 Observation.DataProducts.Output_Correlated_[213].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[213].antennaSet=LBA_INNER
@@ -2671,6 +2798,7 @@ Observation.DataProducts.Output_Correlated_[213].subband=213
 Observation.DataProducts.Output_Correlated_[214].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[214].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[214].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[214].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[214].SAP=0
 Observation.DataProducts.Output_Correlated_[214].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[214].antennaSet=LBA_INNER
@@ -2692,6 +2820,7 @@ Observation.DataProducts.Output_Correlated_[214].subband=214
 Observation.DataProducts.Output_Correlated_[215].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[215].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[215].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[215].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[215].SAP=0
 Observation.DataProducts.Output_Correlated_[215].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[215].antennaSet=LBA_INNER
@@ -2713,6 +2842,7 @@ Observation.DataProducts.Output_Correlated_[215].subband=215
 Observation.DataProducts.Output_Correlated_[216].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[216].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[216].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[216].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[216].SAP=0
 Observation.DataProducts.Output_Correlated_[216].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[216].antennaSet=LBA_INNER
@@ -2734,6 +2864,7 @@ Observation.DataProducts.Output_Correlated_[216].subband=216
 Observation.DataProducts.Output_Correlated_[217].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[217].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[217].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[217].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[217].SAP=0
 Observation.DataProducts.Output_Correlated_[217].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[217].antennaSet=LBA_INNER
@@ -2755,6 +2886,7 @@ Observation.DataProducts.Output_Correlated_[217].subband=217
 Observation.DataProducts.Output_Correlated_[218].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[218].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[218].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[218].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[218].SAP=0
 Observation.DataProducts.Output_Correlated_[218].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[218].antennaSet=LBA_INNER
@@ -2776,6 +2908,7 @@ Observation.DataProducts.Output_Correlated_[218].subband=218
 Observation.DataProducts.Output_Correlated_[219].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[219].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[219].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[219].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[219].SAP=0
 Observation.DataProducts.Output_Correlated_[219].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[219].antennaSet=LBA_INNER
@@ -2797,6 +2930,7 @@ Observation.DataProducts.Output_Correlated_[219].subband=219
 Observation.DataProducts.Output_Correlated_[21].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[21].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[21].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[21].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[21].SAP=0
 Observation.DataProducts.Output_Correlated_[21].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[21].antennaSet=LBA_INNER
@@ -2818,6 +2952,7 @@ Observation.DataProducts.Output_Correlated_[21].subband=21
 Observation.DataProducts.Output_Correlated_[220].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[220].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[220].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[220].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[220].SAP=0
 Observation.DataProducts.Output_Correlated_[220].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[220].antennaSet=LBA_INNER
@@ -2839,6 +2974,7 @@ Observation.DataProducts.Output_Correlated_[220].subband=220
 Observation.DataProducts.Output_Correlated_[221].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[221].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[221].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[221].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[221].SAP=0
 Observation.DataProducts.Output_Correlated_[221].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[221].antennaSet=LBA_INNER
@@ -2860,6 +2996,7 @@ Observation.DataProducts.Output_Correlated_[221].subband=221
 Observation.DataProducts.Output_Correlated_[222].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[222].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[222].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[222].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[222].SAP=0
 Observation.DataProducts.Output_Correlated_[222].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[222].antennaSet=LBA_INNER
@@ -2881,6 +3018,7 @@ Observation.DataProducts.Output_Correlated_[222].subband=222
 Observation.DataProducts.Output_Correlated_[223].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[223].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[223].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[223].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[223].SAP=0
 Observation.DataProducts.Output_Correlated_[223].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[223].antennaSet=LBA_INNER
@@ -2902,6 +3040,7 @@ Observation.DataProducts.Output_Correlated_[223].subband=223
 Observation.DataProducts.Output_Correlated_[224].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[224].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[224].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[224].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[224].SAP=0
 Observation.DataProducts.Output_Correlated_[224].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[224].antennaSet=LBA_INNER
@@ -2923,6 +3062,7 @@ Observation.DataProducts.Output_Correlated_[224].subband=224
 Observation.DataProducts.Output_Correlated_[225].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[225].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[225].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[225].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[225].SAP=0
 Observation.DataProducts.Output_Correlated_[225].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[225].antennaSet=LBA_INNER
@@ -2944,6 +3084,7 @@ Observation.DataProducts.Output_Correlated_[225].subband=225
 Observation.DataProducts.Output_Correlated_[226].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[226].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[226].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[226].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[226].SAP=0
 Observation.DataProducts.Output_Correlated_[226].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[226].antennaSet=LBA_INNER
@@ -2965,6 +3106,7 @@ Observation.DataProducts.Output_Correlated_[226].subband=226
 Observation.DataProducts.Output_Correlated_[227].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[227].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[227].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[227].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[227].SAP=0
 Observation.DataProducts.Output_Correlated_[227].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[227].antennaSet=LBA_INNER
@@ -2986,6 +3128,7 @@ Observation.DataProducts.Output_Correlated_[227].subband=227
 Observation.DataProducts.Output_Correlated_[228].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[228].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[228].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[228].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[228].SAP=0
 Observation.DataProducts.Output_Correlated_[228].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[228].antennaSet=LBA_INNER
@@ -3007,6 +3150,7 @@ Observation.DataProducts.Output_Correlated_[228].subband=228
 Observation.DataProducts.Output_Correlated_[229].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[229].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[229].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[229].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[229].SAP=0
 Observation.DataProducts.Output_Correlated_[229].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[229].antennaSet=LBA_INNER
@@ -3028,6 +3172,7 @@ Observation.DataProducts.Output_Correlated_[229].subband=229
 Observation.DataProducts.Output_Correlated_[22].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[22].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[22].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[22].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[22].SAP=0
 Observation.DataProducts.Output_Correlated_[22].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[22].antennaSet=LBA_INNER
@@ -3049,6 +3194,7 @@ Observation.DataProducts.Output_Correlated_[22].subband=22
 Observation.DataProducts.Output_Correlated_[230].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[230].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[230].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[230].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[230].SAP=0
 Observation.DataProducts.Output_Correlated_[230].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[230].antennaSet=LBA_INNER
@@ -3070,6 +3216,7 @@ Observation.DataProducts.Output_Correlated_[230].subband=230
 Observation.DataProducts.Output_Correlated_[231].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[231].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[231].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[231].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[231].SAP=0
 Observation.DataProducts.Output_Correlated_[231].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[231].antennaSet=LBA_INNER
@@ -3091,6 +3238,7 @@ Observation.DataProducts.Output_Correlated_[231].subband=231
 Observation.DataProducts.Output_Correlated_[232].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[232].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[232].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[232].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[232].SAP=0
 Observation.DataProducts.Output_Correlated_[232].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[232].antennaSet=LBA_INNER
@@ -3112,6 +3260,7 @@ Observation.DataProducts.Output_Correlated_[232].subband=232
 Observation.DataProducts.Output_Correlated_[233].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[233].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[233].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[233].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[233].SAP=0
 Observation.DataProducts.Output_Correlated_[233].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[233].antennaSet=LBA_INNER
@@ -3133,6 +3282,7 @@ Observation.DataProducts.Output_Correlated_[233].subband=233
 Observation.DataProducts.Output_Correlated_[234].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[234].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[234].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[234].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[234].SAP=0
 Observation.DataProducts.Output_Correlated_[234].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[234].antennaSet=LBA_INNER
@@ -3154,6 +3304,7 @@ Observation.DataProducts.Output_Correlated_[234].subband=234
 Observation.DataProducts.Output_Correlated_[235].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[235].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[235].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[235].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[235].SAP=0
 Observation.DataProducts.Output_Correlated_[235].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[235].antennaSet=LBA_INNER
@@ -3175,6 +3326,7 @@ Observation.DataProducts.Output_Correlated_[235].subband=235
 Observation.DataProducts.Output_Correlated_[236].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[236].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[236].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[236].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[236].SAP=0
 Observation.DataProducts.Output_Correlated_[236].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[236].antennaSet=LBA_INNER
@@ -3196,6 +3348,7 @@ Observation.DataProducts.Output_Correlated_[236].subband=236
 Observation.DataProducts.Output_Correlated_[237].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[237].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[237].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[237].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[237].SAP=0
 Observation.DataProducts.Output_Correlated_[237].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[237].antennaSet=LBA_INNER
@@ -3217,6 +3370,7 @@ Observation.DataProducts.Output_Correlated_[237].subband=237
 Observation.DataProducts.Output_Correlated_[238].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[238].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[238].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[238].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[238].SAP=0
 Observation.DataProducts.Output_Correlated_[238].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[238].antennaSet=LBA_INNER
@@ -3238,6 +3392,7 @@ Observation.DataProducts.Output_Correlated_[238].subband=238
 Observation.DataProducts.Output_Correlated_[239].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[239].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[239].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[239].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[239].SAP=0
 Observation.DataProducts.Output_Correlated_[239].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[239].antennaSet=LBA_INNER
@@ -3259,6 +3414,7 @@ Observation.DataProducts.Output_Correlated_[239].subband=239
 Observation.DataProducts.Output_Correlated_[23].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[23].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[23].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[23].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[23].SAP=0
 Observation.DataProducts.Output_Correlated_[23].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[23].antennaSet=LBA_INNER
@@ -3280,6 +3436,7 @@ Observation.DataProducts.Output_Correlated_[23].subband=23
 Observation.DataProducts.Output_Correlated_[240].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[240].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[240].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[240].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[240].SAP=0
 Observation.DataProducts.Output_Correlated_[240].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[240].antennaSet=LBA_INNER
@@ -3301,6 +3458,7 @@ Observation.DataProducts.Output_Correlated_[240].subband=240
 Observation.DataProducts.Output_Correlated_[241].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[241].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[241].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[241].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[241].SAP=0
 Observation.DataProducts.Output_Correlated_[241].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[241].antennaSet=LBA_INNER
@@ -3322,6 +3480,7 @@ Observation.DataProducts.Output_Correlated_[241].subband=241
 Observation.DataProducts.Output_Correlated_[242].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[242].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[242].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[242].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[242].SAP=0
 Observation.DataProducts.Output_Correlated_[242].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[242].antennaSet=LBA_INNER
@@ -3343,6 +3502,7 @@ Observation.DataProducts.Output_Correlated_[242].subband=242
 Observation.DataProducts.Output_Correlated_[243].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[243].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[243].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[243].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[243].SAP=0
 Observation.DataProducts.Output_Correlated_[243].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[243].antennaSet=LBA_INNER
@@ -3364,6 +3524,7 @@ Observation.DataProducts.Output_Correlated_[243].subband=243
 Observation.DataProducts.Output_Correlated_[24].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[24].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[24].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[24].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[24].SAP=0
 Observation.DataProducts.Output_Correlated_[24].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[24].antennaSet=LBA_INNER
@@ -3385,6 +3546,7 @@ Observation.DataProducts.Output_Correlated_[24].subband=24
 Observation.DataProducts.Output_Correlated_[25].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[25].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[25].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[25].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[25].SAP=0
 Observation.DataProducts.Output_Correlated_[25].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[25].antennaSet=LBA_INNER
@@ -3406,6 +3568,7 @@ Observation.DataProducts.Output_Correlated_[25].subband=25
 Observation.DataProducts.Output_Correlated_[26].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[26].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[26].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[26].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[26].SAP=0
 Observation.DataProducts.Output_Correlated_[26].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[26].antennaSet=LBA_INNER
@@ -3427,6 +3590,7 @@ Observation.DataProducts.Output_Correlated_[26].subband=26
 Observation.DataProducts.Output_Correlated_[27].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[27].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[27].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[27].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[27].SAP=0
 Observation.DataProducts.Output_Correlated_[27].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[27].antennaSet=LBA_INNER
@@ -3448,6 +3612,7 @@ Observation.DataProducts.Output_Correlated_[27].subband=27
 Observation.DataProducts.Output_Correlated_[28].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[28].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[28].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[28].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[28].SAP=0
 Observation.DataProducts.Output_Correlated_[28].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[28].antennaSet=LBA_INNER
@@ -3469,6 +3634,7 @@ Observation.DataProducts.Output_Correlated_[28].subband=28
 Observation.DataProducts.Output_Correlated_[29].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[29].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[29].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[29].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[29].SAP=0
 Observation.DataProducts.Output_Correlated_[29].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[29].antennaSet=LBA_INNER
@@ -3490,6 +3656,7 @@ Observation.DataProducts.Output_Correlated_[29].subband=29
 Observation.DataProducts.Output_Correlated_[2].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[2].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[2].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[2].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[2].SAP=0
 Observation.DataProducts.Output_Correlated_[2].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[2].antennaSet=LBA_INNER
@@ -3511,6 +3678,7 @@ Observation.DataProducts.Output_Correlated_[2].subband=2
 Observation.DataProducts.Output_Correlated_[30].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[30].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[30].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[30].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[30].SAP=0
 Observation.DataProducts.Output_Correlated_[30].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[30].antennaSet=LBA_INNER
@@ -3532,6 +3700,7 @@ Observation.DataProducts.Output_Correlated_[30].subband=30
 Observation.DataProducts.Output_Correlated_[31].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[31].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[31].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[31].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[31].SAP=0
 Observation.DataProducts.Output_Correlated_[31].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[31].antennaSet=LBA_INNER
@@ -3553,6 +3722,7 @@ Observation.DataProducts.Output_Correlated_[31].subband=31
 Observation.DataProducts.Output_Correlated_[32].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[32].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[32].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[32].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[32].SAP=0
 Observation.DataProducts.Output_Correlated_[32].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[32].antennaSet=LBA_INNER
@@ -3574,6 +3744,7 @@ Observation.DataProducts.Output_Correlated_[32].subband=32
 Observation.DataProducts.Output_Correlated_[33].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[33].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[33].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[33].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[33].SAP=0
 Observation.DataProducts.Output_Correlated_[33].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[33].antennaSet=LBA_INNER
@@ -3595,6 +3766,7 @@ Observation.DataProducts.Output_Correlated_[33].subband=33
 Observation.DataProducts.Output_Correlated_[34].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[34].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[34].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[34].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[34].SAP=0
 Observation.DataProducts.Output_Correlated_[34].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[34].antennaSet=LBA_INNER
@@ -3616,6 +3788,7 @@ Observation.DataProducts.Output_Correlated_[34].subband=34
 Observation.DataProducts.Output_Correlated_[35].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[35].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[35].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[35].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[35].SAP=0
 Observation.DataProducts.Output_Correlated_[35].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[35].antennaSet=LBA_INNER
@@ -3637,6 +3810,7 @@ Observation.DataProducts.Output_Correlated_[35].subband=35
 Observation.DataProducts.Output_Correlated_[36].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[36].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[36].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[36].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[36].SAP=0
 Observation.DataProducts.Output_Correlated_[36].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[36].antennaSet=LBA_INNER
@@ -3658,6 +3832,7 @@ Observation.DataProducts.Output_Correlated_[36].subband=36
 Observation.DataProducts.Output_Correlated_[37].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[37].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[37].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[37].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[37].SAP=0
 Observation.DataProducts.Output_Correlated_[37].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[37].antennaSet=LBA_INNER
@@ -3679,6 +3854,7 @@ Observation.DataProducts.Output_Correlated_[37].subband=37
 Observation.DataProducts.Output_Correlated_[38].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[38].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[38].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[38].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[38].SAP=0
 Observation.DataProducts.Output_Correlated_[38].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[38].antennaSet=LBA_INNER
@@ -3700,6 +3876,7 @@ Observation.DataProducts.Output_Correlated_[38].subband=38
 Observation.DataProducts.Output_Correlated_[39].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[39].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[39].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[39].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[39].SAP=0
 Observation.DataProducts.Output_Correlated_[39].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[39].antennaSet=LBA_INNER
@@ -3721,6 +3898,7 @@ Observation.DataProducts.Output_Correlated_[39].subband=39
 Observation.DataProducts.Output_Correlated_[3].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[3].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[3].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[3].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[3].SAP=0
 Observation.DataProducts.Output_Correlated_[3].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[3].antennaSet=LBA_INNER
@@ -3742,6 +3920,7 @@ Observation.DataProducts.Output_Correlated_[3].subband=3
 Observation.DataProducts.Output_Correlated_[40].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[40].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[40].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[40].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[40].SAP=0
 Observation.DataProducts.Output_Correlated_[40].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[40].antennaSet=LBA_INNER
@@ -3763,6 +3942,7 @@ Observation.DataProducts.Output_Correlated_[40].subband=40
 Observation.DataProducts.Output_Correlated_[41].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[41].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[41].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[41].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[41].SAP=0
 Observation.DataProducts.Output_Correlated_[41].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[41].antennaSet=LBA_INNER
@@ -3784,6 +3964,7 @@ Observation.DataProducts.Output_Correlated_[41].subband=41
 Observation.DataProducts.Output_Correlated_[42].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[42].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[42].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[42].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[42].SAP=0
 Observation.DataProducts.Output_Correlated_[42].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[42].antennaSet=LBA_INNER
@@ -3805,6 +3986,7 @@ Observation.DataProducts.Output_Correlated_[42].subband=42
 Observation.DataProducts.Output_Correlated_[43].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[43].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[43].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[43].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[43].SAP=0
 Observation.DataProducts.Output_Correlated_[43].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[43].antennaSet=LBA_INNER
@@ -3826,6 +4008,7 @@ Observation.DataProducts.Output_Correlated_[43].subband=43
 Observation.DataProducts.Output_Correlated_[44].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[44].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[44].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[44].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[44].SAP=0
 Observation.DataProducts.Output_Correlated_[44].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[44].antennaSet=LBA_INNER
@@ -3847,6 +4030,7 @@ Observation.DataProducts.Output_Correlated_[44].subband=44
 Observation.DataProducts.Output_Correlated_[45].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[45].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[45].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[45].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[45].SAP=0
 Observation.DataProducts.Output_Correlated_[45].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[45].antennaSet=LBA_INNER
@@ -3868,6 +4052,7 @@ Observation.DataProducts.Output_Correlated_[45].subband=45
 Observation.DataProducts.Output_Correlated_[46].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[46].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[46].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[46].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[46].SAP=0
 Observation.DataProducts.Output_Correlated_[46].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[46].antennaSet=LBA_INNER
@@ -3889,6 +4074,7 @@ Observation.DataProducts.Output_Correlated_[46].subband=46
 Observation.DataProducts.Output_Correlated_[47].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[47].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[47].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[47].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[47].SAP=0
 Observation.DataProducts.Output_Correlated_[47].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[47].antennaSet=LBA_INNER
@@ -3910,6 +4096,7 @@ Observation.DataProducts.Output_Correlated_[47].subband=47
 Observation.DataProducts.Output_Correlated_[48].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[48].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[48].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[48].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[48].SAP=0
 Observation.DataProducts.Output_Correlated_[48].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[48].antennaSet=LBA_INNER
@@ -3931,6 +4118,7 @@ Observation.DataProducts.Output_Correlated_[48].subband=48
 Observation.DataProducts.Output_Correlated_[49].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[49].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[49].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[49].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[49].SAP=0
 Observation.DataProducts.Output_Correlated_[49].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[49].antennaSet=LBA_INNER
@@ -3952,6 +4140,7 @@ Observation.DataProducts.Output_Correlated_[49].subband=49
 Observation.DataProducts.Output_Correlated_[4].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[4].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[4].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[4].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[4].SAP=0
 Observation.DataProducts.Output_Correlated_[4].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[4].antennaSet=LBA_INNER
@@ -3973,6 +4162,7 @@ Observation.DataProducts.Output_Correlated_[4].subband=4
 Observation.DataProducts.Output_Correlated_[50].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[50].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[50].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[50].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[50].SAP=0
 Observation.DataProducts.Output_Correlated_[50].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[50].antennaSet=LBA_INNER
@@ -3994,6 +4184,7 @@ Observation.DataProducts.Output_Correlated_[50].subband=50
 Observation.DataProducts.Output_Correlated_[51].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[51].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[51].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[51].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[51].SAP=0
 Observation.DataProducts.Output_Correlated_[51].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[51].antennaSet=LBA_INNER
@@ -4015,6 +4206,7 @@ Observation.DataProducts.Output_Correlated_[51].subband=51
 Observation.DataProducts.Output_Correlated_[52].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[52].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[52].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[52].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[52].SAP=0
 Observation.DataProducts.Output_Correlated_[52].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[52].antennaSet=LBA_INNER
@@ -4036,6 +4228,7 @@ Observation.DataProducts.Output_Correlated_[52].subband=52
 Observation.DataProducts.Output_Correlated_[53].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[53].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[53].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[53].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[53].SAP=0
 Observation.DataProducts.Output_Correlated_[53].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[53].antennaSet=LBA_INNER
@@ -4057,6 +4250,7 @@ Observation.DataProducts.Output_Correlated_[53].subband=53
 Observation.DataProducts.Output_Correlated_[54].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[54].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[54].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[54].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[54].SAP=0
 Observation.DataProducts.Output_Correlated_[54].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[54].antennaSet=LBA_INNER
@@ -4078,6 +4272,7 @@ Observation.DataProducts.Output_Correlated_[54].subband=54
 Observation.DataProducts.Output_Correlated_[55].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[55].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[55].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[55].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[55].SAP=0
 Observation.DataProducts.Output_Correlated_[55].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[55].antennaSet=LBA_INNER
@@ -4099,6 +4294,7 @@ Observation.DataProducts.Output_Correlated_[55].subband=55
 Observation.DataProducts.Output_Correlated_[56].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[56].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[56].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[56].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[56].SAP=0
 Observation.DataProducts.Output_Correlated_[56].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[56].antennaSet=LBA_INNER
@@ -4120,6 +4316,7 @@ Observation.DataProducts.Output_Correlated_[56].subband=56
 Observation.DataProducts.Output_Correlated_[57].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[57].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[57].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[57].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[57].SAP=0
 Observation.DataProducts.Output_Correlated_[57].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[57].antennaSet=LBA_INNER
@@ -4141,6 +4338,7 @@ Observation.DataProducts.Output_Correlated_[57].subband=57
 Observation.DataProducts.Output_Correlated_[58].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[58].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[58].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[58].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[58].SAP=0
 Observation.DataProducts.Output_Correlated_[58].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[58].antennaSet=LBA_INNER
@@ -4162,6 +4360,7 @@ Observation.DataProducts.Output_Correlated_[58].subband=58
 Observation.DataProducts.Output_Correlated_[59].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[59].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[59].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[59].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[59].SAP=0
 Observation.DataProducts.Output_Correlated_[59].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[59].antennaSet=LBA_INNER
@@ -4183,6 +4382,7 @@ Observation.DataProducts.Output_Correlated_[59].subband=59
 Observation.DataProducts.Output_Correlated_[5].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[5].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[5].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[5].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[5].SAP=0
 Observation.DataProducts.Output_Correlated_[5].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[5].antennaSet=LBA_INNER
@@ -4204,6 +4404,7 @@ Observation.DataProducts.Output_Correlated_[5].subband=5
 Observation.DataProducts.Output_Correlated_[60].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[60].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[60].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[60].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[60].SAP=0
 Observation.DataProducts.Output_Correlated_[60].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[60].antennaSet=LBA_INNER
@@ -4225,6 +4426,7 @@ Observation.DataProducts.Output_Correlated_[60].subband=60
 Observation.DataProducts.Output_Correlated_[61].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[61].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[61].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[61].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[61].SAP=0
 Observation.DataProducts.Output_Correlated_[61].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[61].antennaSet=LBA_INNER
@@ -4246,6 +4448,7 @@ Observation.DataProducts.Output_Correlated_[61].subband=61
 Observation.DataProducts.Output_Correlated_[62].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[62].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[62].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[62].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[62].SAP=0
 Observation.DataProducts.Output_Correlated_[62].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[62].antennaSet=LBA_INNER
@@ -4267,6 +4470,7 @@ Observation.DataProducts.Output_Correlated_[62].subband=62
 Observation.DataProducts.Output_Correlated_[63].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[63].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[63].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[63].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[63].SAP=0
 Observation.DataProducts.Output_Correlated_[63].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[63].antennaSet=LBA_INNER
@@ -4288,6 +4492,7 @@ Observation.DataProducts.Output_Correlated_[63].subband=63
 Observation.DataProducts.Output_Correlated_[64].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[64].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[64].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[64].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[64].SAP=0
 Observation.DataProducts.Output_Correlated_[64].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[64].antennaSet=LBA_INNER
@@ -4309,6 +4514,7 @@ Observation.DataProducts.Output_Correlated_[64].subband=64
 Observation.DataProducts.Output_Correlated_[65].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[65].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[65].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[65].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[65].SAP=0
 Observation.DataProducts.Output_Correlated_[65].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[65].antennaSet=LBA_INNER
@@ -4330,6 +4536,7 @@ Observation.DataProducts.Output_Correlated_[65].subband=65
 Observation.DataProducts.Output_Correlated_[66].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[66].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[66].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[66].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[66].SAP=0
 Observation.DataProducts.Output_Correlated_[66].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[66].antennaSet=LBA_INNER
@@ -4351,6 +4558,7 @@ Observation.DataProducts.Output_Correlated_[66].subband=66
 Observation.DataProducts.Output_Correlated_[67].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[67].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[67].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[67].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[67].SAP=0
 Observation.DataProducts.Output_Correlated_[67].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[67].antennaSet=LBA_INNER
@@ -4372,6 +4580,7 @@ Observation.DataProducts.Output_Correlated_[67].subband=67
 Observation.DataProducts.Output_Correlated_[68].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[68].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[68].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[68].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[68].SAP=0
 Observation.DataProducts.Output_Correlated_[68].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[68].antennaSet=LBA_INNER
@@ -4393,6 +4602,7 @@ Observation.DataProducts.Output_Correlated_[68].subband=68
 Observation.DataProducts.Output_Correlated_[69].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[69].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[69].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[69].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[69].SAP=0
 Observation.DataProducts.Output_Correlated_[69].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[69].antennaSet=LBA_INNER
@@ -4414,6 +4624,7 @@ Observation.DataProducts.Output_Correlated_[69].subband=69
 Observation.DataProducts.Output_Correlated_[6].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[6].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[6].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[6].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[6].SAP=0
 Observation.DataProducts.Output_Correlated_[6].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[6].antennaSet=LBA_INNER
@@ -4435,6 +4646,7 @@ Observation.DataProducts.Output_Correlated_[6].subband=6
 Observation.DataProducts.Output_Correlated_[70].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[70].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[70].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[70].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[70].SAP=0
 Observation.DataProducts.Output_Correlated_[70].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[70].antennaSet=LBA_INNER
@@ -4456,6 +4668,7 @@ Observation.DataProducts.Output_Correlated_[70].subband=70
 Observation.DataProducts.Output_Correlated_[71].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[71].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[71].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[71].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[71].SAP=0
 Observation.DataProducts.Output_Correlated_[71].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[71].antennaSet=LBA_INNER
@@ -4477,6 +4690,7 @@ Observation.DataProducts.Output_Correlated_[71].subband=71
 Observation.DataProducts.Output_Correlated_[72].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[72].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[72].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[72].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[72].SAP=0
 Observation.DataProducts.Output_Correlated_[72].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[72].antennaSet=LBA_INNER
@@ -4498,6 +4712,7 @@ Observation.DataProducts.Output_Correlated_[72].subband=72
 Observation.DataProducts.Output_Correlated_[73].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[73].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[73].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[73].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[73].SAP=0
 Observation.DataProducts.Output_Correlated_[73].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[73].antennaSet=LBA_INNER
@@ -4519,6 +4734,7 @@ Observation.DataProducts.Output_Correlated_[73].subband=73
 Observation.DataProducts.Output_Correlated_[74].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[74].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[74].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[74].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[74].SAP=0
 Observation.DataProducts.Output_Correlated_[74].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[74].antennaSet=LBA_INNER
@@ -4540,6 +4756,7 @@ Observation.DataProducts.Output_Correlated_[74].subband=74
 Observation.DataProducts.Output_Correlated_[75].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[75].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[75].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[75].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[75].SAP=0
 Observation.DataProducts.Output_Correlated_[75].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[75].antennaSet=LBA_INNER
@@ -4561,6 +4778,7 @@ Observation.DataProducts.Output_Correlated_[75].subband=75
 Observation.DataProducts.Output_Correlated_[76].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[76].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[76].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[76].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[76].SAP=0
 Observation.DataProducts.Output_Correlated_[76].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[76].antennaSet=LBA_INNER
@@ -4582,6 +4800,7 @@ Observation.DataProducts.Output_Correlated_[76].subband=76
 Observation.DataProducts.Output_Correlated_[77].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[77].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[77].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[77].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[77].SAP=0
 Observation.DataProducts.Output_Correlated_[77].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[77].antennaSet=LBA_INNER
@@ -4603,6 +4822,7 @@ Observation.DataProducts.Output_Correlated_[77].subband=77
 Observation.DataProducts.Output_Correlated_[78].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[78].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[78].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[78].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[78].SAP=0
 Observation.DataProducts.Output_Correlated_[78].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[78].antennaSet=LBA_INNER
@@ -4624,6 +4844,7 @@ Observation.DataProducts.Output_Correlated_[78].subband=78
 Observation.DataProducts.Output_Correlated_[79].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[79].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[79].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[79].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[79].SAP=0
 Observation.DataProducts.Output_Correlated_[79].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[79].antennaSet=LBA_INNER
@@ -4645,6 +4866,7 @@ Observation.DataProducts.Output_Correlated_[79].subband=79
 Observation.DataProducts.Output_Correlated_[7].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[7].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[7].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[7].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[7].SAP=0
 Observation.DataProducts.Output_Correlated_[7].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[7].antennaSet=LBA_INNER
@@ -4666,6 +4888,7 @@ Observation.DataProducts.Output_Correlated_[7].subband=7
 Observation.DataProducts.Output_Correlated_[80].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[80].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[80].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[80].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[80].SAP=0
 Observation.DataProducts.Output_Correlated_[80].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[80].antennaSet=LBA_INNER
@@ -4687,6 +4910,7 @@ Observation.DataProducts.Output_Correlated_[80].subband=80
 Observation.DataProducts.Output_Correlated_[81].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[81].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[81].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[81].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[81].SAP=0
 Observation.DataProducts.Output_Correlated_[81].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[81].antennaSet=LBA_INNER
@@ -4708,6 +4932,7 @@ Observation.DataProducts.Output_Correlated_[81].subband=81
 Observation.DataProducts.Output_Correlated_[82].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[82].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[82].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[82].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[82].SAP=0
 Observation.DataProducts.Output_Correlated_[82].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[82].antennaSet=LBA_INNER
@@ -4729,6 +4954,7 @@ Observation.DataProducts.Output_Correlated_[82].subband=82
 Observation.DataProducts.Output_Correlated_[83].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[83].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[83].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[83].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[83].SAP=0
 Observation.DataProducts.Output_Correlated_[83].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[83].antennaSet=LBA_INNER
@@ -4750,6 +4976,7 @@ Observation.DataProducts.Output_Correlated_[83].subband=83
 Observation.DataProducts.Output_Correlated_[84].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[84].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[84].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[84].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[84].SAP=0
 Observation.DataProducts.Output_Correlated_[84].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[84].antennaSet=LBA_INNER
@@ -4771,6 +4998,7 @@ Observation.DataProducts.Output_Correlated_[84].subband=84
 Observation.DataProducts.Output_Correlated_[85].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[85].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[85].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[85].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[85].SAP=0
 Observation.DataProducts.Output_Correlated_[85].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[85].antennaSet=LBA_INNER
@@ -4792,6 +5020,7 @@ Observation.DataProducts.Output_Correlated_[85].subband=85
 Observation.DataProducts.Output_Correlated_[86].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[86].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[86].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[86].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[86].SAP=0
 Observation.DataProducts.Output_Correlated_[86].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[86].antennaSet=LBA_INNER
@@ -4813,6 +5042,7 @@ Observation.DataProducts.Output_Correlated_[86].subband=86
 Observation.DataProducts.Output_Correlated_[87].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[87].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[87].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[87].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[87].SAP=0
 Observation.DataProducts.Output_Correlated_[87].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[87].antennaSet=LBA_INNER
@@ -4834,6 +5064,7 @@ Observation.DataProducts.Output_Correlated_[87].subband=87
 Observation.DataProducts.Output_Correlated_[88].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[88].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[88].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[88].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[88].SAP=0
 Observation.DataProducts.Output_Correlated_[88].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[88].antennaSet=LBA_INNER
@@ -4855,6 +5086,7 @@ Observation.DataProducts.Output_Correlated_[88].subband=88
 Observation.DataProducts.Output_Correlated_[89].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[89].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[89].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[89].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[89].SAP=0
 Observation.DataProducts.Output_Correlated_[89].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[89].antennaSet=LBA_INNER
@@ -4876,6 +5108,7 @@ Observation.DataProducts.Output_Correlated_[89].subband=89
 Observation.DataProducts.Output_Correlated_[8].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[8].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[8].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[8].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[8].SAP=0
 Observation.DataProducts.Output_Correlated_[8].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[8].antennaSet=LBA_INNER
@@ -4897,6 +5130,7 @@ Observation.DataProducts.Output_Correlated_[8].subband=8
 Observation.DataProducts.Output_Correlated_[90].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[90].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[90].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[90].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[90].SAP=0
 Observation.DataProducts.Output_Correlated_[90].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[90].antennaSet=LBA_INNER
@@ -4918,6 +5152,7 @@ Observation.DataProducts.Output_Correlated_[90].subband=90
 Observation.DataProducts.Output_Correlated_[91].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[91].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[91].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[91].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[91].SAP=0
 Observation.DataProducts.Output_Correlated_[91].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[91].antennaSet=LBA_INNER
@@ -4939,6 +5174,7 @@ Observation.DataProducts.Output_Correlated_[91].subband=91
 Observation.DataProducts.Output_Correlated_[92].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[92].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[92].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[92].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[92].SAP=0
 Observation.DataProducts.Output_Correlated_[92].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[92].antennaSet=LBA_INNER
@@ -4960,6 +5196,7 @@ Observation.DataProducts.Output_Correlated_[92].subband=92
 Observation.DataProducts.Output_Correlated_[93].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[93].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[93].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[93].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[93].SAP=0
 Observation.DataProducts.Output_Correlated_[93].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[93].antennaSet=LBA_INNER
@@ -4981,6 +5218,7 @@ Observation.DataProducts.Output_Correlated_[93].subband=93
 Observation.DataProducts.Output_Correlated_[94].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[94].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[94].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[94].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[94].SAP=0
 Observation.DataProducts.Output_Correlated_[94].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[94].antennaSet=LBA_INNER
@@ -5002,6 +5240,7 @@ Observation.DataProducts.Output_Correlated_[94].subband=94
 Observation.DataProducts.Output_Correlated_[95].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[95].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[95].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[95].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[95].SAP=0
 Observation.DataProducts.Output_Correlated_[95].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[95].antennaSet=LBA_INNER
@@ -5023,6 +5262,7 @@ Observation.DataProducts.Output_Correlated_[95].subband=95
 Observation.DataProducts.Output_Correlated_[96].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[96].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[96].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[96].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[96].SAP=0
 Observation.DataProducts.Output_Correlated_[96].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[96].antennaSet=LBA_INNER
@@ -5044,6 +5284,7 @@ Observation.DataProducts.Output_Correlated_[96].subband=96
 Observation.DataProducts.Output_Correlated_[97].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[97].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[97].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[97].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[97].SAP=0
 Observation.DataProducts.Output_Correlated_[97].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[97].antennaSet=LBA_INNER
@@ -5065,6 +5306,7 @@ Observation.DataProducts.Output_Correlated_[97].subband=97
 Observation.DataProducts.Output_Correlated_[98].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[98].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[98].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[98].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[98].SAP=0
 Observation.DataProducts.Output_Correlated_[98].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[98].antennaSet=LBA_INNER
@@ -5086,6 +5328,7 @@ Observation.DataProducts.Output_Correlated_[98].subband=98
 Observation.DataProducts.Output_Correlated_[99].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[99].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[99].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[99].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[99].SAP=0
 Observation.DataProducts.Output_Correlated_[99].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[99].antennaSet=LBA_INNER
@@ -5107,6 +5350,7 @@ Observation.DataProducts.Output_Correlated_[99].subband=99
 Observation.DataProducts.Output_Correlated_[9].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[9].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[9].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[9].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[9].SAP=0
 Observation.DataProducts.Output_Correlated_[9].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[9].antennaSet=LBA_INNER
@@ -5127,5 +5371,7 @@ Observation.DataProducts.Output_Correlated_[9].storageWriterVersion=3
 Observation.DataProducts.Output_Correlated_[9].subband=9
 Observation.DataProducts.nrOfOutput_Beamformed_=0
 Observation.DataProducts.nrOfOutput_Correlated_=244
+Observation.startTime=2014-04-18T15:02:00.000000000Z
+Observation.stopTime=2014-04-18T15:03:59.789322138Z
 _isCobalt=T
 feedback_version=03.01.00
diff --git a/RTCP/Cobalt/CoInterface/test/tLTAFeedback.in_reference/Observation220134_feedback b/RTCP/Cobalt/CoInterface/test/tLTAFeedback.in_reference/Observation220134_feedback
index b3b2d47526e42de5d8774096e6679529b011f171..d1393b9730f4aa8624c03421c4605cdaa7ebdca7 100644
--- a/RTCP/Cobalt/CoInterface/test/tLTAFeedback.in_reference/Observation220134_feedback
+++ b/RTCP/Cobalt/CoInterface/test/tLTAFeedback.in_reference/Observation220134_feedback
@@ -4,6 +4,7 @@ Observation.Correlator.integrationInterval=1.00663296
 Observation.DataProducts.Output_Correlated_[0].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[0].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[0].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[0].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[0].SAP=0
 Observation.DataProducts.Output_Correlated_[0].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[0].antennaSet=LBA_INNER
@@ -25,6 +26,7 @@ Observation.DataProducts.Output_Correlated_[0].subband=0
 Observation.DataProducts.Output_Correlated_[100].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[100].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[100].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[100].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[100].SAP=0
 Observation.DataProducts.Output_Correlated_[100].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[100].antennaSet=LBA_INNER
@@ -46,6 +48,7 @@ Observation.DataProducts.Output_Correlated_[100].subband=100
 Observation.DataProducts.Output_Correlated_[101].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[101].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[101].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[101].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[101].SAP=0
 Observation.DataProducts.Output_Correlated_[101].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[101].antennaSet=LBA_INNER
@@ -67,6 +70,7 @@ Observation.DataProducts.Output_Correlated_[101].subband=101
 Observation.DataProducts.Output_Correlated_[102].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[102].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[102].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[102].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[102].SAP=0
 Observation.DataProducts.Output_Correlated_[102].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[102].antennaSet=LBA_INNER
@@ -88,6 +92,7 @@ Observation.DataProducts.Output_Correlated_[102].subband=102
 Observation.DataProducts.Output_Correlated_[103].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[103].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[103].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[103].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[103].SAP=0
 Observation.DataProducts.Output_Correlated_[103].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[103].antennaSet=LBA_INNER
@@ -109,6 +114,7 @@ Observation.DataProducts.Output_Correlated_[103].subband=103
 Observation.DataProducts.Output_Correlated_[104].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[104].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[104].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[104].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[104].SAP=0
 Observation.DataProducts.Output_Correlated_[104].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[104].antennaSet=LBA_INNER
@@ -130,6 +136,7 @@ Observation.DataProducts.Output_Correlated_[104].subband=104
 Observation.DataProducts.Output_Correlated_[105].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[105].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[105].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[105].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[105].SAP=0
 Observation.DataProducts.Output_Correlated_[105].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[105].antennaSet=LBA_INNER
@@ -151,6 +158,7 @@ Observation.DataProducts.Output_Correlated_[105].subband=105
 Observation.DataProducts.Output_Correlated_[106].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[106].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[106].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[106].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[106].SAP=0
 Observation.DataProducts.Output_Correlated_[106].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[106].antennaSet=LBA_INNER
@@ -172,6 +180,7 @@ Observation.DataProducts.Output_Correlated_[106].subband=106
 Observation.DataProducts.Output_Correlated_[107].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[107].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[107].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[107].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[107].SAP=0
 Observation.DataProducts.Output_Correlated_[107].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[107].antennaSet=LBA_INNER
@@ -193,6 +202,7 @@ Observation.DataProducts.Output_Correlated_[107].subband=107
 Observation.DataProducts.Output_Correlated_[108].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[108].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[108].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[108].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[108].SAP=0
 Observation.DataProducts.Output_Correlated_[108].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[108].antennaSet=LBA_INNER
@@ -214,6 +224,7 @@ Observation.DataProducts.Output_Correlated_[108].subband=108
 Observation.DataProducts.Output_Correlated_[109].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[109].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[109].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[109].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[109].SAP=0
 Observation.DataProducts.Output_Correlated_[109].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[109].antennaSet=LBA_INNER
@@ -235,6 +246,7 @@ Observation.DataProducts.Output_Correlated_[109].subband=109
 Observation.DataProducts.Output_Correlated_[10].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[10].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[10].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[10].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[10].SAP=0
 Observation.DataProducts.Output_Correlated_[10].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[10].antennaSet=LBA_INNER
@@ -256,6 +268,7 @@ Observation.DataProducts.Output_Correlated_[10].subband=10
 Observation.DataProducts.Output_Correlated_[110].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[110].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[110].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[110].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[110].SAP=0
 Observation.DataProducts.Output_Correlated_[110].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[110].antennaSet=LBA_INNER
@@ -277,6 +290,7 @@ Observation.DataProducts.Output_Correlated_[110].subband=110
 Observation.DataProducts.Output_Correlated_[111].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[111].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[111].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[111].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[111].SAP=0
 Observation.DataProducts.Output_Correlated_[111].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[111].antennaSet=LBA_INNER
@@ -298,6 +312,7 @@ Observation.DataProducts.Output_Correlated_[111].subband=111
 Observation.DataProducts.Output_Correlated_[112].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[112].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[112].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[112].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[112].SAP=0
 Observation.DataProducts.Output_Correlated_[112].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[112].antennaSet=LBA_INNER
@@ -319,6 +334,7 @@ Observation.DataProducts.Output_Correlated_[112].subband=112
 Observation.DataProducts.Output_Correlated_[113].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[113].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[113].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[113].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[113].SAP=0
 Observation.DataProducts.Output_Correlated_[113].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[113].antennaSet=LBA_INNER
@@ -340,6 +356,7 @@ Observation.DataProducts.Output_Correlated_[113].subband=113
 Observation.DataProducts.Output_Correlated_[114].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[114].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[114].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[114].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[114].SAP=0
 Observation.DataProducts.Output_Correlated_[114].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[114].antennaSet=LBA_INNER
@@ -361,6 +378,7 @@ Observation.DataProducts.Output_Correlated_[114].subband=114
 Observation.DataProducts.Output_Correlated_[115].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[115].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[115].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[115].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[115].SAP=0
 Observation.DataProducts.Output_Correlated_[115].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[115].antennaSet=LBA_INNER
@@ -382,6 +400,7 @@ Observation.DataProducts.Output_Correlated_[115].subband=115
 Observation.DataProducts.Output_Correlated_[116].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[116].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[116].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[116].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[116].SAP=0
 Observation.DataProducts.Output_Correlated_[116].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[116].antennaSet=LBA_INNER
@@ -403,6 +422,7 @@ Observation.DataProducts.Output_Correlated_[116].subband=116
 Observation.DataProducts.Output_Correlated_[117].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[117].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[117].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[117].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[117].SAP=0
 Observation.DataProducts.Output_Correlated_[117].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[117].antennaSet=LBA_INNER
@@ -424,6 +444,7 @@ Observation.DataProducts.Output_Correlated_[117].subband=117
 Observation.DataProducts.Output_Correlated_[118].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[118].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[118].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[118].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[118].SAP=0
 Observation.DataProducts.Output_Correlated_[118].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[118].antennaSet=LBA_INNER
@@ -445,6 +466,7 @@ Observation.DataProducts.Output_Correlated_[118].subband=118
 Observation.DataProducts.Output_Correlated_[119].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[119].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[119].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[119].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[119].SAP=0
 Observation.DataProducts.Output_Correlated_[119].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[119].antennaSet=LBA_INNER
@@ -466,6 +488,7 @@ Observation.DataProducts.Output_Correlated_[119].subband=119
 Observation.DataProducts.Output_Correlated_[11].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[11].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[11].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[11].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[11].SAP=0
 Observation.DataProducts.Output_Correlated_[11].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[11].antennaSet=LBA_INNER
@@ -487,6 +510,7 @@ Observation.DataProducts.Output_Correlated_[11].subband=11
 Observation.DataProducts.Output_Correlated_[120].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[120].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[120].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[120].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[120].SAP=0
 Observation.DataProducts.Output_Correlated_[120].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[120].antennaSet=LBA_INNER
@@ -508,6 +532,7 @@ Observation.DataProducts.Output_Correlated_[120].subband=120
 Observation.DataProducts.Output_Correlated_[121].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[121].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[121].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[121].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[121].SAP=0
 Observation.DataProducts.Output_Correlated_[121].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[121].antennaSet=LBA_INNER
@@ -529,6 +554,7 @@ Observation.DataProducts.Output_Correlated_[121].subband=121
 Observation.DataProducts.Output_Correlated_[122].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[122].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[122].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[122].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[122].SAP=0
 Observation.DataProducts.Output_Correlated_[122].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[122].antennaSet=LBA_INNER
@@ -550,6 +576,7 @@ Observation.DataProducts.Output_Correlated_[122].subband=122
 Observation.DataProducts.Output_Correlated_[123].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[123].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[123].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[123].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[123].SAP=0
 Observation.DataProducts.Output_Correlated_[123].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[123].antennaSet=LBA_INNER
@@ -571,6 +598,7 @@ Observation.DataProducts.Output_Correlated_[123].subband=123
 Observation.DataProducts.Output_Correlated_[124].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[124].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[124].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[124].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[124].SAP=0
 Observation.DataProducts.Output_Correlated_[124].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[124].antennaSet=LBA_INNER
@@ -592,6 +620,7 @@ Observation.DataProducts.Output_Correlated_[124].subband=124
 Observation.DataProducts.Output_Correlated_[125].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[125].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[125].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[125].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[125].SAP=0
 Observation.DataProducts.Output_Correlated_[125].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[125].antennaSet=LBA_INNER
@@ -613,6 +642,7 @@ Observation.DataProducts.Output_Correlated_[125].subband=125
 Observation.DataProducts.Output_Correlated_[126].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[126].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[126].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[126].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[126].SAP=0
 Observation.DataProducts.Output_Correlated_[126].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[126].antennaSet=LBA_INNER
@@ -634,6 +664,7 @@ Observation.DataProducts.Output_Correlated_[126].subband=126
 Observation.DataProducts.Output_Correlated_[127].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[127].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[127].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[127].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[127].SAP=0
 Observation.DataProducts.Output_Correlated_[127].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[127].antennaSet=LBA_INNER
@@ -655,6 +686,7 @@ Observation.DataProducts.Output_Correlated_[127].subband=127
 Observation.DataProducts.Output_Correlated_[128].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[128].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[128].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[128].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[128].SAP=0
 Observation.DataProducts.Output_Correlated_[128].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[128].antennaSet=LBA_INNER
@@ -676,6 +708,7 @@ Observation.DataProducts.Output_Correlated_[128].subband=128
 Observation.DataProducts.Output_Correlated_[129].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[129].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[129].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[129].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[129].SAP=0
 Observation.DataProducts.Output_Correlated_[129].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[129].antennaSet=LBA_INNER
@@ -697,6 +730,7 @@ Observation.DataProducts.Output_Correlated_[129].subband=129
 Observation.DataProducts.Output_Correlated_[12].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[12].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[12].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[12].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[12].SAP=0
 Observation.DataProducts.Output_Correlated_[12].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[12].antennaSet=LBA_INNER
@@ -718,6 +752,7 @@ Observation.DataProducts.Output_Correlated_[12].subband=12
 Observation.DataProducts.Output_Correlated_[130].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[130].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[130].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[130].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[130].SAP=0
 Observation.DataProducts.Output_Correlated_[130].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[130].antennaSet=LBA_INNER
@@ -739,6 +774,7 @@ Observation.DataProducts.Output_Correlated_[130].subband=130
 Observation.DataProducts.Output_Correlated_[131].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[131].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[131].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[131].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[131].SAP=0
 Observation.DataProducts.Output_Correlated_[131].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[131].antennaSet=LBA_INNER
@@ -760,6 +796,7 @@ Observation.DataProducts.Output_Correlated_[131].subband=131
 Observation.DataProducts.Output_Correlated_[132].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[132].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[132].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[132].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[132].SAP=0
 Observation.DataProducts.Output_Correlated_[132].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[132].antennaSet=LBA_INNER
@@ -781,6 +818,7 @@ Observation.DataProducts.Output_Correlated_[132].subband=132
 Observation.DataProducts.Output_Correlated_[133].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[133].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[133].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[133].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[133].SAP=0
 Observation.DataProducts.Output_Correlated_[133].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[133].antennaSet=LBA_INNER
@@ -802,6 +840,7 @@ Observation.DataProducts.Output_Correlated_[133].subband=133
 Observation.DataProducts.Output_Correlated_[134].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[134].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[134].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[134].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[134].SAP=0
 Observation.DataProducts.Output_Correlated_[134].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[134].antennaSet=LBA_INNER
@@ -823,6 +862,7 @@ Observation.DataProducts.Output_Correlated_[134].subband=134
 Observation.DataProducts.Output_Correlated_[135].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[135].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[135].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[135].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[135].SAP=0
 Observation.DataProducts.Output_Correlated_[135].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[135].antennaSet=LBA_INNER
@@ -844,6 +884,7 @@ Observation.DataProducts.Output_Correlated_[135].subband=135
 Observation.DataProducts.Output_Correlated_[136].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[136].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[136].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[136].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[136].SAP=0
 Observation.DataProducts.Output_Correlated_[136].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[136].antennaSet=LBA_INNER
@@ -865,6 +906,7 @@ Observation.DataProducts.Output_Correlated_[136].subband=136
 Observation.DataProducts.Output_Correlated_[137].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[137].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[137].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[137].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[137].SAP=0
 Observation.DataProducts.Output_Correlated_[137].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[137].antennaSet=LBA_INNER
@@ -886,6 +928,7 @@ Observation.DataProducts.Output_Correlated_[137].subband=137
 Observation.DataProducts.Output_Correlated_[138].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[138].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[138].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[138].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[138].SAP=0
 Observation.DataProducts.Output_Correlated_[138].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[138].antennaSet=LBA_INNER
@@ -907,6 +950,7 @@ Observation.DataProducts.Output_Correlated_[138].subband=138
 Observation.DataProducts.Output_Correlated_[139].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[139].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[139].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[139].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[139].SAP=0
 Observation.DataProducts.Output_Correlated_[139].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[139].antennaSet=LBA_INNER
@@ -928,6 +972,7 @@ Observation.DataProducts.Output_Correlated_[139].subband=139
 Observation.DataProducts.Output_Correlated_[13].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[13].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[13].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[13].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[13].SAP=0
 Observation.DataProducts.Output_Correlated_[13].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[13].antennaSet=LBA_INNER
@@ -949,6 +994,7 @@ Observation.DataProducts.Output_Correlated_[13].subband=13
 Observation.DataProducts.Output_Correlated_[140].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[140].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[140].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[140].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[140].SAP=0
 Observation.DataProducts.Output_Correlated_[140].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[140].antennaSet=LBA_INNER
@@ -970,6 +1016,7 @@ Observation.DataProducts.Output_Correlated_[140].subband=140
 Observation.DataProducts.Output_Correlated_[141].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[141].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[141].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[141].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[141].SAP=0
 Observation.DataProducts.Output_Correlated_[141].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[141].antennaSet=LBA_INNER
@@ -991,6 +1038,7 @@ Observation.DataProducts.Output_Correlated_[141].subband=141
 Observation.DataProducts.Output_Correlated_[142].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[142].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[142].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[142].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[142].SAP=0
 Observation.DataProducts.Output_Correlated_[142].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[142].antennaSet=LBA_INNER
@@ -1012,6 +1060,7 @@ Observation.DataProducts.Output_Correlated_[142].subband=142
 Observation.DataProducts.Output_Correlated_[143].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[143].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[143].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[143].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[143].SAP=0
 Observation.DataProducts.Output_Correlated_[143].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[143].antennaSet=LBA_INNER
@@ -1033,6 +1082,7 @@ Observation.DataProducts.Output_Correlated_[143].subband=143
 Observation.DataProducts.Output_Correlated_[144].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[144].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[144].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[144].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[144].SAP=0
 Observation.DataProducts.Output_Correlated_[144].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[144].antennaSet=LBA_INNER
@@ -1054,6 +1104,7 @@ Observation.DataProducts.Output_Correlated_[144].subband=144
 Observation.DataProducts.Output_Correlated_[145].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[145].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[145].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[145].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[145].SAP=0
 Observation.DataProducts.Output_Correlated_[145].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[145].antennaSet=LBA_INNER
@@ -1075,6 +1126,7 @@ Observation.DataProducts.Output_Correlated_[145].subband=145
 Observation.DataProducts.Output_Correlated_[146].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[146].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[146].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[146].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[146].SAP=0
 Observation.DataProducts.Output_Correlated_[146].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[146].antennaSet=LBA_INNER
@@ -1096,6 +1148,7 @@ Observation.DataProducts.Output_Correlated_[146].subband=146
 Observation.DataProducts.Output_Correlated_[147].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[147].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[147].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[147].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[147].SAP=0
 Observation.DataProducts.Output_Correlated_[147].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[147].antennaSet=LBA_INNER
@@ -1117,6 +1170,7 @@ Observation.DataProducts.Output_Correlated_[147].subband=147
 Observation.DataProducts.Output_Correlated_[148].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[148].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[148].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[148].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[148].SAP=0
 Observation.DataProducts.Output_Correlated_[148].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[148].antennaSet=LBA_INNER
@@ -1138,6 +1192,7 @@ Observation.DataProducts.Output_Correlated_[148].subband=148
 Observation.DataProducts.Output_Correlated_[149].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[149].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[149].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[149].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[149].SAP=0
 Observation.DataProducts.Output_Correlated_[149].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[149].antennaSet=LBA_INNER
@@ -1159,6 +1214,7 @@ Observation.DataProducts.Output_Correlated_[149].subband=149
 Observation.DataProducts.Output_Correlated_[14].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[14].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[14].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[14].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[14].SAP=0
 Observation.DataProducts.Output_Correlated_[14].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[14].antennaSet=LBA_INNER
@@ -1180,6 +1236,7 @@ Observation.DataProducts.Output_Correlated_[14].subband=14
 Observation.DataProducts.Output_Correlated_[150].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[150].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[150].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[150].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[150].SAP=0
 Observation.DataProducts.Output_Correlated_[150].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[150].antennaSet=LBA_INNER
@@ -1201,6 +1258,7 @@ Observation.DataProducts.Output_Correlated_[150].subband=150
 Observation.DataProducts.Output_Correlated_[151].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[151].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[151].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[151].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[151].SAP=0
 Observation.DataProducts.Output_Correlated_[151].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[151].antennaSet=LBA_INNER
@@ -1222,6 +1280,7 @@ Observation.DataProducts.Output_Correlated_[151].subband=151
 Observation.DataProducts.Output_Correlated_[152].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[152].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[152].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[152].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[152].SAP=0
 Observation.DataProducts.Output_Correlated_[152].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[152].antennaSet=LBA_INNER
@@ -1243,6 +1302,7 @@ Observation.DataProducts.Output_Correlated_[152].subband=152
 Observation.DataProducts.Output_Correlated_[153].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[153].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[153].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[153].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[153].SAP=0
 Observation.DataProducts.Output_Correlated_[153].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[153].antennaSet=LBA_INNER
@@ -1264,6 +1324,7 @@ Observation.DataProducts.Output_Correlated_[153].subband=153
 Observation.DataProducts.Output_Correlated_[154].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[154].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[154].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[154].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[154].SAP=0
 Observation.DataProducts.Output_Correlated_[154].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[154].antennaSet=LBA_INNER
@@ -1285,6 +1346,7 @@ Observation.DataProducts.Output_Correlated_[154].subband=154
 Observation.DataProducts.Output_Correlated_[155].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[155].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[155].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[155].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[155].SAP=0
 Observation.DataProducts.Output_Correlated_[155].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[155].antennaSet=LBA_INNER
@@ -1306,6 +1368,7 @@ Observation.DataProducts.Output_Correlated_[155].subband=155
 Observation.DataProducts.Output_Correlated_[156].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[156].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[156].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[156].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[156].SAP=0
 Observation.DataProducts.Output_Correlated_[156].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[156].antennaSet=LBA_INNER
@@ -1327,6 +1390,7 @@ Observation.DataProducts.Output_Correlated_[156].subband=156
 Observation.DataProducts.Output_Correlated_[157].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[157].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[157].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[157].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[157].SAP=0
 Observation.DataProducts.Output_Correlated_[157].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[157].antennaSet=LBA_INNER
@@ -1348,6 +1412,7 @@ Observation.DataProducts.Output_Correlated_[157].subband=157
 Observation.DataProducts.Output_Correlated_[158].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[158].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[158].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[158].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[158].SAP=0
 Observation.DataProducts.Output_Correlated_[158].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[158].antennaSet=LBA_INNER
@@ -1369,6 +1434,7 @@ Observation.DataProducts.Output_Correlated_[158].subband=158
 Observation.DataProducts.Output_Correlated_[159].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[159].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[159].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[159].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[159].SAP=0
 Observation.DataProducts.Output_Correlated_[159].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[159].antennaSet=LBA_INNER
@@ -1390,6 +1456,7 @@ Observation.DataProducts.Output_Correlated_[159].subband=159
 Observation.DataProducts.Output_Correlated_[15].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[15].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[15].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[15].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[15].SAP=0
 Observation.DataProducts.Output_Correlated_[15].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[15].antennaSet=LBA_INNER
@@ -1411,6 +1478,7 @@ Observation.DataProducts.Output_Correlated_[15].subband=15
 Observation.DataProducts.Output_Correlated_[160].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[160].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[160].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[160].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[160].SAP=0
 Observation.DataProducts.Output_Correlated_[160].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[160].antennaSet=LBA_INNER
@@ -1432,6 +1500,7 @@ Observation.DataProducts.Output_Correlated_[160].subband=160
 Observation.DataProducts.Output_Correlated_[161].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[161].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[161].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[161].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[161].SAP=0
 Observation.DataProducts.Output_Correlated_[161].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[161].antennaSet=LBA_INNER
@@ -1453,6 +1522,7 @@ Observation.DataProducts.Output_Correlated_[161].subband=161
 Observation.DataProducts.Output_Correlated_[162].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[162].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[162].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[162].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[162].SAP=0
 Observation.DataProducts.Output_Correlated_[162].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[162].antennaSet=LBA_INNER
@@ -1474,6 +1544,7 @@ Observation.DataProducts.Output_Correlated_[162].subband=162
 Observation.DataProducts.Output_Correlated_[163].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[163].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[163].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[163].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[163].SAP=0
 Observation.DataProducts.Output_Correlated_[163].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[163].antennaSet=LBA_INNER
@@ -1495,6 +1566,7 @@ Observation.DataProducts.Output_Correlated_[163].subband=163
 Observation.DataProducts.Output_Correlated_[164].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[164].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[164].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[164].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[164].SAP=0
 Observation.DataProducts.Output_Correlated_[164].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[164].antennaSet=LBA_INNER
@@ -1516,6 +1588,7 @@ Observation.DataProducts.Output_Correlated_[164].subband=164
 Observation.DataProducts.Output_Correlated_[165].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[165].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[165].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[165].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[165].SAP=0
 Observation.DataProducts.Output_Correlated_[165].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[165].antennaSet=LBA_INNER
@@ -1537,6 +1610,7 @@ Observation.DataProducts.Output_Correlated_[165].subband=165
 Observation.DataProducts.Output_Correlated_[166].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[166].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[166].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[166].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[166].SAP=0
 Observation.DataProducts.Output_Correlated_[166].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[166].antennaSet=LBA_INNER
@@ -1558,6 +1632,7 @@ Observation.DataProducts.Output_Correlated_[166].subband=166
 Observation.DataProducts.Output_Correlated_[167].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[167].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[167].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[167].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[167].SAP=0
 Observation.DataProducts.Output_Correlated_[167].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[167].antennaSet=LBA_INNER
@@ -1579,6 +1654,7 @@ Observation.DataProducts.Output_Correlated_[167].subband=167
 Observation.DataProducts.Output_Correlated_[168].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[168].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[168].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[168].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[168].SAP=0
 Observation.DataProducts.Output_Correlated_[168].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[168].antennaSet=LBA_INNER
@@ -1600,6 +1676,7 @@ Observation.DataProducts.Output_Correlated_[168].subband=168
 Observation.DataProducts.Output_Correlated_[169].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[169].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[169].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[169].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[169].SAP=0
 Observation.DataProducts.Output_Correlated_[169].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[169].antennaSet=LBA_INNER
@@ -1621,6 +1698,7 @@ Observation.DataProducts.Output_Correlated_[169].subband=169
 Observation.DataProducts.Output_Correlated_[16].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[16].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[16].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[16].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[16].SAP=0
 Observation.DataProducts.Output_Correlated_[16].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[16].antennaSet=LBA_INNER
@@ -1642,6 +1720,7 @@ Observation.DataProducts.Output_Correlated_[16].subband=16
 Observation.DataProducts.Output_Correlated_[170].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[170].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[170].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[170].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[170].SAP=0
 Observation.DataProducts.Output_Correlated_[170].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[170].antennaSet=LBA_INNER
@@ -1663,6 +1742,7 @@ Observation.DataProducts.Output_Correlated_[170].subband=170
 Observation.DataProducts.Output_Correlated_[171].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[171].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[171].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[171].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[171].SAP=0
 Observation.DataProducts.Output_Correlated_[171].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[171].antennaSet=LBA_INNER
@@ -1684,6 +1764,7 @@ Observation.DataProducts.Output_Correlated_[171].subband=171
 Observation.DataProducts.Output_Correlated_[172].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[172].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[172].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[172].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[172].SAP=0
 Observation.DataProducts.Output_Correlated_[172].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[172].antennaSet=LBA_INNER
@@ -1705,6 +1786,7 @@ Observation.DataProducts.Output_Correlated_[172].subband=172
 Observation.DataProducts.Output_Correlated_[173].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[173].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[173].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[173].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[173].SAP=0
 Observation.DataProducts.Output_Correlated_[173].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[173].antennaSet=LBA_INNER
@@ -1726,6 +1808,7 @@ Observation.DataProducts.Output_Correlated_[173].subband=173
 Observation.DataProducts.Output_Correlated_[174].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[174].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[174].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[174].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[174].SAP=0
 Observation.DataProducts.Output_Correlated_[174].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[174].antennaSet=LBA_INNER
@@ -1747,6 +1830,7 @@ Observation.DataProducts.Output_Correlated_[174].subband=174
 Observation.DataProducts.Output_Correlated_[175].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[175].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[175].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[175].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[175].SAP=0
 Observation.DataProducts.Output_Correlated_[175].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[175].antennaSet=LBA_INNER
@@ -1768,6 +1852,7 @@ Observation.DataProducts.Output_Correlated_[175].subband=175
 Observation.DataProducts.Output_Correlated_[176].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[176].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[176].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[176].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[176].SAP=0
 Observation.DataProducts.Output_Correlated_[176].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[176].antennaSet=LBA_INNER
@@ -1789,6 +1874,7 @@ Observation.DataProducts.Output_Correlated_[176].subband=176
 Observation.DataProducts.Output_Correlated_[177].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[177].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[177].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[177].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[177].SAP=0
 Observation.DataProducts.Output_Correlated_[177].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[177].antennaSet=LBA_INNER
@@ -1810,6 +1896,7 @@ Observation.DataProducts.Output_Correlated_[177].subband=177
 Observation.DataProducts.Output_Correlated_[178].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[178].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[178].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[178].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[178].SAP=0
 Observation.DataProducts.Output_Correlated_[178].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[178].antennaSet=LBA_INNER
@@ -1831,6 +1918,7 @@ Observation.DataProducts.Output_Correlated_[178].subband=178
 Observation.DataProducts.Output_Correlated_[179].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[179].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[179].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[179].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[179].SAP=0
 Observation.DataProducts.Output_Correlated_[179].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[179].antennaSet=LBA_INNER
@@ -1852,6 +1940,7 @@ Observation.DataProducts.Output_Correlated_[179].subband=179
 Observation.DataProducts.Output_Correlated_[17].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[17].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[17].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[17].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[17].SAP=0
 Observation.DataProducts.Output_Correlated_[17].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[17].antennaSet=LBA_INNER
@@ -1873,6 +1962,7 @@ Observation.DataProducts.Output_Correlated_[17].subband=17
 Observation.DataProducts.Output_Correlated_[180].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[180].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[180].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[180].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[180].SAP=0
 Observation.DataProducts.Output_Correlated_[180].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[180].antennaSet=LBA_INNER
@@ -1894,6 +1984,7 @@ Observation.DataProducts.Output_Correlated_[180].subband=180
 Observation.DataProducts.Output_Correlated_[181].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[181].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[181].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[181].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[181].SAP=0
 Observation.DataProducts.Output_Correlated_[181].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[181].antennaSet=LBA_INNER
@@ -1915,6 +2006,7 @@ Observation.DataProducts.Output_Correlated_[181].subband=181
 Observation.DataProducts.Output_Correlated_[182].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[182].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[182].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[182].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[182].SAP=0
 Observation.DataProducts.Output_Correlated_[182].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[182].antennaSet=LBA_INNER
@@ -1936,6 +2028,7 @@ Observation.DataProducts.Output_Correlated_[182].subband=182
 Observation.DataProducts.Output_Correlated_[183].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[183].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[183].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[183].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[183].SAP=0
 Observation.DataProducts.Output_Correlated_[183].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[183].antennaSet=LBA_INNER
@@ -1957,6 +2050,7 @@ Observation.DataProducts.Output_Correlated_[183].subband=183
 Observation.DataProducts.Output_Correlated_[184].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[184].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[184].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[184].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[184].SAP=0
 Observation.DataProducts.Output_Correlated_[184].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[184].antennaSet=LBA_INNER
@@ -1978,6 +2072,7 @@ Observation.DataProducts.Output_Correlated_[184].subband=184
 Observation.DataProducts.Output_Correlated_[185].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[185].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[185].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[185].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[185].SAP=0
 Observation.DataProducts.Output_Correlated_[185].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[185].antennaSet=LBA_INNER
@@ -1999,6 +2094,7 @@ Observation.DataProducts.Output_Correlated_[185].subband=185
 Observation.DataProducts.Output_Correlated_[186].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[186].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[186].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[186].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[186].SAP=0
 Observation.DataProducts.Output_Correlated_[186].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[186].antennaSet=LBA_INNER
@@ -2020,6 +2116,7 @@ Observation.DataProducts.Output_Correlated_[186].subband=186
 Observation.DataProducts.Output_Correlated_[187].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[187].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[187].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[187].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[187].SAP=0
 Observation.DataProducts.Output_Correlated_[187].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[187].antennaSet=LBA_INNER
@@ -2041,6 +2138,7 @@ Observation.DataProducts.Output_Correlated_[187].subband=187
 Observation.DataProducts.Output_Correlated_[188].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[188].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[188].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[188].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[188].SAP=0
 Observation.DataProducts.Output_Correlated_[188].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[188].antennaSet=LBA_INNER
@@ -2062,6 +2160,7 @@ Observation.DataProducts.Output_Correlated_[188].subband=188
 Observation.DataProducts.Output_Correlated_[189].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[189].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[189].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[189].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[189].SAP=0
 Observation.DataProducts.Output_Correlated_[189].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[189].antennaSet=LBA_INNER
@@ -2083,6 +2182,7 @@ Observation.DataProducts.Output_Correlated_[189].subband=189
 Observation.DataProducts.Output_Correlated_[18].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[18].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[18].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[18].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[18].SAP=0
 Observation.DataProducts.Output_Correlated_[18].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[18].antennaSet=LBA_INNER
@@ -2104,6 +2204,7 @@ Observation.DataProducts.Output_Correlated_[18].subband=18
 Observation.DataProducts.Output_Correlated_[190].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[190].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[190].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[190].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[190].SAP=0
 Observation.DataProducts.Output_Correlated_[190].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[190].antennaSet=LBA_INNER
@@ -2125,6 +2226,7 @@ Observation.DataProducts.Output_Correlated_[190].subband=190
 Observation.DataProducts.Output_Correlated_[191].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[191].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[191].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[191].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[191].SAP=0
 Observation.DataProducts.Output_Correlated_[191].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[191].antennaSet=LBA_INNER
@@ -2146,6 +2248,7 @@ Observation.DataProducts.Output_Correlated_[191].subband=191
 Observation.DataProducts.Output_Correlated_[192].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[192].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[192].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[192].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[192].SAP=0
 Observation.DataProducts.Output_Correlated_[192].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[192].antennaSet=LBA_INNER
@@ -2167,6 +2270,7 @@ Observation.DataProducts.Output_Correlated_[192].subband=192
 Observation.DataProducts.Output_Correlated_[193].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[193].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[193].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[193].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[193].SAP=0
 Observation.DataProducts.Output_Correlated_[193].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[193].antennaSet=LBA_INNER
@@ -2188,6 +2292,7 @@ Observation.DataProducts.Output_Correlated_[193].subband=193
 Observation.DataProducts.Output_Correlated_[194].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[194].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[194].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[194].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[194].SAP=0
 Observation.DataProducts.Output_Correlated_[194].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[194].antennaSet=LBA_INNER
@@ -2209,6 +2314,7 @@ Observation.DataProducts.Output_Correlated_[194].subband=194
 Observation.DataProducts.Output_Correlated_[195].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[195].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[195].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[195].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[195].SAP=0
 Observation.DataProducts.Output_Correlated_[195].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[195].antennaSet=LBA_INNER
@@ -2230,6 +2336,7 @@ Observation.DataProducts.Output_Correlated_[195].subband=195
 Observation.DataProducts.Output_Correlated_[196].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[196].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[196].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[196].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[196].SAP=0
 Observation.DataProducts.Output_Correlated_[196].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[196].antennaSet=LBA_INNER
@@ -2251,6 +2358,7 @@ Observation.DataProducts.Output_Correlated_[196].subband=196
 Observation.DataProducts.Output_Correlated_[197].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[197].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[197].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[197].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[197].SAP=0
 Observation.DataProducts.Output_Correlated_[197].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[197].antennaSet=LBA_INNER
@@ -2272,6 +2380,7 @@ Observation.DataProducts.Output_Correlated_[197].subband=197
 Observation.DataProducts.Output_Correlated_[198].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[198].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[198].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[198].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[198].SAP=0
 Observation.DataProducts.Output_Correlated_[198].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[198].antennaSet=LBA_INNER
@@ -2293,6 +2402,7 @@ Observation.DataProducts.Output_Correlated_[198].subband=198
 Observation.DataProducts.Output_Correlated_[199].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[199].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[199].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[199].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[199].SAP=0
 Observation.DataProducts.Output_Correlated_[199].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[199].antennaSet=LBA_INNER
@@ -2314,6 +2424,7 @@ Observation.DataProducts.Output_Correlated_[199].subband=199
 Observation.DataProducts.Output_Correlated_[19].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[19].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[19].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[19].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[19].SAP=0
 Observation.DataProducts.Output_Correlated_[19].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[19].antennaSet=LBA_INNER
@@ -2335,6 +2446,7 @@ Observation.DataProducts.Output_Correlated_[19].subband=19
 Observation.DataProducts.Output_Correlated_[1].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[1].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[1].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[1].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[1].SAP=0
 Observation.DataProducts.Output_Correlated_[1].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[1].antennaSet=LBA_INNER
@@ -2356,6 +2468,7 @@ Observation.DataProducts.Output_Correlated_[1].subband=1
 Observation.DataProducts.Output_Correlated_[200].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[200].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[200].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[200].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[200].SAP=0
 Observation.DataProducts.Output_Correlated_[200].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[200].antennaSet=LBA_INNER
@@ -2377,6 +2490,7 @@ Observation.DataProducts.Output_Correlated_[200].subband=200
 Observation.DataProducts.Output_Correlated_[201].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[201].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[201].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[201].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[201].SAP=0
 Observation.DataProducts.Output_Correlated_[201].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[201].antennaSet=LBA_INNER
@@ -2398,6 +2512,7 @@ Observation.DataProducts.Output_Correlated_[201].subband=201
 Observation.DataProducts.Output_Correlated_[202].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[202].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[202].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[202].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[202].SAP=0
 Observation.DataProducts.Output_Correlated_[202].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[202].antennaSet=LBA_INNER
@@ -2419,6 +2534,7 @@ Observation.DataProducts.Output_Correlated_[202].subband=202
 Observation.DataProducts.Output_Correlated_[203].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[203].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[203].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[203].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[203].SAP=0
 Observation.DataProducts.Output_Correlated_[203].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[203].antennaSet=LBA_INNER
@@ -2440,6 +2556,7 @@ Observation.DataProducts.Output_Correlated_[203].subband=203
 Observation.DataProducts.Output_Correlated_[204].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[204].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[204].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[204].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[204].SAP=0
 Observation.DataProducts.Output_Correlated_[204].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[204].antennaSet=LBA_INNER
@@ -2461,6 +2578,7 @@ Observation.DataProducts.Output_Correlated_[204].subband=204
 Observation.DataProducts.Output_Correlated_[205].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[205].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[205].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[205].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[205].SAP=0
 Observation.DataProducts.Output_Correlated_[205].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[205].antennaSet=LBA_INNER
@@ -2482,6 +2600,7 @@ Observation.DataProducts.Output_Correlated_[205].subband=205
 Observation.DataProducts.Output_Correlated_[206].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[206].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[206].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[206].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[206].SAP=0
 Observation.DataProducts.Output_Correlated_[206].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[206].antennaSet=LBA_INNER
@@ -2503,6 +2622,7 @@ Observation.DataProducts.Output_Correlated_[206].subband=206
 Observation.DataProducts.Output_Correlated_[207].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[207].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[207].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[207].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[207].SAP=0
 Observation.DataProducts.Output_Correlated_[207].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[207].antennaSet=LBA_INNER
@@ -2524,6 +2644,7 @@ Observation.DataProducts.Output_Correlated_[207].subband=207
 Observation.DataProducts.Output_Correlated_[208].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[208].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[208].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[208].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[208].SAP=0
 Observation.DataProducts.Output_Correlated_[208].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[208].antennaSet=LBA_INNER
@@ -2545,6 +2666,7 @@ Observation.DataProducts.Output_Correlated_[208].subband=208
 Observation.DataProducts.Output_Correlated_[209].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[209].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[209].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[209].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[209].SAP=0
 Observation.DataProducts.Output_Correlated_[209].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[209].antennaSet=LBA_INNER
@@ -2566,6 +2688,7 @@ Observation.DataProducts.Output_Correlated_[209].subband=209
 Observation.DataProducts.Output_Correlated_[20].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[20].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[20].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[20].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[20].SAP=0
 Observation.DataProducts.Output_Correlated_[20].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[20].antennaSet=LBA_INNER
@@ -2587,6 +2710,7 @@ Observation.DataProducts.Output_Correlated_[20].subband=20
 Observation.DataProducts.Output_Correlated_[210].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[210].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[210].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[210].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[210].SAP=0
 Observation.DataProducts.Output_Correlated_[210].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[210].antennaSet=LBA_INNER
@@ -2608,6 +2732,7 @@ Observation.DataProducts.Output_Correlated_[210].subband=210
 Observation.DataProducts.Output_Correlated_[211].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[211].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[211].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[211].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[211].SAP=0
 Observation.DataProducts.Output_Correlated_[211].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[211].antennaSet=LBA_INNER
@@ -2629,6 +2754,7 @@ Observation.DataProducts.Output_Correlated_[211].subband=211
 Observation.DataProducts.Output_Correlated_[212].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[212].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[212].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[212].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[212].SAP=0
 Observation.DataProducts.Output_Correlated_[212].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[212].antennaSet=LBA_INNER
@@ -2650,6 +2776,7 @@ Observation.DataProducts.Output_Correlated_[212].subband=212
 Observation.DataProducts.Output_Correlated_[213].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[213].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[213].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[213].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[213].SAP=0
 Observation.DataProducts.Output_Correlated_[213].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[213].antennaSet=LBA_INNER
@@ -2671,6 +2798,7 @@ Observation.DataProducts.Output_Correlated_[213].subband=213
 Observation.DataProducts.Output_Correlated_[214].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[214].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[214].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[214].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[214].SAP=0
 Observation.DataProducts.Output_Correlated_[214].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[214].antennaSet=LBA_INNER
@@ -2692,6 +2820,7 @@ Observation.DataProducts.Output_Correlated_[214].subband=214
 Observation.DataProducts.Output_Correlated_[215].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[215].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[215].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[215].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[215].SAP=0
 Observation.DataProducts.Output_Correlated_[215].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[215].antennaSet=LBA_INNER
@@ -2713,6 +2842,7 @@ Observation.DataProducts.Output_Correlated_[215].subband=215
 Observation.DataProducts.Output_Correlated_[216].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[216].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[216].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[216].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[216].SAP=0
 Observation.DataProducts.Output_Correlated_[216].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[216].antennaSet=LBA_INNER
@@ -2734,6 +2864,7 @@ Observation.DataProducts.Output_Correlated_[216].subband=216
 Observation.DataProducts.Output_Correlated_[217].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[217].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[217].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[217].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[217].SAP=0
 Observation.DataProducts.Output_Correlated_[217].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[217].antennaSet=LBA_INNER
@@ -2755,6 +2886,7 @@ Observation.DataProducts.Output_Correlated_[217].subband=217
 Observation.DataProducts.Output_Correlated_[218].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[218].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[218].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[218].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[218].SAP=0
 Observation.DataProducts.Output_Correlated_[218].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[218].antennaSet=LBA_INNER
@@ -2776,6 +2908,7 @@ Observation.DataProducts.Output_Correlated_[218].subband=218
 Observation.DataProducts.Output_Correlated_[219].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[219].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[219].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[219].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[219].SAP=0
 Observation.DataProducts.Output_Correlated_[219].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[219].antennaSet=LBA_INNER
@@ -2797,6 +2930,7 @@ Observation.DataProducts.Output_Correlated_[219].subband=219
 Observation.DataProducts.Output_Correlated_[21].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[21].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[21].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[21].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[21].SAP=0
 Observation.DataProducts.Output_Correlated_[21].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[21].antennaSet=LBA_INNER
@@ -2818,6 +2952,7 @@ Observation.DataProducts.Output_Correlated_[21].subband=21
 Observation.DataProducts.Output_Correlated_[220].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[220].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[220].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[220].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[220].SAP=0
 Observation.DataProducts.Output_Correlated_[220].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[220].antennaSet=LBA_INNER
@@ -2839,6 +2974,7 @@ Observation.DataProducts.Output_Correlated_[220].subband=220
 Observation.DataProducts.Output_Correlated_[221].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[221].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[221].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[221].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[221].SAP=0
 Observation.DataProducts.Output_Correlated_[221].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[221].antennaSet=LBA_INNER
@@ -2860,6 +2996,7 @@ Observation.DataProducts.Output_Correlated_[221].subband=221
 Observation.DataProducts.Output_Correlated_[222].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[222].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[222].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[222].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[222].SAP=0
 Observation.DataProducts.Output_Correlated_[222].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[222].antennaSet=LBA_INNER
@@ -2881,6 +3018,7 @@ Observation.DataProducts.Output_Correlated_[222].subband=222
 Observation.DataProducts.Output_Correlated_[223].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[223].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[223].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[223].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[223].SAP=0
 Observation.DataProducts.Output_Correlated_[223].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[223].antennaSet=LBA_INNER
@@ -2902,6 +3040,7 @@ Observation.DataProducts.Output_Correlated_[223].subband=223
 Observation.DataProducts.Output_Correlated_[224].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[224].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[224].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[224].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[224].SAP=0
 Observation.DataProducts.Output_Correlated_[224].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[224].antennaSet=LBA_INNER
@@ -2923,6 +3062,7 @@ Observation.DataProducts.Output_Correlated_[224].subband=224
 Observation.DataProducts.Output_Correlated_[225].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[225].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[225].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[225].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[225].SAP=0
 Observation.DataProducts.Output_Correlated_[225].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[225].antennaSet=LBA_INNER
@@ -2944,6 +3084,7 @@ Observation.DataProducts.Output_Correlated_[225].subband=225
 Observation.DataProducts.Output_Correlated_[226].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[226].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[226].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[226].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[226].SAP=0
 Observation.DataProducts.Output_Correlated_[226].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[226].antennaSet=LBA_INNER
@@ -2965,6 +3106,7 @@ Observation.DataProducts.Output_Correlated_[226].subband=226
 Observation.DataProducts.Output_Correlated_[227].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[227].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[227].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[227].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[227].SAP=0
 Observation.DataProducts.Output_Correlated_[227].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[227].antennaSet=LBA_INNER
@@ -2986,6 +3128,7 @@ Observation.DataProducts.Output_Correlated_[227].subband=227
 Observation.DataProducts.Output_Correlated_[228].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[228].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[228].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[228].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[228].SAP=0
 Observation.DataProducts.Output_Correlated_[228].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[228].antennaSet=LBA_INNER
@@ -3007,6 +3150,7 @@ Observation.DataProducts.Output_Correlated_[228].subband=228
 Observation.DataProducts.Output_Correlated_[229].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[229].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[229].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[229].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[229].SAP=0
 Observation.DataProducts.Output_Correlated_[229].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[229].antennaSet=LBA_INNER
@@ -3028,6 +3172,7 @@ Observation.DataProducts.Output_Correlated_[229].subband=229
 Observation.DataProducts.Output_Correlated_[22].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[22].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[22].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[22].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[22].SAP=0
 Observation.DataProducts.Output_Correlated_[22].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[22].antennaSet=LBA_INNER
@@ -3049,6 +3194,7 @@ Observation.DataProducts.Output_Correlated_[22].subband=22
 Observation.DataProducts.Output_Correlated_[230].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[230].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[230].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[230].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[230].SAP=0
 Observation.DataProducts.Output_Correlated_[230].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[230].antennaSet=LBA_INNER
@@ -3070,6 +3216,7 @@ Observation.DataProducts.Output_Correlated_[230].subband=230
 Observation.DataProducts.Output_Correlated_[231].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[231].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[231].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[231].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[231].SAP=0
 Observation.DataProducts.Output_Correlated_[231].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[231].antennaSet=LBA_INNER
@@ -3091,6 +3238,7 @@ Observation.DataProducts.Output_Correlated_[231].subband=231
 Observation.DataProducts.Output_Correlated_[232].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[232].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[232].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[232].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[232].SAP=0
 Observation.DataProducts.Output_Correlated_[232].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[232].antennaSet=LBA_INNER
@@ -3112,6 +3260,7 @@ Observation.DataProducts.Output_Correlated_[232].subband=232
 Observation.DataProducts.Output_Correlated_[233].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[233].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[233].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[233].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[233].SAP=0
 Observation.DataProducts.Output_Correlated_[233].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[233].antennaSet=LBA_INNER
@@ -3133,6 +3282,7 @@ Observation.DataProducts.Output_Correlated_[233].subband=233
 Observation.DataProducts.Output_Correlated_[234].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[234].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[234].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[234].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[234].SAP=0
 Observation.DataProducts.Output_Correlated_[234].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[234].antennaSet=LBA_INNER
@@ -3154,6 +3304,7 @@ Observation.DataProducts.Output_Correlated_[234].subband=234
 Observation.DataProducts.Output_Correlated_[235].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[235].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[235].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[235].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[235].SAP=0
 Observation.DataProducts.Output_Correlated_[235].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[235].antennaSet=LBA_INNER
@@ -3175,6 +3326,7 @@ Observation.DataProducts.Output_Correlated_[235].subband=235
 Observation.DataProducts.Output_Correlated_[236].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[236].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[236].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[236].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[236].SAP=0
 Observation.DataProducts.Output_Correlated_[236].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[236].antennaSet=LBA_INNER
@@ -3196,6 +3348,7 @@ Observation.DataProducts.Output_Correlated_[236].subband=236
 Observation.DataProducts.Output_Correlated_[237].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[237].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[237].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[237].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[237].SAP=0
 Observation.DataProducts.Output_Correlated_[237].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[237].antennaSet=LBA_INNER
@@ -3217,6 +3370,7 @@ Observation.DataProducts.Output_Correlated_[237].subband=237
 Observation.DataProducts.Output_Correlated_[238].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[238].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[238].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[238].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[238].SAP=0
 Observation.DataProducts.Output_Correlated_[238].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[238].antennaSet=LBA_INNER
@@ -3238,6 +3392,7 @@ Observation.DataProducts.Output_Correlated_[238].subband=238
 Observation.DataProducts.Output_Correlated_[239].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[239].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[239].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[239].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[239].SAP=0
 Observation.DataProducts.Output_Correlated_[239].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[239].antennaSet=LBA_INNER
@@ -3259,6 +3414,7 @@ Observation.DataProducts.Output_Correlated_[239].subband=239
 Observation.DataProducts.Output_Correlated_[23].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[23].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[23].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[23].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[23].SAP=0
 Observation.DataProducts.Output_Correlated_[23].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[23].antennaSet=LBA_INNER
@@ -3280,6 +3436,7 @@ Observation.DataProducts.Output_Correlated_[23].subband=23
 Observation.DataProducts.Output_Correlated_[240].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[240].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[240].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[240].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[240].SAP=0
 Observation.DataProducts.Output_Correlated_[240].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[240].antennaSet=LBA_INNER
@@ -3301,6 +3458,7 @@ Observation.DataProducts.Output_Correlated_[240].subband=240
 Observation.DataProducts.Output_Correlated_[241].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[241].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[241].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[241].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[241].SAP=0
 Observation.DataProducts.Output_Correlated_[241].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[241].antennaSet=LBA_INNER
@@ -3322,6 +3480,7 @@ Observation.DataProducts.Output_Correlated_[241].subband=241
 Observation.DataProducts.Output_Correlated_[242].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[242].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[242].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[242].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[242].SAP=0
 Observation.DataProducts.Output_Correlated_[242].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[242].antennaSet=LBA_INNER
@@ -3343,6 +3502,7 @@ Observation.DataProducts.Output_Correlated_[242].subband=242
 Observation.DataProducts.Output_Correlated_[243].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[243].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[243].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[243].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[243].SAP=0
 Observation.DataProducts.Output_Correlated_[243].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[243].antennaSet=LBA_INNER
@@ -3364,6 +3524,7 @@ Observation.DataProducts.Output_Correlated_[243].subband=243
 Observation.DataProducts.Output_Correlated_[24].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[24].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[24].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[24].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[24].SAP=0
 Observation.DataProducts.Output_Correlated_[24].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[24].antennaSet=LBA_INNER
@@ -3385,6 +3546,7 @@ Observation.DataProducts.Output_Correlated_[24].subband=24
 Observation.DataProducts.Output_Correlated_[25].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[25].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[25].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[25].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[25].SAP=0
 Observation.DataProducts.Output_Correlated_[25].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[25].antennaSet=LBA_INNER
@@ -3406,6 +3568,7 @@ Observation.DataProducts.Output_Correlated_[25].subband=25
 Observation.DataProducts.Output_Correlated_[26].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[26].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[26].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[26].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[26].SAP=0
 Observation.DataProducts.Output_Correlated_[26].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[26].antennaSet=LBA_INNER
@@ -3427,6 +3590,7 @@ Observation.DataProducts.Output_Correlated_[26].subband=26
 Observation.DataProducts.Output_Correlated_[27].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[27].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[27].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[27].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[27].SAP=0
 Observation.DataProducts.Output_Correlated_[27].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[27].antennaSet=LBA_INNER
@@ -3448,6 +3612,7 @@ Observation.DataProducts.Output_Correlated_[27].subband=27
 Observation.DataProducts.Output_Correlated_[28].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[28].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[28].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[28].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[28].SAP=0
 Observation.DataProducts.Output_Correlated_[28].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[28].antennaSet=LBA_INNER
@@ -3469,6 +3634,7 @@ Observation.DataProducts.Output_Correlated_[28].subband=28
 Observation.DataProducts.Output_Correlated_[29].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[29].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[29].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[29].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[29].SAP=0
 Observation.DataProducts.Output_Correlated_[29].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[29].antennaSet=LBA_INNER
@@ -3490,6 +3656,7 @@ Observation.DataProducts.Output_Correlated_[29].subband=29
 Observation.DataProducts.Output_Correlated_[2].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[2].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[2].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[2].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[2].SAP=0
 Observation.DataProducts.Output_Correlated_[2].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[2].antennaSet=LBA_INNER
@@ -3511,6 +3678,7 @@ Observation.DataProducts.Output_Correlated_[2].subband=2
 Observation.DataProducts.Output_Correlated_[30].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[30].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[30].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[30].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[30].SAP=0
 Observation.DataProducts.Output_Correlated_[30].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[30].antennaSet=LBA_INNER
@@ -3532,6 +3700,7 @@ Observation.DataProducts.Output_Correlated_[30].subband=30
 Observation.DataProducts.Output_Correlated_[31].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[31].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[31].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[31].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[31].SAP=0
 Observation.DataProducts.Output_Correlated_[31].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[31].antennaSet=LBA_INNER
@@ -3553,6 +3722,7 @@ Observation.DataProducts.Output_Correlated_[31].subband=31
 Observation.DataProducts.Output_Correlated_[32].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[32].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[32].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[32].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[32].SAP=0
 Observation.DataProducts.Output_Correlated_[32].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[32].antennaSet=LBA_INNER
@@ -3574,6 +3744,7 @@ Observation.DataProducts.Output_Correlated_[32].subband=32
 Observation.DataProducts.Output_Correlated_[33].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[33].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[33].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[33].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[33].SAP=0
 Observation.DataProducts.Output_Correlated_[33].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[33].antennaSet=LBA_INNER
@@ -3595,6 +3766,7 @@ Observation.DataProducts.Output_Correlated_[33].subband=33
 Observation.DataProducts.Output_Correlated_[34].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[34].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[34].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[34].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[34].SAP=0
 Observation.DataProducts.Output_Correlated_[34].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[34].antennaSet=LBA_INNER
@@ -3616,6 +3788,7 @@ Observation.DataProducts.Output_Correlated_[34].subband=34
 Observation.DataProducts.Output_Correlated_[35].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[35].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[35].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[35].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[35].SAP=0
 Observation.DataProducts.Output_Correlated_[35].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[35].antennaSet=LBA_INNER
@@ -3637,6 +3810,7 @@ Observation.DataProducts.Output_Correlated_[35].subband=35
 Observation.DataProducts.Output_Correlated_[36].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[36].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[36].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[36].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[36].SAP=0
 Observation.DataProducts.Output_Correlated_[36].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[36].antennaSet=LBA_INNER
@@ -3658,6 +3832,7 @@ Observation.DataProducts.Output_Correlated_[36].subband=36
 Observation.DataProducts.Output_Correlated_[37].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[37].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[37].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[37].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[37].SAP=0
 Observation.DataProducts.Output_Correlated_[37].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[37].antennaSet=LBA_INNER
@@ -3679,6 +3854,7 @@ Observation.DataProducts.Output_Correlated_[37].subband=37
 Observation.DataProducts.Output_Correlated_[38].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[38].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[38].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[38].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[38].SAP=0
 Observation.DataProducts.Output_Correlated_[38].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[38].antennaSet=LBA_INNER
@@ -3700,6 +3876,7 @@ Observation.DataProducts.Output_Correlated_[38].subband=38
 Observation.DataProducts.Output_Correlated_[39].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[39].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[39].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[39].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[39].SAP=0
 Observation.DataProducts.Output_Correlated_[39].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[39].antennaSet=LBA_INNER
@@ -3721,6 +3898,7 @@ Observation.DataProducts.Output_Correlated_[39].subband=39
 Observation.DataProducts.Output_Correlated_[3].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[3].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[3].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[3].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[3].SAP=0
 Observation.DataProducts.Output_Correlated_[3].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[3].antennaSet=LBA_INNER
@@ -3742,6 +3920,7 @@ Observation.DataProducts.Output_Correlated_[3].subband=3
 Observation.DataProducts.Output_Correlated_[40].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[40].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[40].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[40].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[40].SAP=0
 Observation.DataProducts.Output_Correlated_[40].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[40].antennaSet=LBA_INNER
@@ -3763,6 +3942,7 @@ Observation.DataProducts.Output_Correlated_[40].subband=40
 Observation.DataProducts.Output_Correlated_[41].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[41].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[41].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[41].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[41].SAP=0
 Observation.DataProducts.Output_Correlated_[41].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[41].antennaSet=LBA_INNER
@@ -3784,6 +3964,7 @@ Observation.DataProducts.Output_Correlated_[41].subband=41
 Observation.DataProducts.Output_Correlated_[42].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[42].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[42].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[42].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[42].SAP=0
 Observation.DataProducts.Output_Correlated_[42].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[42].antennaSet=LBA_INNER
@@ -3805,6 +3986,7 @@ Observation.DataProducts.Output_Correlated_[42].subband=42
 Observation.DataProducts.Output_Correlated_[43].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[43].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[43].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[43].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[43].SAP=0
 Observation.DataProducts.Output_Correlated_[43].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[43].antennaSet=LBA_INNER
@@ -3826,6 +4008,7 @@ Observation.DataProducts.Output_Correlated_[43].subband=43
 Observation.DataProducts.Output_Correlated_[44].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[44].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[44].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[44].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[44].SAP=0
 Observation.DataProducts.Output_Correlated_[44].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[44].antennaSet=LBA_INNER
@@ -3847,6 +4030,7 @@ Observation.DataProducts.Output_Correlated_[44].subband=44
 Observation.DataProducts.Output_Correlated_[45].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[45].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[45].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[45].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[45].SAP=0
 Observation.DataProducts.Output_Correlated_[45].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[45].antennaSet=LBA_INNER
@@ -3868,6 +4052,7 @@ Observation.DataProducts.Output_Correlated_[45].subband=45
 Observation.DataProducts.Output_Correlated_[46].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[46].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[46].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[46].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[46].SAP=0
 Observation.DataProducts.Output_Correlated_[46].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[46].antennaSet=LBA_INNER
@@ -3889,6 +4074,7 @@ Observation.DataProducts.Output_Correlated_[46].subband=46
 Observation.DataProducts.Output_Correlated_[47].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[47].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[47].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[47].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[47].SAP=0
 Observation.DataProducts.Output_Correlated_[47].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[47].antennaSet=LBA_INNER
@@ -3910,6 +4096,7 @@ Observation.DataProducts.Output_Correlated_[47].subband=47
 Observation.DataProducts.Output_Correlated_[48].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[48].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[48].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[48].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[48].SAP=0
 Observation.DataProducts.Output_Correlated_[48].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[48].antennaSet=LBA_INNER
@@ -3931,6 +4118,7 @@ Observation.DataProducts.Output_Correlated_[48].subband=48
 Observation.DataProducts.Output_Correlated_[49].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[49].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[49].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[49].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[49].SAP=0
 Observation.DataProducts.Output_Correlated_[49].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[49].antennaSet=LBA_INNER
@@ -3952,6 +4140,7 @@ Observation.DataProducts.Output_Correlated_[49].subband=49
 Observation.DataProducts.Output_Correlated_[4].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[4].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[4].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[4].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[4].SAP=0
 Observation.DataProducts.Output_Correlated_[4].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[4].antennaSet=LBA_INNER
@@ -3973,6 +4162,7 @@ Observation.DataProducts.Output_Correlated_[4].subband=4
 Observation.DataProducts.Output_Correlated_[50].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[50].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[50].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[50].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[50].SAP=0
 Observation.DataProducts.Output_Correlated_[50].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[50].antennaSet=LBA_INNER
@@ -3994,6 +4184,7 @@ Observation.DataProducts.Output_Correlated_[50].subband=50
 Observation.DataProducts.Output_Correlated_[51].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[51].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[51].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[51].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[51].SAP=0
 Observation.DataProducts.Output_Correlated_[51].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[51].antennaSet=LBA_INNER
@@ -4015,6 +4206,7 @@ Observation.DataProducts.Output_Correlated_[51].subband=51
 Observation.DataProducts.Output_Correlated_[52].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[52].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[52].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[52].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[52].SAP=0
 Observation.DataProducts.Output_Correlated_[52].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[52].antennaSet=LBA_INNER
@@ -4036,6 +4228,7 @@ Observation.DataProducts.Output_Correlated_[52].subband=52
 Observation.DataProducts.Output_Correlated_[53].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[53].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[53].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[53].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[53].SAP=0
 Observation.DataProducts.Output_Correlated_[53].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[53].antennaSet=LBA_INNER
@@ -4057,6 +4250,7 @@ Observation.DataProducts.Output_Correlated_[53].subband=53
 Observation.DataProducts.Output_Correlated_[54].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[54].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[54].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[54].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[54].SAP=0
 Observation.DataProducts.Output_Correlated_[54].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[54].antennaSet=LBA_INNER
@@ -4078,6 +4272,7 @@ Observation.DataProducts.Output_Correlated_[54].subband=54
 Observation.DataProducts.Output_Correlated_[55].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[55].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[55].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[55].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[55].SAP=0
 Observation.DataProducts.Output_Correlated_[55].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[55].antennaSet=LBA_INNER
@@ -4099,6 +4294,7 @@ Observation.DataProducts.Output_Correlated_[55].subband=55
 Observation.DataProducts.Output_Correlated_[56].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[56].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[56].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[56].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[56].SAP=0
 Observation.DataProducts.Output_Correlated_[56].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[56].antennaSet=LBA_INNER
@@ -4120,6 +4316,7 @@ Observation.DataProducts.Output_Correlated_[56].subband=56
 Observation.DataProducts.Output_Correlated_[57].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[57].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[57].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[57].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[57].SAP=0
 Observation.DataProducts.Output_Correlated_[57].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[57].antennaSet=LBA_INNER
@@ -4141,6 +4338,7 @@ Observation.DataProducts.Output_Correlated_[57].subband=57
 Observation.DataProducts.Output_Correlated_[58].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[58].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[58].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[58].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[58].SAP=0
 Observation.DataProducts.Output_Correlated_[58].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[58].antennaSet=LBA_INNER
@@ -4162,6 +4360,7 @@ Observation.DataProducts.Output_Correlated_[58].subband=58
 Observation.DataProducts.Output_Correlated_[59].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[59].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[59].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[59].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[59].SAP=0
 Observation.DataProducts.Output_Correlated_[59].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[59].antennaSet=LBA_INNER
@@ -4183,6 +4382,7 @@ Observation.DataProducts.Output_Correlated_[59].subband=59
 Observation.DataProducts.Output_Correlated_[5].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[5].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[5].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[5].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[5].SAP=0
 Observation.DataProducts.Output_Correlated_[5].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[5].antennaSet=LBA_INNER
@@ -4204,6 +4404,7 @@ Observation.DataProducts.Output_Correlated_[5].subband=5
 Observation.DataProducts.Output_Correlated_[60].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[60].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[60].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[60].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[60].SAP=0
 Observation.DataProducts.Output_Correlated_[60].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[60].antennaSet=LBA_INNER
@@ -4225,6 +4426,7 @@ Observation.DataProducts.Output_Correlated_[60].subband=60
 Observation.DataProducts.Output_Correlated_[61].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[61].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[61].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[61].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[61].SAP=0
 Observation.DataProducts.Output_Correlated_[61].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[61].antennaSet=LBA_INNER
@@ -4246,6 +4448,7 @@ Observation.DataProducts.Output_Correlated_[61].subband=61
 Observation.DataProducts.Output_Correlated_[62].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[62].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[62].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[62].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[62].SAP=0
 Observation.DataProducts.Output_Correlated_[62].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[62].antennaSet=LBA_INNER
@@ -4267,6 +4470,7 @@ Observation.DataProducts.Output_Correlated_[62].subband=62
 Observation.DataProducts.Output_Correlated_[63].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[63].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[63].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[63].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[63].SAP=0
 Observation.DataProducts.Output_Correlated_[63].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[63].antennaSet=LBA_INNER
@@ -4288,6 +4492,7 @@ Observation.DataProducts.Output_Correlated_[63].subband=63
 Observation.DataProducts.Output_Correlated_[64].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[64].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[64].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[64].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[64].SAP=0
 Observation.DataProducts.Output_Correlated_[64].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[64].antennaSet=LBA_INNER
@@ -4309,6 +4514,7 @@ Observation.DataProducts.Output_Correlated_[64].subband=64
 Observation.DataProducts.Output_Correlated_[65].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[65].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[65].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[65].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[65].SAP=0
 Observation.DataProducts.Output_Correlated_[65].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[65].antennaSet=LBA_INNER
@@ -4330,6 +4536,7 @@ Observation.DataProducts.Output_Correlated_[65].subband=65
 Observation.DataProducts.Output_Correlated_[66].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[66].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[66].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[66].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[66].SAP=0
 Observation.DataProducts.Output_Correlated_[66].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[66].antennaSet=LBA_INNER
@@ -4351,6 +4558,7 @@ Observation.DataProducts.Output_Correlated_[66].subband=66
 Observation.DataProducts.Output_Correlated_[67].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[67].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[67].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[67].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[67].SAP=0
 Observation.DataProducts.Output_Correlated_[67].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[67].antennaSet=LBA_INNER
@@ -4372,6 +4580,7 @@ Observation.DataProducts.Output_Correlated_[67].subband=67
 Observation.DataProducts.Output_Correlated_[68].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[68].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[68].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[68].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[68].SAP=0
 Observation.DataProducts.Output_Correlated_[68].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[68].antennaSet=LBA_INNER
@@ -4393,6 +4602,7 @@ Observation.DataProducts.Output_Correlated_[68].subband=68
 Observation.DataProducts.Output_Correlated_[69].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[69].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[69].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[69].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[69].SAP=0
 Observation.DataProducts.Output_Correlated_[69].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[69].antennaSet=LBA_INNER
@@ -4414,6 +4624,7 @@ Observation.DataProducts.Output_Correlated_[69].subband=69
 Observation.DataProducts.Output_Correlated_[6].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[6].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[6].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[6].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[6].SAP=0
 Observation.DataProducts.Output_Correlated_[6].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[6].antennaSet=LBA_INNER
@@ -4435,6 +4646,7 @@ Observation.DataProducts.Output_Correlated_[6].subband=6
 Observation.DataProducts.Output_Correlated_[70].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[70].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[70].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[70].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[70].SAP=0
 Observation.DataProducts.Output_Correlated_[70].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[70].antennaSet=LBA_INNER
@@ -4456,6 +4668,7 @@ Observation.DataProducts.Output_Correlated_[70].subband=70
 Observation.DataProducts.Output_Correlated_[71].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[71].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[71].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[71].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[71].SAP=0
 Observation.DataProducts.Output_Correlated_[71].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[71].antennaSet=LBA_INNER
@@ -4477,6 +4690,7 @@ Observation.DataProducts.Output_Correlated_[71].subband=71
 Observation.DataProducts.Output_Correlated_[72].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[72].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[72].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[72].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[72].SAP=0
 Observation.DataProducts.Output_Correlated_[72].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[72].antennaSet=LBA_INNER
@@ -4498,6 +4712,7 @@ Observation.DataProducts.Output_Correlated_[72].subband=72
 Observation.DataProducts.Output_Correlated_[73].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[73].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[73].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[73].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[73].SAP=0
 Observation.DataProducts.Output_Correlated_[73].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[73].antennaSet=LBA_INNER
@@ -4519,6 +4734,7 @@ Observation.DataProducts.Output_Correlated_[73].subband=73
 Observation.DataProducts.Output_Correlated_[74].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[74].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[74].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[74].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[74].SAP=0
 Observation.DataProducts.Output_Correlated_[74].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[74].antennaSet=LBA_INNER
@@ -4540,6 +4756,7 @@ Observation.DataProducts.Output_Correlated_[74].subband=74
 Observation.DataProducts.Output_Correlated_[75].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[75].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[75].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[75].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[75].SAP=0
 Observation.DataProducts.Output_Correlated_[75].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[75].antennaSet=LBA_INNER
@@ -4561,6 +4778,7 @@ Observation.DataProducts.Output_Correlated_[75].subband=75
 Observation.DataProducts.Output_Correlated_[76].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[76].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[76].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[76].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[76].SAP=0
 Observation.DataProducts.Output_Correlated_[76].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[76].antennaSet=LBA_INNER
@@ -4582,6 +4800,7 @@ Observation.DataProducts.Output_Correlated_[76].subband=76
 Observation.DataProducts.Output_Correlated_[77].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[77].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[77].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[77].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[77].SAP=0
 Observation.DataProducts.Output_Correlated_[77].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[77].antennaSet=LBA_INNER
@@ -4603,6 +4822,7 @@ Observation.DataProducts.Output_Correlated_[77].subband=77
 Observation.DataProducts.Output_Correlated_[78].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[78].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[78].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[78].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[78].SAP=0
 Observation.DataProducts.Output_Correlated_[78].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[78].antennaSet=LBA_INNER
@@ -4624,6 +4844,7 @@ Observation.DataProducts.Output_Correlated_[78].subband=78
 Observation.DataProducts.Output_Correlated_[79].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[79].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[79].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[79].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[79].SAP=0
 Observation.DataProducts.Output_Correlated_[79].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[79].antennaSet=LBA_INNER
@@ -4645,6 +4866,7 @@ Observation.DataProducts.Output_Correlated_[79].subband=79
 Observation.DataProducts.Output_Correlated_[7].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[7].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[7].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[7].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[7].SAP=0
 Observation.DataProducts.Output_Correlated_[7].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[7].antennaSet=LBA_INNER
@@ -4666,6 +4888,7 @@ Observation.DataProducts.Output_Correlated_[7].subband=7
 Observation.DataProducts.Output_Correlated_[80].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[80].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[80].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[80].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[80].SAP=0
 Observation.DataProducts.Output_Correlated_[80].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[80].antennaSet=LBA_INNER
@@ -4687,6 +4910,7 @@ Observation.DataProducts.Output_Correlated_[80].subband=80
 Observation.DataProducts.Output_Correlated_[81].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[81].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[81].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[81].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[81].SAP=0
 Observation.DataProducts.Output_Correlated_[81].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[81].antennaSet=LBA_INNER
@@ -4708,6 +4932,7 @@ Observation.DataProducts.Output_Correlated_[81].subband=81
 Observation.DataProducts.Output_Correlated_[82].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[82].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[82].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[82].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[82].SAP=0
 Observation.DataProducts.Output_Correlated_[82].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[82].antennaSet=LBA_INNER
@@ -4729,6 +4954,7 @@ Observation.DataProducts.Output_Correlated_[82].subband=82
 Observation.DataProducts.Output_Correlated_[83].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[83].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[83].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[83].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[83].SAP=0
 Observation.DataProducts.Output_Correlated_[83].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[83].antennaSet=LBA_INNER
@@ -4750,6 +4976,7 @@ Observation.DataProducts.Output_Correlated_[83].subband=83
 Observation.DataProducts.Output_Correlated_[84].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[84].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[84].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[84].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[84].SAP=0
 Observation.DataProducts.Output_Correlated_[84].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[84].antennaSet=LBA_INNER
@@ -4771,6 +4998,7 @@ Observation.DataProducts.Output_Correlated_[84].subband=84
 Observation.DataProducts.Output_Correlated_[85].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[85].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[85].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[85].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[85].SAP=0
 Observation.DataProducts.Output_Correlated_[85].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[85].antennaSet=LBA_INNER
@@ -4792,6 +5020,7 @@ Observation.DataProducts.Output_Correlated_[85].subband=85
 Observation.DataProducts.Output_Correlated_[86].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[86].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[86].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[86].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[86].SAP=0
 Observation.DataProducts.Output_Correlated_[86].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[86].antennaSet=LBA_INNER
@@ -4813,6 +5042,7 @@ Observation.DataProducts.Output_Correlated_[86].subband=86
 Observation.DataProducts.Output_Correlated_[87].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[87].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[87].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[87].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[87].SAP=0
 Observation.DataProducts.Output_Correlated_[87].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[87].antennaSet=LBA_INNER
@@ -4834,6 +5064,7 @@ Observation.DataProducts.Output_Correlated_[87].subband=87
 Observation.DataProducts.Output_Correlated_[88].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[88].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[88].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[88].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[88].SAP=0
 Observation.DataProducts.Output_Correlated_[88].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[88].antennaSet=LBA_INNER
@@ -4855,6 +5086,7 @@ Observation.DataProducts.Output_Correlated_[88].subband=88
 Observation.DataProducts.Output_Correlated_[89].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[89].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[89].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[89].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[89].SAP=0
 Observation.DataProducts.Output_Correlated_[89].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[89].antennaSet=LBA_INNER
@@ -4876,6 +5108,7 @@ Observation.DataProducts.Output_Correlated_[89].subband=89
 Observation.DataProducts.Output_Correlated_[8].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[8].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[8].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[8].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[8].SAP=0
 Observation.DataProducts.Output_Correlated_[8].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[8].antennaSet=LBA_INNER
@@ -4897,6 +5130,7 @@ Observation.DataProducts.Output_Correlated_[8].subband=8
 Observation.DataProducts.Output_Correlated_[90].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[90].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[90].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[90].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[90].SAP=0
 Observation.DataProducts.Output_Correlated_[90].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[90].antennaSet=LBA_INNER
@@ -4918,6 +5152,7 @@ Observation.DataProducts.Output_Correlated_[90].subband=90
 Observation.DataProducts.Output_Correlated_[91].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[91].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[91].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[91].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[91].SAP=0
 Observation.DataProducts.Output_Correlated_[91].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[91].antennaSet=LBA_INNER
@@ -4939,6 +5174,7 @@ Observation.DataProducts.Output_Correlated_[91].subband=91
 Observation.DataProducts.Output_Correlated_[92].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[92].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[92].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[92].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[92].SAP=0
 Observation.DataProducts.Output_Correlated_[92].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[92].antennaSet=LBA_INNER
@@ -4960,6 +5196,7 @@ Observation.DataProducts.Output_Correlated_[92].subband=92
 Observation.DataProducts.Output_Correlated_[93].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[93].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[93].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[93].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[93].SAP=0
 Observation.DataProducts.Output_Correlated_[93].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[93].antennaSet=LBA_INNER
@@ -4981,6 +5218,7 @@ Observation.DataProducts.Output_Correlated_[93].subband=93
 Observation.DataProducts.Output_Correlated_[94].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[94].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[94].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[94].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[94].SAP=0
 Observation.DataProducts.Output_Correlated_[94].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[94].antennaSet=LBA_INNER
@@ -5002,6 +5240,7 @@ Observation.DataProducts.Output_Correlated_[94].subband=94
 Observation.DataProducts.Output_Correlated_[95].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[95].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[95].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[95].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[95].SAP=0
 Observation.DataProducts.Output_Correlated_[95].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[95].antennaSet=LBA_INNER
@@ -5023,6 +5262,7 @@ Observation.DataProducts.Output_Correlated_[95].subband=95
 Observation.DataProducts.Output_Correlated_[96].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[96].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[96].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[96].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[96].SAP=0
 Observation.DataProducts.Output_Correlated_[96].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[96].antennaSet=LBA_INNER
@@ -5044,6 +5284,7 @@ Observation.DataProducts.Output_Correlated_[96].subband=96
 Observation.DataProducts.Output_Correlated_[97].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[97].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[97].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[97].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[97].SAP=0
 Observation.DataProducts.Output_Correlated_[97].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[97].antennaSet=LBA_INNER
@@ -5065,6 +5306,7 @@ Observation.DataProducts.Output_Correlated_[97].subband=97
 Observation.DataProducts.Output_Correlated_[98].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[98].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[98].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[98].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[98].SAP=0
 Observation.DataProducts.Output_Correlated_[98].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[98].antennaSet=LBA_INNER
@@ -5086,6 +5328,7 @@ Observation.DataProducts.Output_Correlated_[98].subband=98
 Observation.DataProducts.Output_Correlated_[99].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[99].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[99].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[99].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[99].SAP=0
 Observation.DataProducts.Output_Correlated_[99].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[99].antennaSet=LBA_INNER
@@ -5107,6 +5350,7 @@ Observation.DataProducts.Output_Correlated_[99].subband=99
 Observation.DataProducts.Output_Correlated_[9].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[9].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[9].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[9].Pointing.target=3C 196
 Observation.DataProducts.Output_Correlated_[9].SAP=0
 Observation.DataProducts.Output_Correlated_[9].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[9].antennaSet=LBA_INNER
@@ -5127,5 +5371,7 @@ Observation.DataProducts.Output_Correlated_[9].storageWriterVersion=3
 Observation.DataProducts.Output_Correlated_[9].subband=9
 Observation.DataProducts.nrOfOutput_Beamformed_=0
 Observation.DataProducts.nrOfOutput_Correlated_=244
+Observation.startTime=2014-04-18T15:02:00.000000000Z
+Observation.stopTime=2014-04-18T15:03:59.789322138Z
 _isCobalt=T
 feedback_version=03.01.00
diff --git a/RTCP/Cobalt/CoInterface/test/tLTAFeedback.in_reference/Observation221197_feedback b/RTCP/Cobalt/CoInterface/test/tLTAFeedback.in_reference/Observation221197_feedback
index 8f80e337fb1e79c44fe4253af2690e6665eb9ddf..6b535ddb6f5f03572ec873c0f39ec2f665d3109d 100644
--- a/RTCP/Cobalt/CoInterface/test/tLTAFeedback.in_reference/Observation221197_feedback
+++ b/RTCP/Cobalt/CoInterface/test/tLTAFeedback.in_reference/Observation221197_feedback
@@ -15,6 +15,7 @@ Observation.DataProducts.Output_Beamformed_[0].CoherentStokesBeam[0].Pointing.an
 Observation.DataProducts.Output_Beamformed_[0].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[0].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[0].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[0].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[0].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[0].CoherentStokesBeam[0].TAB=0
 Observation.DataProducts.Output_Beamformed_[0].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -54,6 +55,7 @@ Observation.DataProducts.Output_Beamformed_[100].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[100].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[100].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[100].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[100].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[100].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[100].CoherentStokesBeam[0].TAB=26
 Observation.DataProducts.Output_Beamformed_[100].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -93,6 +95,7 @@ Observation.DataProducts.Output_Beamformed_[101].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[101].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[101].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[101].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[101].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[101].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[101].CoherentStokesBeam[0].TAB=27
 Observation.DataProducts.Output_Beamformed_[101].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -132,6 +135,7 @@ Observation.DataProducts.Output_Beamformed_[102].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[102].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[102].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[102].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[102].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[102].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[102].CoherentStokesBeam[0].TAB=28
 Observation.DataProducts.Output_Beamformed_[102].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -171,6 +175,7 @@ Observation.DataProducts.Output_Beamformed_[103].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[103].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[103].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[103].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[103].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[103].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[103].CoherentStokesBeam[0].TAB=29
 Observation.DataProducts.Output_Beamformed_[103].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -210,6 +215,7 @@ Observation.DataProducts.Output_Beamformed_[104].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[104].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[104].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[104].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[104].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[104].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[104].CoherentStokesBeam[0].TAB=30
 Observation.DataProducts.Output_Beamformed_[104].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -249,6 +255,7 @@ Observation.DataProducts.Output_Beamformed_[105].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[105].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[105].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[105].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[105].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[105].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[105].CoherentStokesBeam[0].TAB=31
 Observation.DataProducts.Output_Beamformed_[105].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -288,6 +295,7 @@ Observation.DataProducts.Output_Beamformed_[106].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[106].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[106].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[106].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[106].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[106].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[106].CoherentStokesBeam[0].TAB=32
 Observation.DataProducts.Output_Beamformed_[106].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -327,6 +335,7 @@ Observation.DataProducts.Output_Beamformed_[107].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[107].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[107].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[107].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[107].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[107].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[107].CoherentStokesBeam[0].TAB=33
 Observation.DataProducts.Output_Beamformed_[107].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -366,6 +375,7 @@ Observation.DataProducts.Output_Beamformed_[108].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[108].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[108].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[108].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[108].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[108].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[108].CoherentStokesBeam[0].TAB=34
 Observation.DataProducts.Output_Beamformed_[108].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -405,6 +415,7 @@ Observation.DataProducts.Output_Beamformed_[109].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[109].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[109].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[109].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[109].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[109].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[109].CoherentStokesBeam[0].TAB=35
 Observation.DataProducts.Output_Beamformed_[109].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -444,6 +455,7 @@ Observation.DataProducts.Output_Beamformed_[10].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[10].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[10].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[10].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[10].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[10].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[10].CoherentStokesBeam[0].TAB=10
 Observation.DataProducts.Output_Beamformed_[10].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -483,6 +495,7 @@ Observation.DataProducts.Output_Beamformed_[110].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[110].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[110].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[110].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[110].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[110].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[110].CoherentStokesBeam[0].TAB=36
 Observation.DataProducts.Output_Beamformed_[110].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -522,6 +535,7 @@ Observation.DataProducts.Output_Beamformed_[111].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[111].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[111].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[111].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[111].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[111].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[111].CoherentStokesBeam[0].TAB=37
 Observation.DataProducts.Output_Beamformed_[111].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -561,6 +575,7 @@ Observation.DataProducts.Output_Beamformed_[112].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[112].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[112].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[112].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[112].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[112].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[112].CoherentStokesBeam[0].TAB=38
 Observation.DataProducts.Output_Beamformed_[112].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -600,6 +615,7 @@ Observation.DataProducts.Output_Beamformed_[113].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[113].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[113].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[113].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[113].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[113].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[113].CoherentStokesBeam[0].TAB=39
 Observation.DataProducts.Output_Beamformed_[113].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -639,6 +655,7 @@ Observation.DataProducts.Output_Beamformed_[114].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[114].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[114].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[114].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[114].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[114].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[114].CoherentStokesBeam[0].TAB=40
 Observation.DataProducts.Output_Beamformed_[114].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -678,6 +695,7 @@ Observation.DataProducts.Output_Beamformed_[115].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[115].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[115].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[115].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[115].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[115].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[115].CoherentStokesBeam[0].TAB=41
 Observation.DataProducts.Output_Beamformed_[115].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -717,6 +735,7 @@ Observation.DataProducts.Output_Beamformed_[116].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[116].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[116].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[116].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[116].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[116].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[116].CoherentStokesBeam[0].TAB=42
 Observation.DataProducts.Output_Beamformed_[116].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -756,6 +775,7 @@ Observation.DataProducts.Output_Beamformed_[117].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[117].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[117].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[117].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[117].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[117].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[117].CoherentStokesBeam[0].TAB=43
 Observation.DataProducts.Output_Beamformed_[117].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -795,6 +815,7 @@ Observation.DataProducts.Output_Beamformed_[118].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[118].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[118].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[118].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[118].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[118].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[118].CoherentStokesBeam[0].TAB=44
 Observation.DataProducts.Output_Beamformed_[118].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -834,6 +855,7 @@ Observation.DataProducts.Output_Beamformed_[119].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[119].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[119].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[119].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[119].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[119].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[119].CoherentStokesBeam[0].TAB=45
 Observation.DataProducts.Output_Beamformed_[119].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -873,6 +895,7 @@ Observation.DataProducts.Output_Beamformed_[11].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[11].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[11].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[11].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[11].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[11].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[11].CoherentStokesBeam[0].TAB=11
 Observation.DataProducts.Output_Beamformed_[11].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -912,6 +935,7 @@ Observation.DataProducts.Output_Beamformed_[120].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[120].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[120].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[120].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[120].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[120].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[120].CoherentStokesBeam[0].TAB=46
 Observation.DataProducts.Output_Beamformed_[120].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -951,6 +975,7 @@ Observation.DataProducts.Output_Beamformed_[121].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[121].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[121].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[121].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[121].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[121].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[121].CoherentStokesBeam[0].TAB=47
 Observation.DataProducts.Output_Beamformed_[121].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -990,6 +1015,7 @@ Observation.DataProducts.Output_Beamformed_[122].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[122].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[122].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[122].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[122].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[122].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[122].CoherentStokesBeam[0].TAB=48
 Observation.DataProducts.Output_Beamformed_[122].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1029,6 +1055,7 @@ Observation.DataProducts.Output_Beamformed_[123].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[123].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[123].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[123].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[123].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[123].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[123].CoherentStokesBeam[0].TAB=49
 Observation.DataProducts.Output_Beamformed_[123].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1068,6 +1095,7 @@ Observation.DataProducts.Output_Beamformed_[124].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[124].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[124].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[124].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[124].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[124].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[124].CoherentStokesBeam[0].TAB=50
 Observation.DataProducts.Output_Beamformed_[124].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1107,6 +1135,7 @@ Observation.DataProducts.Output_Beamformed_[125].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[125].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[125].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[125].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[125].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[125].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[125].CoherentStokesBeam[0].TAB=51
 Observation.DataProducts.Output_Beamformed_[125].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1146,6 +1175,7 @@ Observation.DataProducts.Output_Beamformed_[126].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[126].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[126].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[126].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[126].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[126].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[126].CoherentStokesBeam[0].TAB=52
 Observation.DataProducts.Output_Beamformed_[126].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1185,6 +1215,7 @@ Observation.DataProducts.Output_Beamformed_[127].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[127].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[127].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[127].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[127].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[127].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[127].CoherentStokesBeam[0].TAB=53
 Observation.DataProducts.Output_Beamformed_[127].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1224,6 +1255,7 @@ Observation.DataProducts.Output_Beamformed_[128].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[128].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[128].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[128].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[128].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[128].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[128].CoherentStokesBeam[0].TAB=54
 Observation.DataProducts.Output_Beamformed_[128].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1263,6 +1295,7 @@ Observation.DataProducts.Output_Beamformed_[129].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[129].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[129].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[129].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[129].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[129].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[129].CoherentStokesBeam[0].TAB=55
 Observation.DataProducts.Output_Beamformed_[129].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1298,6 +1331,7 @@ Observation.DataProducts.Output_Beamformed_[12].IncoherentStokesBeam[0].Pointing
 Observation.DataProducts.Output_Beamformed_[12].IncoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[12].IncoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[12].IncoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[12].IncoherentStokesBeam[0].Pointing.target=B0329+54
 Observation.DataProducts.Output_Beamformed_[12].IncoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[12].IncoherentStokesBeam[0].TAB=12
 Observation.DataProducts.Output_Beamformed_[12].IncoherentStokesBeam[0].antennaSet=HBA_DUAL
@@ -1336,6 +1370,7 @@ Observation.DataProducts.Output_Beamformed_[130].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[130].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[130].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[130].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[130].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[130].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[130].CoherentStokesBeam[0].TAB=56
 Observation.DataProducts.Output_Beamformed_[130].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1375,6 +1410,7 @@ Observation.DataProducts.Output_Beamformed_[131].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[131].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[131].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[131].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[131].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[131].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[131].CoherentStokesBeam[0].TAB=57
 Observation.DataProducts.Output_Beamformed_[131].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1414,6 +1450,7 @@ Observation.DataProducts.Output_Beamformed_[132].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[132].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[132].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[132].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[132].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[132].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[132].CoherentStokesBeam[0].TAB=58
 Observation.DataProducts.Output_Beamformed_[132].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1453,6 +1490,7 @@ Observation.DataProducts.Output_Beamformed_[133].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[133].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[133].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[133].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[133].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[133].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[133].CoherentStokesBeam[0].TAB=59
 Observation.DataProducts.Output_Beamformed_[133].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1492,6 +1530,7 @@ Observation.DataProducts.Output_Beamformed_[134].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[134].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[134].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[134].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[134].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[134].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[134].CoherentStokesBeam[0].TAB=60
 Observation.DataProducts.Output_Beamformed_[134].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1531,6 +1570,7 @@ Observation.DataProducts.Output_Beamformed_[135].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[135].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[135].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[135].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[135].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[135].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[135].CoherentStokesBeam[0].TAB=61
 Observation.DataProducts.Output_Beamformed_[135].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1570,6 +1610,7 @@ Observation.DataProducts.Output_Beamformed_[136].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[136].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[136].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[136].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[136].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[136].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[136].CoherentStokesBeam[0].TAB=62
 Observation.DataProducts.Output_Beamformed_[136].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1609,6 +1650,7 @@ Observation.DataProducts.Output_Beamformed_[137].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[137].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[137].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[137].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[137].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[137].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[137].CoherentStokesBeam[0].TAB=63
 Observation.DataProducts.Output_Beamformed_[137].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1648,6 +1690,7 @@ Observation.DataProducts.Output_Beamformed_[138].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[138].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[138].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[138].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[138].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[138].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[138].CoherentStokesBeam[0].TAB=64
 Observation.DataProducts.Output_Beamformed_[138].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1687,6 +1730,7 @@ Observation.DataProducts.Output_Beamformed_[139].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[139].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[139].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[139].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[139].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[139].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[139].CoherentStokesBeam[0].TAB=65
 Observation.DataProducts.Output_Beamformed_[139].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1726,6 +1770,7 @@ Observation.DataProducts.Output_Beamformed_[13].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[13].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[13].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[13].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[13].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[13].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[13].CoherentStokesBeam[0].TAB=13
 Observation.DataProducts.Output_Beamformed_[13].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1765,6 +1810,7 @@ Observation.DataProducts.Output_Beamformed_[140].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[140].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[140].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[140].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[140].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[140].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[140].CoherentStokesBeam[0].TAB=66
 Observation.DataProducts.Output_Beamformed_[140].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1804,6 +1850,7 @@ Observation.DataProducts.Output_Beamformed_[141].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[141].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[141].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[141].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[141].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[141].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[141].CoherentStokesBeam[0].TAB=67
 Observation.DataProducts.Output_Beamformed_[141].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1843,6 +1890,7 @@ Observation.DataProducts.Output_Beamformed_[142].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[142].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[142].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[142].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[142].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[142].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[142].CoherentStokesBeam[0].TAB=68
 Observation.DataProducts.Output_Beamformed_[142].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1882,6 +1930,7 @@ Observation.DataProducts.Output_Beamformed_[143].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[143].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[143].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[143].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[143].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[143].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[143].CoherentStokesBeam[0].TAB=69
 Observation.DataProducts.Output_Beamformed_[143].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1921,6 +1970,7 @@ Observation.DataProducts.Output_Beamformed_[144].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[144].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[144].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[144].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[144].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[144].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[144].CoherentStokesBeam[0].TAB=70
 Observation.DataProducts.Output_Beamformed_[144].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1960,6 +2010,7 @@ Observation.DataProducts.Output_Beamformed_[145].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[145].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[145].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[145].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[145].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[145].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[145].CoherentStokesBeam[0].TAB=71
 Observation.DataProducts.Output_Beamformed_[145].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -1999,6 +2050,7 @@ Observation.DataProducts.Output_Beamformed_[146].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[146].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[146].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[146].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[146].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[146].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[146].CoherentStokesBeam[0].TAB=72
 Observation.DataProducts.Output_Beamformed_[146].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2038,6 +2090,7 @@ Observation.DataProducts.Output_Beamformed_[147].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[147].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[147].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[147].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[147].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[147].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[147].CoherentStokesBeam[0].TAB=73
 Observation.DataProducts.Output_Beamformed_[147].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2077,6 +2130,7 @@ Observation.DataProducts.Output_Beamformed_[148].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[148].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[148].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[148].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[148].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[148].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[148].CoherentStokesBeam[0].TAB=0
 Observation.DataProducts.Output_Beamformed_[148].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2116,6 +2170,7 @@ Observation.DataProducts.Output_Beamformed_[149].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[149].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[149].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[149].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[149].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[149].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[149].CoherentStokesBeam[0].TAB=1
 Observation.DataProducts.Output_Beamformed_[149].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2155,6 +2210,7 @@ Observation.DataProducts.Output_Beamformed_[14].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[14].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[14].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[14].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[14].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[14].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[14].CoherentStokesBeam[0].TAB=14
 Observation.DataProducts.Output_Beamformed_[14].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2194,6 +2250,7 @@ Observation.DataProducts.Output_Beamformed_[150].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[150].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[150].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[150].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[150].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[150].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[150].CoherentStokesBeam[0].TAB=2
 Observation.DataProducts.Output_Beamformed_[150].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2233,6 +2290,7 @@ Observation.DataProducts.Output_Beamformed_[151].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[151].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[151].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[151].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[151].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[151].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[151].CoherentStokesBeam[0].TAB=3
 Observation.DataProducts.Output_Beamformed_[151].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2272,6 +2330,7 @@ Observation.DataProducts.Output_Beamformed_[152].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[152].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[152].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[152].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[152].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[152].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[152].CoherentStokesBeam[0].TAB=4
 Observation.DataProducts.Output_Beamformed_[152].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2311,6 +2370,7 @@ Observation.DataProducts.Output_Beamformed_[153].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[153].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[153].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[153].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[153].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[153].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[153].CoherentStokesBeam[0].TAB=5
 Observation.DataProducts.Output_Beamformed_[153].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2350,6 +2410,7 @@ Observation.DataProducts.Output_Beamformed_[154].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[154].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[154].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[154].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[154].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[154].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[154].CoherentStokesBeam[0].TAB=6
 Observation.DataProducts.Output_Beamformed_[154].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2389,6 +2450,7 @@ Observation.DataProducts.Output_Beamformed_[155].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[155].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[155].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[155].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[155].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[155].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[155].CoherentStokesBeam[0].TAB=7
 Observation.DataProducts.Output_Beamformed_[155].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2428,6 +2490,7 @@ Observation.DataProducts.Output_Beamformed_[156].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[156].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[156].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[156].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[156].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[156].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[156].CoherentStokesBeam[0].TAB=8
 Observation.DataProducts.Output_Beamformed_[156].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2467,6 +2530,7 @@ Observation.DataProducts.Output_Beamformed_[157].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[157].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[157].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[157].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[157].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[157].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[157].CoherentStokesBeam[0].TAB=9
 Observation.DataProducts.Output_Beamformed_[157].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2506,6 +2570,7 @@ Observation.DataProducts.Output_Beamformed_[158].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[158].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[158].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[158].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[158].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[158].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[158].CoherentStokesBeam[0].TAB=10
 Observation.DataProducts.Output_Beamformed_[158].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2545,6 +2610,7 @@ Observation.DataProducts.Output_Beamformed_[159].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[159].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[159].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[159].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[159].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[159].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[159].CoherentStokesBeam[0].TAB=11
 Observation.DataProducts.Output_Beamformed_[159].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2584,6 +2650,7 @@ Observation.DataProducts.Output_Beamformed_[15].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[15].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[15].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[15].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[15].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[15].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[15].CoherentStokesBeam[0].TAB=15
 Observation.DataProducts.Output_Beamformed_[15].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2619,6 +2686,7 @@ Observation.DataProducts.Output_Beamformed_[160].IncoherentStokesBeam[0].Pointin
 Observation.DataProducts.Output_Beamformed_[160].IncoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[160].IncoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[160].IncoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[160].IncoherentStokesBeam[0].Pointing.target=FIELD 3
 Observation.DataProducts.Output_Beamformed_[160].IncoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[160].IncoherentStokesBeam[0].TAB=12
 Observation.DataProducts.Output_Beamformed_[160].IncoherentStokesBeam[0].antennaSet=HBA_DUAL
@@ -2657,6 +2725,7 @@ Observation.DataProducts.Output_Beamformed_[161].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[161].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[161].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[161].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[161].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[161].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[161].CoherentStokesBeam[0].TAB=13
 Observation.DataProducts.Output_Beamformed_[161].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2696,6 +2765,7 @@ Observation.DataProducts.Output_Beamformed_[162].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[162].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[162].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[162].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[162].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[162].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[162].CoherentStokesBeam[0].TAB=14
 Observation.DataProducts.Output_Beamformed_[162].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2735,6 +2805,7 @@ Observation.DataProducts.Output_Beamformed_[163].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[163].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[163].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[163].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[163].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[163].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[163].CoherentStokesBeam[0].TAB=15
 Observation.DataProducts.Output_Beamformed_[163].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2774,6 +2845,7 @@ Observation.DataProducts.Output_Beamformed_[164].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[164].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[164].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[164].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[164].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[164].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[164].CoherentStokesBeam[0].TAB=16
 Observation.DataProducts.Output_Beamformed_[164].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2813,6 +2885,7 @@ Observation.DataProducts.Output_Beamformed_[165].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[165].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[165].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[165].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[165].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[165].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[165].CoherentStokesBeam[0].TAB=17
 Observation.DataProducts.Output_Beamformed_[165].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2852,6 +2925,7 @@ Observation.DataProducts.Output_Beamformed_[166].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[166].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[166].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[166].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[166].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[166].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[166].CoherentStokesBeam[0].TAB=18
 Observation.DataProducts.Output_Beamformed_[166].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2891,6 +2965,7 @@ Observation.DataProducts.Output_Beamformed_[167].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[167].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[167].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[167].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[167].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[167].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[167].CoherentStokesBeam[0].TAB=19
 Observation.DataProducts.Output_Beamformed_[167].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2930,6 +3005,7 @@ Observation.DataProducts.Output_Beamformed_[168].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[168].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[168].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[168].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[168].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[168].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[168].CoherentStokesBeam[0].TAB=20
 Observation.DataProducts.Output_Beamformed_[168].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -2969,6 +3045,7 @@ Observation.DataProducts.Output_Beamformed_[169].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[169].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[169].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[169].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[169].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[169].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[169].CoherentStokesBeam[0].TAB=21
 Observation.DataProducts.Output_Beamformed_[169].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3008,6 +3085,7 @@ Observation.DataProducts.Output_Beamformed_[16].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[16].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[16].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[16].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[16].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[16].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[16].CoherentStokesBeam[0].TAB=16
 Observation.DataProducts.Output_Beamformed_[16].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3047,6 +3125,7 @@ Observation.DataProducts.Output_Beamformed_[170].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[170].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[170].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[170].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[170].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[170].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[170].CoherentStokesBeam[0].TAB=22
 Observation.DataProducts.Output_Beamformed_[170].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3086,6 +3165,7 @@ Observation.DataProducts.Output_Beamformed_[171].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[171].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[171].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[171].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[171].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[171].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[171].CoherentStokesBeam[0].TAB=23
 Observation.DataProducts.Output_Beamformed_[171].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3125,6 +3205,7 @@ Observation.DataProducts.Output_Beamformed_[172].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[172].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[172].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[172].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[172].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[172].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[172].CoherentStokesBeam[0].TAB=24
 Observation.DataProducts.Output_Beamformed_[172].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3164,6 +3245,7 @@ Observation.DataProducts.Output_Beamformed_[173].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[173].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[173].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[173].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[173].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[173].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[173].CoherentStokesBeam[0].TAB=25
 Observation.DataProducts.Output_Beamformed_[173].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3203,6 +3285,7 @@ Observation.DataProducts.Output_Beamformed_[174].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[174].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[174].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[174].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[174].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[174].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[174].CoherentStokesBeam[0].TAB=26
 Observation.DataProducts.Output_Beamformed_[174].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3242,6 +3325,7 @@ Observation.DataProducts.Output_Beamformed_[175].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[175].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[175].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[175].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[175].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[175].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[175].CoherentStokesBeam[0].TAB=27
 Observation.DataProducts.Output_Beamformed_[175].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3281,6 +3365,7 @@ Observation.DataProducts.Output_Beamformed_[176].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[176].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[176].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[176].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[176].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[176].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[176].CoherentStokesBeam[0].TAB=28
 Observation.DataProducts.Output_Beamformed_[176].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3320,6 +3405,7 @@ Observation.DataProducts.Output_Beamformed_[177].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[177].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[177].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[177].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[177].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[177].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[177].CoherentStokesBeam[0].TAB=29
 Observation.DataProducts.Output_Beamformed_[177].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3359,6 +3445,7 @@ Observation.DataProducts.Output_Beamformed_[178].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[178].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[178].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[178].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[178].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[178].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[178].CoherentStokesBeam[0].TAB=30
 Observation.DataProducts.Output_Beamformed_[178].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3398,6 +3485,7 @@ Observation.DataProducts.Output_Beamformed_[179].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[179].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[179].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[179].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[179].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[179].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[179].CoherentStokesBeam[0].TAB=31
 Observation.DataProducts.Output_Beamformed_[179].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3437,6 +3525,7 @@ Observation.DataProducts.Output_Beamformed_[17].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[17].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[17].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[17].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[17].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[17].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[17].CoherentStokesBeam[0].TAB=17
 Observation.DataProducts.Output_Beamformed_[17].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3476,6 +3565,7 @@ Observation.DataProducts.Output_Beamformed_[180].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[180].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[180].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[180].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[180].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[180].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[180].CoherentStokesBeam[0].TAB=32
 Observation.DataProducts.Output_Beamformed_[180].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3515,6 +3605,7 @@ Observation.DataProducts.Output_Beamformed_[181].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[181].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[181].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[181].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[181].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[181].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[181].CoherentStokesBeam[0].TAB=33
 Observation.DataProducts.Output_Beamformed_[181].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3554,6 +3645,7 @@ Observation.DataProducts.Output_Beamformed_[182].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[182].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[182].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[182].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[182].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[182].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[182].CoherentStokesBeam[0].TAB=34
 Observation.DataProducts.Output_Beamformed_[182].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3593,6 +3685,7 @@ Observation.DataProducts.Output_Beamformed_[183].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[183].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[183].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[183].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[183].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[183].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[183].CoherentStokesBeam[0].TAB=35
 Observation.DataProducts.Output_Beamformed_[183].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3632,6 +3725,7 @@ Observation.DataProducts.Output_Beamformed_[184].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[184].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[184].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[184].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[184].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[184].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[184].CoherentStokesBeam[0].TAB=36
 Observation.DataProducts.Output_Beamformed_[184].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3671,6 +3765,7 @@ Observation.DataProducts.Output_Beamformed_[185].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[185].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[185].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[185].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[185].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[185].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[185].CoherentStokesBeam[0].TAB=37
 Observation.DataProducts.Output_Beamformed_[185].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3710,6 +3805,7 @@ Observation.DataProducts.Output_Beamformed_[186].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[186].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[186].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[186].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[186].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[186].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[186].CoherentStokesBeam[0].TAB=38
 Observation.DataProducts.Output_Beamformed_[186].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3749,6 +3845,7 @@ Observation.DataProducts.Output_Beamformed_[187].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[187].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[187].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[187].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[187].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[187].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[187].CoherentStokesBeam[0].TAB=39
 Observation.DataProducts.Output_Beamformed_[187].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3788,6 +3885,7 @@ Observation.DataProducts.Output_Beamformed_[188].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[188].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[188].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[188].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[188].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[188].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[188].CoherentStokesBeam[0].TAB=40
 Observation.DataProducts.Output_Beamformed_[188].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3827,6 +3925,7 @@ Observation.DataProducts.Output_Beamformed_[189].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[189].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[189].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[189].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[189].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[189].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[189].CoherentStokesBeam[0].TAB=41
 Observation.DataProducts.Output_Beamformed_[189].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3866,6 +3965,7 @@ Observation.DataProducts.Output_Beamformed_[18].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[18].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[18].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[18].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[18].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[18].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[18].CoherentStokesBeam[0].TAB=18
 Observation.DataProducts.Output_Beamformed_[18].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3905,6 +4005,7 @@ Observation.DataProducts.Output_Beamformed_[190].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[190].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[190].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[190].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[190].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[190].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[190].CoherentStokesBeam[0].TAB=42
 Observation.DataProducts.Output_Beamformed_[190].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3944,6 +4045,7 @@ Observation.DataProducts.Output_Beamformed_[191].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[191].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[191].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[191].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[191].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[191].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[191].CoherentStokesBeam[0].TAB=43
 Observation.DataProducts.Output_Beamformed_[191].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -3983,6 +4085,7 @@ Observation.DataProducts.Output_Beamformed_[192].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[192].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[192].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[192].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[192].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[192].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[192].CoherentStokesBeam[0].TAB=44
 Observation.DataProducts.Output_Beamformed_[192].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4022,6 +4125,7 @@ Observation.DataProducts.Output_Beamformed_[193].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[193].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[193].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[193].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[193].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[193].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[193].CoherentStokesBeam[0].TAB=45
 Observation.DataProducts.Output_Beamformed_[193].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4061,6 +4165,7 @@ Observation.DataProducts.Output_Beamformed_[194].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[194].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[194].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[194].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[194].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[194].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[194].CoherentStokesBeam[0].TAB=46
 Observation.DataProducts.Output_Beamformed_[194].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4100,6 +4205,7 @@ Observation.DataProducts.Output_Beamformed_[195].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[195].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[195].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[195].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[195].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[195].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[195].CoherentStokesBeam[0].TAB=47
 Observation.DataProducts.Output_Beamformed_[195].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4139,6 +4245,7 @@ Observation.DataProducts.Output_Beamformed_[196].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[196].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[196].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[196].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[196].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[196].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[196].CoherentStokesBeam[0].TAB=48
 Observation.DataProducts.Output_Beamformed_[196].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4178,6 +4285,7 @@ Observation.DataProducts.Output_Beamformed_[197].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[197].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[197].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[197].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[197].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[197].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[197].CoherentStokesBeam[0].TAB=49
 Observation.DataProducts.Output_Beamformed_[197].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4217,6 +4325,7 @@ Observation.DataProducts.Output_Beamformed_[198].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[198].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[198].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[198].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[198].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[198].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[198].CoherentStokesBeam[0].TAB=50
 Observation.DataProducts.Output_Beamformed_[198].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4256,6 +4365,7 @@ Observation.DataProducts.Output_Beamformed_[199].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[199].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[199].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[199].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[199].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[199].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[199].CoherentStokesBeam[0].TAB=51
 Observation.DataProducts.Output_Beamformed_[199].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4295,6 +4405,7 @@ Observation.DataProducts.Output_Beamformed_[19].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[19].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[19].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[19].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[19].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[19].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[19].CoherentStokesBeam[0].TAB=19
 Observation.DataProducts.Output_Beamformed_[19].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4334,6 +4445,7 @@ Observation.DataProducts.Output_Beamformed_[1].CoherentStokesBeam[0].Pointing.an
 Observation.DataProducts.Output_Beamformed_[1].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[1].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[1].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[1].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[1].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[1].CoherentStokesBeam[0].TAB=1
 Observation.DataProducts.Output_Beamformed_[1].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4373,6 +4485,7 @@ Observation.DataProducts.Output_Beamformed_[200].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[200].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[200].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[200].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[200].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[200].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[200].CoherentStokesBeam[0].TAB=52
 Observation.DataProducts.Output_Beamformed_[200].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4412,6 +4525,7 @@ Observation.DataProducts.Output_Beamformed_[201].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[201].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[201].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[201].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[201].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[201].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[201].CoherentStokesBeam[0].TAB=53
 Observation.DataProducts.Output_Beamformed_[201].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4451,6 +4565,7 @@ Observation.DataProducts.Output_Beamformed_[202].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[202].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[202].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[202].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[202].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[202].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[202].CoherentStokesBeam[0].TAB=54
 Observation.DataProducts.Output_Beamformed_[202].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4490,6 +4605,7 @@ Observation.DataProducts.Output_Beamformed_[203].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[203].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[203].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[203].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[203].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[203].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[203].CoherentStokesBeam[0].TAB=55
 Observation.DataProducts.Output_Beamformed_[203].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4529,6 +4645,7 @@ Observation.DataProducts.Output_Beamformed_[204].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[204].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[204].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[204].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[204].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[204].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[204].CoherentStokesBeam[0].TAB=56
 Observation.DataProducts.Output_Beamformed_[204].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4568,6 +4685,7 @@ Observation.DataProducts.Output_Beamformed_[205].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[205].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[205].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[205].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[205].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[205].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[205].CoherentStokesBeam[0].TAB=57
 Observation.DataProducts.Output_Beamformed_[205].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4607,6 +4725,7 @@ Observation.DataProducts.Output_Beamformed_[206].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[206].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[206].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[206].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[206].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[206].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[206].CoherentStokesBeam[0].TAB=58
 Observation.DataProducts.Output_Beamformed_[206].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4646,6 +4765,7 @@ Observation.DataProducts.Output_Beamformed_[207].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[207].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[207].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[207].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[207].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[207].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[207].CoherentStokesBeam[0].TAB=59
 Observation.DataProducts.Output_Beamformed_[207].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4685,6 +4805,7 @@ Observation.DataProducts.Output_Beamformed_[208].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[208].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[208].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[208].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[208].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[208].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[208].CoherentStokesBeam[0].TAB=60
 Observation.DataProducts.Output_Beamformed_[208].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4724,6 +4845,7 @@ Observation.DataProducts.Output_Beamformed_[209].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[209].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[209].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[209].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[209].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[209].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[209].CoherentStokesBeam[0].TAB=61
 Observation.DataProducts.Output_Beamformed_[209].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4763,6 +4885,7 @@ Observation.DataProducts.Output_Beamformed_[20].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[20].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[20].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[20].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[20].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[20].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[20].CoherentStokesBeam[0].TAB=20
 Observation.DataProducts.Output_Beamformed_[20].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4802,6 +4925,7 @@ Observation.DataProducts.Output_Beamformed_[210].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[210].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[210].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[210].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[210].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[210].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[210].CoherentStokesBeam[0].TAB=62
 Observation.DataProducts.Output_Beamformed_[210].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4841,6 +4965,7 @@ Observation.DataProducts.Output_Beamformed_[211].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[211].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[211].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[211].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[211].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[211].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[211].CoherentStokesBeam[0].TAB=63
 Observation.DataProducts.Output_Beamformed_[211].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4880,6 +5005,7 @@ Observation.DataProducts.Output_Beamformed_[212].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[212].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[212].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[212].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[212].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[212].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[212].CoherentStokesBeam[0].TAB=64
 Observation.DataProducts.Output_Beamformed_[212].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4919,6 +5045,7 @@ Observation.DataProducts.Output_Beamformed_[213].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[213].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[213].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[213].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[213].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[213].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[213].CoherentStokesBeam[0].TAB=65
 Observation.DataProducts.Output_Beamformed_[213].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4958,6 +5085,7 @@ Observation.DataProducts.Output_Beamformed_[214].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[214].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[214].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[214].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[214].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[214].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[214].CoherentStokesBeam[0].TAB=66
 Observation.DataProducts.Output_Beamformed_[214].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -4997,6 +5125,7 @@ Observation.DataProducts.Output_Beamformed_[215].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[215].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[215].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[215].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[215].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[215].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[215].CoherentStokesBeam[0].TAB=67
 Observation.DataProducts.Output_Beamformed_[215].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5036,6 +5165,7 @@ Observation.DataProducts.Output_Beamformed_[216].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[216].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[216].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[216].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[216].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[216].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[216].CoherentStokesBeam[0].TAB=68
 Observation.DataProducts.Output_Beamformed_[216].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5075,6 +5205,7 @@ Observation.DataProducts.Output_Beamformed_[217].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[217].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[217].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[217].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[217].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[217].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[217].CoherentStokesBeam[0].TAB=69
 Observation.DataProducts.Output_Beamformed_[217].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5114,6 +5245,7 @@ Observation.DataProducts.Output_Beamformed_[218].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[218].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[218].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[218].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[218].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[218].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[218].CoherentStokesBeam[0].TAB=70
 Observation.DataProducts.Output_Beamformed_[218].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5153,6 +5285,7 @@ Observation.DataProducts.Output_Beamformed_[219].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[219].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[219].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[219].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[219].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[219].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[219].CoherentStokesBeam[0].TAB=71
 Observation.DataProducts.Output_Beamformed_[219].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5192,6 +5325,7 @@ Observation.DataProducts.Output_Beamformed_[21].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[21].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[21].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[21].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[21].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[21].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[21].CoherentStokesBeam[0].TAB=21
 Observation.DataProducts.Output_Beamformed_[21].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5231,6 +5365,7 @@ Observation.DataProducts.Output_Beamformed_[220].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[220].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[220].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[220].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[220].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[220].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[220].CoherentStokesBeam[0].TAB=72
 Observation.DataProducts.Output_Beamformed_[220].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5270,6 +5405,7 @@ Observation.DataProducts.Output_Beamformed_[221].CoherentStokesBeam[0].Pointing.
 Observation.DataProducts.Output_Beamformed_[221].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[221].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[221].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[221].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[221].CoherentStokesBeam[0].SAP=2
 Observation.DataProducts.Output_Beamformed_[221].CoherentStokesBeam[0].TAB=73
 Observation.DataProducts.Output_Beamformed_[221].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5309,6 +5445,7 @@ Observation.DataProducts.Output_Beamformed_[22].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[22].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[22].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[22].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[22].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[22].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[22].CoherentStokesBeam[0].TAB=22
 Observation.DataProducts.Output_Beamformed_[22].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5348,6 +5485,7 @@ Observation.DataProducts.Output_Beamformed_[23].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[23].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[23].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[23].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[23].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[23].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[23].CoherentStokesBeam[0].TAB=23
 Observation.DataProducts.Output_Beamformed_[23].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5387,6 +5525,7 @@ Observation.DataProducts.Output_Beamformed_[24].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[24].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[24].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[24].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[24].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[24].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[24].CoherentStokesBeam[0].TAB=24
 Observation.DataProducts.Output_Beamformed_[24].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5426,6 +5565,7 @@ Observation.DataProducts.Output_Beamformed_[25].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[25].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[25].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[25].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[25].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[25].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[25].CoherentStokesBeam[0].TAB=25
 Observation.DataProducts.Output_Beamformed_[25].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5465,6 +5605,7 @@ Observation.DataProducts.Output_Beamformed_[26].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[26].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[26].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[26].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[26].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[26].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[26].CoherentStokesBeam[0].TAB=26
 Observation.DataProducts.Output_Beamformed_[26].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5504,6 +5645,7 @@ Observation.DataProducts.Output_Beamformed_[27].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[27].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[27].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[27].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[27].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[27].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[27].CoherentStokesBeam[0].TAB=27
 Observation.DataProducts.Output_Beamformed_[27].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5543,6 +5685,7 @@ Observation.DataProducts.Output_Beamformed_[28].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[28].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[28].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[28].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[28].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[28].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[28].CoherentStokesBeam[0].TAB=28
 Observation.DataProducts.Output_Beamformed_[28].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5582,6 +5725,7 @@ Observation.DataProducts.Output_Beamformed_[29].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[29].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[29].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[29].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[29].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[29].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[29].CoherentStokesBeam[0].TAB=29
 Observation.DataProducts.Output_Beamformed_[29].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5621,6 +5765,7 @@ Observation.DataProducts.Output_Beamformed_[2].CoherentStokesBeam[0].Pointing.an
 Observation.DataProducts.Output_Beamformed_[2].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[2].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[2].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[2].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[2].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[2].CoherentStokesBeam[0].TAB=2
 Observation.DataProducts.Output_Beamformed_[2].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5660,6 +5805,7 @@ Observation.DataProducts.Output_Beamformed_[30].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[30].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[30].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[30].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[30].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[30].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[30].CoherentStokesBeam[0].TAB=30
 Observation.DataProducts.Output_Beamformed_[30].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5699,6 +5845,7 @@ Observation.DataProducts.Output_Beamformed_[31].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[31].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[31].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[31].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[31].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[31].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[31].CoherentStokesBeam[0].TAB=31
 Observation.DataProducts.Output_Beamformed_[31].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5738,6 +5885,7 @@ Observation.DataProducts.Output_Beamformed_[32].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[32].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[32].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[32].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[32].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[32].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[32].CoherentStokesBeam[0].TAB=32
 Observation.DataProducts.Output_Beamformed_[32].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5777,6 +5925,7 @@ Observation.DataProducts.Output_Beamformed_[33].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[33].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[33].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[33].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[33].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[33].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[33].CoherentStokesBeam[0].TAB=33
 Observation.DataProducts.Output_Beamformed_[33].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5816,6 +5965,7 @@ Observation.DataProducts.Output_Beamformed_[34].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[34].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[34].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[34].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[34].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[34].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[34].CoherentStokesBeam[0].TAB=34
 Observation.DataProducts.Output_Beamformed_[34].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5855,6 +6005,7 @@ Observation.DataProducts.Output_Beamformed_[35].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[35].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[35].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[35].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[35].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[35].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[35].CoherentStokesBeam[0].TAB=35
 Observation.DataProducts.Output_Beamformed_[35].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5894,6 +6045,7 @@ Observation.DataProducts.Output_Beamformed_[36].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[36].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[36].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[36].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[36].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[36].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[36].CoherentStokesBeam[0].TAB=36
 Observation.DataProducts.Output_Beamformed_[36].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5933,6 +6085,7 @@ Observation.DataProducts.Output_Beamformed_[37].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[37].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[37].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[37].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[37].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[37].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[37].CoherentStokesBeam[0].TAB=37
 Observation.DataProducts.Output_Beamformed_[37].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -5972,6 +6125,7 @@ Observation.DataProducts.Output_Beamformed_[38].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[38].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[38].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[38].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[38].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[38].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[38].CoherentStokesBeam[0].TAB=38
 Observation.DataProducts.Output_Beamformed_[38].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6011,6 +6165,7 @@ Observation.DataProducts.Output_Beamformed_[39].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[39].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[39].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[39].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[39].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[39].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[39].CoherentStokesBeam[0].TAB=39
 Observation.DataProducts.Output_Beamformed_[39].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6050,6 +6205,7 @@ Observation.DataProducts.Output_Beamformed_[3].CoherentStokesBeam[0].Pointing.an
 Observation.DataProducts.Output_Beamformed_[3].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[3].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[3].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[3].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[3].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[3].CoherentStokesBeam[0].TAB=3
 Observation.DataProducts.Output_Beamformed_[3].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6089,6 +6245,7 @@ Observation.DataProducts.Output_Beamformed_[40].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[40].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[40].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[40].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[40].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[40].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[40].CoherentStokesBeam[0].TAB=40
 Observation.DataProducts.Output_Beamformed_[40].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6128,6 +6285,7 @@ Observation.DataProducts.Output_Beamformed_[41].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[41].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[41].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[41].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[41].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[41].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[41].CoherentStokesBeam[0].TAB=41
 Observation.DataProducts.Output_Beamformed_[41].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6167,6 +6325,7 @@ Observation.DataProducts.Output_Beamformed_[42].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[42].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[42].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[42].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[42].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[42].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[42].CoherentStokesBeam[0].TAB=42
 Observation.DataProducts.Output_Beamformed_[42].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6206,6 +6365,7 @@ Observation.DataProducts.Output_Beamformed_[43].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[43].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[43].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[43].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[43].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[43].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[43].CoherentStokesBeam[0].TAB=43
 Observation.DataProducts.Output_Beamformed_[43].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6245,6 +6405,7 @@ Observation.DataProducts.Output_Beamformed_[44].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[44].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[44].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[44].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[44].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[44].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[44].CoherentStokesBeam[0].TAB=44
 Observation.DataProducts.Output_Beamformed_[44].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6284,6 +6445,7 @@ Observation.DataProducts.Output_Beamformed_[45].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[45].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[45].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[45].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[45].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[45].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[45].CoherentStokesBeam[0].TAB=45
 Observation.DataProducts.Output_Beamformed_[45].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6323,6 +6485,7 @@ Observation.DataProducts.Output_Beamformed_[46].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[46].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[46].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[46].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[46].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[46].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[46].CoherentStokesBeam[0].TAB=46
 Observation.DataProducts.Output_Beamformed_[46].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6362,6 +6525,7 @@ Observation.DataProducts.Output_Beamformed_[47].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[47].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[47].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[47].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[47].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[47].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[47].CoherentStokesBeam[0].TAB=47
 Observation.DataProducts.Output_Beamformed_[47].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6401,6 +6565,7 @@ Observation.DataProducts.Output_Beamformed_[48].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[48].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[48].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[48].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[48].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[48].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[48].CoherentStokesBeam[0].TAB=48
 Observation.DataProducts.Output_Beamformed_[48].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6440,6 +6605,7 @@ Observation.DataProducts.Output_Beamformed_[49].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[49].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[49].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[49].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[49].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[49].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[49].CoherentStokesBeam[0].TAB=49
 Observation.DataProducts.Output_Beamformed_[49].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6479,6 +6645,7 @@ Observation.DataProducts.Output_Beamformed_[4].CoherentStokesBeam[0].Pointing.an
 Observation.DataProducts.Output_Beamformed_[4].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[4].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[4].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[4].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[4].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[4].CoherentStokesBeam[0].TAB=4
 Observation.DataProducts.Output_Beamformed_[4].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6518,6 +6685,7 @@ Observation.DataProducts.Output_Beamformed_[50].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[50].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[50].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[50].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[50].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[50].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[50].CoherentStokesBeam[0].TAB=50
 Observation.DataProducts.Output_Beamformed_[50].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6557,6 +6725,7 @@ Observation.DataProducts.Output_Beamformed_[51].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[51].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[51].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[51].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[51].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[51].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[51].CoherentStokesBeam[0].TAB=51
 Observation.DataProducts.Output_Beamformed_[51].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6596,6 +6765,7 @@ Observation.DataProducts.Output_Beamformed_[52].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[52].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[52].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[52].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[52].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[52].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[52].CoherentStokesBeam[0].TAB=52
 Observation.DataProducts.Output_Beamformed_[52].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6635,6 +6805,7 @@ Observation.DataProducts.Output_Beamformed_[53].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[53].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[53].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[53].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[53].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[53].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[53].CoherentStokesBeam[0].TAB=53
 Observation.DataProducts.Output_Beamformed_[53].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6674,6 +6845,7 @@ Observation.DataProducts.Output_Beamformed_[54].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[54].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[54].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[54].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[54].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[54].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[54].CoherentStokesBeam[0].TAB=54
 Observation.DataProducts.Output_Beamformed_[54].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6713,6 +6885,7 @@ Observation.DataProducts.Output_Beamformed_[55].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[55].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[55].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[55].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[55].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[55].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[55].CoherentStokesBeam[0].TAB=55
 Observation.DataProducts.Output_Beamformed_[55].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6752,6 +6925,7 @@ Observation.DataProducts.Output_Beamformed_[56].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[56].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[56].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[56].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[56].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[56].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[56].CoherentStokesBeam[0].TAB=56
 Observation.DataProducts.Output_Beamformed_[56].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6791,6 +6965,7 @@ Observation.DataProducts.Output_Beamformed_[57].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[57].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[57].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[57].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[57].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[57].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[57].CoherentStokesBeam[0].TAB=57
 Observation.DataProducts.Output_Beamformed_[57].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6830,6 +7005,7 @@ Observation.DataProducts.Output_Beamformed_[58].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[58].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[58].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[58].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[58].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[58].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[58].CoherentStokesBeam[0].TAB=58
 Observation.DataProducts.Output_Beamformed_[58].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6869,6 +7045,7 @@ Observation.DataProducts.Output_Beamformed_[59].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[59].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[59].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[59].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[59].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[59].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[59].CoherentStokesBeam[0].TAB=59
 Observation.DataProducts.Output_Beamformed_[59].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6908,6 +7085,7 @@ Observation.DataProducts.Output_Beamformed_[5].CoherentStokesBeam[0].Pointing.an
 Observation.DataProducts.Output_Beamformed_[5].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[5].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[5].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[5].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[5].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[5].CoherentStokesBeam[0].TAB=5
 Observation.DataProducts.Output_Beamformed_[5].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6947,6 +7125,7 @@ Observation.DataProducts.Output_Beamformed_[60].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[60].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[60].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[60].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[60].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[60].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[60].CoherentStokesBeam[0].TAB=60
 Observation.DataProducts.Output_Beamformed_[60].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -6986,6 +7165,7 @@ Observation.DataProducts.Output_Beamformed_[61].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[61].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[61].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[61].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[61].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[61].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[61].CoherentStokesBeam[0].TAB=61
 Observation.DataProducts.Output_Beamformed_[61].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7025,6 +7205,7 @@ Observation.DataProducts.Output_Beamformed_[62].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[62].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[62].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[62].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[62].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[62].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[62].CoherentStokesBeam[0].TAB=62
 Observation.DataProducts.Output_Beamformed_[62].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7064,6 +7245,7 @@ Observation.DataProducts.Output_Beamformed_[63].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[63].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[63].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[63].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[63].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[63].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[63].CoherentStokesBeam[0].TAB=63
 Observation.DataProducts.Output_Beamformed_[63].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7103,6 +7285,7 @@ Observation.DataProducts.Output_Beamformed_[64].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[64].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[64].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[64].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[64].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[64].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[64].CoherentStokesBeam[0].TAB=64
 Observation.DataProducts.Output_Beamformed_[64].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7142,6 +7325,7 @@ Observation.DataProducts.Output_Beamformed_[65].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[65].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[65].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[65].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[65].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[65].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[65].CoherentStokesBeam[0].TAB=65
 Observation.DataProducts.Output_Beamformed_[65].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7181,6 +7365,7 @@ Observation.DataProducts.Output_Beamformed_[66].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[66].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[66].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[66].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[66].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[66].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[66].CoherentStokesBeam[0].TAB=66
 Observation.DataProducts.Output_Beamformed_[66].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7220,6 +7405,7 @@ Observation.DataProducts.Output_Beamformed_[67].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[67].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[67].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[67].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[67].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[67].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[67].CoherentStokesBeam[0].TAB=67
 Observation.DataProducts.Output_Beamformed_[67].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7259,6 +7445,7 @@ Observation.DataProducts.Output_Beamformed_[68].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[68].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[68].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[68].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[68].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[68].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[68].CoherentStokesBeam[0].TAB=68
 Observation.DataProducts.Output_Beamformed_[68].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7298,6 +7485,7 @@ Observation.DataProducts.Output_Beamformed_[69].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[69].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[69].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[69].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[69].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[69].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[69].CoherentStokesBeam[0].TAB=69
 Observation.DataProducts.Output_Beamformed_[69].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7337,6 +7525,7 @@ Observation.DataProducts.Output_Beamformed_[6].CoherentStokesBeam[0].Pointing.an
 Observation.DataProducts.Output_Beamformed_[6].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[6].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[6].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[6].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[6].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[6].CoherentStokesBeam[0].TAB=6
 Observation.DataProducts.Output_Beamformed_[6].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7376,6 +7565,7 @@ Observation.DataProducts.Output_Beamformed_[70].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[70].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[70].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[70].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[70].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[70].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[70].CoherentStokesBeam[0].TAB=70
 Observation.DataProducts.Output_Beamformed_[70].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7415,6 +7605,7 @@ Observation.DataProducts.Output_Beamformed_[71].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[71].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[71].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[71].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[71].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[71].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[71].CoherentStokesBeam[0].TAB=71
 Observation.DataProducts.Output_Beamformed_[71].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7454,6 +7645,7 @@ Observation.DataProducts.Output_Beamformed_[72].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[72].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[72].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[72].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[72].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[72].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[72].CoherentStokesBeam[0].TAB=72
 Observation.DataProducts.Output_Beamformed_[72].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7493,6 +7685,7 @@ Observation.DataProducts.Output_Beamformed_[73].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[73].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[73].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[73].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[73].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[73].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[73].CoherentStokesBeam[0].TAB=73
 Observation.DataProducts.Output_Beamformed_[73].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7532,6 +7725,7 @@ Observation.DataProducts.Output_Beamformed_[74].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[74].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[74].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[74].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[74].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[74].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[74].CoherentStokesBeam[0].TAB=0
 Observation.DataProducts.Output_Beamformed_[74].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7571,6 +7765,7 @@ Observation.DataProducts.Output_Beamformed_[75].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[75].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[75].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[75].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[75].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[75].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[75].CoherentStokesBeam[0].TAB=1
 Observation.DataProducts.Output_Beamformed_[75].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7610,6 +7805,7 @@ Observation.DataProducts.Output_Beamformed_[76].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[76].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[76].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[76].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[76].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[76].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[76].CoherentStokesBeam[0].TAB=2
 Observation.DataProducts.Output_Beamformed_[76].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7649,6 +7845,7 @@ Observation.DataProducts.Output_Beamformed_[77].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[77].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[77].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[77].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[77].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[77].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[77].CoherentStokesBeam[0].TAB=3
 Observation.DataProducts.Output_Beamformed_[77].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7688,6 +7885,7 @@ Observation.DataProducts.Output_Beamformed_[78].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[78].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[78].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[78].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[78].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[78].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[78].CoherentStokesBeam[0].TAB=4
 Observation.DataProducts.Output_Beamformed_[78].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7727,6 +7925,7 @@ Observation.DataProducts.Output_Beamformed_[79].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[79].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[79].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[79].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[79].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[79].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[79].CoherentStokesBeam[0].TAB=5
 Observation.DataProducts.Output_Beamformed_[79].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7766,6 +7965,7 @@ Observation.DataProducts.Output_Beamformed_[7].CoherentStokesBeam[0].Pointing.an
 Observation.DataProducts.Output_Beamformed_[7].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[7].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[7].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[7].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[7].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[7].CoherentStokesBeam[0].TAB=7
 Observation.DataProducts.Output_Beamformed_[7].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7805,6 +8005,7 @@ Observation.DataProducts.Output_Beamformed_[80].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[80].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[80].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[80].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[80].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[80].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[80].CoherentStokesBeam[0].TAB=6
 Observation.DataProducts.Output_Beamformed_[80].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7844,6 +8045,7 @@ Observation.DataProducts.Output_Beamformed_[81].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[81].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[81].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[81].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[81].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[81].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[81].CoherentStokesBeam[0].TAB=7
 Observation.DataProducts.Output_Beamformed_[81].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7883,6 +8085,7 @@ Observation.DataProducts.Output_Beamformed_[82].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[82].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[82].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[82].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[82].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[82].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[82].CoherentStokesBeam[0].TAB=8
 Observation.DataProducts.Output_Beamformed_[82].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7922,6 +8125,7 @@ Observation.DataProducts.Output_Beamformed_[83].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[83].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[83].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[83].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[83].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[83].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[83].CoherentStokesBeam[0].TAB=9
 Observation.DataProducts.Output_Beamformed_[83].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -7961,6 +8165,7 @@ Observation.DataProducts.Output_Beamformed_[84].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[84].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[84].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[84].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[84].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[84].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[84].CoherentStokesBeam[0].TAB=10
 Observation.DataProducts.Output_Beamformed_[84].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -8000,6 +8205,7 @@ Observation.DataProducts.Output_Beamformed_[85].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[85].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[85].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[85].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[85].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[85].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[85].CoherentStokesBeam[0].TAB=11
 Observation.DataProducts.Output_Beamformed_[85].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -8035,6 +8241,7 @@ Observation.DataProducts.Output_Beamformed_[86].IncoherentStokesBeam[0].Pointing
 Observation.DataProducts.Output_Beamformed_[86].IncoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[86].IncoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[86].IncoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[86].IncoherentStokesBeam[0].Pointing.target=FIELD 2
 Observation.DataProducts.Output_Beamformed_[86].IncoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[86].IncoherentStokesBeam[0].TAB=12
 Observation.DataProducts.Output_Beamformed_[86].IncoherentStokesBeam[0].antennaSet=HBA_DUAL
@@ -8073,6 +8280,7 @@ Observation.DataProducts.Output_Beamformed_[87].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[87].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[87].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[87].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[87].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[87].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[87].CoherentStokesBeam[0].TAB=13
 Observation.DataProducts.Output_Beamformed_[87].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -8112,6 +8320,7 @@ Observation.DataProducts.Output_Beamformed_[88].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[88].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[88].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[88].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[88].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[88].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[88].CoherentStokesBeam[0].TAB=14
 Observation.DataProducts.Output_Beamformed_[88].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -8151,6 +8360,7 @@ Observation.DataProducts.Output_Beamformed_[89].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[89].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[89].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[89].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[89].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[89].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[89].CoherentStokesBeam[0].TAB=15
 Observation.DataProducts.Output_Beamformed_[89].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -8190,6 +8400,7 @@ Observation.DataProducts.Output_Beamformed_[8].CoherentStokesBeam[0].Pointing.an
 Observation.DataProducts.Output_Beamformed_[8].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[8].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[8].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[8].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[8].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[8].CoherentStokesBeam[0].TAB=8
 Observation.DataProducts.Output_Beamformed_[8].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -8229,6 +8440,7 @@ Observation.DataProducts.Output_Beamformed_[90].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[90].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[90].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[90].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[90].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[90].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[90].CoherentStokesBeam[0].TAB=16
 Observation.DataProducts.Output_Beamformed_[90].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -8268,6 +8480,7 @@ Observation.DataProducts.Output_Beamformed_[91].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[91].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[91].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[91].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[91].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[91].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[91].CoherentStokesBeam[0].TAB=17
 Observation.DataProducts.Output_Beamformed_[91].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -8307,6 +8520,7 @@ Observation.DataProducts.Output_Beamformed_[92].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[92].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[92].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[92].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[92].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[92].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[92].CoherentStokesBeam[0].TAB=18
 Observation.DataProducts.Output_Beamformed_[92].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -8346,6 +8560,7 @@ Observation.DataProducts.Output_Beamformed_[93].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[93].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[93].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[93].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[93].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[93].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[93].CoherentStokesBeam[0].TAB=19
 Observation.DataProducts.Output_Beamformed_[93].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -8385,6 +8600,7 @@ Observation.DataProducts.Output_Beamformed_[94].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[94].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[94].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[94].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[94].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[94].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[94].CoherentStokesBeam[0].TAB=20
 Observation.DataProducts.Output_Beamformed_[94].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -8424,6 +8640,7 @@ Observation.DataProducts.Output_Beamformed_[95].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[95].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[95].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[95].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[95].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[95].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[95].CoherentStokesBeam[0].TAB=21
 Observation.DataProducts.Output_Beamformed_[95].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -8463,6 +8680,7 @@ Observation.DataProducts.Output_Beamformed_[96].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[96].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[96].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[96].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[96].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[96].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[96].CoherentStokesBeam[0].TAB=22
 Observation.DataProducts.Output_Beamformed_[96].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -8502,6 +8720,7 @@ Observation.DataProducts.Output_Beamformed_[97].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[97].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[97].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[97].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[97].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[97].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[97].CoherentStokesBeam[0].TAB=23
 Observation.DataProducts.Output_Beamformed_[97].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -8541,6 +8760,7 @@ Observation.DataProducts.Output_Beamformed_[98].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[98].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[98].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[98].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[98].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[98].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[98].CoherentStokesBeam[0].TAB=24
 Observation.DataProducts.Output_Beamformed_[98].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -8580,6 +8800,7 @@ Observation.DataProducts.Output_Beamformed_[99].CoherentStokesBeam[0].Pointing.a
 Observation.DataProducts.Output_Beamformed_[99].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[99].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[99].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[99].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[99].CoherentStokesBeam[0].SAP=1
 Observation.DataProducts.Output_Beamformed_[99].CoherentStokesBeam[0].TAB=25
 Observation.DataProducts.Output_Beamformed_[99].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -8619,6 +8840,7 @@ Observation.DataProducts.Output_Beamformed_[9].CoherentStokesBeam[0].Pointing.an
 Observation.DataProducts.Output_Beamformed_[9].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[9].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[9].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[9].CoherentStokesBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[9].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[9].CoherentStokesBeam[0].TAB=9
 Observation.DataProducts.Output_Beamformed_[9].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -8659,5 +8881,7 @@ Observation.IncoherentStokes.samplingTime=0.0004915200000000001
 Observation.IncoherentStokes.stationList=[CS007,CS005,CS002,CS004,CS006,CS003]
 Observation.IncoherentStokes.stokes=I
 Observation.IncoherentStokes.timeDownsamplingFactor=6
+Observation.startTime=2014-04-22T15:37:00.000000000Z
+Observation.stopTime=2014-04-22T15:41:59.976622105Z
 _isCobalt=T
 feedback_version=03.01.00
diff --git a/RTCP/Cobalt/CoInterface/test/tLTAFeedback.in_reference/Observation221311_feedback b/RTCP/Cobalt/CoInterface/test/tLTAFeedback.in_reference/Observation221311_feedback
index e47ccd26366a4c4d006d324c45cc5e7bdb33166b..1bd11e8ffa8d261f6707638624ff66f7eba32572 100644
--- a/RTCP/Cobalt/CoInterface/test/tLTAFeedback.in_reference/Observation221311_feedback
+++ b/RTCP/Cobalt/CoInterface/test/tLTAFeedback.in_reference/Observation221311_feedback
@@ -11,6 +11,7 @@ Observation.DataProducts.Output_Beamformed_[0].FlysEyeBeam[0].Pointing.angle2=0.
 Observation.DataProducts.Output_Beamformed_[0].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[0].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[0].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[0].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[0].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[0].FlysEyeBeam[0].TAB=0
 Observation.DataProducts.Output_Beamformed_[0].FlysEyeBeam[0].antennaFieldName=HBA0
@@ -48,6 +49,7 @@ Observation.DataProducts.Output_Beamformed_[10].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[10].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[10].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[10].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[10].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[10].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[10].FlysEyeBeam[0].TAB=10
 Observation.DataProducts.Output_Beamformed_[10].FlysEyeBeam[0].antennaFieldName=HBA0
@@ -85,6 +87,7 @@ Observation.DataProducts.Output_Beamformed_[11].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[11].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[11].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[11].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[11].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[11].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[11].FlysEyeBeam[0].TAB=11
 Observation.DataProducts.Output_Beamformed_[11].FlysEyeBeam[0].antennaFieldName=HBA1
@@ -122,6 +125,7 @@ Observation.DataProducts.Output_Beamformed_[12].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[12].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[12].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[12].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[12].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[12].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[12].FlysEyeBeam[0].TAB=12
 Observation.DataProducts.Output_Beamformed_[12].FlysEyeBeam[0].antennaFieldName=HBA0
@@ -159,6 +163,7 @@ Observation.DataProducts.Output_Beamformed_[13].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[13].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[13].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[13].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[13].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[13].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[13].FlysEyeBeam[0].TAB=13
 Observation.DataProducts.Output_Beamformed_[13].FlysEyeBeam[0].antennaFieldName=HBA1
@@ -196,6 +201,7 @@ Observation.DataProducts.Output_Beamformed_[14].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[14].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[14].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[14].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[14].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[14].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[14].FlysEyeBeam[0].TAB=14
 Observation.DataProducts.Output_Beamformed_[14].FlysEyeBeam[0].antennaFieldName=HBA0
@@ -233,6 +239,7 @@ Observation.DataProducts.Output_Beamformed_[15].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[15].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[15].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[15].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[15].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[15].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[15].FlysEyeBeam[0].TAB=15
 Observation.DataProducts.Output_Beamformed_[15].FlysEyeBeam[0].antennaFieldName=HBA1
@@ -270,6 +277,7 @@ Observation.DataProducts.Output_Beamformed_[16].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[16].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[16].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[16].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[16].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[16].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[16].FlysEyeBeam[0].TAB=16
 Observation.DataProducts.Output_Beamformed_[16].FlysEyeBeam[0].antennaFieldName=HBA0
@@ -307,6 +315,7 @@ Observation.DataProducts.Output_Beamformed_[17].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[17].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[17].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[17].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[17].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[17].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[17].FlysEyeBeam[0].TAB=17
 Observation.DataProducts.Output_Beamformed_[17].FlysEyeBeam[0].antennaFieldName=HBA1
@@ -344,6 +353,7 @@ Observation.DataProducts.Output_Beamformed_[18].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[18].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[18].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[18].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[18].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[18].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[18].FlysEyeBeam[0].TAB=18
 Observation.DataProducts.Output_Beamformed_[18].FlysEyeBeam[0].antennaFieldName=HBA0
@@ -381,6 +391,7 @@ Observation.DataProducts.Output_Beamformed_[19].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[19].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[19].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[19].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[19].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[19].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[19].FlysEyeBeam[0].TAB=19
 Observation.DataProducts.Output_Beamformed_[19].FlysEyeBeam[0].antennaFieldName=HBA1
@@ -418,6 +429,7 @@ Observation.DataProducts.Output_Beamformed_[1].FlysEyeBeam[0].Pointing.angle2=0.
 Observation.DataProducts.Output_Beamformed_[1].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[1].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[1].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[1].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[1].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[1].FlysEyeBeam[0].TAB=1
 Observation.DataProducts.Output_Beamformed_[1].FlysEyeBeam[0].antennaFieldName=HBA1
@@ -455,6 +467,7 @@ Observation.DataProducts.Output_Beamformed_[20].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[20].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[20].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[20].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[20].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[20].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[20].FlysEyeBeam[0].TAB=20
 Observation.DataProducts.Output_Beamformed_[20].FlysEyeBeam[0].antennaFieldName=HBA0
@@ -492,6 +505,7 @@ Observation.DataProducts.Output_Beamformed_[21].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[21].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[21].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[21].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[21].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[21].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[21].FlysEyeBeam[0].TAB=21
 Observation.DataProducts.Output_Beamformed_[21].FlysEyeBeam[0].antennaFieldName=HBA1
@@ -529,6 +543,7 @@ Observation.DataProducts.Output_Beamformed_[22].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[22].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[22].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[22].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[22].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[22].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[22].FlysEyeBeam[0].TAB=22
 Observation.DataProducts.Output_Beamformed_[22].FlysEyeBeam[0].antennaFieldName=HBA0
@@ -566,6 +581,7 @@ Observation.DataProducts.Output_Beamformed_[23].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[23].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[23].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[23].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[23].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[23].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[23].FlysEyeBeam[0].TAB=23
 Observation.DataProducts.Output_Beamformed_[23].FlysEyeBeam[0].antennaFieldName=HBA1
@@ -603,6 +619,7 @@ Observation.DataProducts.Output_Beamformed_[24].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[24].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[24].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[24].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[24].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[24].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[24].FlysEyeBeam[0].TAB=24
 Observation.DataProducts.Output_Beamformed_[24].FlysEyeBeam[0].antennaFieldName=HBA0
@@ -640,6 +657,7 @@ Observation.DataProducts.Output_Beamformed_[25].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[25].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[25].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[25].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[25].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[25].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[25].FlysEyeBeam[0].TAB=25
 Observation.DataProducts.Output_Beamformed_[25].FlysEyeBeam[0].antennaFieldName=HBA1
@@ -677,6 +695,7 @@ Observation.DataProducts.Output_Beamformed_[26].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[26].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[26].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[26].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[26].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[26].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[26].FlysEyeBeam[0].TAB=26
 Observation.DataProducts.Output_Beamformed_[26].FlysEyeBeam[0].antennaFieldName=HBA0
@@ -714,6 +733,7 @@ Observation.DataProducts.Output_Beamformed_[27].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[27].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[27].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[27].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[27].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[27].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[27].FlysEyeBeam[0].TAB=27
 Observation.DataProducts.Output_Beamformed_[27].FlysEyeBeam[0].antennaFieldName=HBA1
@@ -751,6 +771,7 @@ Observation.DataProducts.Output_Beamformed_[28].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[28].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[28].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[28].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[28].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[28].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[28].FlysEyeBeam[0].TAB=28
 Observation.DataProducts.Output_Beamformed_[28].FlysEyeBeam[0].antennaFieldName=HBA0
@@ -788,6 +809,7 @@ Observation.DataProducts.Output_Beamformed_[29].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[29].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[29].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[29].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[29].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[29].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[29].FlysEyeBeam[0].TAB=29
 Observation.DataProducts.Output_Beamformed_[29].FlysEyeBeam[0].antennaFieldName=HBA1
@@ -825,6 +847,7 @@ Observation.DataProducts.Output_Beamformed_[2].FlysEyeBeam[0].Pointing.angle2=0.
 Observation.DataProducts.Output_Beamformed_[2].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[2].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[2].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[2].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[2].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[2].FlysEyeBeam[0].TAB=2
 Observation.DataProducts.Output_Beamformed_[2].FlysEyeBeam[0].antennaFieldName=HBA0
@@ -862,6 +885,7 @@ Observation.DataProducts.Output_Beamformed_[30].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[30].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[30].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[30].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[30].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[30].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[30].FlysEyeBeam[0].TAB=30
 Observation.DataProducts.Output_Beamformed_[30].FlysEyeBeam[0].antennaFieldName=HBA0
@@ -899,6 +923,7 @@ Observation.DataProducts.Output_Beamformed_[31].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[31].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[31].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[31].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[31].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[31].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[31].FlysEyeBeam[0].TAB=31
 Observation.DataProducts.Output_Beamformed_[31].FlysEyeBeam[0].antennaFieldName=HBA1
@@ -936,6 +961,7 @@ Observation.DataProducts.Output_Beamformed_[32].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[32].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[32].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[32].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[32].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[32].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[32].FlysEyeBeam[0].TAB=32
 Observation.DataProducts.Output_Beamformed_[32].FlysEyeBeam[0].antennaFieldName=HBA0
@@ -973,6 +999,7 @@ Observation.DataProducts.Output_Beamformed_[33].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[33].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[33].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[33].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[33].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[33].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[33].FlysEyeBeam[0].TAB=33
 Observation.DataProducts.Output_Beamformed_[33].FlysEyeBeam[0].antennaFieldName=HBA1
@@ -1010,6 +1037,7 @@ Observation.DataProducts.Output_Beamformed_[34].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[34].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[34].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[34].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[34].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[34].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[34].FlysEyeBeam[0].TAB=34
 Observation.DataProducts.Output_Beamformed_[34].FlysEyeBeam[0].antennaFieldName=HBA0
@@ -1047,6 +1075,7 @@ Observation.DataProducts.Output_Beamformed_[35].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[35].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[35].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[35].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[35].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[35].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[35].FlysEyeBeam[0].TAB=35
 Observation.DataProducts.Output_Beamformed_[35].FlysEyeBeam[0].antennaFieldName=HBA1
@@ -1084,6 +1113,7 @@ Observation.DataProducts.Output_Beamformed_[36].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[36].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[36].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[36].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[36].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[36].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[36].FlysEyeBeam[0].TAB=36
 Observation.DataProducts.Output_Beamformed_[36].FlysEyeBeam[0].antennaFieldName=HBA0
@@ -1121,6 +1151,7 @@ Observation.DataProducts.Output_Beamformed_[37].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[37].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[37].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[37].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[37].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[37].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[37].FlysEyeBeam[0].TAB=37
 Observation.DataProducts.Output_Beamformed_[37].FlysEyeBeam[0].antennaFieldName=HBA1
@@ -1158,6 +1189,7 @@ Observation.DataProducts.Output_Beamformed_[38].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[38].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[38].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[38].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[38].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[38].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[38].FlysEyeBeam[0].TAB=38
 Observation.DataProducts.Output_Beamformed_[38].FlysEyeBeam[0].antennaFieldName=HBA0
@@ -1195,6 +1227,7 @@ Observation.DataProducts.Output_Beamformed_[39].FlysEyeBeam[0].Pointing.angle2=0
 Observation.DataProducts.Output_Beamformed_[39].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[39].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[39].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[39].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[39].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[39].FlysEyeBeam[0].TAB=39
 Observation.DataProducts.Output_Beamformed_[39].FlysEyeBeam[0].antennaFieldName=HBA1
@@ -1232,6 +1265,7 @@ Observation.DataProducts.Output_Beamformed_[3].FlysEyeBeam[0].Pointing.angle2=0.
 Observation.DataProducts.Output_Beamformed_[3].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[3].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[3].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[3].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[3].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[3].FlysEyeBeam[0].TAB=3
 Observation.DataProducts.Output_Beamformed_[3].FlysEyeBeam[0].antennaFieldName=HBA1
@@ -1269,6 +1303,7 @@ Observation.DataProducts.Output_Beamformed_[4].FlysEyeBeam[0].Pointing.angle2=0.
 Observation.DataProducts.Output_Beamformed_[4].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[4].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[4].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[4].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[4].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[4].FlysEyeBeam[0].TAB=4
 Observation.DataProducts.Output_Beamformed_[4].FlysEyeBeam[0].antennaFieldName=HBA0
@@ -1306,6 +1341,7 @@ Observation.DataProducts.Output_Beamformed_[5].FlysEyeBeam[0].Pointing.angle2=0.
 Observation.DataProducts.Output_Beamformed_[5].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[5].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[5].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[5].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[5].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[5].FlysEyeBeam[0].TAB=5
 Observation.DataProducts.Output_Beamformed_[5].FlysEyeBeam[0].antennaFieldName=HBA1
@@ -1343,6 +1379,7 @@ Observation.DataProducts.Output_Beamformed_[6].FlysEyeBeam[0].Pointing.angle2=0.
 Observation.DataProducts.Output_Beamformed_[6].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[6].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[6].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[6].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[6].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[6].FlysEyeBeam[0].TAB=6
 Observation.DataProducts.Output_Beamformed_[6].FlysEyeBeam[0].antennaFieldName=HBA0
@@ -1380,6 +1417,7 @@ Observation.DataProducts.Output_Beamformed_[7].FlysEyeBeam[0].Pointing.angle2=0.
 Observation.DataProducts.Output_Beamformed_[7].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[7].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[7].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[7].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[7].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[7].FlysEyeBeam[0].TAB=7
 Observation.DataProducts.Output_Beamformed_[7].FlysEyeBeam[0].antennaFieldName=HBA1
@@ -1417,6 +1455,7 @@ Observation.DataProducts.Output_Beamformed_[8].FlysEyeBeam[0].Pointing.angle2=0.
 Observation.DataProducts.Output_Beamformed_[8].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[8].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[8].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[8].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[8].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[8].FlysEyeBeam[0].TAB=8
 Observation.DataProducts.Output_Beamformed_[8].FlysEyeBeam[0].antennaFieldName=HBA0
@@ -1454,6 +1493,7 @@ Observation.DataProducts.Output_Beamformed_[9].FlysEyeBeam[0].Pointing.angle2=0.
 Observation.DataProducts.Output_Beamformed_[9].FlysEyeBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[9].FlysEyeBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[9].FlysEyeBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[9].FlysEyeBeam[0].Pointing.target=
 Observation.DataProducts.Output_Beamformed_[9].FlysEyeBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[9].FlysEyeBeam[0].TAB=9
 Observation.DataProducts.Output_Beamformed_[9].FlysEyeBeam[0].antennaFieldName=HBA1
@@ -1494,5 +1534,7 @@ Observation.FlysEye.rawSamplingTime=8.192e-05
 Observation.FlysEye.samplingTime=0.01048576
 Observation.FlysEye.stokes=I
 Observation.FlysEye.timeDownsamplingFactor=128
+Observation.startTime=2014-04-23T08:03:00.000000000Z
+Observation.stopTime=2014-04-23T08:04:59.453778028Z
 _isCobalt=T
 feedback_version=03.01.00
diff --git a/RTCP/Cobalt/GPUProc/src/MPIReceiver.cc b/RTCP/Cobalt/GPUProc/src/MPIReceiver.cc
index 070ae30541c50a73185e24fb4dc272e39b9042b6..f3758e9865d614040b783be5b52f273fcd4479c6 100644
--- a/RTCP/Cobalt/GPUProc/src/MPIReceiver.cc
+++ b/RTCP/Cobalt/GPUProc/src/MPIReceiver.cc
@@ -59,7 +59,7 @@ namespace LOFAR
       nrBitsPerSample(i_nrBitsPerSample)
     {}
 
-    template<typename SampleT> void MPIReceiver::receiveInput()
+    template<typename SampleT> size_t MPIReceiver::receiveInput()
     {
       NSTimer receiveTimer("MPI: Receive station data", true, true);
      
@@ -83,12 +83,13 @@ namespace LOFAR
       }
 
       bool allDone = false;
+      ssize_t block;
 
       // Receive input from StationInput::sendInputToPipeline.
       //
       // Start processing from block -1, and don't process anything if the
       // observation is empty.
-      for (ssize_t block = -1; !allDone; block++) 
+      for (block = -1; !allDone; block++) 
       {
         // Receive the samples from all subbands from the ant fields for this block.
         LOG_INFO_STR("[block " << block << "] Collecting input buffers");
@@ -130,21 +131,24 @@ namespace LOFAR
 
       // Signal end of input
       mpiPool.filled.append(NULL, false);
+
+      // "block" indicates the block number of the EOS marker
+      const ssize_t last_block = block - 1;
+
+      // Return the number of blocks we've processed, excluding any negative blocks
+      return last_block < 0 ? 0 : last_block + 1;
     }
 
-    void MPIReceiver::receiveInput()
+    size_t MPIReceiver::receiveInput()
     {
       switch (nrBitsPerSample) {
       default:
       case 16:
-        receiveInput< SampleType<i16complex> >();
-        break;
+        return receiveInput< SampleType<i16complex> >();
       case 8:
-        receiveInput< SampleType<i8complex> >();
-        break;
+        return receiveInput< SampleType<i8complex> >();
       case 4:
-        receiveInput< SampleType<i4complex> >();
-        break;
+        return receiveInput< SampleType<i4complex> >();
       }
     }
   }
diff --git a/RTCP/Cobalt/GPUProc/src/MPIReceiver.h b/RTCP/Cobalt/GPUProc/src/MPIReceiver.h
index e13c1783e8f3d0ceae576fe5064ca97881d9e51f..3429dc6eb7c342dab9de4302ccfa491a2257a2fd 100644
--- a/RTCP/Cobalt/GPUProc/src/MPIReceiver.h
+++ b/RTCP/Cobalt/GPUProc/src/MPIReceiver.h
@@ -79,11 +79,15 @@ namespace LOFAR
       // raw MPIRecvData     
       // This function is typically started in a seperate thread
       // Internally the type of samples depends on nrBitsPerSample
-      void receiveInput();
+      //
+      // Returns the number of blocks received, not counting
+      // block -1.
+      size_t receiveInput();
       
     private:
       // The templeted receive function.
-      template<typename SampleT> void receiveInput();
+      // Return the number of blocks received (not counting block -1).
+      template<typename SampleT> size_t receiveInput();
 
       Pool<struct MPIRecvData> &mpiPool;
       const std::vector<size_t> subbandIndices;
diff --git a/RTCP/Cobalt/GPUProc/src/Storage/StorageProcesses.cc b/RTCP/Cobalt/GPUProc/src/Storage/StorageProcesses.cc
index ab65389e25a1c22391df591ab3bb5d61bf803c51..06916dad84ec3bd0242b1c540cd11efedf65a5ee 100644
--- a/RTCP/Cobalt/GPUProc/src/Storage/StorageProcesses.cc
+++ b/RTCP/Cobalt/GPUProc/src/Storage/StorageProcesses.cc
@@ -95,11 +95,11 @@ namespace LOFAR
     }
 
 
-    bool StorageProcesses::forwardFinalMetaData()
+    bool StorageProcesses::forwardFinalMetaData(size_t nrBlocksInObservation)
     {
       bool success = true;
       FinalMetaData finalMetaData;
-      
+
       try {
         finalMetaData = getFinalMetaData(itsParset);
       } catch(Exception &ex) {
@@ -109,6 +109,9 @@ namespace LOFAR
         success = false;
       }
 
+      // Add provided annotation
+      finalMetaData.nrBlocksInObservation = nrBlocksInObservation;
+
       // Unblock Storage threads, even if we don't have finalMetaData,
       // in order to complete as much of the operational sequence as possible.
 
diff --git a/RTCP/Cobalt/GPUProc/src/Storage/StorageProcesses.h b/RTCP/Cobalt/GPUProc/src/Storage/StorageProcesses.h
index 3f81f45edded0dbc514a0c419118163eae6d2102..b7d60d59a43bc8cc0c05bd009443849846161d0f 100644
--- a/RTCP/Cobalt/GPUProc/src/Storage/StorageProcesses.h
+++ b/RTCP/Cobalt/GPUProc/src/Storage/StorageProcesses.h
@@ -73,8 +73,11 @@ namespace LOFAR
 
       // Query OTDB for the FinalMetaData, and forward it to the Storage processes.
       //
+      // Add the provided fields to the metadata:
+      //   nrBlocksInObservation: number of blocks that were received in the observation
+      //
       // Returns false if the FinalMetaData could not be obtained.
-      bool forwardFinalMetaData();
+      bool forwardFinalMetaData(size_t nrBlocksInObservation);
 
       // stop the processes and control threads, given an absolute time out.
       void stop( time_t deadline );
diff --git a/RTCP/Cobalt/GPUProc/src/rtcp.cc b/RTCP/Cobalt/GPUProc/src/rtcp.cc
index 7adc34409a1f89026a695d86737e9cfcabc5e46c..d9aab0ca09fae9c1cc7b3e0dfb8a573f74b7d8c8 100644
--- a/RTCP/Cobalt/GPUProc/src/rtcp.cc
+++ b/RTCP/Cobalt/GPUProc/src/rtcp.cc
@@ -440,6 +440,9 @@ int main(int argc, char **argv)
   Trigger stopSwitch;
   std::unique_ptr<CommandThread> commandThread;
 
+  // number of blocks we actually processed (expected to become ps.settings.nrBlocks())
+  size_t nr_blocks = 0;
+
   #pragma omp parallel sections num_threads(2)
   {
     #pragma omp section
@@ -564,7 +567,7 @@ int main(int argc, char **argv)
         {
           OMPThread::ScopedName sn("mpi recv");
 
-          MPI_receiver.receiveInput();
+          nr_blocks = MPI_receiver.receiveInput();
         }
 
         // Retrieve items from pool and process further on
@@ -606,7 +609,7 @@ int main(int argc, char **argv)
     LOG_INFO("----- Processing final metadata (broken antenna information)");
 
     // retrieve and forward final meta data
-    if (!storageProcesses->forwardFinalMetaData()) {
+    if (!storageProcesses->forwardFinalMetaData(nr_blocks)) {
       LOG_ERROR("Forwarding final metadata failed");
       exitStatus = EXIT_FAILURE;
     }
@@ -627,7 +630,7 @@ int main(int argc, char **argv)
       "Processing feedback",
       str(format("%s") % ps.settings.momID),
       str(format("%s") % ps.settings.observationID),
-      fb.processingFeedback());
+      fb.processingFeedback(nr_blocks));
 
     bus.send(msg);
 
diff --git a/RTCP/Cobalt/GPUProc/test/Storage/tStorageProcesses.cc b/RTCP/Cobalt/GPUProc/test/Storage/tStorageProcesses.cc
index 0c1d9870b511cfd5362238f80f8969a07d620f3c..da314b2a760357be6c4d479eafe702d395e0b80e 100644
--- a/RTCP/Cobalt/GPUProc/test/Storage/tStorageProcesses.cc
+++ b/RTCP/Cobalt/GPUProc/test/Storage/tStorageProcesses.cc
@@ -88,7 +88,7 @@ void test_protocol()
   	    // Give Storage time to log its parset
 	    sleep(2);
 	
-	    sp.forwardFinalMetaData();
+	    sp.forwardFinalMetaData(10);
 	
 	    // Give 10 seconds to wrap up
 	    sp.stop(time(0) + 10);
diff --git a/RTCP/Cobalt/GPUProc/test/Storage/tStorageProcesses.queue b/RTCP/Cobalt/GPUProc/test/Storage/tStorageProcesses.queue
index 3059e070fc62184337122657931702d02099c60c..9ec42538f85d428a64110c8f143c9a03ec568cd9 100644
--- a/RTCP/Cobalt/GPUProc/test/Storage/tStorageProcesses.queue
+++ b/RTCP/Cobalt/GPUProc/test/Storage/tStorageProcesses.queue
@@ -19,7 +19,13 @@
          <sasid>12345</sasid>
       </ids>
    </header>
-   <payload>Observation.DataProducts.Output_Correlated_[0].SAP=0
+   <payload>Observation.DataProducts.Output_Correlated_[0].Pointing.angle1=0.000000
+Observation.DataProducts.Output_Correlated_[0].Pointing.angle2=0.000000
+Observation.DataProducts.Output_Correlated_[0].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[0].Pointing.target=
+Observation.DataProducts.Output_Correlated_[0].SAP=0
+Observation.DataProducts.Output_Correlated_[0].antennaFields=[RS000LBA]
+Observation.DataProducts.Output_Correlated_[0].antennaSet=LBA_INNER
 Observation.DataProducts.Output_Correlated_[0].centralFrequency=0.000000
 Observation.DataProducts.Output_Correlated_[0].channelWidth=3051.757812
 Observation.DataProducts.Output_Correlated_[0].channelsPerSubband=64
diff --git a/RTCP/Cobalt/OutputProc/src/MSWriterDAL.cc b/RTCP/Cobalt/OutputProc/src/MSWriterDAL.cc
index 7703fb4c1692081646b3ee227ae00829000c8c6f..e63448d67866a42f8a335fa511ea2d78e463928a 100644
--- a/RTCP/Cobalt/OutputProc/src/MSWriterDAL.cc
+++ b/RTCP/Cobalt/OutputProc/src/MSWriterDAL.cc
@@ -238,8 +238,8 @@ namespace LOFAR
       sap.expTimeStartUTC().value = toUTC(itsParset.settings.startTime);
       sap.expTimeStartMJD().value = toMJD(itsParset.settings.startTime);
 
-      sap.expTimeEndUTC().value = toUTC(itsParset.getRealStopTime());
-      sap.expTimeEndMJD().value = toMJD(itsParset.getRealStopTime());
+      sap.expTimeEndUTC().value = toUTC(itsParset.settings.getRealStopTime());
+      sap.expTimeEndMJD().value = toMJD(itsParset.settings.getRealStopTime());
 
       // TODO: fix the system to use the itsParset.beamDuration(sapNr), but OLAP
       // does not work that way yet (beamDuration is currently unsupported).
@@ -297,7 +297,7 @@ namespace LOFAR
         beam.stationsList().value = ObservationSettings::AntennaFieldName::names(antennaFieldNames);
       }
 
-      const vector<string> beamtargets(1, itsParset.settings.SAPs[sapNr].target);
+      const vector<string> beamtargets(1, tab.target);
 
       beam.targets().value = beamtargets;
       beam.tracking().value = itsParset.settings.SAPs[sapNr].direction.type;
@@ -580,6 +580,24 @@ namespace LOFAR
       itsConfiguration.replace(itsConfigurationPrefix + "percentageWritten", str(format("%u") % percentageWritten()));
     }
 
+    template <typename T,unsigned DIM, unsigned FLAGS_DIM>
+    void MSWriterDAL<T,DIM,FLAGS_DIM>::fini(const FinalMetaData &finalMetaData)
+    {
+      const struct ObservationSettings::BeamFormer::File &f = itsParset.settings.beamFormer.files[itsFileNr];
+      const unsigned sapNr = f.sapNr;
+
+      string h5filename = forceextension(itsFilename, ".h5");
+      ScopedLock sl(HDF5Mutex);
+
+      // update the metadata
+      BF_File file(h5filename, BF_File::READWRITE);
+      BF_SubArrayPointing sap = file.subArrayPointing(sapNr);
+
+      sap.expTimeEndUTC().value = toUTC(itsParset.settings.getBlockEndTime(static_cast<ssize_t>(finalMetaData.nrBlocksInObservation) - 1));
+      sap.expTimeEndMJD().value = toMJD(itsParset.settings.getBlockEndTime(static_cast<ssize_t>(finalMetaData.nrBlocksInObservation) - 1));
+      sap.totalIntegrationTime().value = finalMetaData.nrBlocksInObservation * itsParset.settings.blockDuration();
+    }
+
     // specialisations for FinalBeamFormedData
     template class MSWriterDAL<float,3>;
   } // namespace Cobalt
diff --git a/RTCP/Cobalt/OutputProc/src/MSWriterDAL.h b/RTCP/Cobalt/OutputProc/src/MSWriterDAL.h
index b8b9012d340cf1125eccab914c9619ea3de70297..c4cd2130eb02944da7b50c1b35b7c36d15b2c618 100644
--- a/RTCP/Cobalt/OutputProc/src/MSWriterDAL.h
+++ b/RTCP/Cobalt/OutputProc/src/MSWriterDAL.h
@@ -49,6 +49,8 @@ namespace LOFAR
 
       virtual void write(StreamableData *data);
 
+      virtual void fini(const FinalMetaData &finalMetaData);
+
     private:
       const std::string itsFilename;
       const Parset &itsParset;
diff --git a/RTCP/Cobalt/OutputProc/test/tMSWriterDAL.cc b/RTCP/Cobalt/OutputProc/test/tMSWriterDAL.cc
index 15197f24516b6cfc3000371f197e7532c71fcbe6..603abb7287f7966820e398b737951a554253d4d5 100644
--- a/RTCP/Cobalt/OutputProc/test/tMSWriterDAL.cc
+++ b/RTCP/Cobalt/OutputProc/test/tMSWriterDAL.cc
@@ -54,18 +54,16 @@ int main()
     const ObservationSettings::BeamFormer::StokesSettings::QuantizerSettings 
       &qset = sset.quantizerSettings;
 
+    MSWriterDAL<float,3> writer("tMSWriterDAL_tmp.h5", parset, fileNo);
+
     if (!qset.enabled) {
-      MSWriterDAL<float,3> writer("tMSWriterDAL_tmp.h5", parset, fileNo);
       SampleData<float,3,1> data(
           boost::extents[sset.nrSamples][nrSubbands][sset.nrChannels],
           boost::extents[nrSubbands]);
       memset(data.samples.origin(), 0, data.samples.num_elements() * sizeof *data.samples.origin());
       writer.init();
       writer.write(&data);
-      // Dump feedback data to stdout
-      cout << writer.configuration() << endl;
     } else {
-      MSWriterDAL<float,3> writer("tMSWriterDAL_tmp.h5", parset, fileNo);
       SampleData<float,3,1> data(
           nrSubbands,sset.nrChannels,sset.nrSamples,
           true);
@@ -74,11 +72,15 @@ int main()
       memset(data.qoffsets.origin(), 2, data.qoffsets.num_elements() * sizeof *data.qoffsets.origin());
       writer.init();
       writer.write(&data);
-      // Dump feedback data to stdout
-      cout << writer.configuration() << endl;
-    } 
+    }
 
+    // add final metadata
+    FinalMetaData fmd;
+    fmd.nrBlocksInObservation = 1; // set final observation length
+    writer.fini(fmd);
 
+    // Dump feedback data to stdout
+    cout << writer.configuration() << endl;
   }
 #else
   cout << "Built without DAL, skipped actual test code." << endl;
diff --git a/SAS/TMSS/backend/services/feedback_handling/test/t_feedback_handling_service.py b/SAS/TMSS/backend/services/feedback_handling/test/t_feedback_handling_service.py
index 32335fec9947f191a9db2689b1df5c6e7c851a70..afd27ffae54d53f3a8bd14a7e2896322e4c8b748 100755
--- a/SAS/TMSS/backend/services/feedback_handling/test/t_feedback_handling_service.py
+++ b/SAS/TMSS/backend/services/feedback_handling/test/t_feedback_handling_service.py
@@ -49,6 +49,7 @@ class TestFeedbackHandlingService(unittest.TestCase):
 Observation.DataProducts.Output_Correlated_[{subband}].Pointing.directionType=J2000
 Observation.DataProducts.Output_Correlated_[{subband}].Pointing.angle1=0.1
 Observation.DataProducts.Output_Correlated_[{subband}].Pointing.angle2=0.2
+Observation.DataProducts.Output_Correlated_[{subband}].Pointing.target=my_source
 Observation.DataProducts.Output_Correlated_[{subband}].antennaSet=HBA_DUAL
 Observation.DataProducts.Output_Correlated_[{subband}].antennaFields=[CS001HBA0,CS001HBA1]
 Observation.DataProducts.Output_Correlated_[{subband}].centralFrequency=102734375.000000
diff --git a/SAS/TMSS/backend/src/tmss/tmssapp/adapters/feedback.py b/SAS/TMSS/backend/src/tmss/tmssapp/adapters/feedback.py
index 808f0cc55c235c2faa9ee483e36fba393aebd5f1..6fc341b142c259d2b0d53001824d4a765be53001 100644
--- a/SAS/TMSS/backend/src/tmss/tmssapp/adapters/feedback.py
+++ b/SAS/TMSS/backend/src/tmss/tmssapp/adapters/feedback.py
@@ -93,7 +93,7 @@ def observation_correlated_feedback_to_feedback_doc(dp_feedback: dict) -> dict:
                 "direction_type": dp_feedback['Pointing.directionType'],
                 "angle1": float(dp_feedback['Pointing.angle1']),
                 "angle2": float(dp_feedback['Pointing.angle2']),
-                "target": "Unknown"  # todo
+                "target": dp_feedback['Pointing.target']
             }
         },
         "samples": {
@@ -139,7 +139,7 @@ def observation_beamformed_feedback_to_feedback_doc(dp_feedback: dict) -> dict:
                 "direction_type": dp_feedback[beam_prefix + 'Pointing.directionType'],
                 "angle1": float(dp_feedback[beam_prefix + 'Pointing.angle1']),
                 "angle2": float(dp_feedback[beam_prefix + 'Pointing.angle2']),
-                "target": "Unknown"  # todo
+                "target": dp_feedback[beam_prefix + 'Pointing.target']
             },
             "coherent": not beam_prefix.startswith("IncoherentStokesBeam")
         },
diff --git a/SAS/TMSS/backend/src/tmss/tmssapp/adapters/parset.py b/SAS/TMSS/backend/src/tmss/tmssapp/adapters/parset.py
index 1bc70cc5e44ecbfca63943bf44d4ed6cccdc8737..82404b7a371b184741b572c526ac6605a560a28f 100644
--- a/SAS/TMSS/backend/src/tmss/tmssapp/adapters/parset.py
+++ b/SAS/TMSS/backend/src/tmss/tmssapp/adapters/parset.py
@@ -173,6 +173,7 @@ def _convert_beamformer_settings_to_parset_dict(subtask: models.Subtask, spec: d
                     pipeline_parset['Beam[%s].TiedArrayBeam[%s].directionType' % (sap_idx, tab_idx)] = tab['pointing']['direction_type']
                     pipeline_parset['Beam[%s].TiedArrayBeam[%s].angle1'        % (sap_idx, tab_idx)] = tab['pointing']['angle1']
                     pipeline_parset['Beam[%s].TiedArrayBeam[%s].angle2'        % (sap_idx, tab_idx)] = tab['pointing']['angle2']
+                    pipeline_parset['Beam[%s].TiedArrayBeam[%s].target'        % (sap_idx, tab_idx)] = tab['pointing']['target']
                     stokes_settings = pipeline['coherent']
                 else:
                     pipeline_parset['Beam[%s].TiedArrayBeam[%s].coherent'      % (sap_idx, tab_idx)] = False
diff --git a/SAS/TMSS/backend/test/t_feedback.py b/SAS/TMSS/backend/test/t_feedback.py
index ea02f7f95e1b88b5a4d1028700384ef6ee00cbd9..174bbe39653ab1af247de0fcaa11be2e8eb32c7b 100755
--- a/SAS/TMSS/backend/test/t_feedback.py
+++ b/SAS/TMSS/backend/test/t_feedback.py
@@ -172,6 +172,7 @@ Observation.Correlator.integrationInterval=1.00663296
 Observation.DataProducts.Output_Correlated_[0].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[0].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[0].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[0].Pointing.target=my_source
 Observation.DataProducts.Output_Correlated_[0].SAP=0
 Observation.DataProducts.Output_Correlated_[0].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[0].antennaSet=LBA_INNER
@@ -193,6 +194,7 @@ Observation.DataProducts.Output_Correlated_[0].subband=0
 Observation.DataProducts.Output_Correlated_[1].Pointing.angle1=2.153736
 Observation.DataProducts.Output_Correlated_[1].Pointing.angle2=0.841554
 Observation.DataProducts.Output_Correlated_[1].Pointing.directionType=J2000
+Observation.DataProducts.Output_Correlated_[1].Pointing.target=my_source
 Observation.DataProducts.Output_Correlated_[1].SAP=0
 Observation.DataProducts.Output_Correlated_[1].antennaFields=[CS001LBA,CS002LBA,CS003LBA,CS004LBA,CS005LBA,CS006LBA,CS007LBA,CS011LBA,CS013LBA,CS017LBA,CS021LBA,CS024LBA,CS026LBA,CS028LBA,CS030LBA,CS031LBA,CS032LBA,CS101LBA,CS103LBA,CS201LBA,CS301LBA,CS302LBA,CS401LBA,CS501LBA,RS106LBA,RS205LBA,RS208LBA,RS210LBA,RS305LBA,RS306LBA,RS307LBA,RS310LBA,RS406LBA,RS407LBA,RS409LBA,RS503LBA,RS508LBA,RS509LBA]
 Observation.DataProducts.Output_Correlated_[1].antennaSet=LBA_INNER
@@ -235,6 +237,7 @@ Observation.DataProducts.Output_Beamformed_[0].CoherentStokesBeam[0].Pointing.an
 Observation.DataProducts.Output_Beamformed_[0].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[0].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[0].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[0].CoherentStokesBeam[0].Pointing.target=my_source
 Observation.DataProducts.Output_Beamformed_[0].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[0].CoherentStokesBeam[0].TAB=0
 Observation.DataProducts.Output_Beamformed_[0].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
@@ -274,6 +277,7 @@ Observation.DataProducts.Output_Beamformed_[1].CoherentStokesBeam[0].Pointing.an
 Observation.DataProducts.Output_Beamformed_[1].CoherentStokesBeam[0].Pointing.coordType=RA-DEC
 Observation.DataProducts.Output_Beamformed_[1].CoherentStokesBeam[0].Pointing.directionType=J2000
 Observation.DataProducts.Output_Beamformed_[1].CoherentStokesBeam[0].Pointing.equinox=J2000
+Observation.DataProducts.Output_Beamformed_[1].CoherentStokesBeam[0].Pointing.target=my_source
 Observation.DataProducts.Output_Beamformed_[1].CoherentStokesBeam[0].SAP=0
 Observation.DataProducts.Output_Beamformed_[1].CoherentStokesBeam[0].TAB=1
 Observation.DataProducts.Output_Beamformed_[1].CoherentStokesBeam[0].antennaFields=[CS002HBA0,CS002HBA1,CS003HBA0,CS003HBA1,CS004HBA0,CS004HBA1,CS005HBA0,CS005HBA1,CS006HBA0,CS006HBA1,CS007HBA0,CS007HBA1]
diff --git a/SubSystems/Online_Cobalt/test/Correlator/tCorrelate_1sec_1st_5sb_2saps_noflagging.output/queues/otdb.task.feedback.processing b/SubSystems/Online_Cobalt/test/Correlator/tCorrelate_1sec_1st_5sb_2saps_noflagging.output/queues/otdb.task.feedback.processing
index bdd31462a7943569a596b683ec1695d65b32df0d..abe2688d253dc608ac662af31bf2dddd8f7da57f 100644
--- a/SubSystems/Online_Cobalt/test/Correlator/tCorrelate_1sec_1st_5sb_2saps_noflagging.output/queues/otdb.task.feedback.processing
+++ b/SubSystems/Online_Cobalt/test/Correlator/tCorrelate_1sec_1st_5sb_2saps_noflagging.output/queues/otdb.task.feedback.processing
@@ -24,6 +24,8 @@ Observation.Correlator.channelsPerSubband=16
 Observation.Correlator.integrationInterval=0.25165824
 Observation.DataProducts.nrOfOutput_Beamformed_=0
 Observation.DataProducts.nrOfOutput_Correlated_=5
+Observation.startTime=2012-11-21T12:47:01.000000000Z
+Observation.stopTime=2012-11-21T12:47:02.006633043Z
 _isCobalt=T
 feedback_version=03.01.00
 </payload>
diff --git a/SubSystems/Online_Cobalt/test/Correlator/tCorrelate_1sec_1st_5sb_noflagging.output/queues/otdb.task.feedback.processing b/SubSystems/Online_Cobalt/test/Correlator/tCorrelate_1sec_1st_5sb_noflagging.output/queues/otdb.task.feedback.processing
index bdd31462a7943569a596b683ec1695d65b32df0d..abe2688d253dc608ac662af31bf2dddd8f7da57f 100644
--- a/SubSystems/Online_Cobalt/test/Correlator/tCorrelate_1sec_1st_5sb_noflagging.output/queues/otdb.task.feedback.processing
+++ b/SubSystems/Online_Cobalt/test/Correlator/tCorrelate_1sec_1st_5sb_noflagging.output/queues/otdb.task.feedback.processing
@@ -24,6 +24,8 @@ Observation.Correlator.channelsPerSubband=16
 Observation.Correlator.integrationInterval=0.25165824
 Observation.DataProducts.nrOfOutput_Beamformed_=0
 Observation.DataProducts.nrOfOutput_Correlated_=5
+Observation.startTime=2012-11-21T12:47:01.000000000Z
+Observation.stopTime=2012-11-21T12:47:02.006633043Z
 _isCobalt=T
 feedback_version=03.01.00
 </payload>