diff --git a/LArCalorimeter/LArROD/LArROD/LArRawChannelBuilderAlg.h b/LArCalorimeter/LArROD/LArROD/LArRawChannelBuilderAlg.h index 0a8f84241b2dbdf83a9c3b63a53e2fdcde5c145f..64a61755bde9070aa0664d33367a7e4c5ff83a1f 100644 --- a/LArCalorimeter/LArROD/LArROD/LArRawChannelBuilderAlg.h +++ b/LArCalorimeter/LArROD/LArROD/LArRawChannelBuilderAlg.h @@ -1,6 +1,6 @@ //Dear emacs, this is -*-c++-*- /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration */ #ifndef LARROD_LARRAWCHANNELBUILDERALG_H @@ -17,6 +17,7 @@ #include "LArElecCalib/ILArOFC.h" #include "LArElecCalib/ILArShape.h" #include "LArCabling/LArOnOffIdMapping.h" +#include "AthenaPoolUtilities/AthenaAttributeList.h" //Event classes class LArDigitContainer; @@ -50,12 +51,16 @@ class LArRawChannelBuilderAlg : public AthReentrantAlgorithm { SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + SG::ReadCondHandleKey<AthenaAttributeList> m_thresholdsKey{this, "DSPThresholdsKey","/LAR/NoiseOfl/DSPThresholds", "SG Key for thresholds to compute time and quality"}; + //Other jobOptions: Gaudi::Property<float> m_eCutFortQ{this,"ECutFortQ",256.0,"Time and Quality will be computed only for channels with E above this value"}; //This flag decides if we compute Q and t for cells with negative energy Gaudi::Property<bool> m_absECutFortQ{this,"absECut",true,"Cut on fabs(E) for Q and t computation"}; Gaudi::Property<bool> m_useShapeDer{this,"useShapeDer",true,"Use shape derivative in Q-factor computation"}; + //This flag decides, wheter to use DB or constant threshold + Gaudi::Property<bool> m_useDBFortQ{this,"useDB",true,"Use DB for cut on t,Q"}; //The following matters only in the MC case, when we have a 32 sample shapes Gaudi::Property<int> m_firstSample{this,"firstSample",0,"first of the 32 sampels of the MC shape to be used"}; diff --git a/LArCalorimeter/LArROD/python/LArRODConfig.py b/LArCalorimeter/LArROD/python/LArRODConfig.py index 01c82c749eb71c7a1f87052208cd354e7814886a..48053f898a741810a460e94d8e04dbc603ca5146 100644 --- a/LArCalorimeter/LArROD/python/LArRODConfig.py +++ b/LArCalorimeter/LArROD/python/LArRODConfig.py @@ -30,6 +30,14 @@ def getLArRawChannelBuilder(name="LArRawChannelBuilder" , **kwargs): from LArROD.LArRODFlags import larRODFlags kwargs.setdefault('firstSample',larRODFlags.firstSample()) + from AthenaCommon import CfgGetter + iovDbSvc=CfgGetter.getService("IOVDbSvc") + from AthenaCommon.AlgSequence import AthSequencer + condSeq = AthSequencer("AthCondSeq") + condLoader=condSeq.CondInputLoader + fld="/LAR/NoiseOfl/DSPThresholds" + iovDbSvc.Folders.append(fld+"<db>COOLOFL_LAR/OFLP200</db>") + condLoader.Load.append(("AthenaAttributeList",fld)) return CfgMgr.LArRawChannelBuilderAlg(name, **kwargs) @@ -53,4 +61,12 @@ def getLArRawChannelBuilder_DigiHSTruth(name="LArRawChannelBuilder_DigiHSTruth" from LArROD.LArRODFlags import larRODFlags kwargs.setdefault('firstSample',larRODFlags.firstSample()) + iovDbSvc=CfgGetter.getService("IOVDbSvc") + from AthenaCommon.AlgSequence import AthSequencer + condSeq = AthSequencer("AthCondSeq") + condLoader=condSeq.CondInputLoader + fld="/LAR/NoiseOfl/DSPThresholds" + iovDbSvc.Folders.append(fld+"<db>COOLOFL_LAR/OFLP200</db>") + condLoader.Load.append(("AthenaAttributeList",fld)) + return CfgMgr.LArRawChannelBuilderAlg(name, **kwargs) diff --git a/LArCalorimeter/LArROD/python/LArRawChannelBuilderAlgConfig.py b/LArCalorimeter/LArROD/python/LArRawChannelBuilderAlgConfig.py index d29e5c6ea8f6d893f06fea2aa710a352c36b5a7b..5aed1203514da3f8528b87274b8b6738be87835e 100644 --- a/LArCalorimeter/LArROD/python/LArRawChannelBuilderAlgConfig.py +++ b/LArCalorimeter/LArROD/python/LArRawChannelBuilderAlgConfig.py @@ -16,6 +16,9 @@ def LArRawChannelBuilderAlgCfg(configFlags, **kwargs): acc.merge(LArOFCCondAlgCfg(configFlags)) kwargs.setdefault("LArRawChannelKey", "LArRawChannels") kwargs.setdefault("ShapeKey", "LArShapeSym") + fld="/LAR/NoiseOfl/DSPThresholds" + dbString="OFLP200" + dbInstance="LAR_OFL" if configFlags.Digitization.PileUpPremixing: kwargs.setdefault("LArDigitKey", configFlags.Overlay.BkgPrefix() + "LArDigitContainer_MC") else: @@ -27,6 +30,14 @@ def LArRawChannelBuilderAlgCfg(configFlags, **kwargs): kwargs.setdefault("LArRawChannelKey", "LArRawChannels") else: kwargs.setdefault("LArRawChannelKey", "LArRawChannels_FromDigits") + fld="/LAR/Configuration/DSPThresholdFlat/Thresholds" + dbString="CONDBR2" + dbInstance="LAR_ONL" + + from IOVDbSvc.IOVDbSvcConfig import addFolders + acc.merge(addFolders(configFlags,fld, dbInstance, className="AthenaAttributeList", db=dbString)) + + kwargs.setdefault("DSPThresholdsKey",fld) acc.addEventAlgo(LArRawChannelBuilderAlg(**kwargs)) @@ -44,6 +55,7 @@ if __name__=="__main__": from AthenaConfiguration.TestDefaults import defaultTestFiles ConfigFlags.Input.Files = defaultTestFiles.RAW + ConfigFlags.Input.isMC = False ConfigFlags.lock() diff --git a/LArCalorimeter/LArROD/python/LArRawChannelBuilderDefault.py b/LArCalorimeter/LArROD/python/LArRawChannelBuilderDefault.py index f3f74f47d50fdc9b533f4c4e51e993925710109e..2856101b1d6af156ecc575f1322097884c0f6270 100644 --- a/LArCalorimeter/LArROD/python/LArRawChannelBuilderDefault.py +++ b/LArCalorimeter/LArROD/python/LArRawChannelBuilderDefault.py @@ -22,6 +22,18 @@ def LArRawChannelBuilderDefault(): theLArRawChannelBuilder=LArRawChannelBuilderAlg() if larRODFlags.keepDSPRaw(): theLArRawChannelBuilder.LArRawChannelKey=larRODFlags.RawChannelFromDigitsContainerName() + + if globalflags.DataSource() == 'data': + fld="/LAR/Configuration/DSPThresholdFlat/Thresholds" + dbString="<db>COOLONL_LAR/CONDBR2</db>" + else: + fld="/LAR/NoiseOfl/DSPThresholds" + dbString="<db>COOLOFL_LAR/OFLP200</db>" + + theLArRawChannelBuilder.DSPThresholdsKey=fld + from IOVDbSvc.CondDB import conddb + conddb.addFolder ("", fld+dbString, className="AthenaAttributeList") + topSequence += theLArRawChannelBuilder #Useless here but for backward compatiblity diff --git a/LArCalorimeter/LArROD/share/LArRawChannels.txt.ref b/LArCalorimeter/LArROD/share/LArRawChannels.txt.ref index ea23bc21d52755dd4c43f346b9538d3b805cd38f..cd33d2cc5f699c34f048b6df11d83bcd0b90db55 100644 --- a/LArCalorimeter/LArROD/share/LArRawChannels.txt.ref +++ b/LArCalorimeter/LArROD/share/LArRawChannels.txt.ref @@ -1,231 +1,231 @@ Event 1 contains 967 channels -Channel: BARREL/C-SIDE/FT-0/SLOT-2/CHAN-49 (is not EM) E= 100 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-0/SLOT-5/CHAN-114 (is not EM) E= 151 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-0/SLOT-5/CHAN-117 (is not EM) E= 93 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-0/SLOT-5/CHAN-118 (is not EM) E= 137 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-0/SLOT-9/CHAN-15 (is not EM) E= 103 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-0/SLOT-2/CHAN-49 (is not EM) E= 100 t= -21792 Q= 4027 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-0/SLOT-5/CHAN-114 (is not EM) E= 151 t= -2742 Q= 102 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-0/SLOT-5/CHAN-117 (is not EM) E= 93 t= 15858 Q= 63 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-0/SLOT-5/CHAN-118 (is not EM) E= 137 t= 16376 Q= 764 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-0/SLOT-9/CHAN-15 (is not EM) E= 103 t= 3510 Q= 99 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-0/SLOT-11/CHAN-24 (is not EM) E= 522 t= -17902 Q= 1321 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-0/SLOT-12/CHAN-59 (is not EM) E= 244 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-2/CHAN-38 (is not EM) E= 99 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-2/CHAN-39 (is not EM) E= 107 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-3/CHAN-2 (is not EM) E= 95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-4/CHAN-112 (is not EM) E= 128 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-5/CHAN-54 (is not EM) E= -93 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-6/CHAN-99 (is not EM) E= 85 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-9/CHAN-79 (is not EM) E= 105 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-10/CHAN-34 (is not EM) E= 228 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-10/CHAN-35 (is not EM) E= 212 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-0/SLOT-12/CHAN-59 (is not EM) E= 244 t= 8598 Q= 32 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-2/CHAN-38 (is not EM) E= 99 t= 353 Q= 230 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-2/CHAN-39 (is not EM) E= 107 t= 2145 Q= 279 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-3/CHAN-2 (is not EM) E= 95 t= -9740 Q= 1244 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-4/CHAN-112 (is not EM) E= 128 t= -6151 Q= 1899 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-5/CHAN-54 (is not EM) E= -93 t= -997 Q= 5460 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-6/CHAN-99 (is not EM) E= 85 t= 5684 Q= 715 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-9/CHAN-79 (is not EM) E= 105 t= -15370 Q= 1639 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-10/CHAN-34 (is not EM) E= 228 t= 8305 Q= 4 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-10/CHAN-35 (is not EM) E= 212 t= 15309 Q= 111 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-1/SLOT-11/CHAN-123 (is not EM) E= 364 t= 5366 Q= 24 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-1/SLOT-13/CHAN-10 (is not EM) E= 515 t= -31486 Q= 366 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-1/SLOT-13/CHAN-11 (is not EM) E= 1308 t= -22646 Q= 2409 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-1/SLOT-13/CHAN-15 (is not EM) E= 606 t= -21981 Q= 753 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-1/SLOT-13/CHAN-25 (is not EM) E= 430 t= -46259 Q= 1493 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-2/SLOT-3/CHAN-33 (is not EM) E= 163 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-2/SLOT-3/CHAN-36 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-2/SLOT-9/CHAN-28 (is not EM) E= 139 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-2/SLOT-9/CHAN-75 (is not EM) E= 111 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-2/SLOT-3/CHAN-33 (is not EM) E= 163 t= -16173 Q= 3148 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-2/SLOT-3/CHAN-36 (is not EM) E= 91 t= 4880 Q= 159 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-2/SLOT-9/CHAN-28 (is not EM) E= 139 t= -2453 Q= 8 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-2/SLOT-9/CHAN-75 (is not EM) E= 111 t= -5746 Q= 21 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-2/SLOT-11/CHAN-33 (is not EM) E= 259 t= -6477 Q= 41 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-3/SLOT-1/CHAN-5 (is not EM) E= 444 t= 5730 Q= 215 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-3/SLOT-9/CHAN-13 (is not EM) E= 89 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-3/SLOT-9/CHAN-71 (is not EM) E= 88 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-3/SLOT-9/CHAN-13 (is not EM) E= 89 t= 1590 Q= 29 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-3/SLOT-9/CHAN-71 (is not EM) E= 88 t= -2924 Q= 35 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-3/SLOT-11/CHAN-38 (is not EM) E= 296 t= -5728 Q= 64 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-2/CHAN-11 (is not EM) E= 99 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-2/CHAN-72 (is not EM) E= 111 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-3/CHAN-97 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-4/CHAN-78 (is not EM) E= 100 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-2/CHAN-11 (is not EM) E= 99 t= -11728 Q= 1223 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-2/CHAN-72 (is not EM) E= 111 t= 21974 Q= 1219 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-3/CHAN-97 (is not EM) E= 91 t= -1404 Q= 139 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-4/CHAN-78 (is not EM) E= 100 t= -19237 Q= 1426 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-4/SLOT-4/CHAN-126 (is not EM) E= 88 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-9/CHAN-72 (is not EM) E= -160 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-9/CHAN-124 (is not EM) E= 139 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-10/CHAN-4 (is not EM) E= -124 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-9/CHAN-72 (is not EM) E= -160 t= 759 Q= 161 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-9/CHAN-124 (is not EM) E= 139 t= -12835 Q= 80 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-10/CHAN-4 (is not EM) E= -124 t= 2395 Q= 197 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-4/SLOT-11/CHAN-16 (is not EM) E= 265 t= -20026 Q= 1664 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-4/SLOT-12/CHAN-81 (is not EM) E= -307 t= 6297 Q= 118 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-4/SLOT-12/CHAN-105 (is not EM) E= 387 t= 20718 Q= 714 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-4/SLOT-14/CHAN-57 (is not EM) E= 418 t= 3908 Q= 12 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-3/CHAN-69 (is not EM) E= 107 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-7/CHAN-45 (is not EM) E= 85 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-8/CHAN-41 (is not EM) E= 84 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-3/CHAN-69 (is not EM) E= 107 t= -15403 Q= 18779 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-7/CHAN-45 (is not EM) E= 85 t= -428 Q= 59 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-8/CHAN-41 (is not EM) E= 84 t= -8935 Q= 8276 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-5/SLOT-8/CHAN-63 (is not EM) E= -84 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-10/CHAN-6 (is not EM) E= 116 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-10/CHAN-6 (is not EM) E= 116 t= -12427 Q= 157 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-5/SLOT-11/CHAN-12 (is not EM) E= 396 t= -11572 Q= 208 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-11/CHAN-38 (is not EM) E= 221 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-11/CHAN-39 (is not EM) E= 249 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-11/CHAN-38 (is not EM) E= 221 t= -20178 Q= 554 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-11/CHAN-39 (is not EM) E= 249 t= -10836 Q= 58 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-5/SLOT-13/CHAN-11 (is not EM) E= 322 t= -14591 Q= 90 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-5/SLOT-13/CHAN-14 (is not EM) E= 421 t= -27997 Q= 211 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-5/SLOT-13/CHAN-15 (is not EM) E= 363 t= -18272 Q= 162 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-5/SLOT-14/CHAN-27 (is not EM) E= 332 t= 6853 Q= 36 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-6/SLOT-3/CHAN-107 (is not EM) E= 95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-6/SLOT-3/CHAN-108 (is not EM) E= 116 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-6/SLOT-6/CHAN-51 (is not EM) E= 145 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-6/SLOT-6/CHAN-52 (is not EM) E= 115 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-6/SLOT-6/CHAN-88 (is not EM) E= 82 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-2/CHAN-70 (is not EM) E= 83 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-4/CHAN-45 (is not EM) E= 140 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-4/CHAN-63 (is not EM) E= 115 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-6/SLOT-3/CHAN-107 (is not EM) E= 95 t= 13549 Q= 456 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-6/SLOT-3/CHAN-108 (is not EM) E= 116 t= 15172 Q= 336 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-6/SLOT-6/CHAN-51 (is not EM) E= 145 t= -1067 Q= 113 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-6/SLOT-6/CHAN-52 (is not EM) E= 115 t= 721 Q= 143 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-6/SLOT-6/CHAN-88 (is not EM) E= 82 t= 16950 Q= 772 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-2/CHAN-70 (is not EM) E= 83 t= -11174 Q= 80 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-4/CHAN-45 (is not EM) E= 140 t= 14258 Q= 2079 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-4/CHAN-63 (is not EM) E= 115 t= -19733 Q= 1435 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-7/SLOT-5/CHAN-0 (is not EM) E= 390 t= -16580 Q= 15542 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-6/CHAN-66 (is not EM) E= 76 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-9/CHAN-4 (is not EM) E= -85 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-9/CHAN-44 (is not EM) E= 112 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-9/CHAN-45 (is not EM) E= 169 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-9/CHAN-127 (is not EM) E= 198 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-11/CHAN-123 (is not EM) E= 233 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-6/CHAN-66 (is not EM) E= 76 t= -10004 Q= 491 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-9/CHAN-4 (is not EM) E= -85 t= -12477 Q= 224 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-9/CHAN-44 (is not EM) E= 112 t= 16167 Q= 88 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-9/CHAN-45 (is not EM) E= 169 t= 7092 Q= 416 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-9/CHAN-127 (is not EM) E= 198 t= -20660 Q= 8 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-11/CHAN-123 (is not EM) E= 233 t= 33670 Q= 257 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-7/SLOT-12/CHAN-34 (is not EM) E= 329 t= -21170 Q= 603 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-8/SLOT-1/CHAN-21 (is not EM) E= 399 t= 1922 Q= 89 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-8/SLOT-3/CHAN-76 (is not EM) E= 174 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-8/SLOT-3/CHAN-76 (is not EM) E= 174 t= -2625 Q= 171 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-8/SLOT-4/CHAN-83 (is not EM) E= -85 t= 0 Q= 0 P=0xa5 G=0 Channel: BARREL/C-SIDE/FT-8/SLOT-14/CHAN-36 (is not EM) E= 504 t= -6294 Q= 9 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-9/SLOT-1/CHAN-35 (is not EM) E= 434 t= -7263 Q= 275 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-9/SLOT-2/CHAN-100 (is not EM) E= -121 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-9/SLOT-2/CHAN-114 (is not EM) E= 113 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-9/SLOT-6/CHAN-113 (is not EM) E= 97 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-9/SLOT-6/CHAN-118 (is not EM) E= 80 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-9/SLOT-7/CHAN-15 (is not EM) E= 115 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-9/SLOT-8/CHAN-6 (is not EM) E= 80 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-9/SLOT-8/CHAN-66 (is not EM) E= -82 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-9/SLOT-2/CHAN-100 (is not EM) E= -121 t= -6760 Q= 989 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-9/SLOT-2/CHAN-114 (is not EM) E= 113 t= 2979 Q= 37 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-9/SLOT-6/CHAN-113 (is not EM) E= 97 t= -12754 Q= 962 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-9/SLOT-6/CHAN-118 (is not EM) E= 80 t= 6971 Q= 289 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-9/SLOT-7/CHAN-15 (is not EM) E= 115 t= 4819 Q= 124 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-9/SLOT-8/CHAN-6 (is not EM) E= 80 t= -1750 Q= 1461 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-9/SLOT-8/CHAN-66 (is not EM) E= -82 t= -9790 Q= 614 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-9/SLOT-10/CHAN-31 (is not EM) E= 275 t= 17972 Q= 116 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-9/SLOT-10/CHAN-83 (is not EM) E= 155 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-9/SLOT-10/CHAN-83 (is not EM) E= 155 t= -30801 Q= 1234 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-10/SLOT-1/CHAN-84 (is not EM) E= 537 t= 509 Q= 64 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-10/SLOT-1/CHAN-93 (is not EM) E= 707 t= 3386 Q= 108 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-10/SLOT-3/CHAN-50 (is not EM) E= -88 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-10/SLOT-6/CHAN-11 (is not EM) E= 69 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-10/SLOT-9/CHAN-64 (is not EM) E= 131 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-10/SLOT-9/CHAN-65 (is not EM) E= 124 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-10/SLOT-3/CHAN-50 (is not EM) E= -88 t= -5818 Q= 4573 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-10/SLOT-6/CHAN-11 (is not EM) E= 69 t= 6055 Q= 403 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-10/SLOT-9/CHAN-64 (is not EM) E= 131 t= -216 Q= 17 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-10/SLOT-9/CHAN-65 (is not EM) E= 124 t= -8214 Q= 6 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-10/SLOT-13/CHAN-26 (is not EM) E= 298 t= 47655 Q= 75 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-10/SLOT-13/CHAN-49 (is not EM) E= -288 t= -5880 Q= 61 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-11/SLOT-2/CHAN-13 (is not EM) E= 92 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-11/SLOT-2/CHAN-87 (is not EM) E= 218 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-11/SLOT-3/CHAN-108 (is not EM) E= 132 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-11/SLOT-5/CHAN-118 (is not EM) E= -95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-11/SLOT-7/CHAN-110 (is not EM) E= 77 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-11/SLOT-9/CHAN-118 (is not EM) E= 138 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-11/SLOT-10/CHAN-94 (is not EM) E= 243 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-11/SLOT-11/CHAN-78 (is not EM) E= 237 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-11/SLOT-2/CHAN-13 (is not EM) E= 92 t= -211 Q= 66 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-11/SLOT-2/CHAN-87 (is not EM) E= 218 t= 3501 Q= 46 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-11/SLOT-3/CHAN-108 (is not EM) E= 132 t= 13938 Q= 1479 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-11/SLOT-5/CHAN-118 (is not EM) E= -95 t= -5943 Q= 809 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-11/SLOT-7/CHAN-110 (is not EM) E= 77 t= 5237 Q= 58 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-11/SLOT-9/CHAN-118 (is not EM) E= 138 t= -11048 Q= 1202 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-11/SLOT-10/CHAN-94 (is not EM) E= 243 t= 18304 Q= 422 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-11/SLOT-11/CHAN-78 (is not EM) E= 237 t= 5054 Q= 34 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-11/SLOT-14/CHAN-42 (is not EM) E= 520 t= 34192 Q= 304 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-12/SLOT-5/CHAN-122 (is not EM) E= 140 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-12/SLOT-9/CHAN-102 (is not EM) E= -95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-12/SLOT-10/CHAN-78 (is not EM) E= 125 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-12/SLOT-5/CHAN-122 (is not EM) E= 140 t= 4716 Q= 191 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-12/SLOT-9/CHAN-102 (is not EM) E= -95 t= -7067 Q= 762 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-12/SLOT-10/CHAN-78 (is not EM) E= 125 t= 34917 Q= 79 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-12/SLOT-13/CHAN-66 (is not EM) E= -275 t= 5880 Q= 89 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-13/SLOT-1/CHAN-114 (is not EM) E= 1172 t= 4476 Q= 50 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-13/SLOT-5/CHAN-1 (is not EM) E= 131 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-13/SLOT-9/CHAN-69 (is not EM) E= 81 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-13/SLOT-11/CHAN-4 (is not EM) E= -221 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-13/SLOT-5/CHAN-1 (is not EM) E= 131 t= 8933 Q= 170 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-13/SLOT-9/CHAN-69 (is not EM) E= 81 t= -20235 Q= 214 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-13/SLOT-11/CHAN-4 (is not EM) E= -221 t= 5625 Q= 974 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-13/SLOT-12/CHAN-32 (is not EM) E= 303 t= 11505 Q= 70 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-13/SLOT-12/CHAN-112 (is not EM) E= -327 t= 996 Q= 705 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-14/SLOT-1/CHAN-53 (is not EM) E= 609 t= -21463 Q= 1245 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-14/SLOT-2/CHAN-94 (is not EM) E= 100 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-14/SLOT-4/CHAN-82 (is not EM) E= 98 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-14/SLOT-5/CHAN-15 (is not EM) E= 116 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-14/SLOT-6/CHAN-65 (is not EM) E= 175 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-14/SLOT-7/CHAN-49 (is not EM) E= -101 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-14/SLOT-7/CHAN-94 (is not EM) E= -79 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-14/SLOT-7/CHAN-111 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-14/SLOT-10/CHAN-100 (is not EM) E= 188 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-14/SLOT-11/CHAN-48 (is not EM) E= 238 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-8/CHAN-11 (is not EM) E= 102 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-10/CHAN-15 (is not EM) E= 124 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-4/CHAN-9 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-5/CHAN-114 (is not EM) E= -100 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-6/CHAN-120 (is not EM) E= 71 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-14/SLOT-2/CHAN-94 (is not EM) E= 100 t= 2855 Q= 102 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-14/SLOT-4/CHAN-82 (is not EM) E= 98 t= -30553 Q= 1953 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-14/SLOT-5/CHAN-15 (is not EM) E= 116 t= 5048 Q= 10 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-14/SLOT-6/CHAN-65 (is not EM) E= 175 t= -428 Q= 95 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-14/SLOT-7/CHAN-49 (is not EM) E= -101 t= 152 Q= 1447 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-14/SLOT-7/CHAN-94 (is not EM) E= -79 t= -415 Q= 469 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-14/SLOT-7/CHAN-111 (is not EM) E= 91 t= -13071 Q= 474 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-14/SLOT-10/CHAN-100 (is not EM) E= 188 t= -1716 Q= 0 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-14/SLOT-11/CHAN-48 (is not EM) E= 238 t= 6345 Q= 8 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-8/CHAN-11 (is not EM) E= 102 t= -1393 Q= 52 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-10/CHAN-15 (is not EM) E= 124 t= 9811 Q= 11 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-4/CHAN-9 (is not EM) E= 91 t= 1638 Q= 22 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-5/CHAN-114 (is not EM) E= -100 t= -3703 Q= 2241 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-6/CHAN-120 (is not EM) E= 71 t= -27705 Q= 1063 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-16/SLOT-12/CHAN-5 (is not EM) E= 342 t= -2730 Q= 749 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-16/SLOT-12/CHAN-39 (is not EM) E= 315 t= -18556 Q= 547 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-16/SLOT-12/CHAN-91 (is not EM) E= 587 t= -18339 Q= 1808 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-17/SLOT-2/CHAN-47 (is not EM) E= 99 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-17/SLOT-3/CHAN-72 (is not EM) E= 160 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-17/SLOT-3/CHAN-73 (is not EM) E= 155 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-17/SLOT-3/CHAN-105 (is not EM) E= 106 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-17/SLOT-6/CHAN-72 (is not EM) E= 95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-17/SLOT-6/CHAN-104 (is not EM) E= 107 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-17/SLOT-7/CHAN-81 (is not EM) E= 124 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-17/SLOT-7/CHAN-82 (is not EM) E= 137 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-17/SLOT-9/CHAN-42 (is not EM) E= -106 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-17/SLOT-9/CHAN-126 (is not EM) E= 159 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-17/SLOT-10/CHAN-72 (is not EM) E= 122 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-17/SLOT-2/CHAN-47 (is not EM) E= 99 t= -575 Q= 17 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-17/SLOT-3/CHAN-72 (is not EM) E= 160 t= -14321 Q= 3965 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-17/SLOT-3/CHAN-73 (is not EM) E= 155 t= -13513 Q= 3116 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-17/SLOT-3/CHAN-105 (is not EM) E= 106 t= -11305 Q= 1326 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-17/SLOT-6/CHAN-72 (is not EM) E= 95 t= -2110 Q= 156 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-17/SLOT-6/CHAN-104 (is not EM) E= 107 t= 3065 Q= 247 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-17/SLOT-7/CHAN-81 (is not EM) E= 124 t= -21741 Q= 1865 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-17/SLOT-7/CHAN-82 (is not EM) E= 137 t= -20215 Q= 3781 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-17/SLOT-9/CHAN-42 (is not EM) E= -106 t= 3944 Q= 13 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-17/SLOT-9/CHAN-126 (is not EM) E= 159 t= 5417 Q= 9 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-17/SLOT-10/CHAN-72 (is not EM) E= 122 t= 19645 Q= 69 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-17/SLOT-11/CHAN-57 (is not EM) E= 263 t= 2260 Q= 49 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-17/SLOT-12/CHAN-7 (is not EM) E= -317 t= -15530 Q= 431 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-17/SLOT-12/CHAN-102 (is not EM) E= 403 t= -14581 Q= 442 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-18/SLOT-1/CHAN-84 (is not EM) E= 968 t= -324 Q= 274 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-18/SLOT-1/CHAN-85 (is not EM) E= 894 t= -2351 Q= 406 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-2/CHAN-54 (is not EM) E= -88 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-8/CHAN-94 (is not EM) E= 83 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-2/CHAN-54 (is not EM) E= -88 t= -19615 Q= 2298 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-8/CHAN-94 (is not EM) E= 83 t= 1247 Q= 19 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-18/SLOT-10/CHAN-18 (is not EM) E= 410 t= 423 Q= 82 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-10/CHAN-19 (is not EM) E= 135 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-10/CHAN-19 (is not EM) E= 135 t= -4648 Q= 4 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-18/SLOT-10/CHAN-32 (is not EM) E= 266 t= -23516 Q= 499 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-18/SLOT-10/CHAN-33 (is not EM) E= 284 t= -29505 Q= 85 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-10/CHAN-106 (is not EM) E= 90 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-11/CHAN-15 (is not EM) E= 216 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-11/CHAN-54 (is not EM) E= 236 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-10/CHAN-106 (is not EM) E= 90 t= -2336 Q= 2 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-11/CHAN-15 (is not EM) E= 216 t= -25622 Q= 435 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-11/CHAN-54 (is not EM) E= 236 t= 16661 Q= 62 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-18/SLOT-11/CHAN-58 (is not EM) E= 315 t= 15445 Q= 159 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-19/SLOT-1/CHAN-67 (is not EM) E= 558 t= -673 Q= 258 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-19/SLOT-1/CHAN-94 (is not EM) E= 617 t= 1773 Q= 33 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-19/SLOT-2/CHAN-101 (is not EM) E= 110 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-19/SLOT-3/CHAN-0 (is not EM) E= 106 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-19/SLOT-2/CHAN-101 (is not EM) E= 110 t= 18988 Q= 329 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-19/SLOT-3/CHAN-0 (is not EM) E= 106 t= 5241 Q= 217 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-19/SLOT-4/CHAN-122 (is not EM) E= 87 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-19/SLOT-5/CHAN-91 (is not EM) E= 182 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-20/SLOT-2/CHAN-60 (is not EM) E= 129 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-20/SLOT-2/CHAN-61 (is not EM) E= 175 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-20/SLOT-4/CHAN-57 (is not EM) E= 109 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-20/SLOT-4/CHAN-58 (is not EM) E= 203 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-20/SLOT-6/CHAN-55 (is not EM) E= -81 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-20/SLOT-9/CHAN-124 (is not EM) E= 216 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-20/SLOT-9/CHAN-125 (is not EM) E= 172 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-19/SLOT-5/CHAN-91 (is not EM) E= 182 t= -1301 Q= 145 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-20/SLOT-2/CHAN-60 (is not EM) E= 129 t= -17245 Q= 3175 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-20/SLOT-2/CHAN-61 (is not EM) E= 175 t= -16378 Q= 2345 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-20/SLOT-4/CHAN-57 (is not EM) E= 109 t= -25627 Q= 3887 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-20/SLOT-4/CHAN-58 (is not EM) E= 203 t= -20249 Q= 9819 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-20/SLOT-6/CHAN-55 (is not EM) E= -81 t= -10861 Q= 729 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-20/SLOT-9/CHAN-124 (is not EM) E= 216 t= -15773 Q= 1090 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-20/SLOT-9/CHAN-125 (is not EM) E= 172 t= -15948 Q= 12 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-20/SLOT-12/CHAN-126 (is not EM) E= 344 t= -9170 Q= 213 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-20/SLOT-13/CHAN-47 (is not EM) E= 408 t= 8198 Q= 3 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-21/SLOT-9/CHAN-33 (is not EM) E= 112 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-21/SLOT-9/CHAN-40 (is not EM) E= 115 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-21/SLOT-9/CHAN-33 (is not EM) E= 112 t= -24505 Q= 164 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-21/SLOT-9/CHAN-40 (is not EM) E= 115 t= -28948 Q= 350 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-21/SLOT-12/CHAN-10 (is not EM) E= 324 t= -20620 Q= 285 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-21/SLOT-13/CHAN-11 (is not EM) E= 495 t= -8728 Q= 26 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-21/SLOT-13/CHAN-72 (is not EM) E= 353 t= -20654 Q= 82 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-22/SLOT-1/CHAN-109 (is not EM) E= 738 t= 5437 Q= 177 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-22/SLOT-12/CHAN-108 (is not EM) E= 238 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-23/SLOT-3/CHAN-34 (is not EM) E= 106 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-23/SLOT-4/CHAN-112 (is not EM) E= 239 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-23/SLOT-4/CHAN-113 (is not EM) E= 174 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-23/SLOT-8/CHAN-30 (is not EM) E= 109 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-23/SLOT-9/CHAN-85 (is not EM) E= 149 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-22/SLOT-12/CHAN-108 (is not EM) E= 238 t= 29440 Q= 283 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-23/SLOT-3/CHAN-34 (is not EM) E= 106 t= -2220 Q= 210 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-23/SLOT-4/CHAN-112 (is not EM) E= 239 t= 2186 Q= 21 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-23/SLOT-4/CHAN-113 (is not EM) E= 174 t= 7929 Q= 509 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-23/SLOT-8/CHAN-30 (is not EM) E= 109 t= 9044 Q= 1702 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-23/SLOT-9/CHAN-85 (is not EM) E= 149 t= 3119 Q= 84 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-23/SLOT-12/CHAN-86 (is not EM) E= 292 t= 11662 Q= 121 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-23/SLOT-12/CHAN-90 (is not EM) E= 361 t= 18191 Q= 62 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-23/SLOT-12/CHAN-91 (is not EM) E= 441 t= 2798 Q= 160 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-23/SLOT-13/CHAN-1 (is not EM) E= -316 t= 18430 Q= 134 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-24/SLOT-3/CHAN-72 (is not EM) E= 113 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-24/SLOT-3/CHAN-73 (is not EM) E= 174 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-24/SLOT-3/CHAN-74 (is not EM) E= 134 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-24/SLOT-9/CHAN-61 (is not EM) E= 140 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-24/SLOT-3/CHAN-72 (is not EM) E= 113 t= -897 Q= 151 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-24/SLOT-3/CHAN-73 (is not EM) E= 174 t= 3334 Q= 75 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-24/SLOT-3/CHAN-74 (is not EM) E= 134 t= 3039 Q= 195 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-24/SLOT-9/CHAN-61 (is not EM) E= 140 t= -17067 Q= 69 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-24/SLOT-9/CHAN-124 (is not EM) E= 285 t= -4161 Q= 23 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-24/SLOT-10/CHAN-13 (is not EM) E= 218 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-24/SLOT-10/CHAN-14 (is not EM) E= 244 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-24/SLOT-10/CHAN-49 (is not EM) E= 177 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-24/SLOT-10/CHAN-50 (is not EM) E= 163 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-24/SLOT-11/CHAN-101 (is not EM) E= 214 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-24/SLOT-11/CHAN-122 (is not EM) E= 248 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-24/SLOT-12/CHAN-20 (is not EM) E= 231 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-24/SLOT-10/CHAN-13 (is not EM) E= 218 t= -14291 Q= 173 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-24/SLOT-10/CHAN-14 (is not EM) E= 244 t= -22949 Q= 211 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-24/SLOT-10/CHAN-49 (is not EM) E= 177 t= 1967 Q= 16 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-24/SLOT-10/CHAN-50 (is not EM) E= 163 t= -2957 Q= 27 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-24/SLOT-11/CHAN-101 (is not EM) E= 214 t= -4619 Q= 0 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-24/SLOT-11/CHAN-122 (is not EM) E= 248 t= 13203 Q= 356 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-24/SLOT-12/CHAN-20 (is not EM) E= 231 t= 11396 Q= 10 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-24/SLOT-12/CHAN-24 (is not EM) E= 707 t= 2948 Q= 108 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-25/SLOT-2/CHAN-118 (is not EM) E= 115 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-25/SLOT-2/CHAN-119 (is not EM) E= 108 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-25/SLOT-4/CHAN-70 (is not EM) E= 161 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-25/SLOT-5/CHAN-49 (is not EM) E= 111 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-25/SLOT-6/CHAN-54 (is not EM) E= 80 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-25/SLOT-9/CHAN-51 (is not EM) E= 112 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-25/SLOT-9/CHAN-121 (is not EM) E= -148 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-25/SLOT-2/CHAN-118 (is not EM) E= 115 t= 6036 Q= 73 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-25/SLOT-2/CHAN-119 (is not EM) E= 108 t= 588 Q= 150 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-25/SLOT-4/CHAN-70 (is not EM) E= 161 t= -2694 Q= 810 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-25/SLOT-5/CHAN-49 (is not EM) E= 111 t= -21595 Q= 2250 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-25/SLOT-6/CHAN-54 (is not EM) E= 80 t= 10563 Q= 507 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-25/SLOT-9/CHAN-51 (is not EM) E= 112 t= 15570 Q= 131 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-25/SLOT-9/CHAN-121 (is not EM) E= -148 t= 2391 Q= 268 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-25/SLOT-12/CHAN-57 (is not EM) E= 443 t= 17484 Q= 882 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-25/SLOT-13/CHAN-105 (is not EM) E= 347 t= 2597 Q= 12 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-26/SLOT-2/CHAN-14 (is not EM) E= 207 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-26/SLOT-3/CHAN-55 (is not EM) E= 92 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-26/SLOT-3/CHAN-76 (is not EM) E= 101 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-26/SLOT-3/CHAN-77 (is not EM) E= 132 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-26/SLOT-2/CHAN-14 (is not EM) E= 207 t= -15548 Q= 4204 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-26/SLOT-3/CHAN-55 (is not EM) E= 92 t= -298 Q= 79 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-26/SLOT-3/CHAN-76 (is not EM) E= 101 t= -14888 Q= 28220 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-26/SLOT-3/CHAN-77 (is not EM) E= 132 t= -17525 Q= 53216 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-26/SLOT-12/CHAN-32 (is not EM) E= 358 t= 2091 Q= 2 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-27/SLOT-1/CHAN-5 (is not EM) E= 359 t= 4985 Q= 4167 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-27/SLOT-2/CHAN-56 (is not EM) E= 106 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-27/SLOT-2/CHAN-119 (is not EM) E= 103 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-27/SLOT-4/CHAN-60 (is not EM) E= 90 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-27/SLOT-6/CHAN-103 (is not EM) E= 107 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-27/SLOT-2/CHAN-56 (is not EM) E= 106 t= 1048 Q= 246 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-27/SLOT-2/CHAN-119 (is not EM) E= 103 t= 8688 Q= 436 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-27/SLOT-4/CHAN-60 (is not EM) E= 90 t= 6326 Q= 194 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-27/SLOT-6/CHAN-103 (is not EM) E= 107 t= -1909 Q= 32 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-27/SLOT-6/CHAN-104 (is not EM) E= 268 t= 3036 Q= 21 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-27/SLOT-6/CHAN-105 (is not EM) E= 127 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-27/SLOT-6/CHAN-106 (is not EM) E= 121 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-27/SLOT-8/CHAN-123 (is not EM) E= 118 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-27/SLOT-8/CHAN-124 (is not EM) E= 101 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-27/SLOT-9/CHAN-24 (is not EM) E= -83 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-27/SLOT-10/CHAN-6 (is not EM) E= -119 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-27/SLOT-10/CHAN-14 (is not EM) E= -111 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-27/SLOT-10/CHAN-25 (is not EM) E= 169 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-27/SLOT-6/CHAN-105 (is not EM) E= 127 t= -2282 Q= 36 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-27/SLOT-6/CHAN-106 (is not EM) E= 121 t= 1486 Q= 96 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-27/SLOT-8/CHAN-123 (is not EM) E= 118 t= -6145 Q= 72 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-27/SLOT-8/CHAN-124 (is not EM) E= 101 t= 2123 Q= 879 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-27/SLOT-9/CHAN-24 (is not EM) E= -83 t= 10747 Q= 15 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-27/SLOT-10/CHAN-6 (is not EM) E= -119 t= -7249 Q= 11 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-27/SLOT-10/CHAN-14 (is not EM) E= -111 t= -6687 Q= 70 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-27/SLOT-10/CHAN-25 (is not EM) E= 169 t= 11066 Q= 78 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-27/SLOT-11/CHAN-30 (is not EM) E= 329 t= -3360 Q= 78 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-27/SLOT-11/CHAN-31 (is not EM) E= 357 t= 2166 Q= 35 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-27/SLOT-11/CHAN-75 (is not EM) E= -294 t= 9977 Q= 1542 P=0x20a5 G=0 @@ -233,169 +233,169 @@ Channel: BARREL/C-SIDE/FT-27/SLOT-12/CHAN-89 (is not EM) E= 374 t= 8433 Q= 35 P= Channel: BARREL/C-SIDE/FT-27/SLOT-13/CHAN-82 (is not EM) E= 337 t= 443 Q= 2 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-27/SLOT-13/CHAN-86 (is not EM) E= 689 t= 5202 Q= 3 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-27/SLOT-13/CHAN-87 (is not EM) E= 310 t= 1665 Q= 42 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-28/SLOT-4/CHAN-68 (is not EM) E= 97 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-28/SLOT-4/CHAN-69 (is not EM) E= 118 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-28/SLOT-4/CHAN-68 (is not EM) E= 97 t= 6402 Q= 818 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-28/SLOT-4/CHAN-69 (is not EM) E= 118 t= 5687 Q= 28 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-28/SLOT-5/CHAN-74 (is not EM) E= 264 t= 17110 Q= 7370 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-28/SLOT-5/CHAN-75 (is not EM) E= 235 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-28/SLOT-5/CHAN-76 (is not EM) E= 105 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-28/SLOT-7/CHAN-36 (is not EM) E= -77 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-28/SLOT-9/CHAN-62 (is not EM) E= -172 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-28/SLOT-5/CHAN-75 (is not EM) E= 235 t= 12234 Q= 5522 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-28/SLOT-5/CHAN-76 (is not EM) E= 105 t= 14863 Q= 479 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-28/SLOT-7/CHAN-36 (is not EM) E= -77 t= -2383 Q= 3032 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-28/SLOT-9/CHAN-62 (is not EM) E= -172 t= -8553 Q= 27 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-28/SLOT-12/CHAN-102 (is not EM) E= 295 t= 28216 Q= 623 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-29/SLOT-8/CHAN-41 (is not EM) E= 85 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-29/SLOT-8/CHAN-45 (is not EM) E= 77 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-29/SLOT-8/CHAN-46 (is not EM) E= 104 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-29/SLOT-8/CHAN-41 (is not EM) E= 85 t= -9725 Q= 1095 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-29/SLOT-8/CHAN-45 (is not EM) E= 77 t= 1337 Q= 435 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-29/SLOT-8/CHAN-46 (is not EM) E= 104 t= 2056 Q= 2394 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-29/SLOT-11/CHAN-99 (is not EM) E= 260 t= 3167 Q= 77 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-29/SLOT-11/CHAN-102 (is not EM) E= 267 t= 7742 Q= 69 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-29/SLOT-12/CHAN-25 (is not EM) E= 266 t= -13666 Q= 486 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-30/SLOT-1/CHAN-20 (is not EM) E= 336 t= -12526 Q= 108 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-30/SLOT-2/CHAN-113 (is not EM) E= 223 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-30/SLOT-4/CHAN-45 (is not EM) E= 104 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-30/SLOT-7/CHAN-25 (is not EM) E= 97 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-30/SLOT-7/CHAN-78 (is not EM) E= 78 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-30/SLOT-11/CHAN-66 (is not EM) E= 235 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-30/SLOT-2/CHAN-113 (is not EM) E= 223 t= -340 Q= 28 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-30/SLOT-4/CHAN-45 (is not EM) E= 104 t= -22403 Q= 1837 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-30/SLOT-7/CHAN-25 (is not EM) E= 97 t= 2397 Q= 34 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-30/SLOT-7/CHAN-78 (is not EM) E= 78 t= -25207 Q= 439 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-30/SLOT-11/CHAN-66 (is not EM) E= 235 t= -19950 Q= 134 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-30/SLOT-13/CHAN-40 (is not EM) E= -287 t= -9316 Q= 275 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-30/SLOT-13/CHAN-46 (is not EM) E= 297 t= 10209 Q= 6 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-31/SLOT-2/CHAN-112 (is not EM) E= 87 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-31/SLOT-2/CHAN-124 (is not EM) E= 112 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-31/SLOT-3/CHAN-50 (is not EM) E= 124 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-31/SLOT-3/CHAN-51 (is not EM) E= 159 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-31/SLOT-5/CHAN-126 (is not EM) E= 88 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-31/SLOT-6/CHAN-78 (is not EM) E= 70 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-31/SLOT-7/CHAN-49 (is not EM) E= 88 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-31/SLOT-9/CHAN-124 (is not EM) E= 174 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-31/SLOT-11/CHAN-57 (is not EM) E= 241 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-31/SLOT-2/CHAN-112 (is not EM) E= 87 t= -24985 Q= 1327 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-31/SLOT-2/CHAN-124 (is not EM) E= 112 t= 1967 Q= 283 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-31/SLOT-3/CHAN-50 (is not EM) E= 124 t= -1935 Q= 15 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-31/SLOT-3/CHAN-51 (is not EM) E= 159 t= -719 Q= 51 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-31/SLOT-5/CHAN-126 (is not EM) E= 88 t= -5350 Q= 611 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-31/SLOT-6/CHAN-78 (is not EM) E= 70 t= 10467 Q= 1172 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-31/SLOT-7/CHAN-49 (is not EM) E= 88 t= -4781 Q= 196 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-31/SLOT-9/CHAN-124 (is not EM) E= 174 t= 10690 Q= 48 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-31/SLOT-11/CHAN-57 (is not EM) E= 241 t= -8738 Q= 9 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-31/SLOT-12/CHAN-55 (is not EM) E= 368 t= 27584 Q= 674 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-31/SLOT-12/CHAN-59 (is not EM) E= 252 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-31/SLOT-12/CHAN-59 (is not EM) E= 252 t= 26343 Q= 160 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-31/SLOT-12/CHAN-116 (is not EM) E= 350 t= 26074 Q= 688 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-31/SLOT-13/CHAN-59 (is not EM) E= 397 t= -3896 Q= 76 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-0/SLOT-2/CHAN-21 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-0/SLOT-2/CHAN-21 (is not EM) E= 94 t= -571 Q= 247 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-0/SLOT-2/CHAN-37 (is not EM) E= 81 t= 0 Q= 0 P=0xa5 G=0 Channel: BARREL/A-SIDE/FT-0/SLOT-2/CHAN-89 (is not EM) E= 81 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-0/SLOT-3/CHAN-68 (is not EM) E= 89 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-0/SLOT-3/CHAN-68 (is not EM) E= 89 t= -3215 Q= 283 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-0/SLOT-6/CHAN-55 (is not EM) E= 70 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-0/SLOT-6/CHAN-60 (is not EM) E= 127 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-0/SLOT-6/CHAN-61 (is not EM) E= 73 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-0/SLOT-6/CHAN-60 (is not EM) E= 127 t= -24060 Q= 46730 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-0/SLOT-6/CHAN-61 (is not EM) E= 73 t= -12806 Q= 14602 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-0/SLOT-12/CHAN-29 (is not EM) E= -366 t= -4078 Q= 1048 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-1/SLOT-3/CHAN-43 (is not EM) E= 86 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-1/SLOT-3/CHAN-64 (is not EM) E= 89 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-1/SLOT-5/CHAN-64 (is not EM) E= 109 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-1/SLOT-6/CHAN-3 (is not EM) E= 66 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-1/SLOT-8/CHAN-14 (is not EM) E= 111 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-1/SLOT-9/CHAN-47 (is not EM) E= 134 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-1/SLOT-3/CHAN-64 (is not EM) E= 89 t= -11609 Q= 8005 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-1/SLOT-5/CHAN-64 (is not EM) E= 109 t= 2361 Q= 418 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-1/SLOT-6/CHAN-3 (is not EM) E= 66 t= -1790 Q= 129 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-1/SLOT-8/CHAN-14 (is not EM) E= 111 t= 12015 Q= 3372 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-1/SLOT-9/CHAN-47 (is not EM) E= 134 t= -11419 Q= 19 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-1/SLOT-11/CHAN-3 (is not EM) E= 288 t= -17964 Q= 418 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-1/SLOT-11/CHAN-5 (is not EM) E= 315 t= 15793 Q= 535 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-1/SLOT-11/CHAN-34 (is not EM) E= 279 t= 23510 Q= 229 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-1/SLOT-11/CHAN-36 (is not EM) E= 345 t= 25146 Q= 593 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-1/SLOT-11/CHAN-48 (is not EM) E= 242 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-1/SLOT-11/CHAN-48 (is not EM) E= 242 t= 23588 Q= 292 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-1/SLOT-12/CHAN-65 (is not EM) E= 271 t= -20530 Q= 222 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-1/SLOT-14/CHAN-37 (is not EM) E= 570 t= -20481 Q= 119 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-2/SLOT-8/CHAN-110 (is not EM) E= 117 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-2/SLOT-8/CHAN-111 (is not EM) E= 139 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-2/SLOT-8/CHAN-110 (is not EM) E= 117 t= 1995 Q= 167 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-2/SLOT-8/CHAN-111 (is not EM) E= 139 t= 444 Q= 100 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-2/SLOT-14/CHAN-53 (is not EM) E= 463 t= 5309 Q= 0 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-3/SLOT-2/CHAN-21 (is not EM) E= 101 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-3/SLOT-3/CHAN-106 (is not EM) E= 97 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-3/SLOT-4/CHAN-48 (is not EM) E= 89 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-3/SLOT-4/CHAN-49 (is not EM) E= 129 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-3/SLOT-4/CHAN-70 (is not EM) E= 87 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-3/SLOT-6/CHAN-74 (is not EM) E= 80 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-3/SLOT-2/CHAN-21 (is not EM) E= 101 t= -6759 Q= 327 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-3/SLOT-3/CHAN-106 (is not EM) E= 97 t= 12494 Q= 1086 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-3/SLOT-4/CHAN-48 (is not EM) E= 89 t= 7026 Q= 37 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-3/SLOT-4/CHAN-49 (is not EM) E= 129 t= 1604 Q= 82 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-3/SLOT-4/CHAN-70 (is not EM) E= 87 t= 15170 Q= 145 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-3/SLOT-6/CHAN-74 (is not EM) E= 80 t= -4756 Q= 1233 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-3/SLOT-11/CHAN-84 (is not EM) E= 301 t= -16180 Q= 817 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-3/SLOT-12/CHAN-49 (is not EM) E= 353 t= 791 Q= 0 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-3/SLOT-13/CHAN-7 (is not EM) E= 322 t= 1814 Q= 69 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-4/SLOT-3/CHAN-55 (is not EM) E= 120 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-4/SLOT-3/CHAN-56 (is not EM) E= 157 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-4/SLOT-3/CHAN-65 (is not EM) E= 190 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-4/SLOT-6/CHAN-1 (is not EM) E= 63 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-4/SLOT-7/CHAN-78 (is not EM) E= 113 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-4/SLOT-7/CHAN-79 (is not EM) E= 84 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-4/SLOT-8/CHAN-78 (is not EM) E= 85 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-4/SLOT-3/CHAN-55 (is not EM) E= 120 t= 22429 Q= 900 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-4/SLOT-3/CHAN-56 (is not EM) E= 157 t= 10015 Q= 3886 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-4/SLOT-3/CHAN-65 (is not EM) E= 190 t= 13560 Q= 1049 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-4/SLOT-6/CHAN-1 (is not EM) E= 63 t= 8124 Q= 285 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-4/SLOT-7/CHAN-78 (is not EM) E= 113 t= 4596 Q= 30 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-4/SLOT-7/CHAN-79 (is not EM) E= 84 t= -290 Q= 21 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-4/SLOT-8/CHAN-78 (is not EM) E= 85 t= -16688 Q= 432 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-4/SLOT-10/CHAN-35 (is not EM) E= 348 t= -21994 Q= 172 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-4/SLOT-10/CHAN-96 (is not EM) E= 307 t= -12852 Q= 585 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-5/SLOT-1/CHAN-51 (is not EM) E= 458 t= -6374 Q= 21 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-3/CHAN-125 (is not EM) E= 87 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-3/CHAN-126 (is not EM) E= 218 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-3/CHAN-127 (is not EM) E= 114 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-6/CHAN-32 (is not EM) E= 108 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-6/CHAN-33 (is not EM) E= 96 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-7/CHAN-51 (is not EM) E= 208 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-7/CHAN-52 (is not EM) E= 154 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-8/CHAN-90 (is not EM) E= 113 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-3/CHAN-125 (is not EM) E= 87 t= 12938 Q= 179 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-3/CHAN-126 (is not EM) E= 218 t= 11215 Q= 2387 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-3/CHAN-127 (is not EM) E= 114 t= 10305 Q= 1245 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-6/CHAN-32 (is not EM) E= 108 t= 919 Q= 15 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-6/CHAN-33 (is not EM) E= 96 t= -1556 Q= 114 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-7/CHAN-51 (is not EM) E= 208 t= -18211 Q= 8044 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-7/CHAN-52 (is not EM) E= 154 t= -12808 Q= 3176 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-8/CHAN-90 (is not EM) E= 113 t= 8976 Q= 62 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-5/SLOT-11/CHAN-126 (is not EM) E= 337 t= 17882 Q= 130 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-5/SLOT-13/CHAN-17 (is not EM) E= 405 t= -567 Q= 20 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-5/SLOT-14/CHAN-58 (is not EM) E= 327 t= -23716 Q= 97 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-5/SLOT-14/CHAN-61 (is not EM) E= 352 t= -23186 Q= 415 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-6/SLOT-1/CHAN-115 (is not EM) E= 828 t= 4975 Q= 159 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-2/CHAN-54 (is not EM) E= 170 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-4/CHAN-88 (is not EM) E= 95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-4/CHAN-89 (is not EM) E= 124 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-11/CHAN-96 (is not EM) E= 224 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-2/CHAN-54 (is not EM) E= 170 t= -21524 Q= 29390 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-4/CHAN-88 (is not EM) E= 95 t= -1929 Q= 94 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-4/CHAN-89 (is not EM) E= 124 t= -157 Q= 22 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-11/CHAN-96 (is not EM) E= 224 t= 20137 Q= 380 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-6/SLOT-13/CHAN-94 (is not EM) E= -281 t= -11923 Q= 269 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-7/SLOT-2/CHAN-11 (is not EM) E= 184 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-7/SLOT-4/CHAN-113 (is not EM) E= 136 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-7/SLOT-4/CHAN-114 (is not EM) E= 109 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-7/SLOT-2/CHAN-11 (is not EM) E= 184 t= -18346 Q= 5352 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-7/SLOT-4/CHAN-113 (is not EM) E= 136 t= 10712 Q= 1748 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-7/SLOT-4/CHAN-114 (is not EM) E= 109 t= 14489 Q= 781 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-7/SLOT-12/CHAN-58 (is not EM) E= 264 t= 4469 Q= 70 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-7/SLOT-14/CHAN-52 (is not EM) E= 330 t= 30070 Q= 8 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-8/SLOT-1/CHAN-44 (is not EM) E= 458 t= 8067 Q= 520 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-8/SLOT-4/CHAN-94 (is not EM) E= 151 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-8/SLOT-4/CHAN-95 (is not EM) E= 237 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-8/SLOT-6/CHAN-27 (is not EM) E= 109 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-8/SLOT-6/CHAN-28 (is not EM) E= 152 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-8/SLOT-6/CHAN-29 (is not EM) E= 106 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-8/SLOT-8/CHAN-77 (is not EM) E= -83 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-8/SLOT-4/CHAN-94 (is not EM) E= 151 t= 15696 Q= 578 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-8/SLOT-4/CHAN-95 (is not EM) E= 237 t= 11767 Q= 3166 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-8/SLOT-6/CHAN-27 (is not EM) E= 109 t= 4160 Q= 593 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-8/SLOT-6/CHAN-28 (is not EM) E= 152 t= 635 Q= 207 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-8/SLOT-6/CHAN-29 (is not EM) E= 106 t= -851 Q= 88 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-8/SLOT-8/CHAN-77 (is not EM) E= -83 t= -5946 Q= 421 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-8/SLOT-10/CHAN-52 (is not EM) E= 274 t= -3165 Q= 28 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-8/SLOT-10/CHAN-74 (is not EM) E= 387 t= -15234 Q= 1078 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-8/SLOT-10/CHAN-75 (is not EM) E= 211 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-8/SLOT-10/CHAN-75 (is not EM) E= 211 t= -21310 Q= 118 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-8/SLOT-10/CHAN-79 (is not EM) E= 302 t= -13858 Q= 515 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-9/SLOT-5/CHAN-125 (is not EM) E= 125 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-9/SLOT-5/CHAN-126 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-9/SLOT-7/CHAN-11 (is not EM) E= 92 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-9/SLOT-9/CHAN-115 (is not EM) E= 206 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-9/SLOT-5/CHAN-125 (is not EM) E= 125 t= -15600 Q= 2856 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-9/SLOT-5/CHAN-126 (is not EM) E= 94 t= -14521 Q= 924 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-9/SLOT-7/CHAN-11 (is not EM) E= 92 t= -11715 Q= 547 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-9/SLOT-9/CHAN-115 (is not EM) E= 206 t= 18628 Q= 419 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-9/SLOT-12/CHAN-18 (is not EM) E= 540 t= 27080 Q= 757 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-9/SLOT-12/CHAN-23 (is not EM) E= 536 t= 16653 Q= 888 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-9/SLOT-12/CHAN-98 (is not EM) E= 755 t= 28094 Q= 2944 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-10/SLOT-1/CHAN-119 (is not EM) E= 1296 t= 439 Q= 116 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-2/CHAN-80 (is not EM) E= 126 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-3/CHAN-73 (is not EM) E= 120 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-4/CHAN-8 (is not EM) E= 98 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-4/CHAN-16 (is not EM) E= 96 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-4/CHAN-23 (is not EM) E= 102 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-4/CHAN-24 (is not EM) E= 132 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-4/CHAN-25 (is not EM) E= 120 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-4/CHAN-26 (is not EM) E= 136 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-5/CHAN-19 (is not EM) E= 96 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-7/CHAN-21 (is not EM) E= 132 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-7/CHAN-33 (is not EM) E= 93 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-7/CHAN-38 (is not EM) E= 87 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-7/CHAN-39 (is not EM) E= 141 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-10/CHAN-121 (is not EM) E= 171 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-2/CHAN-80 (is not EM) E= 126 t= -10863 Q= 716 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-3/CHAN-73 (is not EM) E= 120 t= 918 Q= 798 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-4/CHAN-8 (is not EM) E= 98 t= -3849 Q= 122 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-4/CHAN-16 (is not EM) E= 96 t= -9401 Q= 401 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-4/CHAN-23 (is not EM) E= 102 t= 19568 Q= 579 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-4/CHAN-24 (is not EM) E= 132 t= 19309 Q= 1232 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-4/CHAN-25 (is not EM) E= 120 t= 16858 Q= 395 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-4/CHAN-26 (is not EM) E= 136 t= 13743 Q= 1685 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-5/CHAN-19 (is not EM) E= 96 t= 365 Q= 451 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-7/CHAN-21 (is not EM) E= 132 t= 7656 Q= 210 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-7/CHAN-33 (is not EM) E= 93 t= 8902 Q= 263 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-7/CHAN-38 (is not EM) E= 87 t= 8925 Q= 33 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-7/CHAN-39 (is not EM) E= 141 t= 6564 Q= 85 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-10/CHAN-121 (is not EM) E= 171 t= 3678 Q= 1 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-10/SLOT-11/CHAN-89 (is not EM) E= 412 t= -21995 Q= 651 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-11/SLOT-1/CHAN-120 (is not EM) E= 847 t= 4233 Q= 203 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-2/CHAN-62 (is not EM) E= 151 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-2/CHAN-62 (is not EM) E= 151 t= 3515 Q= 141 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-11/SLOT-2/CHAN-82 (is not EM) E= 82 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-2/CHAN-83 (is not EM) E= 115 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-2/CHAN-84 (is not EM) E= 211 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-3/CHAN-41 (is not EM) E= -99 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-3/CHAN-49 (is not EM) E= 106 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-3/CHAN-50 (is not EM) E= 236 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-2/CHAN-83 (is not EM) E= 115 t= -19233 Q= 2417 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-2/CHAN-84 (is not EM) E= 211 t= -16624 Q= 6632 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-3/CHAN-41 (is not EM) E= -99 t= -1593 Q= 1638 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-3/CHAN-49 (is not EM) E= 106 t= -22151 Q= 2949 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-3/CHAN-50 (is not EM) E= 236 t= -20371 Q= 15027 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-11/SLOT-3/CHAN-51 (is not EM) E= 296 t= -19452 Q= 16241 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-4/CHAN-97 (is not EM) E= 161 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-4/CHAN-98 (is not EM) E= 129 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-5/CHAN-119 (is not EM) E= 95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-6/CHAN-74 (is not EM) E= 149 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-6/CHAN-75 (is not EM) E= 107 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-4/CHAN-97 (is not EM) E= 161 t= -1151 Q= 235 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-4/CHAN-98 (is not EM) E= 129 t= -2634 Q= 79 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-5/CHAN-119 (is not EM) E= 95 t= 1301 Q= 22 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-6/CHAN-74 (is not EM) E= 149 t= -203 Q= 174 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-6/CHAN-75 (is not EM) E= 107 t= 3466 Q= 297 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-11/SLOT-11/CHAN-58 (is not EM) E= 363 t= -12812 Q= 489 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-11/CHAN-72 (is not EM) E= 235 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-11/CHAN-73 (is not EM) E= 204 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-11/CHAN-121 (is not EM) E= -237 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-11/CHAN-72 (is not EM) E= 235 t= -17618 Q= 170 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-11/CHAN-73 (is not EM) E= 204 t= -11862 Q= 50 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-11/CHAN-121 (is not EM) E= -237 t= -1009 Q= 106 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-12/SLOT-1/CHAN-3 (is not EM) E= 396 t= -2485 Q= 55 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-2/CHAN-28 (is not EM) E= 108 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-2/CHAN-29 (is not EM) E= 95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-2/CHAN-30 (is not EM) E= 104 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-4/CHAN-34 (is not EM) E= 88 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-5/CHAN-18 (is not EM) E= -100 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-2/CHAN-28 (is not EM) E= 108 t= 841 Q= 91 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-2/CHAN-29 (is not EM) E= 95 t= 6731 Q= 25 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-2/CHAN-30 (is not EM) E= 104 t= -1995 Q= 217 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-4/CHAN-34 (is not EM) E= 88 t= 3524 Q= 539 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-5/CHAN-18 (is not EM) E= -100 t= -3063 Q= 200 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-12/SLOT-5/CHAN-24 (is not EM) E= 301 t= -15805 Q= 8607 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-6/CHAN-122 (is not EM) E= 92 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-6/CHAN-122 (is not EM) E= 92 t= -16782 Q= 44714 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-12/SLOT-10/CHAN-70 (is not EM) E= -87 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-11/CHAN-13 (is not EM) E= 205 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-11/CHAN-13 (is not EM) E= 205 t= 9330 Q= 8 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-12/SLOT-11/CHAN-42 (is not EM) E= 467 t= 1144 Q= 72 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-12/SLOT-11/CHAN-43 (is not EM) E= 286 t= 2000 Q= 62 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-12/SLOT-12/CHAN-46 (is not EM) E= 285 t= -30462 Q= 758 P=0x20a5 G=0 @@ -403,150 +403,150 @@ Channel: BARREL/A-SIDE/FT-12/SLOT-12/CHAN-47 (is not EM) E= 260 t= -23886 Q= 677 Channel: BARREL/A-SIDE/FT-13/SLOT-1/CHAN-10 (is not EM) E= 437 t= -295 Q= 173 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-13/SLOT-1/CHAN-40 (is not EM) E= 394 t= 42 Q= 162 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-13/SLOT-1/CHAN-85 (is not EM) E= 668 t= 699 Q= 253 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-13/SLOT-3/CHAN-78 (is not EM) E= -90 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-13/SLOT-4/CHAN-10 (is not EM) E= 99 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-13/SLOT-5/CHAN-94 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-13/SLOT-9/CHAN-9 (is not EM) E= -96 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-13/SLOT-3/CHAN-78 (is not EM) E= -90 t= -1622 Q= 352 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-13/SLOT-4/CHAN-10 (is not EM) E= 99 t= -11868 Q= 2085 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-13/SLOT-5/CHAN-94 (is not EM) E= 91 t= -18225 Q= 745 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-13/SLOT-9/CHAN-9 (is not EM) E= -96 t= -1767 Q= 220 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-13/SLOT-12/CHAN-65 (is not EM) E= 413 t= -11293 Q= 789 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-13/SLOT-13/CHAN-5 (is not EM) E= 294 t= 5574 Q= 21 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-3/CHAN-120 (is not EM) E= 133 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-3/CHAN-121 (is not EM) E= 130 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-4/CHAN-61 (is not EM) E= 168 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-4/CHAN-63 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-5/CHAN-0 (is not EM) E= 123 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-6/CHAN-27 (is not EM) E= 79 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-6/CHAN-28 (is not EM) E= 71 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-6/CHAN-29 (is not EM) E= 85 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-7/CHAN-2 (is not EM) E= 174 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-7/CHAN-3 (is not EM) E= 136 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-7/CHAN-36 (is not EM) E= 93 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-7/CHAN-37 (is not EM) E= 136 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-3/CHAN-120 (is not EM) E= 133 t= -15885 Q= 2232 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-3/CHAN-121 (is not EM) E= 130 t= -15964 Q= 2871 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-4/CHAN-61 (is not EM) E= 168 t= 8668 Q= 144 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-4/CHAN-63 (is not EM) E= 94 t= -2643 Q= 461 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-5/CHAN-0 (is not EM) E= 123 t= -1451 Q= 92 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-6/CHAN-27 (is not EM) E= 79 t= -7966 Q= 770 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-6/CHAN-28 (is not EM) E= 71 t= -21162 Q= 1066 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-6/CHAN-29 (is not EM) E= 85 t= -19229 Q= 2380 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-7/CHAN-2 (is not EM) E= 174 t= 2759 Q= 532 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-7/CHAN-3 (is not EM) E= 136 t= 3166 Q= 202 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-7/CHAN-36 (is not EM) E= 93 t= -2187 Q= 258 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-7/CHAN-37 (is not EM) E= 136 t= -4779 Q= 338 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-14/SLOT-9/CHAN-53 (is not EM) E= 261 t= -10939 Q= 77 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-9/CHAN-71 (is not EM) E= -91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-10/CHAN-92 (is not EM) E= 206 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-9/CHAN-71 (is not EM) E= -91 t= 157 Q= 106 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-10/CHAN-92 (is not EM) E= 206 t= 1779 Q= 124 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-14/SLOT-11/CHAN-43 (is not EM) E= 489 t= 7860 Q= 87 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-14/SLOT-11/CHAN-58 (is not EM) E= 329 t= -22597 Q= 153 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-11/CHAN-104 (is not EM) E= 246 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-11/CHAN-104 (is not EM) E= 246 t= 838 Q= 81 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-15/SLOT-1/CHAN-119 (is not EM) E= 1269 t= 9042 Q= 458 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-15/SLOT-2/CHAN-55 (is not EM) E= -94 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-15/SLOT-2/CHAN-55 (is not EM) E= -94 t= -5655 Q= 8884 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-15/SLOT-4/CHAN-16 (is not EM) E= 265 t= -16425 Q= 9560 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-15/SLOT-5/CHAN-21 (is not EM) E= 98 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-15/SLOT-5/CHAN-21 (is not EM) E= 98 t= -6166 Q= 503 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-15/SLOT-13/CHAN-99 (is not EM) E= -444 t= -13006 Q= 748 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-15/SLOT-13/CHAN-103 (is not EM) E= -375 t= -13075 Q= 476 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-15/SLOT-14/CHAN-51 (is not EM) E= 409 t= 9157 Q= 33 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-16/SLOT-4/CHAN-50 (is not EM) E= 177 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-16/SLOT-5/CHAN-108 (is not EM) E= 128 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-16/SLOT-5/CHAN-109 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-16/SLOT-4/CHAN-50 (is not EM) E= 177 t= 2226 Q= 730 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-16/SLOT-5/CHAN-108 (is not EM) E= 128 t= -15733 Q= 1415 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-16/SLOT-5/CHAN-109 (is not EM) E= 94 t= -11836 Q= 430 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-16/SLOT-6/CHAN-21 (is not EM) E= 64 t= 0 Q= 0 P=0xa5 G=0 Channel: BARREL/A-SIDE/FT-16/SLOT-10/CHAN-56 (is not EM) E= 328 t= 19318 Q= 268 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-16/SLOT-12/CHAN-23 (is not EM) E= 232 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-16/SLOT-12/CHAN-23 (is not EM) E= 232 t= -9257 Q= 186 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-16/SLOT-12/CHAN-26 (is not EM) E= 273 t= -20102 Q= 168 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-16/SLOT-12/CHAN-85 (is not EM) E= 264 t= 15311 Q= 7 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-16/SLOT-13/CHAN-93 (is not EM) E= 468 t= 7265 Q= 35 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-16/SLOT-13/CHAN-96 (is not EM) E= 350 t= 3284 Q= 113 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-17/SLOT-3/CHAN-41 (is not EM) E= 88 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-17/SLOT-4/CHAN-92 (is not EM) E= 102 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-17/SLOT-4/CHAN-93 (is not EM) E= 108 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-17/SLOT-6/CHAN-72 (is not EM) E= -67 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-17/SLOT-7/CHAN-85 (is not EM) E= 188 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-17/SLOT-8/CHAN-59 (is not EM) E= 132 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-17/SLOT-3/CHAN-41 (is not EM) E= 88 t= -17184 Q= 1122 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-17/SLOT-4/CHAN-92 (is not EM) E= 102 t= -18825 Q= 1078 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-17/SLOT-4/CHAN-93 (is not EM) E= 108 t= -14684 Q= 2222 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-17/SLOT-6/CHAN-72 (is not EM) E= -67 t= -15386 Q= 2251 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-17/SLOT-7/CHAN-85 (is not EM) E= 188 t= 3262 Q= 75 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-17/SLOT-8/CHAN-59 (is not EM) E= 132 t= -427 Q= 76 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-17/SLOT-9/CHAN-127 (is not EM) E= 483 t= 1316 Q= 32 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-17/SLOT-10/CHAN-90 (is not EM) E= -182 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-17/SLOT-10/CHAN-90 (is not EM) E= -182 t= -7049 Q= 16 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-17/SLOT-12/CHAN-97 (is not EM) E= 328 t= -20377 Q= 499 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-18/SLOT-3/CHAN-25 (is not EM) E= 86 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-18/SLOT-10/CHAN-34 (is not EM) E= 217 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-18/SLOT-10/CHAN-34 (is not EM) E= 217 t= 3231 Q= 471 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-18/SLOT-14/CHAN-14 (is not EM) E= 436 t= -33783 Q= 1922 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-2 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-3 (is not EM) E= 139 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-7 (is not EM) E= 242 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-8 (is not EM) E= 165 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-19 (is not EM) E= 122 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-114 (is not EM) E= 97 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-116 (is not EM) E= 113 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-10/CHAN-13 (is not EM) E= 146 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-10/CHAN-100 (is not EM) E= -184 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-2 (is not EM) E= 91 t= -8988 Q= 1099 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-3 (is not EM) E= 139 t= -13164 Q= 2488 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-7 (is not EM) E= 242 t= -14811 Q= 7048 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-8 (is not EM) E= 165 t= -17652 Q= 7869 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-19 (is not EM) E= 122 t= 7952 Q= 77 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-114 (is not EM) E= 97 t= -20556 Q= 1035 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-116 (is not EM) E= 113 t= 3560 Q= 10 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-10/CHAN-13 (is not EM) E= 146 t= -12928 Q= 78 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-10/CHAN-100 (is not EM) E= -184 t= -10869 Q= 546 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-19/SLOT-12/CHAN-65 (is not EM) E= 265 t= 23712 Q= 80 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-19/SLOT-13/CHAN-83 (is not EM) E= 641 t= 7529 Q= 15 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-20/SLOT-4/CHAN-110 (is not EM) E= 129 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-20/SLOT-6/CHAN-1 (is not EM) E= 84 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-20/SLOT-6/CHAN-2 (is not EM) E= 77 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-20/SLOT-10/CHAN-17 (is not EM) E= 160 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-20/SLOT-10/CHAN-23 (is not EM) E= 177 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-20/SLOT-4/CHAN-110 (is not EM) E= 129 t= 5639 Q= 108 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-20/SLOT-6/CHAN-1 (is not EM) E= 84 t= 3567 Q= 84 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-20/SLOT-6/CHAN-2 (is not EM) E= 77 t= -3614 Q= 124 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-20/SLOT-10/CHAN-17 (is not EM) E= 160 t= -22247 Q= 213 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-20/SLOT-10/CHAN-23 (is not EM) E= 177 t= 9242 Q= 52 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-21/SLOT-1/CHAN-65 (is not EM) E= 571 t= -10640 Q= 674 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-21/SLOT-3/CHAN-55 (is not EM) E= 105 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-21/SLOT-3/CHAN-56 (is not EM) E= 88 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-21/SLOT-5/CHAN-53 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-21/SLOT-6/CHAN-10 (is not EM) E= 109 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-21/SLOT-8/CHAN-4 (is not EM) E= 162 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-21/SLOT-8/CHAN-73 (is not EM) E= 120 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-21/SLOT-3/CHAN-55 (is not EM) E= 105 t= -1034 Q= 48 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-21/SLOT-3/CHAN-56 (is not EM) E= 88 t= -5247 Q= 89 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-21/SLOT-5/CHAN-53 (is not EM) E= 91 t= -2134 Q= 67 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-21/SLOT-6/CHAN-10 (is not EM) E= 109 t= -15140 Q= 1739 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-21/SLOT-8/CHAN-4 (is not EM) E= 162 t= -13878 Q= 2602 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-21/SLOT-8/CHAN-73 (is not EM) E= 120 t= -20384 Q= 3167 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-21/SLOT-9/CHAN-126 (is not EM) E= 341 t= 24660 Q= 229 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-21/SLOT-14/CHAN-7 (is not EM) E= 359 t= -31271 Q= 299 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-21/SLOT-14/CHAN-20 (is not EM) E= 478 t= -31881 Q= 87 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-21/SLOT-14/CHAN-62 (is not EM) E= 362 t= -26792 Q= 730 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-22/SLOT-4/CHAN-52 (is not EM) E= 166 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-22/SLOT-4/CHAN-114 (is not EM) E= 110 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-22/SLOT-4/CHAN-52 (is not EM) E= 166 t= -13455 Q= 2943 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-22/SLOT-4/CHAN-114 (is not EM) E= 110 t= -11887 Q= 632 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-22/SLOT-10/CHAN-50 (is not EM) E= 312 t= 25373 Q= 22 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-22/SLOT-10/CHAN-62 (is not EM) E= 700 t= 12623 Q= 1961 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-22/SLOT-10/CHAN-63 (is not EM) E= 545 t= 6638 Q= 2973 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-22/SLOT-11/CHAN-85 (is not EM) E= 228 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-23/SLOT-5/CHAN-61 (is not EM) E= 120 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-23/SLOT-5/CHAN-118 (is not EM) E= 137 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-23/SLOT-5/CHAN-119 (is not EM) E= 106 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-23/SLOT-7/CHAN-18 (is not EM) E= 101 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-23/SLOT-7/CHAN-19 (is not EM) E= 194 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-23/SLOT-7/CHAN-20 (is not EM) E= 129 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-23/SLOT-9/CHAN-54 (is not EM) E= 170 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-23/SLOT-10/CHAN-9 (is not EM) E= 108 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-24/SLOT-3/CHAN-2 (is not EM) E= 104 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-24/SLOT-3/CHAN-18 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-24/SLOT-3/CHAN-106 (is not EM) E= 89 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-24/SLOT-8/CHAN-77 (is not EM) E= 95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-24/SLOT-9/CHAN-61 (is not EM) E= 139 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-24/SLOT-9/CHAN-62 (is not EM) E= 167 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-24/SLOT-11/CHAN-34 (is not EM) E= 232 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-22/SLOT-11/CHAN-85 (is not EM) E= 228 t= 21955 Q= 147 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-23/SLOT-5/CHAN-61 (is not EM) E= 120 t= -4496 Q= 626 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-23/SLOT-5/CHAN-118 (is not EM) E= 137 t= -13118 Q= 2324 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-23/SLOT-5/CHAN-119 (is not EM) E= 106 t= -25857 Q= 941 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-23/SLOT-7/CHAN-18 (is not EM) E= 101 t= -786 Q= 25 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-23/SLOT-7/CHAN-19 (is not EM) E= 194 t= 258 Q= 14 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-23/SLOT-7/CHAN-20 (is not EM) E= 129 t= 3509 Q= 175 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-23/SLOT-9/CHAN-54 (is not EM) E= 170 t= -28619 Q= 1737 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-23/SLOT-10/CHAN-9 (is not EM) E= 108 t= -14087 Q= 498 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-24/SLOT-3/CHAN-2 (is not EM) E= 104 t= 2342 Q= 141 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-24/SLOT-3/CHAN-18 (is not EM) E= 91 t= 19533 Q= 956 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-24/SLOT-3/CHAN-106 (is not EM) E= 89 t= -2777 Q= 78 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-24/SLOT-8/CHAN-77 (is not EM) E= 95 t= -1148 Q= 145 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-24/SLOT-9/CHAN-61 (is not EM) E= 139 t= -39335 Q= 20 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-24/SLOT-9/CHAN-62 (is not EM) E= 167 t= -17097 Q= 36 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-24/SLOT-11/CHAN-34 (is not EM) E= 232 t= -1148 Q= 2 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-24/SLOT-11/CHAN-35 (is not EM) E= 266 t= 3530 Q= 129 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-24/SLOT-11/CHAN-113 (is not EM) E= 303 t= 11192 Q= 231 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-24/SLOT-13/CHAN-125 (is not EM) E= 295 t= -19667 Q= 29 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-25/SLOT-3/CHAN-16 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-25/SLOT-3/CHAN-17 (is not EM) E= 139 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-25/SLOT-3/CHAN-18 (is not EM) E= 109 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-25/SLOT-3/CHAN-56 (is not EM) E= 92 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-25/SLOT-3/CHAN-57 (is not EM) E= 142 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-25/SLOT-3/CHAN-60 (is not EM) E= 99 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-25/SLOT-6/CHAN-68 (is not EM) E= 78 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-25/SLOT-6/CHAN-69 (is not EM) E= 141 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-25/SLOT-3/CHAN-16 (is not EM) E= 91 t= 7482 Q= 114 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-25/SLOT-3/CHAN-17 (is not EM) E= 139 t= -3651 Q= 235 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-25/SLOT-3/CHAN-18 (is not EM) E= 109 t= 3667 Q= 345 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-25/SLOT-3/CHAN-56 (is not EM) E= 92 t= -3596 Q= 303 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-25/SLOT-3/CHAN-57 (is not EM) E= 142 t= 6642 Q= 147 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-25/SLOT-3/CHAN-60 (is not EM) E= 99 t= 114 Q= 39 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-25/SLOT-6/CHAN-68 (is not EM) E= 78 t= 1896 Q= 571 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-25/SLOT-6/CHAN-69 (is not EM) E= 141 t= 15251 Q= 2589 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-25/SLOT-6/CHAN-70 (is not EM) E= 62 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-25/SLOT-6/CHAN-88 (is not EM) E= -86 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-25/SLOT-9/CHAN-79 (is not EM) E= 93 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-25/SLOT-11/CHAN-98 (is not EM) E= 220 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-25/SLOT-6/CHAN-88 (is not EM) E= -86 t= -3058 Q= 235 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-25/SLOT-9/CHAN-79 (is not EM) E= 93 t= -1277 Q= 30 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-25/SLOT-11/CHAN-98 (is not EM) E= 220 t= -11130 Q= 677 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-25/SLOT-11/CHAN-99 (is not EM) E= 311 t= 1767 Q= 57 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-25/SLOT-11/CHAN-103 (is not EM) E= 210 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-25/SLOT-11/CHAN-103 (is not EM) E= 210 t= 3114 Q= 84 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-25/SLOT-13/CHAN-66 (is not EM) E= 461 t= 46603 Q= 114 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-26/SLOT-3/CHAN-41 (is not EM) E= 86 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-26/SLOT-3/CHAN-42 (is not EM) E= 131 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-26/SLOT-5/CHAN-79 (is not EM) E= 104 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-26/SLOT-8/CHAN-105 (is not EM) E= 114 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-26/SLOT-8/CHAN-112 (is not EM) E= 99 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-26/SLOT-9/CHAN-84 (is not EM) E= -81 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-26/SLOT-10/CHAN-28 (is not EM) E= -223 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-26/SLOT-10/CHAN-75 (is not EM) E= 184 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-26/SLOT-3/CHAN-41 (is not EM) E= 86 t= -9235 Q= 105 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-26/SLOT-3/CHAN-42 (is not EM) E= 131 t= 3582 Q= 34 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-26/SLOT-5/CHAN-79 (is not EM) E= 104 t= -11856 Q= 132 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-26/SLOT-8/CHAN-105 (is not EM) E= 114 t= 931 Q= 792 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-26/SLOT-8/CHAN-112 (is not EM) E= 99 t= 2635 Q= 412 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-26/SLOT-9/CHAN-84 (is not EM) E= -81 t= -1880 Q= 17 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-26/SLOT-10/CHAN-28 (is not EM) E= -223 t= -5198 Q= 253 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-26/SLOT-10/CHAN-75 (is not EM) E= 184 t= -17196 Q= 326 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-27/SLOT-1/CHAN-88 (is not EM) E= 801 t= 1217 Q= 2806 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-27/SLOT-1/CHAN-91 (is not EM) E= 646 t= 462 Q= 2525 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-5/CHAN-58 (is not EM) E= -114 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-7/CHAN-102 (is not EM) E= 81 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-10/CHAN-5 (is not EM) E= 105 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-5/CHAN-58 (is not EM) E= -114 t= -3416 Q= 833 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-7/CHAN-102 (is not EM) E= 81 t= -5255 Q= 247 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-10/CHAN-5 (is not EM) E= 105 t= -23508 Q= 68 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-27/SLOT-10/CHAN-89 (is not EM) E= 267 t= 23605 Q= 29 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-10/CHAN-100 (is not EM) E= 192 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-3/CHAN-56 (is not EM) E= 88 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-4/CHAN-63 (is not EM) E= -110 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-4/CHAN-81 (is not EM) E= 112 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-5/CHAN-83 (is not EM) E= 116 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-6 (is not EM) E= 78 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-17 (is not EM) E= 117 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-18 (is not EM) E= 120 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-9/CHAN-107 (is not EM) E= 98 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-10/CHAN-100 (is not EM) E= 192 t= 26095 Q= 45 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-3/CHAN-56 (is not EM) E= 88 t= 2736 Q= 27 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-4/CHAN-63 (is not EM) E= -110 t= -12830 Q= 7351 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-4/CHAN-81 (is not EM) E= 112 t= -12518 Q= 2470 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-5/CHAN-83 (is not EM) E= 116 t= 4146 Q= 37 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-6 (is not EM) E= 78 t= -2386 Q= 337 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-17 (is not EM) E= 117 t= 927 Q= 299 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-18 (is not EM) E= 120 t= -3337 Q= 293 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-9/CHAN-107 (is not EM) E= 98 t= -16781 Q= 257 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-28/SLOT-10/CHAN-76 (is not EM) E= 272 t= 19487 Q= 586 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-11/CHAN-74 (is not EM) E= -235 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-11/CHAN-74 (is not EM) E= -235 t= 835 Q= 465 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-28/SLOT-11/CHAN-87 (is not EM) E= 369 t= 2380 Q= 32 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-28/SLOT-11/CHAN-113 (is not EM) E= 345 t= 3173 Q= 23 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-28/SLOT-12/CHAN-31 (is not EM) E= -315 t= -2884 Q= 883 P=0x20a5 G=0 @@ -557,33 +557,33 @@ Channel: BARREL/A-SIDE/FT-28/SLOT-13/CHAN-88 (is not EM) E= 726 t= 27741 Q= 398 Channel: BARREL/A-SIDE/FT-28/SLOT-13/CHAN-89 (is not EM) E= 443 t= 23333 Q= 267 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-28/SLOT-13/CHAN-111 (is not EM) E= 621 t= 2600 Q= 63 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-28/SLOT-14/CHAN-51 (is not EM) E= 634 t= 38212 Q= 440 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-29/SLOT-2/CHAN-62 (is not EM) E= -91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-29/SLOT-2/CHAN-85 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-29/SLOT-4/CHAN-57 (is not EM) E= 113 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-29/SLOT-4/CHAN-58 (is not EM) E= 144 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-29/SLOT-4/CHAN-59 (is not EM) E= 109 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-29/SLOT-7/CHAN-27 (is not EM) E= 172 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-29/SLOT-9/CHAN-51 (is not EM) E= 193 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-29/SLOT-10/CHAN-56 (is not EM) E= 153 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-29/SLOT-2/CHAN-62 (is not EM) E= -91 t= 7024 Q= 3055 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-29/SLOT-2/CHAN-85 (is not EM) E= 91 t= 8195 Q= 540 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-29/SLOT-4/CHAN-57 (is not EM) E= 113 t= 15483 Q= 627 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-29/SLOT-4/CHAN-58 (is not EM) E= 144 t= 19873 Q= 3051 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-29/SLOT-4/CHAN-59 (is not EM) E= 109 t= 16308 Q= 756 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-29/SLOT-7/CHAN-27 (is not EM) E= 172 t= 4106 Q= 125 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-29/SLOT-9/CHAN-51 (is not EM) E= 193 t= 17490 Q= 61 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-29/SLOT-10/CHAN-56 (is not EM) E= 153 t= -9714 Q= 412 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-29/SLOT-11/CHAN-111 (is not EM) E= 355 t= -3118 Q= 52 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-29/SLOT-13/CHAN-44 (is not EM) E= 595 t= 4672 Q= 136 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-29/SLOT-13/CHAN-101 (is not EM) E= 311 t= -5776 Q= 3 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-29/SLOT-14/CHAN-32 (is not EM) E= 377 t= 23794 Q= 91 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-30/SLOT-1/CHAN-29 (is not EM) E= 349 t= 4460 Q= 76 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-30/SLOT-10/CHAN-20 (is not EM) E= 259 t= 11147 Q= 105 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-30/SLOT-10/CHAN-37 (is not EM) E= 198 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-30/SLOT-12/CHAN-95 (is not EM) E= -255 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-31/SLOT-4/CHAN-79 (is not EM) E= 166 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-31/SLOT-8/CHAN-93 (is not EM) E= 76 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-31/SLOT-10/CHAN-84 (is not EM) E= 232 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-31/SLOT-12/CHAN-45 (is not EM) E= 240 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-30/SLOT-10/CHAN-37 (is not EM) E= 198 t= -25634 Q= 257 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-30/SLOT-12/CHAN-95 (is not EM) E= -255 t= 4532 Q= 498 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-31/SLOT-4/CHAN-79 (is not EM) E= 166 t= -2546 Q= 107 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-31/SLOT-8/CHAN-93 (is not EM) E= 76 t= 13504 Q= 244 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-31/SLOT-10/CHAN-84 (is not EM) E= 232 t= 2763 Q= 69 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-31/SLOT-12/CHAN-45 (is not EM) E= 240 t= -9645 Q= 69 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-31/SLOT-13/CHAN-53 (is not EM) E= 456 t= -3890 Q= 21 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-31/SLOT-14/CHAN-41 (is not EM) E= 502 t= -34088 Q= 1417 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-0/SLOT-2/CHAN-79 (is not EM) E= 298 t= 15149 Q= 5177 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-0/SLOT-2/CHAN-80 (is not EM) E= 219 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-0/SLOT-3/CHAN-19 (is not EM) E= 190 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-0/SLOT-2/CHAN-80 (is not EM) E= 219 t= 19483 Q= 2839 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-0/SLOT-3/CHAN-19 (is not EM) E= 190 t= 2330 Q= 459 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-0/SLOT-5/CHAN-17 (is not EM) E= 528 t= 2724 Q= 807 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-0/SLOT-5/CHAN-97 (is not EM) E= 235 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-0/SLOT-5/CHAN-97 (is not EM) E= 235 t= -18872 Q= 16716 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-0/SLOT-9/CHAN-110 (is not EM) E= 406 t= -4823 Q= 80 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-0/SLOT-11/CHAN-79 (is not EM) E= 452 t= -233 Q= 29 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-0/SLOT-11/CHAN-104 (is not EM) E= 498 t= 886 Q= 58 P=0x20a5 G=0 @@ -596,14 +596,14 @@ Channel: ENDCAP/C-SIDE/FT-1/SLOT-11/CHAN-18 (is not EM) E= 717 t= -22456 Q= 2440 Channel: ENDCAP/C-SIDE/FT-1/SLOT-11/CHAN-75 (is not EM) E= 754 t= 20823 Q= 4806 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-1/SLOT-11/CHAN-79 (is not EM) E= 541 t= 23204 Q= 6986 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-2/SLOT-3/CHAN-21 (is not EM) E= 426 t= -8238 Q= 106 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-2/SLOT-3/CHAN-87 (is not EM) E= 244 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-2/SLOT-7/CHAN-49 (is not EM) E= 140 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-2/SLOT-8/CHAN-77 (is not EM) E= 141 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-2/SLOT-8/CHAN-78 (is not EM) E= 195 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-2/SLOT-8/CHAN-112 (is not EM) E= 142 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-2/SLOT-3/CHAN-87 (is not EM) E= 244 t= -30 Q= 56 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-2/SLOT-7/CHAN-49 (is not EM) E= 140 t= 9511 Q= 319 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-2/SLOT-8/CHAN-77 (is not EM) E= 141 t= -6726 Q= 361 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-2/SLOT-8/CHAN-78 (is not EM) E= 195 t= -9428 Q= 573 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-2/SLOT-8/CHAN-112 (is not EM) E= 142 t= -378 Q= 103 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-2/SLOT-9/CHAN-23 (is not EM) E= 263 t= -30342 Q= 1220 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-2/SLOT-9/CHAN-57 (is not EM) E= 227 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-2/SLOT-9/CHAN-75 (is not EM) E= -135 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-2/SLOT-9/CHAN-57 (is not EM) E= 227 t= -20357 Q= 90 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-2/SLOT-9/CHAN-75 (is not EM) E= -135 t= -5919 Q= 3 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-2/SLOT-10/CHAN-28 (is not EM) E= 365 t= -5933 Q= 38 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-2/SLOT-11/CHAN-112 (is not EM) E= 334 t= 7706 Q= 14 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-3/SLOT-5/CHAN-55 Barrel l/e/p= 0/240/0: E= -1750 t= -838 Q= 35 P=0x20a5 G=1 @@ -615,9 +615,9 @@ Channel: ENDCAP/C-SIDE/FT-3/SLOT-10/CHAN-52 Barrel l/e/p= 2/80/0: E= 8619 t= 678 Channel: ENDCAP/C-SIDE/FT-3/SLOT-10/CHAN-77 Barrel l/e/p= 1/128/0: E= 2150 t= 14118 Q= 210 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-3/SLOT-10/CHAN-106 Barrel l/e/p= 2/72/0: E= 4646 t= -9260 Q= 193 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-3/SLOT-10/CHAN-117 Barrel l/e/p= 2/64/0: E= 7990 t= -1117 Q= 28 P=0x20a5 G=1 -Channel: ENDCAP/C-SIDE/FT-4/SLOT-4/CHAN-108 (is not EM) E= 216 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-4/SLOT-4/CHAN-108 (is not EM) E= 216 t= 1640 Q= 4371 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-4/SLOT-7/CHAN-42 (is not EM) E= 494 t= 1455 Q= 307 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-4/SLOT-8/CHAN-6 (is not EM) E= 168 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-4/SLOT-8/CHAN-6 (is not EM) E= 168 t= -15629 Q= 93 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-4/SLOT-10/CHAN-99 (is not EM) E= 410 t= -541 Q= 25 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-4/SLOT-11/CHAN-88 (is not EM) E= 559 t= 24260 Q= 5316 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-5/SLOT-9/CHAN-35 (is not EM) E= 386 t= -2352 Q= 12 P=0x20a5 G=0 @@ -642,14 +642,14 @@ Channel: ENDCAP/C-SIDE/FT-7/SLOT-7/CHAN-8 (is not EM) E= 490 t= 494 Q= 5324 P=0x Channel: ENDCAP/C-SIDE/FT-7/SLOT-7/CHAN-68 (is not EM) E= 557 t= -1635 Q= 11507 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-7/SLOT-11/CHAN-127 (is not EM) E= -824 t= -2828 Q= 65535 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-7/SLOT-12/CHAN-19 (is not EM) E= 460 t= 1504 Q= 173 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-8/SLOT-3/CHAN-69 (is not EM) E= 140 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-8/SLOT-8/CHAN-22 (is not EM) E= 208 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-8/SLOT-3/CHAN-69 (is not EM) E= 140 t= -27433 Q= 1622 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-8/SLOT-8/CHAN-22 (is not EM) E= 208 t= 969 Q= 96 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-8/SLOT-9/CHAN-84 (is not EM) E= -298 t= 2128 Q= 28 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-8/SLOT-12/CHAN-92 (is not EM) E= 667 t= -348 Q= 127 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-9/SLOT-3/CHAN-4 (is not EM) E= 404 t= 35602 Q= 9501 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-9/SLOT-4/CHAN-42 (is not EM) E= 245 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-9/SLOT-7/CHAN-2 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-9/SLOT-9/CHAN-35 (is not EM) E= 163 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-9/SLOT-4/CHAN-42 (is not EM) E= 245 t= 30527 Q= 83 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-9/SLOT-7/CHAN-2 (is not EM) E= 94 t= 11208 Q= 267 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-9/SLOT-9/CHAN-35 (is not EM) E= 163 t= 8212 Q= 541 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-9/SLOT-10/CHAN-71 (is not EM) E= 352 t= 28902 Q= 194 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-10/SLOT-1/CHAN-104 (is not EM) E= 8002 t= 2299 Q= 91 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-10/SLOT-2/CHAN-4 (is not EM) E= 1306 t= 757 Q= 18 P=0x20a5 G=1 @@ -660,18 +660,18 @@ Channel: ENDCAP/C-SIDE/FT-10/SLOT-9/CHAN-0 Barrel l/e/p= 1/120/0: E= 3041 t= 565 Channel: ENDCAP/C-SIDE/FT-10/SLOT-9/CHAN-49 Barrel l/e/p= 2/56/0: E= -4867 t= -12086 Q= 275 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-10/SLOT-10/CHAN-52 Barrel l/e/p= 2/16/0: E= 9492 t= 1652 Q= 1291 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-10/SLOT-10/CHAN-53 Barrel l/e/p= 2/16/0: E= 6424 t= 1558 Q= 336 P=0x20a5 G=1 -Channel: ENDCAP/C-SIDE/FT-11/SLOT-5/CHAN-111 (is not EM) E= 255 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-11/SLOT-5/CHAN-111 (is not EM) E= 255 t= -1500 Q= 2677 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-11/SLOT-5/CHAN-112 (is not EM) E= 317 t= 3022 Q= 2010 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-12/SLOT-2/CHAN-31 (is not EM) E= -141 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-12/SLOT-2/CHAN-117 (is not EM) E= 121 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-12/SLOT-5/CHAN-106 (is not EM) E= 220 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-12/SLOT-2/CHAN-31 (is not EM) E= -141 t= 3686 Q= 1855 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-12/SLOT-2/CHAN-117 (is not EM) E= 121 t= -12261 Q= 1656 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-12/SLOT-5/CHAN-106 (is not EM) E= 220 t= -14720 Q= 14623 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-12/SLOT-12/CHAN-27 (is not EM) E= 871 t= -3050 Q= 12 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-13/SLOT-4/CHAN-42 (is not EM) E= 241 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-13/SLOT-4/CHAN-76 (is not EM) E= 233 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-13/SLOT-4/CHAN-77 (is not EM) E= 243 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-13/SLOT-4/CHAN-42 (is not EM) E= 241 t= 2727 Q= 177 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-13/SLOT-4/CHAN-76 (is not EM) E= 233 t= -4198 Q= 499 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-13/SLOT-4/CHAN-77 (is not EM) E= 243 t= -425 Q= 2605 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-13/SLOT-4/CHAN-83 (is not EM) E= 611 t= 741 Q= 4991 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-13/SLOT-4/CHAN-84 (is not EM) E= 453 t= -3571 Q= 2270 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-13/SLOT-5/CHAN-102 (is not EM) E= 241 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-13/SLOT-5/CHAN-102 (is not EM) E= 241 t= 528 Q= 231 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-13/SLOT-6/CHAN-7 (is not EM) E= 329 t= 2121 Q= 726 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-13/SLOT-11/CHAN-20 (is not EM) E= 483 t= -5043 Q= 140 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-13/SLOT-11/CHAN-112 (is not EM) E= 988 t= 2366 Q= 118 P=0x20a5 G=0 @@ -680,20 +680,20 @@ Channel: ENDCAP/C-SIDE/FT-13/SLOT-11/CHAN-117 (is not EM) E= 542 t= 2149 Q= 167 Channel: ENDCAP/C-SIDE/FT-13/SLOT-12/CHAN-7 (is not EM) E= 687 t= 247 Q= 259 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-13/SLOT-12/CHAN-41 (is not EM) E= 555 t= -1211 Q= 44 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-13/SLOT-13/CHAN-124 (is not EM) E= 702 t= 2003 Q= 327 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-14/SLOT-4/CHAN-41 (is not EM) E= 205 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-14/SLOT-4/CHAN-101 (is not EM) E= 230 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-14/SLOT-4/CHAN-41 (is not EM) E= 205 t= -17797 Q= 5405 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-14/SLOT-4/CHAN-101 (is not EM) E= 230 t= 382 Q= 786 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-14/SLOT-5/CHAN-110 (is not EM) E= 350 t= -17415 Q= 25835 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-14/SLOT-5/CHAN-111 (is not EM) E= 605 t= -18263 Q= 65535 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-14/SLOT-7/CHAN-47 (is not EM) E= 508 t= 1474 Q= 1108 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-14/SLOT-8/CHAN-111 (is not EM) E= 207 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-14/SLOT-8/CHAN-111 (is not EM) E= 207 t= -3855 Q= 21 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-14/SLOT-10/CHAN-126 (is not EM) E= 496 t= -1311 Q= 41 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-14/SLOT-11/CHAN-90 (is not EM) E= 892 t= -273 Q= 139 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-14/SLOT-11/CHAN-121 (is not EM) E= 557 t= -25969 Q= 8557 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-15/SLOT-4/CHAN-36 (is not EM) E= 233 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-15/SLOT-7/CHAN-13 (is not EM) E= -141 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-15/SLOT-7/CHAN-113 (is not EM) E= 124 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-15/SLOT-7/CHAN-114 (is not EM) E= 133 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-15/SLOT-8/CHAN-97 (is not EM) E= 116 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-15/SLOT-4/CHAN-36 (is not EM) E= 233 t= 7682 Q= 117 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-15/SLOT-7/CHAN-13 (is not EM) E= -141 t= 4507 Q= 1123 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-15/SLOT-7/CHAN-113 (is not EM) E= 124 t= 6210 Q= 314 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-15/SLOT-7/CHAN-114 (is not EM) E= 133 t= 3534 Q= 182 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-15/SLOT-8/CHAN-97 (is not EM) E= 116 t= 10643 Q= 140 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-15/SLOT-11/CHAN-27 (is not EM) E= 436 t= 553 Q= 8 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-15/SLOT-13/CHAN-85 (is not EM) E= 319 t= 7594 Q= 440 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-15/SLOT-14/CHAN-64 (is not EM) E= 698 t= -3686 Q= 545 P=0x20a5 G=0 @@ -709,30 +709,30 @@ Channel: ENDCAP/C-SIDE/FT-16/SLOT-6/CHAN-61 Barrel l/e/p= 0/416/0: E= 1895 t= 93 Channel: ENDCAP/C-SIDE/FT-16/SLOT-8/CHAN-69 Barrel l/e/p= 0/400/0: E= 2826 t= -11649 Q= 24 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-16/SLOT-8/CHAN-78 Barrel l/e/p= 0/384/0: E= 1480 t= 8595 Q= 190 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-16/SLOT-10/CHAN-70 Barrel l/e/p= 1/400/0: E= 2267 t= 3163 Q= 363 P=0x20a5 G=1 -Channel: ENDCAP/C-SIDE/FT-17/SLOT-2/CHAN-85 (is not EM) E= 126 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-17/SLOT-2/CHAN-85 (is not EM) E= 126 t= -1210 Q= 500 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-17/SLOT-3/CHAN-91 (is not EM) E= 318 t= 20779 Q= 38130 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-17/SLOT-3/CHAN-92 (is not EM) E= 208 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-17/SLOT-3/CHAN-92 (is not EM) E= 208 t= 27182 Q= 26953 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-17/SLOT-3/CHAN-93 (is not EM) E= 284 t= 24471 Q= 43989 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-17/SLOT-4/CHAN-64 (is not EM) E= 241 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-17/SLOT-4/CHAN-64 (is not EM) E= 241 t= 11507 Q= 19435 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-17/SLOT-5/CHAN-117 (is not EM) E= 317 t= 5826 Q= 845 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-17/SLOT-7/CHAN-55 (is not EM) E= -374 t= 1457 Q= 65535 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-17/SLOT-7/CHAN-95 (is not EM) E= 647 t= 386 Q= 2810 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-17/SLOT-8/CHAN-65 (is not EM) E= 210 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-17/SLOT-8/CHAN-65 (is not EM) E= 210 t= -10253 Q= 131 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-17/SLOT-10/CHAN-108 (is not EM) E= 748 t= 25784 Q= 3561 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-17/SLOT-10/CHAN-109 (is not EM) E= 943 t= 21118 Q= 3619 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-17/SLOT-12/CHAN-116 (is not EM) E= 568 t= -986 Q= 38 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-17/SLOT-13/CHAN-29 (is not EM) E= 444 t= 3188 Q= 176 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-18/SLOT-2/CHAN-111 (is not EM) E= 126 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-17/SLOT-13/CHAN-29 (is not EM) E= 444 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-18/SLOT-2/CHAN-111 (is not EM) E= 126 t= -13182 Q= 740 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-18/SLOT-6/CHAN-53 (is not EM) E= 1329 t= 1116 Q= 2018 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-18/SLOT-6/CHAN-54 (is not EM) E= 372 t= 2379 Q= 1846 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-18/SLOT-7/CHAN-13 (is not EM) E= 551 t= -27 Q= 221 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-18/SLOT-8/CHAN-82 (is not EM) E= 193 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-18/SLOT-8/CHAN-82 (is not EM) E= 193 t= 1206 Q= 43 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-18/SLOT-12/CHAN-85 (is not EM) E= 1503 t= 1029 Q= 77 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-19/SLOT-3/CHAN-104 (is not EM) E= 168 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-19/SLOT-3/CHAN-105 (is not EM) E= 143 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-19/SLOT-3/CHAN-106 (is not EM) E= 222 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-19/SLOT-3/CHAN-104 (is not EM) E= 168 t= 3765 Q= 94 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-19/SLOT-3/CHAN-105 (is not EM) E= 143 t= 1425 Q= 239 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-19/SLOT-3/CHAN-106 (is not EM) E= 222 t= 5301 Q= 423 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-19/SLOT-6/CHAN-116 (is not EM) E= 428 t= 1884 Q= 187 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-19/SLOT-8/CHAN-90 (is not EM) E= 197 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-19/SLOT-8/CHAN-90 (is not EM) E= 197 t= -16905 Q= 598 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-19/SLOT-9/CHAN-87 (is not EM) E= 340 t= 9569 Q= 799 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-19/SLOT-10/CHAN-110 (is not EM) E= 445 t= -214 Q= 2 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-19/SLOT-10/CHAN-116 (is not EM) E= 617 t= 4085 Q= 53 P=0x20a5 G=0 @@ -745,8 +745,8 @@ Channel: ENDCAP/C-SIDE/FT-20/SLOT-11/CHAN-90 (is not EM) E= 534 t= -2754 Q= 144 Channel: ENDCAP/C-SIDE/FT-20/SLOT-13/CHAN-96 (is not EM) E= 607 t= -1038 Q= 11 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-20/SLOT-13/CHAN-100 (is not EM) E= 699 t= -769 Q= 127 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-21/SLOT-3/CHAN-58 (is not EM) E= 293 t= 4848 Q= 147 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-21/SLOT-4/CHAN-43 (is not EM) E= 249 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-21/SLOT-7/CHAN-64 (is not EM) E= 97 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-21/SLOT-4/CHAN-43 (is not EM) E= 249 t= 16961 Q= 228 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-21/SLOT-7/CHAN-64 (is not EM) E= 97 t= -2674 Q= 584 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-21/SLOT-9/CHAN-35 (is not EM) E= 291 t= 2069 Q= 57 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-21/SLOT-15/CHAN-106 (is not EM) E= 814 t= 1575 Q= 816 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-22/SLOT-9/CHAN-30 Barrel l/e/p= 1/352/0: E= -1576 t= 7220 Q= 326 P=0x20a5 G=1 @@ -756,36 +756,36 @@ Channel: ENDCAP/C-SIDE/FT-23/SLOT-7/CHAN-66 (is not EM) E= 441 t= 1063 Q= 205 P= Channel: ENDCAP/C-SIDE/FT-23/SLOT-9/CHAN-87 (is not EM) E= 330 t= 620 Q= 125 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-23/SLOT-10/CHAN-87 (is not EM) E= 651 t= 5075 Q= 57 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-23/SLOT-12/CHAN-31 (is not EM) E= 744 t= -2327 Q= 134 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-24/SLOT-2/CHAN-16 (is not EM) E= 160 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-24/SLOT-2/CHAN-17 (is not EM) E= 128 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-24/SLOT-2/CHAN-16 (is not EM) E= 160 t= -13911 Q= 937 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-24/SLOT-2/CHAN-17 (is not EM) E= 128 t= -4751 Q= 568 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-24/SLOT-6/CHAN-86 (is not EM) E= 371 t= 2575 Q= 3897 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-24/SLOT-6/CHAN-92 (is not EM) E= 544 t= 912 Q= 1522 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-24/SLOT-6/CHAN-93 (is not EM) E= 325 t= -3978 Q= 705 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-24/SLOT-7/CHAN-63 (is not EM) E= 447 t= -25550 Q= 60237 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-24/SLOT-7/CHAN-87 (is not EM) E= 517 t= 502 Q= 576 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-24/SLOT-7/CHAN-108 (is not EM) E= 338 t= -54 Q= 807 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-24/SLOT-7/CHAN-108 (is not EM) E= 338 t= 0 Q= 0 P=0xa5 G=0 Channel: ENDCAP/C-SIDE/FT-24/SLOT-9/CHAN-27 (is not EM) E= 275 t= -17123 Q= 347 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-24/SLOT-9/CHAN-68 (is not EM) E= 311 t= -1881 Q= 32 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-24/SLOT-12/CHAN-66 (is not EM) E= -492 t= 1253 Q= 6713 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-24/SLOT-12/CHAN-67 (is not EM) E= -434 t= 60 Q= 2688 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-24/SLOT-13/CHAN-92 (is not EM) E= 667 t= -4853 Q= 76 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-24/SLOT-13/CHAN-121 (is not EM) E= 594 t= 3057 Q= 185 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-0/SLOT-2/CHAN-44 (is not EM) E= 134 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-0/SLOT-2/CHAN-56 (is not EM) E= -177 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-0/SLOT-8/CHAN-106 (is not EM) E= -237 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-1/SLOT-3/CHAN-72 (is not EM) E= 196 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-0/SLOT-2/CHAN-44 (is not EM) E= 134 t= 2623 Q= 153 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-0/SLOT-2/CHAN-56 (is not EM) E= -177 t= 11946 Q= 1693 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-0/SLOT-8/CHAN-106 (is not EM) E= -237 t= 1443 Q= 767 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-1/SLOT-3/CHAN-72 (is not EM) E= 196 t= 1167 Q= 14 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-1/SLOT-7/CHAN-121 (is not EM) E= 339 t= -788 Q= 1021 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-1/SLOT-8/CHAN-105 (is not EM) E= 201 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-1/SLOT-8/CHAN-105 (is not EM) E= 201 t= 17257 Q= 1233 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-1/SLOT-12/CHAN-85 (is not EM) E= 648 t= -7233 Q= 175 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-2/SLOT-4/CHAN-14 (is not EM) E= 287 t= 1557 Q= 17 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-2/SLOT-4/CHAN-47 (is not EM) E= 498 t= 3026 Q= 46 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-2/SLOT-4/CHAN-48 (is not EM) E= 214 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-2/SLOT-7/CHAN-11 (is not EM) E= 128 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-2/SLOT-8/CHAN-38 (is not EM) E= 129 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-2/SLOT-8/CHAN-39 (is not EM) E= 128 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-2/SLOT-4/CHAN-48 (is not EM) E= 214 t= -37971 Q= 903 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-2/SLOT-7/CHAN-11 (is not EM) E= 128 t= -12756 Q= 235 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-2/SLOT-8/CHAN-38 (is not EM) E= 129 t= -5141 Q= 358 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-2/SLOT-8/CHAN-39 (is not EM) E= 128 t= -778 Q= 2 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-2/SLOT-9/CHAN-16 (is not EM) E= 350 t= 23926 Q= 1332 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-2/SLOT-9/CHAN-67 (is not EM) E= 186 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-2/SLOT-9/CHAN-74 (is not EM) E= 173 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-2/SLOT-9/CHAN-67 (is not EM) E= 186 t= -18752 Q= 39 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-2/SLOT-9/CHAN-74 (is not EM) E= 173 t= -16489 Q= 242 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-2/SLOT-9/CHAN-80 (is not EM) E= 132 t= 0 Q= 0 P=0xa5 G=0 Channel: ENDCAP/A-SIDE/FT-2/SLOT-11/CHAN-118 (is not EM) E= 470 t= 2172 Q= 40 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-2/SLOT-12/CHAN-79 (is not EM) E= 1008 t= 1974 Q= 8180 P=0x20a5 G=0 @@ -797,14 +797,14 @@ Channel: ENDCAP/A-SIDE/FT-3/SLOT-7/CHAN-54 Barrel l/e/p= 0/8/0: E= 2099 t= 4672 Channel: ENDCAP/A-SIDE/FT-3/SLOT-8/CHAN-40 Barrel l/e/p= 0/80/0: E= 2713 t= 6693 Q= 112 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-3/SLOT-9/CHAN-20 Barrel l/e/p= 1/8/0: E= 2335 t= -24582 Q= 36 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-3/SLOT-10/CHAN-96 Barrel l/e/p= 2/48/0: E= 6782 t= -401 Q= 779 P=0x20a5 G=1 -Channel: ENDCAP/A-SIDE/FT-4/SLOT-3/CHAN-61 (is not EM) E= 177 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-4/SLOT-3/CHAN-62 (is not EM) E= 178 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-4/SLOT-5/CHAN-45 (is not EM) E= 232 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-4/SLOT-3/CHAN-61 (is not EM) E= 177 t= 5623 Q= 675 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-4/SLOT-3/CHAN-62 (is not EM) E= 178 t= 637 Q= 745 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-4/SLOT-5/CHAN-45 (is not EM) E= 232 t= -320 Q= 739 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-4/SLOT-5/CHAN-46 (is not EM) E= 298 t= 3035 Q= 348 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-4/SLOT-6/CHAN-92 (is not EM) E= 322 t= 1913 Q= 3137 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-4/SLOT-7/CHAN-91 (is not EM) E= 390 t= -332 Q= 1729 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-4/SLOT-12/CHAN-77 (is not EM) E= 744 t= -819 Q= 111 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-5/SLOT-3/CHAN-81 (is not EM) E= 149 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-5/SLOT-3/CHAN-81 (is not EM) E= 149 t= -17280 Q= 3122 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-5/SLOT-7/CHAN-31 (is not EM) E= 442 t= 2137 Q= 398 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-5/SLOT-11/CHAN-116 (is not EM) E= 660 t= 1622 Q= 11 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-5/SLOT-13/CHAN-67 (is not EM) E= 792 t= 2761 Q= 161 P=0x20a5 G=0 @@ -822,23 +822,23 @@ Channel: ENDCAP/A-SIDE/FT-7/SLOT-1/CHAN-19 (is not EM) E= 2365 t= -393 Q= 171 P= Channel: ENDCAP/A-SIDE/FT-7/SLOT-6/CHAN-36 (is not EM) E= 546 t= -1256 Q= 1717 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-7/SLOT-7/CHAN-106 (is not EM) E= 431 t= 1273 Q= 7828 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-7/SLOT-7/CHAN-107 (is not EM) E= 743 t= 780 Q= 1394 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-7/SLOT-8/CHAN-95 (is not EM) E= 221 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-7/SLOT-8/CHAN-95 (is not EM) E= 221 t= 10932 Q= 93 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-7/SLOT-10/CHAN-6 (is not EM) E= 340 t= -489 Q= 4 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-7/SLOT-13/CHAN-64 (is not EM) E= 628 t= 2812 Q= 416 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-7/SLOT-13/CHAN-106 (is not EM) E= 810 t= -1650 Q= 589 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-8/SLOT-3/CHAN-109 (is not EM) E= 187 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-8/SLOT-5/CHAN-109 (is not EM) E= 228 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-8/SLOT-5/CHAN-110 (is not EM) E= 224 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-8/SLOT-3/CHAN-109 (is not EM) E= 187 t= 20561 Q= 7636 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-8/SLOT-5/CHAN-109 (is not EM) E= 228 t= 966 Q= 326 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-8/SLOT-5/CHAN-110 (is not EM) E= 224 t= -2675 Q= 831 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-8/SLOT-6/CHAN-90 (is not EM) E= 742 t= 376 Q= 923 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-8/SLOT-7/CHAN-70 (is not EM) E= 654 t= -4995 Q= 14797 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-8/SLOT-7/CHAN-71 (is not EM) E= 534 t= -2540 Q= 18750 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-8/SLOT-8/CHAN-40 (is not EM) E= 189 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-8/SLOT-8/CHAN-40 (is not EM) E= 189 t= -5682 Q= 66 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-8/SLOT-10/CHAN-120 (is not EM) E= 681 t= -194 Q= 3844 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-8/SLOT-12/CHAN-24 (is not EM) E= 519 t= 85 Q= 25 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-9/SLOT-4/CHAN-78 (is not EM) E= 269 t= 3960 Q= 129 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-9/SLOT-4/CHAN-87 (is not EM) E= 295 t= -24565 Q= 1313 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-9/SLOT-6/CHAN-2 (is not EM) E= 111 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-9/SLOT-8/CHAN-20 (is not EM) E= 145 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-9/SLOT-6/CHAN-2 (is not EM) E= 111 t= 5856 Q= 501 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-9/SLOT-8/CHAN-20 (is not EM) E= 145 t= 2606 Q= 44 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-9/SLOT-10/CHAN-78 (is not EM) E= 481 t= 427 Q= 1 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-9/SLOT-10/CHAN-79 (is not EM) E= 833 t= 1219 Q= 35 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-9/SLOT-10/CHAN-92 (is not EM) E= 548 t= 12102 Q= 209 P=0x20a5 G=0 @@ -849,12 +849,12 @@ Channel: ENDCAP/A-SIDE/FT-10/SLOT-6/CHAN-0 Barrel l/e/p= 0/192/0: E= 1501 t= 157 Channel: ENDCAP/A-SIDE/FT-11/SLOT-6/CHAN-77 (is not EM) E= 415 t= 3566 Q= 1435 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-11/SLOT-9/CHAN-26 (is not EM) E= 268 t= 18333 Q= 1541 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-11/SLOT-11/CHAN-19 (is not EM) E= 545 t= -6972 Q= 29 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-12/SLOT-3/CHAN-83 (is not EM) E= 147 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-12/SLOT-4/CHAN-64 (is not EM) E= 214 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-12/SLOT-4/CHAN-65 (is not EM) E= 217 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-12/SLOT-5/CHAN-16 (is not EM) E= 247 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-12/SLOT-3/CHAN-83 (is not EM) E= 147 t= 2082 Q= 385 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-12/SLOT-4/CHAN-64 (is not EM) E= 214 t= 26 Q= 350 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-12/SLOT-4/CHAN-65 (is not EM) E= 217 t= 811 Q= 545 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-12/SLOT-5/CHAN-16 (is not EM) E= 247 t= -18730 Q= 14832 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-12/SLOT-7/CHAN-119 (is not EM) E= 788 t= 111 Q= 4313 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-12/SLOT-8/CHAN-58 (is not EM) E= 203 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-12/SLOT-8/CHAN-58 (is not EM) E= 203 t= -6469 Q= 76 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-12/SLOT-11/CHAN-90 (is not EM) E= 889 t= 232 Q= 56 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-12/SLOT-11/CHAN-93 (is not EM) E= 437 t= 6402 Q= 25 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-12/SLOT-11/CHAN-94 (is not EM) E= 568 t= 467 Q= 121 P=0x20a5 G=0 @@ -862,23 +862,23 @@ Channel: ENDCAP/A-SIDE/FT-12/SLOT-11/CHAN-125 (is not EM) E= 788 t= -749 Q= 402 Channel: ENDCAP/A-SIDE/FT-12/SLOT-12/CHAN-49 (is not EM) E= 1656 t= -199 Q= 39 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-12/SLOT-13/CHAN-118 (is not EM) E= 843 t= -2943 Q= 930 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-12/SLOT-13/CHAN-119 (is not EM) E= 636 t= -712 Q= 753 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-13/SLOT-3/CHAN-58 (is not EM) E= 244 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-13/SLOT-3/CHAN-58 (is not EM) E= 244 t= 1908 Q= 145 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-13/SLOT-5/CHAN-35 (is not EM) E= 418 t= 2147 Q= 354 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-13/SLOT-5/CHAN-36 (is not EM) E= 240 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-13/SLOT-5/CHAN-36 (is not EM) E= 240 t= 898 Q= 2178 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-13/SLOT-7/CHAN-29 (is not EM) E= -513 t= 1700 Q= 65535 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-13/SLOT-9/CHAN-10 (is not EM) E= 300 t= -5803 Q= 29 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-13/SLOT-11/CHAN-82 (is not EM) E= 485 t= 1818 Q= 122 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-13/SLOT-12/CHAN-60 (is not EM) E= 565 t= 2207 Q= 113 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-14/SLOT-4/CHAN-105 (is not EM) E= 218 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-14/SLOT-4/CHAN-105 (is not EM) E= 218 t= -15330 Q= 2541 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-14/SLOT-7/CHAN-109 (is not EM) E= 409 t= -1088 Q= 901 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-14/SLOT-9/CHAN-19 (is not EM) E= 396 t= 824 Q= 65 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-14/SLOT-10/CHAN-47 (is not EM) E= 446 t= -3980 Q= 70 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-14/SLOT-13/CHAN-11 (is not EM) E= 495 t= -29050 Q= 9193 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-14/SLOT-13/CHAN-110 (is not EM) E= 695 t= -992 Q= 30 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-14/SLOT-13/CHAN-113 (is not EM) E= 922 t= 1554 Q= 68 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-15/SLOT-6/CHAN-121 (is not EM) E= 140 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-15/SLOT-7/CHAN-53 (is not EM) E= 131 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-15/SLOT-7/CHAN-54 (is not EM) E= 133 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-15/SLOT-6/CHAN-121 (is not EM) E= 140 t= 6850 Q= 931 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-15/SLOT-7/CHAN-53 (is not EM) E= 131 t= 5079 Q= 95 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-15/SLOT-7/CHAN-54 (is not EM) E= 133 t= 4048 Q= 150 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-15/SLOT-10/CHAN-101 (is not EM) E= 481 t= 21992 Q= 163 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-15/SLOT-11/CHAN-20 (is not EM) E= -384 t= 14935 Q= 1504 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-16/SLOT-2/CHAN-124 (is not EM) E= 1853 t= -78 Q= 111 P=0x20a5 G=1 @@ -892,10 +892,10 @@ Channel: ENDCAP/A-SIDE/FT-17/SLOT-13/CHAN-27 (is not EM) E= 528 t= -1257 Q= 72 P Channel: ENDCAP/A-SIDE/FT-17/SLOT-13/CHAN-31 (is not EM) E= 687 t= 1683 Q= 55 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-17/SLOT-13/CHAN-44 (is not EM) E= 1262 t= -1468 Q= 23 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-17/SLOT-13/CHAN-45 (is not EM) E= 548 t= 1181 Q= 281 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-18/SLOT-3/CHAN-23 (is not EM) E= 168 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-18/SLOT-3/CHAN-24 (is not EM) E= 203 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-18/SLOT-5/CHAN-17 (is not EM) E= -220 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-18/SLOT-5/CHAN-82 (is not EM) E= 236 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-18/SLOT-3/CHAN-23 (is not EM) E= 168 t= -868 Q= 31 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-18/SLOT-3/CHAN-24 (is not EM) E= 203 t= 1716 Q= 157 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-18/SLOT-5/CHAN-17 (is not EM) E= -220 t= 1635 Q= 65535 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-18/SLOT-5/CHAN-82 (is not EM) E= 236 t= -927 Q= 4000 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-18/SLOT-5/CHAN-83 (is not EM) E= 276 t= 2686 Q= 2210 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-18/SLOT-9/CHAN-110 (is not EM) E= 340 t= 2854 Q= 110 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-18/SLOT-9/CHAN-118 (is not EM) E= 362 t= 27930 Q= 11286 P=0x20a5 G=0 @@ -903,20 +903,20 @@ Channel: ENDCAP/A-SIDE/FT-19/SLOT-4/CHAN-45 (is not EM) E= 265 t= 11072 Q= 34221 Channel: ENDCAP/A-SIDE/FT-19/SLOT-4/CHAN-46 (is not EM) E= 411 t= 2622 Q= 1555 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-19/SLOT-4/CHAN-47 (is not EM) E= 402 t= 133 Q= 605 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-19/SLOT-4/CHAN-48 (is not EM) E= 373 t= 619 Q= 132 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-19/SLOT-4/CHAN-54 (is not EM) E= 228 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-19/SLOT-4/CHAN-54 (is not EM) E= 228 t= 2892 Q= 137 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-19/SLOT-4/CHAN-98 (is not EM) E= 474 t= -1222 Q= 2026 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-19/SLOT-7/CHAN-54 (is not EM) E= 431 t= -224 Q= 712 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-19/SLOT-10/CHAN-83 (is not EM) E= 431 t= 247 Q= 24 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-19/SLOT-11/CHAN-24 (is not EM) E= 531 t= -429 Q= 133 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-19/SLOT-13/CHAN-84 (is not EM) E= 722 t= 3108 Q= 133 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-19/SLOT-13/CHAN-88 (is not EM) E= 751 t= 2992 Q= 56 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-20/SLOT-2/CHAN-79 (is not EM) E= 154 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-20/SLOT-2/CHAN-79 (is not EM) E= 154 t= 3219 Q= 438 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-20/SLOT-4/CHAN-22 (is not EM) E= 285 t= -96 Q= 596 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-20/SLOT-4/CHAN-23 (is not EM) E= 262 t= -687 Q= 892 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-20/SLOT-6/CHAN-68 (is not EM) E= 350 t= -353 Q= 300 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-20/SLOT-7/CHAN-93 (is not EM) E= 423 t= -35047 Q= 65535 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-20/SLOT-7/CHAN-122 (is not EM) E= 347 t= -1402 Q= 328 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-20/SLOT-8/CHAN-67 (is not EM) E= 216 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-20/SLOT-8/CHAN-67 (is not EM) E= 216 t= -5810 Q= 10 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-20/SLOT-9/CHAN-0 (is not EM) E= 623 t= -23691 Q= 8570 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-20/SLOT-9/CHAN-1 (is not EM) E= 271 t= -18017 Q= 1116 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-20/SLOT-9/CHAN-77 (is not EM) E= 300 t= -678 Q= 306 P=0x20a5 G=0 @@ -931,23 +931,23 @@ Channel: ENDCAP/A-SIDE/FT-20/SLOT-11/CHAN-108 (is not EM) E= 611 t= 20459 Q= 409 Channel: ENDCAP/A-SIDE/FT-20/SLOT-13/CHAN-20 (is not EM) E= 885 t= -24877 Q= 6746 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-20/SLOT-13/CHAN-21 (is not EM) E= 495 t= -23041 Q= 3775 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-21/SLOT-1/CHAN-36 (is not EM) E= 756 t= -9628 Q= 50 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-4/CHAN-84 (is not EM) E= 244 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-4 (is not EM) E= 128 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-5 (is not EM) E= 99 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-35 (is not EM) E= 118 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-36 (is not EM) E= 231 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-4/CHAN-84 (is not EM) E= 244 t= -22412 Q= 538 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-4 (is not EM) E= 128 t= -18375 Q= 1752 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-5 (is not EM) E= 99 t= -11012 Q= 295 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-35 (is not EM) E= 118 t= -25850 Q= 3905 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-36 (is not EM) E= 231 t= -23733 Q= 16467 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-37 (is not EM) E= 334 t= -15885 Q= 16384 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-38 (is not EM) E= 136 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-48 (is not EM) E= 148 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-52 (is not EM) E= 147 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-81 (is not EM) E= 163 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-82 (is not EM) E= 148 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-96 (is not EM) E= 228 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-97 (is not EM) E= 218 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-98 (is not EM) E= 104 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-8/CHAN-1 (is not EM) E= 131 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-38 (is not EM) E= 136 t= -28780 Q= 6605 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-48 (is not EM) E= 148 t= -328 Q= 81 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-52 (is not EM) E= 147 t= 3314 Q= 46 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-81 (is not EM) E= 163 t= 2693 Q= 61 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-82 (is not EM) E= 148 t= -643 Q= 126 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-96 (is not EM) E= 228 t= -464 Q= 618 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-97 (is not EM) E= 218 t= -2518 Q= 15 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-98 (is not EM) E= 104 t= 8284 Q= 134 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-8/CHAN-1 (is not EM) E= 131 t= -11765 Q= 78 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-21/SLOT-8/CHAN-2 (is not EM) E= 336 t= 2708 Q= 801 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-9/CHAN-0 (is not EM) E= 154 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-9/CHAN-0 (is not EM) E= 154 t= -11735 Q= 27 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-21/SLOT-11/CHAN-16 (is not EM) E= 332 t= -13129 Q= 79 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-21/SLOT-14/CHAN-2 (is not EM) E= 1368 t= 30521 Q= 64126 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-21/SLOT-14/CHAN-19 (is not EM) E= 1773 t= 34145 Q= 65535 P=0x20a5 G=0 @@ -959,7 +959,7 @@ Channel: ENDCAP/A-SIDE/FT-22/SLOT-2/CHAN-103 (is not EM) E= 727 t= 7238 Q= 20 P= Channel: ENDCAP/A-SIDE/FT-22/SLOT-7/CHAN-112 Barrel l/e/p= 0/416/0: E= 2897 t= 16957 Q= 293 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-22/SLOT-7/CHAN-116 Barrel l/e/p= 0/424/0: E= 2446 t= 208 Q= 183 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-22/SLOT-10/CHAN-16 Barrel l/e/p= 1/448/0: E= 4185 t= -852 Q= 25 P=0x20a5 G=1 -Channel: ENDCAP/A-SIDE/FT-23/SLOT-3/CHAN-42 (is not EM) E= 166 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-23/SLOT-3/CHAN-42 (is not EM) E= 166 t= -6227 Q= 889 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-23/SLOT-3/CHAN-43 (is not EM) E= 313 t= 3126 Q= 219 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-23/SLOT-4/CHAN-119 (is not EM) E= 297 t= 4098 Q= 3085 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-23/SLOT-12/CHAN-48 (is not EM) E= 469 t= 40342 Q= 8562 P=0x20a5 G=0 @@ -967,625 +967,625 @@ Channel: ENDCAP/A-SIDE/FT-23/SLOT-12/CHAN-82 (is not EM) E= 543 t= 581 Q= 89 P=0 Channel: ENDCAP/A-SIDE/FT-24/SLOT-7/CHAN-117 (is not EM) E= 485 t= -22695 Q= 65535 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-24/SLOT-10/CHAN-91 (is not EM) E= -570 t= 1794 Q= 2568 P=0x20a5 G=0 Event 2 contains 967 channels -Channel: BARREL/C-SIDE/FT-0/SLOT-2/CHAN-47 (is not EM) E= 106 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-0/SLOT-4/CHAN-36 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-0/SLOT-6/CHAN-96 (is not EM) E= 82 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-0/SLOT-9/CHAN-56 (is not EM) E= 155 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-0/SLOT-2/CHAN-47 (is not EM) E= 106 t= -8076 Q= 6304 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-0/SLOT-4/CHAN-36 (is not EM) E= 91 t= -6033 Q= 25 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-0/SLOT-6/CHAN-96 (is not EM) E= 82 t= -1147 Q= 18 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-0/SLOT-9/CHAN-56 (is not EM) E= 155 t= 7424 Q= 53 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-0/SLOT-11/CHAN-102 (is not EM) E= -281 t= 218 Q= 356 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-1/SLOT-1/CHAN-111 (is not EM) E= 800 t= 8476 Q= 697 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-2/CHAN-13 (is not EM) E= 118 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-2/CHAN-14 (is not EM) E= 198 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-3/CHAN-102 (is not EM) E= 118 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-6/CHAN-56 (is not EM) E= -70 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-7/CHAN-79 (is not EM) E= 93 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-8/CHAN-49 (is not EM) E= 90 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-9/CHAN-8 (is not EM) E= -93 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-9/CHAN-48 (is not EM) E= 166 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-2/CHAN-13 (is not EM) E= 118 t= -284 Q= 52 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-2/CHAN-14 (is not EM) E= 198 t= -1059 Q= 56 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-3/CHAN-102 (is not EM) E= 118 t= 2883 Q= 58 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-6/CHAN-56 (is not EM) E= -70 t= -9831 Q= 547 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-7/CHAN-79 (is not EM) E= 93 t= -14845 Q= 824 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-8/CHAN-49 (is not EM) E= 90 t= -17298 Q= 1174 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-9/CHAN-8 (is not EM) E= -93 t= -11327 Q= 230 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-9/CHAN-48 (is not EM) E= 166 t= -21289 Q= 2442 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-2/SLOT-2/CHAN-68 (is not EM) E= 290 t= -547 Q= 132 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-2/SLOT-2/CHAN-69 (is not EM) E= 320 t= 880 Q= 63 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-2/SLOT-4/CHAN-45 (is not EM) E= 135 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-2/SLOT-6/CHAN-78 (is not EM) E= 83 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-2/SLOT-6/CHAN-101 (is not EM) E= -75 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-2/SLOT-9/CHAN-77 (is not EM) E= 174 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-2/SLOT-9/CHAN-99 (is not EM) E= 86 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-2/SLOT-10/CHAN-68 (is not EM) E= 223 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-2/SLOT-4/CHAN-45 (is not EM) E= 135 t= -8026 Q= 1285 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-2/SLOT-6/CHAN-78 (is not EM) E= 83 t= -18141 Q= 2280 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-2/SLOT-6/CHAN-101 (is not EM) E= -75 t= -10953 Q= 644 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-2/SLOT-9/CHAN-77 (is not EM) E= 174 t= -5642 Q= 246 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-2/SLOT-9/CHAN-99 (is not EM) E= 86 t= 2375 Q= 56 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-2/SLOT-10/CHAN-68 (is not EM) E= 223 t= 2715 Q= 76 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-2/SLOT-11/CHAN-19 (is not EM) E= 807 t= -1448 Q= 95 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-2/SLOT-11/CHAN-64 (is not EM) E= 410 t= -4660 Q= 23 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-2/SLOT-11/CHAN-65 (is not EM) E= 383 t= -8556 Q= 90 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-2/SLOT-12/CHAN-65 (is not EM) E= 375 t= -22494 Q= 6491 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-3/SLOT-5/CHAN-57 (is not EM) E= 99 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-3/SLOT-6/CHAN-44 (is not EM) E= 75 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-3/SLOT-5/CHAN-57 (is not EM) E= 99 t= 6027 Q= 30 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-3/SLOT-6/CHAN-44 (is not EM) E= 75 t= -817 Q= 26 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-3/SLOT-11/CHAN-33 (is not EM) E= 262 t= 2148 Q= 226 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-3/SLOT-11/CHAN-66 (is not EM) E= 364 t= 3787 Q= 52 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-4/SLOT-1/CHAN-54 (is not EM) E= 462 t= -6638 Q= 244 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-2/CHAN-8 (is not EM) E= 81 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-3/CHAN-65 (is not EM) E= 173 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-3/CHAN-66 (is not EM) E= 164 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-4/CHAN-2 (is not EM) E= 96 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-4/CHAN-112 (is not EM) E= -98 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-5/CHAN-51 (is not EM) E= 98 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-5/CHAN-68 (is not EM) E= 125 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-7/CHAN-6 (is not EM) E= 96 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-7/CHAN-7 (is not EM) E= 105 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-9/CHAN-36 (is not EM) E= -128 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-2/CHAN-8 (is not EM) E= 81 t= -11951 Q= 700 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-3/CHAN-65 (is not EM) E= 173 t= -17210 Q= 3926 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-3/CHAN-66 (is not EM) E= 164 t= -19366 Q= 5669 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-4/CHAN-2 (is not EM) E= 96 t= 1489 Q= 369 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-4/CHAN-112 (is not EM) E= -98 t= -7361 Q= 602 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-5/CHAN-51 (is not EM) E= 98 t= 6830 Q= 101 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-5/CHAN-68 (is not EM) E= 125 t= 5281 Q= 63 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-7/CHAN-6 (is not EM) E= 96 t= 5102 Q= 203 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-7/CHAN-7 (is not EM) E= 105 t= -2754 Q= 1 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-9/CHAN-36 (is not EM) E= -128 t= 5183 Q= 104 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-4/SLOT-11/CHAN-73 (is not EM) E= 468 t= -2646 Q= 126 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-11/CHAN-77 (is not EM) E= 222 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-12/CHAN-59 (is not EM) E= 238 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-11/CHAN-77 (is not EM) E= 222 t= 9592 Q= 40 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-12/CHAN-59 (is not EM) E= 238 t= -8090 Q= 133 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-4/SLOT-12/CHAN-120 (is not EM) E= 476 t= 1850 Q= 702 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-4/SLOT-12/CHAN-126 (is not EM) E= -222 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-2/CHAN-87 (is not EM) E= -85 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-2/CHAN-88 (is not EM) E= -199 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-2/CHAN-89 (is not EM) E= -183 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-2/CHAN-90 (is not EM) E= -93 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-2/CHAN-91 (is not EM) E= -158 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-2/CHAN-92 (is not EM) E= -174 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-3/CHAN-41 (is not EM) E= 123 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-3/CHAN-95 (is not EM) E= -111 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-3/CHAN-96 (is not EM) E= -107 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-3/CHAN-106 (is not EM) E= 107 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-4/CHAN-30 (is not EM) E= 125 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-4/CHAN-31 (is not EM) E= 106 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-5/CHAN-35 (is not EM) E= -94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-10/CHAN-6 (is not EM) E= 122 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-2/CHAN-87 (is not EM) E= -85 t= -4384 Q= 1008 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-2/CHAN-88 (is not EM) E= -199 t= -4853 Q= 10532 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-2/CHAN-89 (is not EM) E= -183 t= -2032 Q= 11386 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-2/CHAN-90 (is not EM) E= -93 t= -4259 Q= 4230 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-2/CHAN-91 (is not EM) E= -158 t= 530 Q= 8802 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-2/CHAN-92 (is not EM) E= -174 t= -2637 Q= 6621 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-3/CHAN-41 (is not EM) E= 123 t= -1777 Q= 792 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-3/CHAN-95 (is not EM) E= -111 t= -6957 Q= 3081 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-3/CHAN-96 (is not EM) E= -107 t= -501 Q= 6743 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-3/CHAN-106 (is not EM) E= 107 t= -12498 Q= 27745 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-4/CHAN-30 (is not EM) E= 125 t= -17732 Q= 6138 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-4/CHAN-31 (is not EM) E= 106 t= -18971 Q= 13359 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-5/CHAN-35 (is not EM) E= -94 t= 3863 Q= 117 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-10/CHAN-6 (is not EM) E= 122 t= -9528 Q= 2764 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-5/SLOT-11/CHAN-79 (is not EM) E= -852 t= -3588 Q= 9623 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-6/SLOT-1/CHAN-47 (is not EM) E= 425 t= 5423 Q= 26 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-6/SLOT-3/CHAN-8 (is not EM) E= 119 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-6/SLOT-7/CHAN-9 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-6/SLOT-8/CHAN-81 (is not EM) E= 116 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-6/SLOT-9/CHAN-13 (is not EM) E= -106 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-6/SLOT-9/CHAN-28 (is not EM) E= -83 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-6/SLOT-3/CHAN-8 (is not EM) E= 119 t= 4330 Q= 178 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-6/SLOT-7/CHAN-9 (is not EM) E= 91 t= 2895 Q= 113 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-6/SLOT-8/CHAN-81 (is not EM) E= 116 t= -1133 Q= 120 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-6/SLOT-9/CHAN-13 (is not EM) E= -106 t= -5658 Q= 6 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-6/SLOT-9/CHAN-28 (is not EM) E= -83 t= -24733 Q= 36 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-6/SLOT-11/CHAN-12 (is not EM) E= -346 t= -5697 Q= 1786 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-6/SLOT-12/CHAN-23 (is not EM) E= 803 t= 2678 Q= 46 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-6/SLOT-12/CHAN-125 (is not EM) E= 451 t= -10321 Q= 203 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-6/SLOT-12/CHAN-126 (is not EM) E= 579 t= -12711 Q= 807 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-6/SLOT-13/CHAN-36 (is not EM) E= 349 t= -15784 Q= 54 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-6/SLOT-13/CHAN-37 (is not EM) E= 536 t= -2084 Q= 8 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-2/CHAN-19 (is not EM) E= 121 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-2/CHAN-20 (is not EM) E= 98 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-2/CHAN-22 (is not EM) E= 89 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-4/CHAN-73 (is not EM) E= 171 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-4/CHAN-74 (is not EM) E= 124 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-4/CHAN-111 (is not EM) E= 104 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-4/CHAN-112 (is not EM) E= 111 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-4/CHAN-113 (is not EM) E= 92 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-5/CHAN-26 (is not EM) E= 93 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-5/CHAN-111 (is not EM) E= 93 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-8/CHAN-80 (is not EM) E= -80 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-9/CHAN-127 (is not EM) E= 218 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-11/CHAN-9 (is not EM) E= 214 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-8/SLOT-3/CHAN-3 (is not EM) E= -113 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-8/SLOT-4/CHAN-58 (is not EM) E= 108 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-8/SLOT-4/CHAN-79 (is not EM) E= 90 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-8/SLOT-4/CHAN-125 (is not EM) E= 146 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-8/SLOT-5/CHAN-2 (is not EM) E= 154 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-8/SLOT-6/CHAN-47 (is not EM) E= 138 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-2/CHAN-19 (is not EM) E= 121 t= -1658 Q= 261 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-2/CHAN-20 (is not EM) E= 98 t= 1545 Q= 855 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-2/CHAN-22 (is not EM) E= 89 t= -8052 Q= 474 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-4/CHAN-73 (is not EM) E= 171 t= 1649 Q= 23 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-4/CHAN-74 (is not EM) E= 124 t= -6922 Q= 237 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-4/CHAN-111 (is not EM) E= 104 t= -25757 Q= 1996 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-4/CHAN-112 (is not EM) E= 111 t= -19717 Q= 2418 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-4/CHAN-113 (is not EM) E= 92 t= -19088 Q= 1484 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-5/CHAN-26 (is not EM) E= 93 t= -18355 Q= 28444 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-5/CHAN-111 (is not EM) E= 93 t= -11149 Q= 1042 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-8/CHAN-80 (is not EM) E= -80 t= -7305 Q= 1654 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-9/CHAN-127 (is not EM) E= 218 t= -18280 Q= 270 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-11/CHAN-9 (is not EM) E= 214 t= 887 Q= 7 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-8/SLOT-3/CHAN-3 (is not EM) E= -113 t= -4279 Q= 502 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-8/SLOT-4/CHAN-58 (is not EM) E= 108 t= 711 Q= 11 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-8/SLOT-4/CHAN-79 (is not EM) E= 90 t= 2334 Q= 112 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-8/SLOT-4/CHAN-125 (is not EM) E= 146 t= 9133 Q= 54 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-8/SLOT-5/CHAN-2 (is not EM) E= 154 t= 5565 Q= 20 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-8/SLOT-6/CHAN-47 (is not EM) E= 138 t= -3022 Q= 19 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-9/SLOT-1/CHAN-9 (is not EM) E= 425 t= -961 Q= 163 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-9/SLOT-2/CHAN-82 (is not EM) E= 102 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-9/SLOT-7/CHAN-65 (is not EM) E= -98 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-9/SLOT-9/CHAN-55 (is not EM) E= 140 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-9/SLOT-2/CHAN-82 (is not EM) E= 102 t= -19086 Q= 22842 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-9/SLOT-7/CHAN-65 (is not EM) E= -98 t= -1462 Q= 3602 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-9/SLOT-9/CHAN-55 (is not EM) E= 140 t= 828 Q= 28 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-9/SLOT-12/CHAN-108 (is not EM) E= 299 t= -4705 Q= 178 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-9/SLOT-13/CHAN-111 (is not EM) E= 418 t= 5991 Q= 59 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-10/SLOT-1/CHAN-45 (is not EM) E= 432 t= -10691 Q= 1759 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-10/SLOT-2/CHAN-46 (is not EM) E= 95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-10/SLOT-10/CHAN-19 (is not EM) E= -169 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-10/SLOT-2/CHAN-46 (is not EM) E= 95 t= -11731 Q= 897 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-10/SLOT-10/CHAN-19 (is not EM) E= -169 t= 529 Q= 267 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-10/SLOT-12/CHAN-71 (is not EM) E= -278 t= 6892 Q= 90 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-10/SLOT-13/CHAN-94 (is not EM) E= 365 t= 4145 Q= 24 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-10/SLOT-13/CHAN-123 (is not EM) E= 396 t= 5532 Q= 7 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-11/SLOT-2/CHAN-63 (is not EM) E= 122 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-11/SLOT-6/CHAN-122 (is not EM) E= -103 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-11/SLOT-8/CHAN-0 (is not EM) E= 109 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-11/SLOT-8/CHAN-1 (is not EM) E= 197 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-11/SLOT-8/CHAN-45 (is not EM) E= -90 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-11/SLOT-9/CHAN-30 (is not EM) E= 84 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-11/SLOT-2/CHAN-63 (is not EM) E= 122 t= -25179 Q= 48634 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-11/SLOT-6/CHAN-122 (is not EM) E= -103 t= -864 Q= 533 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-11/SLOT-8/CHAN-0 (is not EM) E= 109 t= -846 Q= 226 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-11/SLOT-8/CHAN-1 (is not EM) E= 197 t= -1437 Q= 194 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-11/SLOT-8/CHAN-45 (is not EM) E= -90 t= -2474 Q= 1206 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-11/SLOT-9/CHAN-30 (is not EM) E= 84 t= 20128 Q= 83 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-11/SLOT-13/CHAN-56 (is not EM) E= 426 t= -242 Q= 26 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-12/SLOT-3/CHAN-28 (is not EM) E= 102 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-12/SLOT-3/CHAN-29 (is not EM) E= 93 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-12/SLOT-3/CHAN-84 (is not EM) E= 117 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-12/SLOT-3/CHAN-85 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-12/SLOT-3/CHAN-28 (is not EM) E= 102 t= 119 Q= 17 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-12/SLOT-3/CHAN-29 (is not EM) E= 93 t= 5184 Q= 240 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-12/SLOT-3/CHAN-84 (is not EM) E= 117 t= 2181 Q= 303 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-12/SLOT-3/CHAN-85 (is not EM) E= 94 t= -3948 Q= 14 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-12/SLOT-11/CHAN-40 (is not EM) E= 266 t= 4130 Q= 17 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-12/SLOT-12/CHAN-83 (is not EM) E= -320 t= -1028 Q= 909 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-12/SLOT-13/CHAN-52 (is not EM) E= 326 t= -16981 Q= 127 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-12/SLOT-14/CHAN-22 (is not EM) E= 320 t= -32385 Q= 116 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-12/SLOT-14/CHAN-23 (is not EM) E= 341 t= -23392 Q= 54 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-13/SLOT-1/CHAN-83 (is not EM) E= 564 t= 2972 Q= 267 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-13/SLOT-3/CHAN-95 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-13/SLOT-5/CHAN-35 (is not EM) E= 178 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-13/SLOT-3/CHAN-95 (is not EM) E= 94 t= 7783 Q= 169 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-13/SLOT-5/CHAN-35 (is not EM) E= 178 t= 3029 Q= 173 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-13/SLOT-10/CHAN-127 (is not EM) E= 586 t= -3041 Q= 201 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-13/SLOT-11/CHAN-20 (is not EM) E= -211 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-13/SLOT-11/CHAN-20 (is not EM) E= -211 t= -6966 Q= 646 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-13/SLOT-13/CHAN-66 (is not EM) E= 463 t= 823 Q= 32 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-13/SLOT-14/CHAN-60 (is not EM) E= 706 t= -1817 Q= 27 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-14/SLOT-1/CHAN-27 (is not EM) E= 450 t= -5296 Q= 4 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-14/SLOT-3/CHAN-59 (is not EM) E= 145 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-14/SLOT-3/CHAN-60 (is not EM) E= 132 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-14/SLOT-3/CHAN-59 (is not EM) E= 145 t= 1746 Q= 570 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-14/SLOT-3/CHAN-60 (is not EM) E= 132 t= 6254 Q= 149 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-14/SLOT-3/CHAN-63 (is not EM) E= 87 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-14/SLOT-8/CHAN-91 (is not EM) E= -85 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-14/SLOT-8/CHAN-91 (is not EM) E= -85 t= -8963 Q= 1815 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-14/SLOT-13/CHAN-102 (is not EM) E= -339 t= -22790 Q= 943 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-15/SLOT-1/CHAN-81 (is not EM) E= -596 t= 5258 Q= 2908 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-3/CHAN-8 (is not EM) E= 88 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-3/CHAN-40 (is not EM) E= 100 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-7/CHAN-13 (is not EM) E= -96 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-7/CHAN-14 (is not EM) E= -81 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-7/CHAN-15 (is not EM) E= -93 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-7/CHAN-16 (is not EM) E= -135 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-7/CHAN-98 (is not EM) E= -94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-7/CHAN-99 (is not EM) E= -143 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-7/CHAN-100 (is not EM) E= -94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-10/CHAN-75 (is not EM) E= 120 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-3/CHAN-8 (is not EM) E= 88 t= 10867 Q= 59 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-3/CHAN-40 (is not EM) E= 100 t= -210 Q= 72 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-7/CHAN-13 (is not EM) E= -96 t= -9667 Q= 8862 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-7/CHAN-14 (is not EM) E= -81 t= 9035 Q= 6196 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-7/CHAN-15 (is not EM) E= -93 t= -5712 Q= 4285 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-7/CHAN-16 (is not EM) E= -135 t= -3391 Q= 14197 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-7/CHAN-98 (is not EM) E= -94 t= -3124 Q= 3153 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-7/CHAN-99 (is not EM) E= -143 t= -2445 Q= 8397 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-7/CHAN-100 (is not EM) E= -94 t= -6977 Q= 8536 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-10/CHAN-75 (is not EM) E= 120 t= 7307 Q= 29 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-15/SLOT-11/CHAN-108 (is not EM) E= 274 t= -26151 Q= 748 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-15/SLOT-13/CHAN-41 (is not EM) E= -286 t= -21779 Q= 742 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-15/SLOT-13/CHAN-112 (is not EM) E= -286 t= -6307 Q= 508 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-3/CHAN-79 (is not EM) E= 130 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-3/CHAN-117 (is not EM) E= 216 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-3/CHAN-118 (is not EM) E= 87 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-6/CHAN-38 (is not EM) E= 168 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-6/CHAN-39 (is not EM) E= 75 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-6/CHAN-118 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-8/CHAN-33 (is not EM) E= 199 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-8/CHAN-34 (is not EM) E= 90 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-9/CHAN-7 (is not EM) E= 96 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-9/CHAN-39 (is not EM) E= -94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-10/CHAN-76 (is not EM) E= -118 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-11/CHAN-11 (is not EM) E= 247 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-3/CHAN-79 (is not EM) E= 130 t= -2607 Q= 31 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-3/CHAN-117 (is not EM) E= 216 t= -1767 Q= 155 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-3/CHAN-118 (is not EM) E= 87 t= 3589 Q= 4 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-6/CHAN-38 (is not EM) E= 168 t= -16510 Q= 6945 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-6/CHAN-39 (is not EM) E= 75 t= -23839 Q= 1501 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-6/CHAN-118 (is not EM) E= 94 t= -13256 Q= 1501 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-8/CHAN-33 (is not EM) E= 199 t= -20278 Q= 8777 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-8/CHAN-34 (is not EM) E= 90 t= -26952 Q= 1697 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-9/CHAN-7 (is not EM) E= 96 t= 22273 Q= 18 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-9/CHAN-39 (is not EM) E= -94 t= -11515 Q= 36 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-10/CHAN-76 (is not EM) E= -118 t= 11051 Q= 10 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-11/CHAN-11 (is not EM) E= 247 t= 13791 Q= 46 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-16/SLOT-11/CHAN-15 (is not EM) E= 514 t= 2068 Q= 8 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-16/SLOT-12/CHAN-42 (is not EM) E= -263 t= 3954 Q= 252 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-16/SLOT-12/CHAN-56 (is not EM) E= 276 t= -20714 Q= 420 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-12/CHAN-57 (is not EM) E= 249 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-12/CHAN-57 (is not EM) E= 249 t= -21340 Q= 320 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-16/SLOT-12/CHAN-60 (is not EM) E= 364 t= -22351 Q= 1343 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-16/SLOT-12/CHAN-107 (is not EM) E= 298 t= -969 Q= 21 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-13/CHAN-17 (is not EM) E= 275 t= -29387 Q= 56 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-13/CHAN-17 (is not EM) E= 275 t= 0 Q= 0 P=0xa5 G=0 Channel: BARREL/C-SIDE/FT-16/SLOT-13/CHAN-92 (is not EM) E= 304 t= 12253 Q= 81 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-16/SLOT-14/CHAN-33 (is not EM) E= 529 t= -26639 Q= 455 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-16/SLOT-14/CHAN-59 (is not EM) E= 587 t= -22265 Q= 523 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-17/SLOT-3/CHAN-8 (is not EM) E= 128 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-17/SLOT-3/CHAN-62 (is not EM) E= 117 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-17/SLOT-3/CHAN-8 (is not EM) E= 128 t= -21295 Q= 65535 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-17/SLOT-3/CHAN-62 (is not EM) E= 117 t= -1372 Q= 14 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-17/SLOT-3/CHAN-63 (is not EM) E= 543 t= 1342 Q= 510 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-17/SLOT-4/CHAN-0 (is not EM) E= 168 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-17/SLOT-4/CHAN-0 (is not EM) E= 168 t= 710 Q= 53 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-17/SLOT-11/CHAN-32 (is not EM) E= 277 t= -27710 Q= 5746 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-17/SLOT-11/CHAN-36 (is not EM) E= 770 t= -22309 Q= 45414 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-17/SLOT-11/CHAN-62 (is not EM) E= 561 t= -1490 Q= 563 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-17/SLOT-12/CHAN-2 (is not EM) E= 374 t= 6068 Q= 3 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-2/CHAN-100 (is not EM) E= 95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-2/CHAN-101 (is not EM) E= 177 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-2/CHAN-102 (is not EM) E= 108 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-3/CHAN-109 (is not EM) E= 122 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-3/CHAN-110 (is not EM) E= 177 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-5/CHAN-58 (is not EM) E= 95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-5/CHAN-59 (is not EM) E= 118 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-5/CHAN-71 (is not EM) E= 120 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-5/CHAN-72 (is not EM) E= 100 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-5/CHAN-75 (is not EM) E= 90 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-7/CHAN-86 (is not EM) E= 87 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-2/CHAN-100 (is not EM) E= 95 t= -2116 Q= 51 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-2/CHAN-101 (is not EM) E= 177 t= 202 Q= 56 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-2/CHAN-102 (is not EM) E= 108 t= -1109 Q= 180 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-3/CHAN-109 (is not EM) E= 122 t= -5804 Q= 383 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-3/CHAN-110 (is not EM) E= 177 t= 5376 Q= 94 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-5/CHAN-58 (is not EM) E= 95 t= -24098 Q= 4770 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-5/CHAN-59 (is not EM) E= 118 t= -16312 Q= 2630 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-5/CHAN-71 (is not EM) E= 120 t= 5311 Q= 96 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-5/CHAN-72 (is not EM) E= 100 t= 4956 Q= 272 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-5/CHAN-75 (is not EM) E= 90 t= 2426 Q= 76 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-7/CHAN-86 (is not EM) E= 87 t= -8225 Q= 23842 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-18/SLOT-7/CHAN-87 (is not EM) E= 271 t= -15549 Q= 65535 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-8/CHAN-12 (is not EM) E= 85 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-8/CHAN-64 (is not EM) E= 84 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-9/CHAN-29 (is not EM) E= 88 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-8/CHAN-12 (is not EM) E= 85 t= -12806 Q= 435 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-8/CHAN-64 (is not EM) E= 84 t= 7954 Q= 33 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-9/CHAN-29 (is not EM) E= 88 t= 3955 Q= 16 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-18/SLOT-10/CHAN-61 (is not EM) E= 602 t= -2530 Q= 36 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-10/CHAN-91 (is not EM) E= 169 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-10/CHAN-95 (is not EM) E= 184 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-10/CHAN-91 (is not EM) E= 169 t= -28349 Q= 268 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-10/CHAN-95 (is not EM) E= 184 t= -24086 Q= 211 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-18/SLOT-10/CHAN-99 (is not EM) E= 399 t= -12540 Q= 600 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-11/CHAN-56 (is not EM) E= 246 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-11/CHAN-56 (is not EM) E= 246 t= -21708 Q= 51 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-18/SLOT-12/CHAN-61 (is not EM) E= 221 t= 0 Q= 0 P=0xa5 G=0 Channel: BARREL/C-SIDE/FT-18/SLOT-12/CHAN-114 (is not EM) E= 371 t= 196 Q= 101 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-18/SLOT-12/CHAN-118 (is not EM) E= 259 t= 778 Q= 8 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-18/SLOT-13/CHAN-4 (is not EM) E= 365 t= -42618 Q= 420 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-18/SLOT-13/CHAN-105 (is not EM) E= 316 t= -63084 Q= 2503 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-18/SLOT-13/CHAN-106 (is not EM) E= 305 t= -60512 Q= 2103 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-19/SLOT-4/CHAN-102 (is not EM) E= 93 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-19/SLOT-4/CHAN-116 (is not EM) E= 99 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-19/SLOT-6/CHAN-50 (is not EM) E= 215 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-19/SLOT-6/CHAN-51 (is not EM) E= 148 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-19/SLOT-4/CHAN-102 (is not EM) E= 93 t= -13393 Q= 3280 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-19/SLOT-4/CHAN-116 (is not EM) E= 99 t= -8461 Q= 542 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-19/SLOT-6/CHAN-50 (is not EM) E= 215 t= 2647 Q= 12 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-19/SLOT-6/CHAN-51 (is not EM) E= 148 t= -1178 Q= 179 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-19/SLOT-12/CHAN-55 (is not EM) E= 320 t= 9679 Q= 45 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-19/SLOT-12/CHAN-90 (is not EM) E= 689 t= -19603 Q= 3018 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-19/SLOT-12/CHAN-112 (is not EM) E= 1052 t= -419 Q= 22 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-19/SLOT-12/CHAN-116 (is not EM) E= 730 t= -953 Q= 289 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-19/SLOT-13/CHAN-25 (is not EM) E= 285 t= 805 Q= 7 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-20/SLOT-2/CHAN-57 (is not EM) E= 93 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-20/SLOT-3/CHAN-63 (is not EM) E= -115 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-20/SLOT-5/CHAN-122 (is not EM) E= -127 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-20/SLOT-5/CHAN-123 (is not EM) E= -151 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-20/SLOT-6/CHAN-31 (is not EM) E= 83 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-20/SLOT-12/CHAN-125 (is not EM) E= -242 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-20/SLOT-2/CHAN-57 (is not EM) E= 93 t= 1442 Q= 65535 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-20/SLOT-3/CHAN-63 (is not EM) E= -115 t= -4246 Q= 301 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-20/SLOT-5/CHAN-122 (is not EM) E= -127 t= 907 Q= 1269 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-20/SLOT-5/CHAN-123 (is not EM) E= -151 t= -2460 Q= 2565 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-20/SLOT-6/CHAN-31 (is not EM) E= 83 t= 6890 Q= 1061 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-20/SLOT-12/CHAN-125 (is not EM) E= -242 t= 8830 Q= 77 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-21/SLOT-1/CHAN-117 (is not EM) E= 906 t= -12546 Q= 2524 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-21/SLOT-3/CHAN-39 (is not EM) E= -89 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-21/SLOT-5/CHAN-49 (is not EM) E= 180 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-21/SLOT-7/CHAN-25 (is not EM) E= 76 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-21/SLOT-7/CHAN-26 (is not EM) E= 153 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-21/SLOT-7/CHAN-27 (is not EM) E= 129 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-21/SLOT-10/CHAN-116 (is not EM) E= 192 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-21/SLOT-3/CHAN-39 (is not EM) E= -89 t= -3461 Q= 1447 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-21/SLOT-5/CHAN-49 (is not EM) E= 180 t= 3418 Q= 537 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-21/SLOT-7/CHAN-25 (is not EM) E= 76 t= -9849 Q= 1690 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-21/SLOT-7/CHAN-26 (is not EM) E= 153 t= -10723 Q= 1518 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-21/SLOT-7/CHAN-27 (is not EM) E= 129 t= -8161 Q= 818 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-21/SLOT-10/CHAN-116 (is not EM) E= 192 t= 4860 Q= 11 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-21/SLOT-10/CHAN-117 (is not EM) E= 286 t= 2543 Q= 47 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-21/SLOT-10/CHAN-125 (is not EM) E= 375 t= -6533 Q= 77 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-22/SLOT-1/CHAN-82 (is not EM) E= 712 t= -6914 Q= 3926 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-22/SLOT-2/CHAN-58 (is not EM) E= 90 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-22/SLOT-3/CHAN-45 (is not EM) E= 191 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-22/SLOT-4/CHAN-87 (is not EM) E= 160 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-22/SLOT-4/CHAN-88 (is not EM) E= 144 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-22/SLOT-7/CHAN-46 (is not EM) E= 137 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-22/SLOT-7/CHAN-47 (is not EM) E= 96 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-22/SLOT-8/CHAN-26 (is not EM) E= 134 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-22/SLOT-8/CHAN-27 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-22/SLOT-10/CHAN-11 (is not EM) E= -100 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-22/SLOT-10/CHAN-28 (is not EM) E= 179 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-22/SLOT-2/CHAN-58 (is not EM) E= 90 t= 3766 Q= 59 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-22/SLOT-3/CHAN-45 (is not EM) E= 191 t= 421 Q= 40 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-22/SLOT-4/CHAN-87 (is not EM) E= 160 t= -14966 Q= 4266 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-22/SLOT-4/CHAN-88 (is not EM) E= 144 t= -16283 Q= 3031 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-22/SLOT-7/CHAN-46 (is not EM) E= 137 t= -19235 Q= 3835 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-22/SLOT-7/CHAN-47 (is not EM) E= 96 t= -25825 Q= 1684 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-22/SLOT-8/CHAN-26 (is not EM) E= 134 t= 1800 Q= 832 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-22/SLOT-8/CHAN-27 (is not EM) E= 94 t= -4044 Q= 135 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-22/SLOT-10/CHAN-11 (is not EM) E= -100 t= -5295 Q= 119 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-22/SLOT-10/CHAN-28 (is not EM) E= 179 t= 19130 Q= 73 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-22/SLOT-10/CHAN-32 (is not EM) E= 354 t= -39771 Q= 3516 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-22/SLOT-13/CHAN-113 (is not EM) E= 458 t= 3076 Q= 109 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-23/SLOT-2/CHAN-45 (is not EM) E= -114 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-23/SLOT-5/CHAN-124 (is not EM) E= 137 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-23/SLOT-5/CHAN-125 (is not EM) E= 107 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-23/SLOT-8/CHAN-119 (is not EM) E= 101 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-23/SLOT-2/CHAN-45 (is not EM) E= -114 t= -3772 Q= 6326 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-23/SLOT-5/CHAN-124 (is not EM) E= 137 t= -1508 Q= 159 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-23/SLOT-5/CHAN-125 (is not EM) E= 107 t= 636 Q= 753 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-23/SLOT-8/CHAN-119 (is not EM) E= 101 t= -17146 Q= 7295 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-23/SLOT-8/CHAN-120 (is not EM) E= 554 t= -16851 Q= 32884 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-23/SLOT-8/CHAN-121 (is not EM) E= 405 t= -17976 Q= 21071 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-23/SLOT-8/CHAN-122 (is not EM) E= 137 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-23/SLOT-10/CHAN-20 (is not EM) E= 214 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-23/SLOT-8/CHAN-122 (is not EM) E= 137 t= -11194 Q= 5669 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-23/SLOT-10/CHAN-20 (is not EM) E= 214 t= 1426 Q= 3 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-23/SLOT-14/CHAN-58 (is not EM) E= 453 t= -31229 Q= 203 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-23/SLOT-14/CHAN-59 (is not EM) E= 1052 t= -26765 Q= 2127 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-23/SLOT-14/CHAN-62 (is not EM) E= 728 t= -27218 Q= 1305 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-23/SLOT-14/CHAN-63 (is not EM) E= 2682 t= -24771 Q= 14128 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-24/SLOT-4/CHAN-7 (is not EM) E= -95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-24/SLOT-8/CHAN-10 (is not EM) E= 171 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-24/SLOT-8/CHAN-11 (is not EM) E= 193 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-24/SLOT-8/CHAN-12 (is not EM) E= 130 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-24/SLOT-8/CHAN-37 (is not EM) E= 155 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-24/SLOT-4/CHAN-7 (is not EM) E= -95 t= -4337 Q= 776 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-24/SLOT-8/CHAN-10 (is not EM) E= 171 t= -12577 Q= 5323 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-24/SLOT-8/CHAN-11 (is not EM) E= 193 t= -19197 Q= 8474 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-24/SLOT-8/CHAN-12 (is not EM) E= 130 t= -12020 Q= 4072 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-24/SLOT-8/CHAN-37 (is not EM) E= 155 t= -18087 Q= 3939 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-24/SLOT-8/CHAN-38 (is not EM) E= 285 t= -17690 Q= 9658 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-24/SLOT-9/CHAN-55 (is not EM) E= 275 t= -11906 Q= 81 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-24/SLOT-10/CHAN-53 (is not EM) E= 162 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-24/SLOT-10/CHAN-53 (is not EM) E= 162 t= -2588 Q= 373 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-24/SLOT-14/CHAN-32 (is not EM) E= 393 t= -48855 Q= 742 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-24/SLOT-14/CHAN-33 (is not EM) E= 584 t= -38569 Q= 1351 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-24/SLOT-14/CHAN-44 (is not EM) E= 418 t= -20327 Q= 283 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-25/SLOT-2/CHAN-66 (is not EM) E= 84 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-25/SLOT-3/CHAN-108 (is not EM) E= 176 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-26/SLOT-2/CHAN-98 (is not EM) E= 85 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-26/SLOT-3/CHAN-27 (is not EM) E= 101 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-26/SLOT-3/CHAN-28 (is not EM) E= 97 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-26/SLOT-3/CHAN-29 (is not EM) E= 126 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-26/SLOT-3/CHAN-72 (is not EM) E= 242 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-26/SLOT-3/CHAN-73 (is not EM) E= 103 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-26/SLOT-10/CHAN-31 (is not EM) E= 187 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-25/SLOT-2/CHAN-66 (is not EM) E= 84 t= -7850 Q= 1928 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-25/SLOT-3/CHAN-108 (is not EM) E= 176 t= 4484 Q= 180 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-26/SLOT-2/CHAN-98 (is not EM) E= 85 t= -15342 Q= 2955 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-26/SLOT-3/CHAN-27 (is not EM) E= 101 t= -1058 Q= 278 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-26/SLOT-3/CHAN-28 (is not EM) E= 97 t= -4929 Q= 726 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-26/SLOT-3/CHAN-29 (is not EM) E= 126 t= -1558 Q= 248 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-26/SLOT-3/CHAN-72 (is not EM) E= 242 t= 2387 Q= 97 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-26/SLOT-3/CHAN-73 (is not EM) E= 103 t= 390 Q= 12 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-26/SLOT-10/CHAN-31 (is not EM) E= 187 t= 16118 Q= 32 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-26/SLOT-12/CHAN-121 (is not EM) E= -290 t= -7980 Q= 909 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-26/SLOT-13/CHAN-65 (is not EM) E= -299 t= -24325 Q= 503 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-27/SLOT-6/CHAN-38 (is not EM) E= 77 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-28/SLOT-2/CHAN-13 (is not EM) E= 99 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-28/SLOT-4/CHAN-46 (is not EM) E= 151 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-28/SLOT-4/CHAN-47 (is not EM) E= 121 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-28/SLOT-4/CHAN-88 (is not EM) E= 120 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-28/SLOT-5/CHAN-7 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-28/SLOT-5/CHAN-36 (is not EM) E= 138 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-27/SLOT-6/CHAN-38 (is not EM) E= 77 t= -7589 Q= 682 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-28/SLOT-2/CHAN-13 (is not EM) E= 99 t= -4931 Q= 304 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-28/SLOT-4/CHAN-46 (is not EM) E= 151 t= -8376 Q= 31105 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-28/SLOT-4/CHAN-47 (is not EM) E= 121 t= 1524 Q= 4540 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-28/SLOT-4/CHAN-88 (is not EM) E= 120 t= -20994 Q= 2392 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-28/SLOT-5/CHAN-7 (is not EM) E= 91 t= -17490 Q= 945 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-28/SLOT-5/CHAN-36 (is not EM) E= 138 t= 3870 Q= 69 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-28/SLOT-11/CHAN-84 (is not EM) E= 223 t= 0 Q= 0 P=0xa5 G=0 Channel: BARREL/C-SIDE/FT-28/SLOT-12/CHAN-50 (is not EM) E= 303 t= -348 Q= 57 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-28/SLOT-12/CHAN-85 (is not EM) E= 799 t= -19960 Q= 2120 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-28/SLOT-12/CHAN-86 (is not EM) E= 265 t= -23038 Q= 741 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-29/SLOT-2/CHAN-50 (is not EM) E= -83 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-29/SLOT-3/CHAN-108 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-29/SLOT-4/CHAN-8 (is not EM) E= 97 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-29/SLOT-7/CHAN-57 (is not EM) E= 98 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-29/SLOT-9/CHAN-115 (is not EM) E= 108 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-29/SLOT-9/CHAN-118 (is not EM) E= 219 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-29/SLOT-9/CHAN-119 (is not EM) E= 161 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-29/SLOT-3/CHAN-108 (is not EM) E= 94 t= 3379 Q= 95 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-29/SLOT-4/CHAN-8 (is not EM) E= 97 t= 3626 Q= 320 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-29/SLOT-7/CHAN-57 (is not EM) E= 98 t= -22880 Q= 31930 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-29/SLOT-9/CHAN-115 (is not EM) E= 108 t= 1872 Q= 140 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-29/SLOT-9/CHAN-118 (is not EM) E= 219 t= -22475 Q= 392 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-29/SLOT-9/CHAN-119 (is not EM) E= 161 t= -8918 Q= 300 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-29/SLOT-13/CHAN-49 (is not EM) E= -661 t= 4042 Q= 231 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-30/SLOT-2/CHAN-12 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-30/SLOT-3/CHAN-64 (is not EM) E= 111 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-30/SLOT-3/CHAN-65 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-30/SLOT-3/CHAN-66 (is not EM) E= 135 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-30/SLOT-5/CHAN-15 (is not EM) E= 161 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-30/SLOT-5/CHAN-69 (is not EM) E= 90 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-30/SLOT-6/CHAN-47 (is not EM) E= 99 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-30/SLOT-8/CHAN-60 (is not EM) E= 120 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-30/SLOT-2/CHAN-12 (is not EM) E= 94 t= 7114 Q= 137 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-30/SLOT-3/CHAN-64 (is not EM) E= 111 t= 1128 Q= 61 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-30/SLOT-3/CHAN-65 (is not EM) E= 94 t= 3523 Q= 55 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-30/SLOT-3/CHAN-66 (is not EM) E= 135 t= -58 Q= 544 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-30/SLOT-5/CHAN-15 (is not EM) E= 161 t= -23531 Q= 2112 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-30/SLOT-5/CHAN-69 (is not EM) E= 90 t= -13492 Q= 110 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-30/SLOT-6/CHAN-47 (is not EM) E= 99 t= 2267 Q= 45 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-30/SLOT-8/CHAN-60 (is not EM) E= 120 t= -5333 Q= 5 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-30/SLOT-8/CHAN-61 (is not EM) E= 81 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-30/SLOT-9/CHAN-87 (is not EM) E= 87 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-30/SLOT-9/CHAN-87 (is not EM) E= 87 t= -7850 Q= 5 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-30/SLOT-11/CHAN-5 (is not EM) E= 299 t= -11369 Q= 68 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-30/SLOT-11/CHAN-118 (is not EM) E= 274 t= -33231 Q= 12211 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-30/SLOT-12/CHAN-43 (is not EM) E= 270 t= -25391 Q= 1219 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-31/SLOT-3/CHAN-102 (is not EM) E= 107 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-31/SLOT-3/CHAN-104 (is not EM) E= 192 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-31/SLOT-3/CHAN-105 (is not EM) E= 116 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-31/SLOT-6/CHAN-109 (is not EM) E= 72 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-31/SLOT-10/CHAN-73 (is not EM) E= -98 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-31/SLOT-3/CHAN-102 (is not EM) E= 107 t= -2754 Q= 15267 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-31/SLOT-3/CHAN-104 (is not EM) E= 192 t= 1682 Q= 67 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-31/SLOT-3/CHAN-105 (is not EM) E= 116 t= 1747 Q= 1516 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-31/SLOT-6/CHAN-109 (is not EM) E= 72 t= 8555 Q= 160 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-31/SLOT-10/CHAN-73 (is not EM) E= -98 t= 15727 Q= 113 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-31/SLOT-11/CHAN-118 (is not EM) E= 267 t= -15416 Q= 3371 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-31/SLOT-11/CHAN-119 (is not EM) E= 242 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-31/SLOT-11/CHAN-119 (is not EM) E= 242 t= -13278 Q= 825 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-31/SLOT-12/CHAN-112 (is not EM) E= 302 t= 3376 Q= 285 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-31/SLOT-12/CHAN-113 (is not EM) E= 285 t= 6933 Q= 65 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-31/SLOT-13/CHAN-80 (is not EM) E= 474 t= -22704 Q= 147 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-0/SLOT-1/CHAN-26 (is not EM) E= 421 t= -17385 Q= 20758 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-0/SLOT-1/CHAN-60 (is not EM) E= 488 t= 4306 Q= 45 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-0/SLOT-2/CHAN-105 (is not EM) E= 188 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-0/SLOT-2/CHAN-106 (is not EM) E= 241 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-0/SLOT-5/CHAN-97 (is not EM) E= 116 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-0/SLOT-5/CHAN-98 (is not EM) E= 179 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-0/SLOT-5/CHAN-99 (is not EM) E= 145 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-0/SLOT-5/CHAN-100 (is not EM) E= 147 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-0/SLOT-5/CHAN-102 (is not EM) E= 117 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-0/SLOT-5/CHAN-103 (is not EM) E= 107 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-0/SLOT-7/CHAN-88 (is not EM) E= -89 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-0/SLOT-9/CHAN-107 (is not EM) E= 123 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-0/SLOT-10/CHAN-9 (is not EM) E= 96 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-0/SLOT-2/CHAN-105 (is not EM) E= 188 t= -749 Q= 89 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-0/SLOT-2/CHAN-106 (is not EM) E= 241 t= 556 Q= 31 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-0/SLOT-5/CHAN-97 (is not EM) E= 116 t= -2110 Q= 68 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-0/SLOT-5/CHAN-98 (is not EM) E= 179 t= -2477 Q= 24 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-0/SLOT-5/CHAN-99 (is not EM) E= 145 t= 1730 Q= 278 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-0/SLOT-5/CHAN-100 (is not EM) E= 147 t= 296 Q= 130 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-0/SLOT-5/CHAN-102 (is not EM) E= 117 t= 36 Q= 153 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-0/SLOT-5/CHAN-103 (is not EM) E= 107 t= -4167 Q= 46 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-0/SLOT-7/CHAN-88 (is not EM) E= -89 t= -9957 Q= 22 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-0/SLOT-9/CHAN-107 (is not EM) E= 123 t= 11607 Q= 78 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-0/SLOT-10/CHAN-9 (is not EM) E= 96 t= -3430 Q= 70 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-0/SLOT-11/CHAN-117 (is not EM) E= 371 t= -23147 Q= 1553 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-0/SLOT-12/CHAN-77 (is not EM) E= 303 t= -4002 Q= 114 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-0/SLOT-12/CHAN-90 (is not EM) E= 293 t= -3301 Q= 187 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-0/SLOT-12/CHAN-114 (is not EM) E= 310 t= 1063 Q= 9 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-0/SLOT-13/CHAN-20 (is not EM) E= 284 t= -56959 Q= 1779 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-1/SLOT-1/CHAN-47 (is not EM) E= 1002 t= -329 Q= 85 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-1/SLOT-6/CHAN-31 (is not EM) E= 89 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-1/SLOT-8/CHAN-37 (is not EM) E= 103 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-2/SLOT-4/CHAN-84 (is not EM) E= 144 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-2/SLOT-4/CHAN-85 (is not EM) E= 103 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-2/SLOT-5/CHAN-33 (is not EM) E= 113 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-2/SLOT-5/CHAN-56 (is not EM) E= 123 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-2/SLOT-5/CHAN-71 (is not EM) E= 90 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-2/SLOT-5/CHAN-106 (is not EM) E= 129 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-2/SLOT-5/CHAN-107 (is not EM) E= 119 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-2/SLOT-6/CHAN-77 (is not EM) E= 73 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-2/SLOT-8/CHAN-20 (is not EM) E= 137 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-1/SLOT-6/CHAN-31 (is not EM) E= 89 t= -5989 Q= 290 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-1/SLOT-8/CHAN-37 (is not EM) E= 103 t= 1083 Q= 33 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-2/SLOT-4/CHAN-84 (is not EM) E= 144 t= 6301 Q= 25 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-2/SLOT-4/CHAN-85 (is not EM) E= 103 t= 474 Q= 263 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-2/SLOT-5/CHAN-33 (is not EM) E= 113 t= 205 Q= 730 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-2/SLOT-5/CHAN-56 (is not EM) E= 123 t= -10062 Q= 113 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-2/SLOT-5/CHAN-71 (is not EM) E= 90 t= -13741 Q= 455 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-2/SLOT-5/CHAN-106 (is not EM) E= 129 t= 2656 Q= 481 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-2/SLOT-5/CHAN-107 (is not EM) E= 119 t= 740 Q= 228 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-2/SLOT-6/CHAN-77 (is not EM) E= 73 t= -10542 Q= 220 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-2/SLOT-8/CHAN-20 (is not EM) E= 137 t= 5070 Q= 37 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-3/SLOT-3/CHAN-39 (is not EM) E= 86 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-3/SLOT-8/CHAN-18 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-3/SLOT-11/CHAN-91 (is not EM) E= -236 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-3/SLOT-8/CHAN-18 (is not EM) E= 94 t= -8328 Q= 33048 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-3/SLOT-11/CHAN-91 (is not EM) E= -236 t= 5303 Q= 872 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-3/SLOT-12/CHAN-43 (is not EM) E= 286 t= 2240 Q= 146 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-4/SLOT-4/CHAN-91 (is not EM) E= 122 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-4/SLOT-6/CHAN-6 (is not EM) E= 64 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-4/SLOT-6/CHAN-74 (is not EM) E= -85 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-4/SLOT-4/CHAN-91 (is not EM) E= 122 t= -9999 Q= 3062 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-4/SLOT-6/CHAN-6 (is not EM) E= 64 t= 7349 Q= 46 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-4/SLOT-6/CHAN-74 (is not EM) E= -85 t= -607 Q= 552 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-4/SLOT-7/CHAN-64 (is not EM) E= 73 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-4/SLOT-7/CHAN-65 (is not EM) E= 82 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-4/SLOT-7/CHAN-65 (is not EM) E= 82 t= 6006 Q= 113 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-4/SLOT-9/CHAN-54 (is not EM) E= 121 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-4/SLOT-9/CHAN-55 (is not EM) E= 234 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-4/SLOT-9/CHAN-55 (is not EM) E= 234 t= -4710 Q= 89 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-4/SLOT-11/CHAN-71 (is not EM) E= 274 t= -15181 Q= 6130 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-6/CHAN-61 (is not EM) E= 72 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-7/CHAN-32 (is not EM) E= 83 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-9/CHAN-66 (is not EM) E= -83 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-6/CHAN-61 (is not EM) E= 72 t= -14003 Q= 26008 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-7/CHAN-32 (is not EM) E= 83 t= 13912 Q= 292 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-9/CHAN-66 (is not EM) E= -83 t= 2179 Q= 145 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-5/SLOT-11/CHAN-70 (is not EM) E= 288 t= -1094 Q= 17 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-5/SLOT-12/CHAN-40 (is not EM) E= 285 t= 6311 Q= 25 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-5/SLOT-12/CHAN-65 (is not EM) E= 324 t= -34323 Q= 2637 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-6/SLOT-1/CHAN-22 (is not EM) E= 474 t= 2210 Q= 68 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-6/SLOT-1/CHAN-41 (is not EM) E= 420 t= -14938 Q= 21 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-3/CHAN-70 (is not EM) E= -131 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-3/CHAN-86 (is not EM) E= 148 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-3/CHAN-87 (is not EM) E= 137 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-3/CHAN-88 (is not EM) E= 185 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-3/CHAN-89 (is not EM) E= 184 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-3/CHAN-90 (is not EM) E= 173 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-5/CHAN-56 (is not EM) E= 95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-5/CHAN-58 (is not EM) E= 96 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-8/CHAN-58 (is not EM) E= 171 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-10/CHAN-95 (is not EM) E= 220 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-3/CHAN-70 (is not EM) E= -131 t= -3407 Q= 866 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-3/CHAN-86 (is not EM) E= 148 t= -241 Q= 70 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-3/CHAN-87 (is not EM) E= 137 t= -119 Q= 241 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-3/CHAN-88 (is not EM) E= 185 t= 2151 Q= 699 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-3/CHAN-89 (is not EM) E= 184 t= -2429 Q= 488 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-3/CHAN-90 (is not EM) E= 173 t= -471 Q= 42 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-5/CHAN-56 (is not EM) E= 95 t= -4467 Q= 12 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-5/CHAN-58 (is not EM) E= 96 t= 6068 Q= 91 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-8/CHAN-58 (is not EM) E= 171 t= -2347 Q= 74 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-10/CHAN-95 (is not EM) E= 220 t= -7277 Q= 0 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-6/SLOT-10/CHAN-98 (is not EM) E= 272 t= 3335 Q= 119 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-10/CHAN-113 (is not EM) E= 163 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-10/CHAN-117 (is not EM) E= 180 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-11/CHAN-110 (is not EM) E= 224 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-10/CHAN-113 (is not EM) E= 163 t= 1684 Q= 227 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-10/CHAN-117 (is not EM) E= 180 t= 1633 Q= 302 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-11/CHAN-110 (is not EM) E= 224 t= -5831 Q= 139 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-7/SLOT-1/CHAN-95 (is not EM) E= 630 t= 1668 Q= 326 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-7/SLOT-3/CHAN-105 (is not EM) E= 184 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-7/SLOT-3/CHAN-106 (is not EM) E= 155 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-7/SLOT-7/CHAN-123 (is not EM) E= 206 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-7/SLOT-7/CHAN-124 (is not EM) E= 167 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-7/SLOT-7/CHAN-125 (is not EM) E= 79 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-7/SLOT-3/CHAN-105 (is not EM) E= 184 t= 4777 Q= 129 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-7/SLOT-3/CHAN-106 (is not EM) E= 155 t= 6130 Q= 348 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-7/SLOT-7/CHAN-123 (is not EM) E= 206 t= -470 Q= 72 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-7/SLOT-7/CHAN-124 (is not EM) E= 167 t= 3526 Q= 32 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-7/SLOT-7/CHAN-125 (is not EM) E= 79 t= 6202 Q= 65 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-7/SLOT-9/CHAN-116 (is not EM) E= 409 t= -9199 Q= 6125 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-7/SLOT-9/CHAN-125 (is not EM) E= 196 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-7/SLOT-9/CHAN-125 (is not EM) E= 196 t= -11487 Q= 31 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-7/SLOT-10/CHAN-24 (is not EM) E= 483 t= -22008 Q= 2159 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-7/SLOT-11/CHAN-27 (is not EM) E= 211 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-7/SLOT-12/CHAN-84 (is not EM) E= 245 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-7/SLOT-11/CHAN-27 (is not EM) E= 211 t= -3810 Q= 113 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-7/SLOT-12/CHAN-84 (is not EM) E= 245 t= 9780 Q= 60 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-7/SLOT-13/CHAN-127 (is not EM) E= 1302 t= -1259 Q= 80 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-8/SLOT-2/CHAN-65 (is not EM) E= 228 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-8/SLOT-9/CHAN-70 (is not EM) E= -82 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-8/SLOT-11/CHAN-64 (is not EM) E= 211 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-8/SLOT-2/CHAN-65 (is not EM) E= 228 t= 1189 Q= 180 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-8/SLOT-9/CHAN-70 (is not EM) E= -82 t= -7565 Q= 11 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-8/SLOT-11/CHAN-64 (is not EM) E= 211 t= -15698 Q= 168 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-8/SLOT-12/CHAN-101 (is not EM) E= 279 t= -5596 Q= 144 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-9/SLOT-3/CHAN-25 (is not EM) E= 122 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-9/SLOT-4/CHAN-27 (is not EM) E= 121 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-9/SLOT-4/CHAN-83 (is not EM) E= 97 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-9/SLOT-4/CHAN-84 (is not EM) E= 88 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-9/SLOT-5/CHAN-14 (is not EM) E= -91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-9/SLOT-7/CHAN-99 (is not EM) E= -86 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-9/SLOT-8/CHAN-8 (is not EM) E= 84 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-9/SLOT-3/CHAN-25 (is not EM) E= 122 t= -18172 Q= 2162 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-9/SLOT-4/CHAN-27 (is not EM) E= 121 t= -4152 Q= 235 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-9/SLOT-4/CHAN-83 (is not EM) E= 97 t= -16466 Q= 2441 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-9/SLOT-4/CHAN-84 (is not EM) E= 88 t= -13702 Q= 799 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-9/SLOT-5/CHAN-14 (is not EM) E= -91 t= 11405 Q= 130 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-9/SLOT-7/CHAN-99 (is not EM) E= -86 t= 3768 Q= 183 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-9/SLOT-8/CHAN-8 (is not EM) E= 84 t= 2154 Q= 30 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-9/SLOT-12/CHAN-95 (is not EM) E= 312 t= -31320 Q= 790 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-8/CHAN-52 (is not EM) E= -89 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-8/CHAN-94 (is not EM) E= 88 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-8/CHAN-95 (is not EM) E= 135 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-8/CHAN-96 (is not EM) E= 113 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-8/CHAN-102 (is not EM) E= 80 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-10/CHAN-14 (is not EM) E= 111 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-8/CHAN-52 (is not EM) E= -89 t= 5642 Q= 368 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-8/CHAN-94 (is not EM) E= 88 t= 4200 Q= 43 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-8/CHAN-95 (is not EM) E= 135 t= -4095 Q= 27 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-8/CHAN-96 (is not EM) E= 113 t= -2529 Q= 35 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-8/CHAN-102 (is not EM) E= 80 t= -3396 Q= 281 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-10/CHAN-14 (is not EM) E= 111 t= -12200 Q= 764 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-10/SLOT-10/CHAN-24 (is not EM) E= 536 t= 2979 Q= 225 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-10/SLOT-10/CHAN-25 (is not EM) E= 261 t= -16639 Q= 804 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-10/CHAN-26 (is not EM) E= 222 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-10/CHAN-90 (is not EM) E= 177 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-12/CHAN-85 (is not EM) E= 243 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-10/CHAN-26 (is not EM) E= 222 t= -4334 Q= 87 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-10/CHAN-90 (is not EM) E= 177 t= 19172 Q= 79 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-12/CHAN-85 (is not EM) E= 243 t= 11779 Q= 5 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-11/SLOT-1/CHAN-32 (is not EM) E= -473 t= -3521 Q= 1451 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-11/SLOT-1/CHAN-70 (is not EM) E= 443 t= -15497 Q= 128 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-3/CHAN-19 (is not EM) E= 95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-3/CHAN-76 (is not EM) E= 96 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-4/CHAN-0 (is not EM) E= 211 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-9/CHAN-38 (is not EM) E= -89 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-3/CHAN-19 (is not EM) E= 95 t= 436 Q= 35 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-3/CHAN-76 (is not EM) E= 96 t= 8869 Q= 42 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-4/CHAN-0 (is not EM) E= 211 t= -13989 Q= 5579 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-9/CHAN-38 (is not EM) E= -89 t= -3186 Q= 166 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-11/SLOT-10/CHAN-21 (is not EM) E= 338 t= -16214 Q= 787 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-11/SLOT-11/CHAN-60 (is not EM) E= 462 t= 6333 Q= 68 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-11/SLOT-11/CHAN-61 (is not EM) E= 381 t= 4796 Q= 101 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-12/SLOT-1/CHAN-55 (is not EM) E= 516 t= 868 Q= 131 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-2/CHAN-15 (is not EM) E= 120 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-2/CHAN-32 (is not EM) E= 130 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-2/CHAN-15 (is not EM) E= 120 t= -2586 Q= 36 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-2/CHAN-32 (is not EM) E= 130 t= -562 Q= 678 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-12/SLOT-2/CHAN-33 (is not EM) E= 344 t= 224 Q= 227 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-2/CHAN-34 (is not EM) E= 204 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-2/CHAN-36 (is not EM) E= 115 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-4/CHAN-70 (is not EM) E= 112 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-4/CHAN-113 (is not EM) E= 96 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-5/CHAN-1 (is not EM) E= 96 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-9/CHAN-59 (is not EM) E= 153 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-9/CHAN-123 (is not EM) E= 149 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-10/CHAN-5 (is not EM) E= 96 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-2/CHAN-34 (is not EM) E= 204 t= -2100 Q= 148 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-2/CHAN-36 (is not EM) E= 115 t= 667 Q= 71 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-4/CHAN-70 (is not EM) E= 112 t= -16079 Q= 18658 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-4/CHAN-113 (is not EM) E= 96 t= -721 Q= 240 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-5/CHAN-1 (is not EM) E= 96 t= -895 Q= 245 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-9/CHAN-59 (is not EM) E= 153 t= -9664 Q= 63 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-9/CHAN-123 (is not EM) E= 149 t= 6099 Q= 185 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-10/CHAN-5 (is not EM) E= 96 t= 3830 Q= 121 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-12/SLOT-12/CHAN-28 (is not EM) E= 276 t= 6096 Q= 18 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-12/CHAN-55 (is not EM) E= 253 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-12/CHAN-56 (is not EM) E= 242 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-13/SLOT-2/CHAN-88 (is not EM) E= 85 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-13/SLOT-2/CHAN-89 (is not EM) E= 130 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-13/SLOT-2/CHAN-90 (is not EM) E= 125 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-13/SLOT-3/CHAN-111 (is not EM) E= 164 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-13/SLOT-3/CHAN-112 (is not EM) E= 132 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-13/SLOT-6/CHAN-71 (is not EM) E= 76 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-13/SLOT-8/CHAN-42 (is not EM) E= 83 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-13/SLOT-8/CHAN-106 (is not EM) E= 90 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-13/SLOT-8/CHAN-107 (is not EM) E= 85 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-12/CHAN-55 (is not EM) E= 253 t= -5017 Q= 128 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-12/CHAN-56 (is not EM) E= 242 t= -24699 Q= 3191 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-13/SLOT-2/CHAN-88 (is not EM) E= 85 t= 4774 Q= 102 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-13/SLOT-2/CHAN-89 (is not EM) E= 130 t= 668 Q= 30 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-13/SLOT-2/CHAN-90 (is not EM) E= 125 t= -1989 Q= 95 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-13/SLOT-3/CHAN-111 (is not EM) E= 164 t= -3400 Q= 159 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-13/SLOT-3/CHAN-112 (is not EM) E= 132 t= 488 Q= 25 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-13/SLOT-6/CHAN-71 (is not EM) E= 76 t= -12498 Q= 7071 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-13/SLOT-8/CHAN-42 (is not EM) E= 83 t= -14803 Q= 804 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-13/SLOT-8/CHAN-106 (is not EM) E= 90 t= -13499 Q= 738 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-13/SLOT-8/CHAN-107 (is not EM) E= 85 t= -10114 Q= 944 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-13/SLOT-10/CHAN-35 (is not EM) E= 435 t= 6308 Q= 77 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-13/SLOT-10/CHAN-38 (is not EM) E= 187 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-13/SLOT-10/CHAN-38 (is not EM) E= 187 t= 986 Q= 15 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-13/SLOT-10/CHAN-92 (is not EM) E= 401 t= 3177 Q= 57 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-13/SLOT-10/CHAN-96 (is not EM) E= 376 t= 6919 Q= 56 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-13/SLOT-11/CHAN-93 (is not EM) E= 295 t= 5299 Q= 25 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-13/SLOT-14/CHAN-58 (is not EM) E= 324 t= -11089 Q= 68 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-14/SLOT-1/CHAN-53 (is not EM) E= 457 t= -5144 Q= 66 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-4/CHAN-36 (is not EM) E= 106 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-4/CHAN-75 (is not EM) E= 90 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-4/CHAN-79 (is not EM) E= 110 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-5/CHAN-71 (is not EM) E= 114 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-5/CHAN-72 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-5/CHAN-74 (is not EM) E= 133 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-5/CHAN-75 (is not EM) E= 99 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-5/CHAN-86 (is not EM) E= -91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-6/CHAN-12 (is not EM) E= 156 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-6/CHAN-13 (is not EM) E= 90 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-8/CHAN-66 (is not EM) E= -88 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-4/CHAN-36 (is not EM) E= 106 t= 3739 Q= 487 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-4/CHAN-75 (is not EM) E= 90 t= -14363 Q= 31101 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-4/CHAN-79 (is not EM) E= 110 t= 7715 Q= 184 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-5/CHAN-71 (is not EM) E= 114 t= 1384 Q= 39 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-5/CHAN-72 (is not EM) E= 94 t= 3320 Q= 75 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-5/CHAN-74 (is not EM) E= 133 t= 8027 Q= 206 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-5/CHAN-75 (is not EM) E= 99 t= -2851 Q= 418 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-5/CHAN-86 (is not EM) E= -91 t= 186 Q= 1227 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-6/CHAN-12 (is not EM) E= 156 t= 4808 Q= 42 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-6/CHAN-13 (is not EM) E= 90 t= -140 Q= 123 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-8/CHAN-66 (is not EM) E= -88 t= -3442 Q= 2950 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-14/SLOT-13/CHAN-4 (is not EM) E= 348 t= 551 Q= 2 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-14/SLOT-13/CHAN-5 (is not EM) E= 704 t= 1541 Q= 3 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-15/SLOT-5/CHAN-20 (is not EM) E= -94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-15/SLOT-8/CHAN-40 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-15/SLOT-5/CHAN-20 (is not EM) E= -94 t= -5404 Q= 2249 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-15/SLOT-8/CHAN-40 (is not EM) E= 94 t= -14906 Q= 6218 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-15/SLOT-13/CHAN-64 (is not EM) E= -321 t= -8741 Q= 84 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-16/SLOT-2/CHAN-57 (is not EM) E= 112 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-16/SLOT-3/CHAN-2 (is not EM) E= 116 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-16/SLOT-2/CHAN-57 (is not EM) E= 112 t= -2737 Q= 57 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-16/SLOT-3/CHAN-2 (is not EM) E= 116 t= -14441 Q= 10216 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-16/SLOT-5/CHAN-11 (is not EM) E= 86 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-16/SLOT-5/CHAN-12 (is not EM) E= 127 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-16/SLOT-5/CHAN-91 (is not EM) E= 116 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-16/SLOT-5/CHAN-92 (is not EM) E= 190 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-16/SLOT-5/CHAN-93 (is not EM) E= 96 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-17/SLOT-8/CHAN-78 (is not EM) E= 93 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-16/SLOT-5/CHAN-12 (is not EM) E= 127 t= -894 Q= 79 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-16/SLOT-5/CHAN-91 (is not EM) E= 116 t= 9417 Q= 110 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-16/SLOT-5/CHAN-92 (is not EM) E= 190 t= 8043 Q= 216 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-16/SLOT-5/CHAN-93 (is not EM) E= 96 t= 8255 Q= 326 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-17/SLOT-8/CHAN-78 (is not EM) E= 93 t= -2990 Q= 339 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-17/SLOT-10/CHAN-61 (is not EM) E= 488 t= -15044 Q= 2146 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-17/SLOT-11/CHAN-12 (is not EM) E= -313 t= -9316 Q= 889 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-18/SLOT-1/CHAN-32 (is not EM) E= 368 t= 2349 Q= 211 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-18/SLOT-4/CHAN-47 (is not EM) E= 217 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-18/SLOT-5/CHAN-13 (is not EM) E= 101 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-18/SLOT-6/CHAN-81 (is not EM) E= 168 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-18/SLOT-8/CHAN-103 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-18/SLOT-8/CHAN-107 (is not EM) E= 89 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-18/SLOT-9/CHAN-94 (is not EM) E= -82 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-18/SLOT-9/CHAN-119 (is not EM) E= -165 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-18/SLOT-11/CHAN-39 (is not EM) E= -218 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-18/SLOT-11/CHAN-47 (is not EM) E= 233 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-18/SLOT-4/CHAN-47 (is not EM) E= 217 t= 1279 Q= 183 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-18/SLOT-5/CHAN-13 (is not EM) E= 101 t= -12321 Q= 33766 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-18/SLOT-6/CHAN-81 (is not EM) E= 168 t= -17412 Q= 1743 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-18/SLOT-8/CHAN-103 (is not EM) E= 91 t= -18855 Q= 1291 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-18/SLOT-8/CHAN-107 (is not EM) E= 89 t= -14222 Q= 707 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-18/SLOT-9/CHAN-94 (is not EM) E= -82 t= -253 Q= 9 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-18/SLOT-9/CHAN-119 (is not EM) E= -165 t= -184 Q= 366 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-18/SLOT-11/CHAN-39 (is not EM) E= -218 t= -9668 Q= 960 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-18/SLOT-11/CHAN-47 (is not EM) E= 233 t= -15370 Q= 976 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-18/SLOT-12/CHAN-36 (is not EM) E= 439 t= -23500 Q= 12279 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-18/SLOT-12/CHAN-104 (is not EM) E= 252 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-18/SLOT-12/CHAN-104 (is not EM) E= 252 t= -34689 Q= 170 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-19/SLOT-1/CHAN-37 (is not EM) E= 438 t= -3304 Q= 10 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-2/CHAN-39 (is not EM) E= -120 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-2/CHAN-106 (is not EM) E= 112 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-3/CHAN-20 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-3/CHAN-63 (is not EM) E= 115 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-119 (is not EM) E= 103 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-121 (is not EM) E= 104 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-122 (is not EM) E= 170 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-123 (is not EM) E= 109 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-5/CHAN-15 (is not EM) E= 115 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-5/CHAN-16 (is not EM) E= 174 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-5/CHAN-17 (is not EM) E= 208 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-5/CHAN-19 (is not EM) E= 115 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-5/CHAN-65 (is not EM) E= 133 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-5/CHAN-88 (is not EM) E= 110 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-9/CHAN-40 (is not EM) E= -144 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-9/CHAN-45 (is not EM) E= -115 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-2/CHAN-39 (is not EM) E= -120 t= -3635 Q= 415 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-2/CHAN-106 (is not EM) E= 112 t= -11919 Q= 817 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-3/CHAN-20 (is not EM) E= 94 t= 2643 Q= 897 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-3/CHAN-63 (is not EM) E= 115 t= -1162 Q= 114 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-119 (is not EM) E= 103 t= -17769 Q= 696 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-121 (is not EM) E= 104 t= 860 Q= 7 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-122 (is not EM) E= 170 t= 1496 Q= 233 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-123 (is not EM) E= 109 t= -1808 Q= 63 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-5/CHAN-15 (is not EM) E= 115 t= -3395 Q= 220 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-5/CHAN-16 (is not EM) E= 174 t= -5610 Q= 2124 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-5/CHAN-17 (is not EM) E= 208 t= 3439 Q= 447 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-5/CHAN-19 (is not EM) E= 115 t= -289 Q= 4 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-5/CHAN-65 (is not EM) E= 133 t= -2527 Q= 512 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-5/CHAN-88 (is not EM) E= 110 t= -6477 Q= 30377 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-9/CHAN-40 (is not EM) E= -144 t= 1954 Q= 185 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-9/CHAN-45 (is not EM) E= -115 t= 2748 Q= 122 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-19/SLOT-12/CHAN-35 (is not EM) E= 268 t= 5700 Q= 211 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-12/CHAN-87 (is not EM) E= 249 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-12/CHAN-107 (is not EM) E= 244 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-12/CHAN-87 (is not EM) E= 249 t= 4936 Q= 154 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-12/CHAN-107 (is not EM) E= 244 t= -1658 Q= 56 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-20/SLOT-1/CHAN-51 (is not EM) E= 432 t= 946 Q= 323 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-20/SLOT-4/CHAN-12 (is not EM) E= 118 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-20/SLOT-4/CHAN-119 (is not EM) E= 176 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-20/SLOT-8/CHAN-0 (is not EM) E= 88 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-20/SLOT-8/CHAN-1 (is not EM) E= 117 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-20/SLOT-8/CHAN-2 (is not EM) E= 78 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-20/SLOT-8/CHAN-95 (is not EM) E= 97 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-20/SLOT-4/CHAN-12 (is not EM) E= 118 t= -2583 Q= 127 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-20/SLOT-4/CHAN-119 (is not EM) E= 176 t= 1240 Q= 628 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-20/SLOT-8/CHAN-0 (is not EM) E= 88 t= 14721 Q= 38 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-20/SLOT-8/CHAN-1 (is not EM) E= 117 t= -2852 Q= 99 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-20/SLOT-8/CHAN-2 (is not EM) E= 78 t= 1030 Q= 25 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-20/SLOT-8/CHAN-95 (is not EM) E= 97 t= 3633 Q= 45 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-20/SLOT-8/CHAN-96 (is not EM) E= 76 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-20/SLOT-10/CHAN-37 (is not EM) E= -188 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-20/SLOT-10/CHAN-106 (is not EM) E= 93 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-20/SLOT-10/CHAN-115 (is not EM) E= 225 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-20/SLOT-10/CHAN-37 (is not EM) E= -188 t= 3874 Q= 94 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-20/SLOT-10/CHAN-106 (is not EM) E= 93 t= 5746 Q= 34 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-20/SLOT-10/CHAN-115 (is not EM) E= 225 t= 3009 Q= 104 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-20/SLOT-11/CHAN-40 (is not EM) E= 502 t= -2234 Q= 2 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-21/SLOT-2/CHAN-102 (is not EM) E= 89 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-21/SLOT-2/CHAN-104 (is not EM) E= 98 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-21/SLOT-7/CHAN-118 (is not EM) E= 110 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-21/SLOT-7/CHAN-119 (is not EM) E= 162 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-21/SLOT-7/CHAN-120 (is not EM) E= 96 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-21/SLOT-9/CHAN-75 (is not EM) E= -95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-22/SLOT-4/CHAN-69 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-22/SLOT-4/CHAN-70 (is not EM) E= 110 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-22/SLOT-6/CHAN-117 (is not EM) E= 81 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-22/SLOT-7/CHAN-103 (is not EM) E= 84 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-22/SLOT-7/CHAN-104 (is not EM) E= 90 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-22/SLOT-7/CHAN-105 (is not EM) E= 93 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-21/SLOT-2/CHAN-102 (is not EM) E= 89 t= -2512 Q= 66 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-21/SLOT-2/CHAN-104 (is not EM) E= 98 t= -1879 Q= 47 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-21/SLOT-7/CHAN-118 (is not EM) E= 110 t= -26825 Q= 1684 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-21/SLOT-7/CHAN-119 (is not EM) E= 162 t= -25294 Q= 4838 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-21/SLOT-7/CHAN-120 (is not EM) E= 96 t= -14637 Q= 1307 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-21/SLOT-9/CHAN-75 (is not EM) E= -95 t= -4059 Q= 314 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-22/SLOT-4/CHAN-69 (is not EM) E= 94 t= -24317 Q= 3797 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-22/SLOT-4/CHAN-70 (is not EM) E= 110 t= -19562 Q= 3236 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-22/SLOT-6/CHAN-117 (is not EM) E= 81 t= -17884 Q= 6610 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-22/SLOT-7/CHAN-103 (is not EM) E= 84 t= -21756 Q= 269 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-22/SLOT-7/CHAN-104 (is not EM) E= 90 t= -27207 Q= 1537 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-22/SLOT-7/CHAN-105 (is not EM) E= 93 t= -15123 Q= 1179 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-22/SLOT-12/CHAN-4 (is not EM) E= 302 t= -2669 Q= 35 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-23/SLOT-2/CHAN-53 (is not EM) E= 92 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-23/SLOT-9/CHAN-4 (is not EM) E= 161 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-23/SLOT-9/CHAN-21 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-23/SLOT-2/CHAN-53 (is not EM) E= 92 t= 5804 Q= 357 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-23/SLOT-9/CHAN-4 (is not EM) E= 161 t= -10957 Q= 317 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-23/SLOT-9/CHAN-21 (is not EM) E= 91 t= -521 Q= 112 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-24/SLOT-1/CHAN-42 (is not EM) E= 441 t= -4163 Q= 392 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-24/SLOT-3/CHAN-67 (is not EM) E= -137 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-24/SLOT-6/CHAN-4 (is not EM) E= -71 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-24/SLOT-3/CHAN-67 (is not EM) E= -137 t= 3760 Q= 2217 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-24/SLOT-6/CHAN-4 (is not EM) E= -71 t= 1082 Q= 11 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-24/SLOT-14/CHAN-58 (is not EM) E= 496 t= -3228 Q= 139 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-25/SLOT-1/CHAN-48 (is not EM) E= 685 t= -1988 Q= 12 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-25/SLOT-1/CHAN-84 (is not EM) E= 723 t= -138 Q= 27 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-25/SLOT-5/CHAN-74 (is not EM) E= 95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-25/SLOT-11/CHAN-70 (is not EM) E= -221 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-26/SLOT-2/CHAN-2 (is not EM) E= -92 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-26/SLOT-5/CHAN-6 (is not EM) E= 165 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-26/SLOT-5/CHAN-10 (is not EM) E= 89 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-26/SLOT-9/CHAN-8 (is not EM) E= 89 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-2/CHAN-65 (is not EM) E= 107 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-2/CHAN-88 (is not EM) E= 89 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-3/CHAN-84 (is not EM) E= 99 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-9/CHAN-87 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-10/CHAN-21 (is not EM) E= 159 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-11/CHAN-15 (is not EM) E= 216 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-3/CHAN-102 (is not EM) E= 97 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-3/CHAN-103 (is not EM) E= 111 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-4/CHAN-10 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-4/CHAN-99 (is not EM) E= 92 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-5/CHAN-52 (is not EM) E= 96 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-6/CHAN-11 (is not EM) E= 72 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-5 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-6 (is not EM) E= 106 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-98 (is not EM) E= 80 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-103 (is not EM) E= 78 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-107 (is not EM) E= 78 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-25/SLOT-5/CHAN-74 (is not EM) E= 95 t= -2904 Q= 1 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-25/SLOT-11/CHAN-70 (is not EM) E= -221 t= -4099 Q= 166 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-26/SLOT-2/CHAN-2 (is not EM) E= -92 t= -3202 Q= 166 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-26/SLOT-5/CHAN-6 (is not EM) E= 165 t= 2162 Q= 119 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-26/SLOT-5/CHAN-10 (is not EM) E= 89 t= 2876 Q= 113 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-26/SLOT-9/CHAN-8 (is not EM) E= 89 t= -2572 Q= 140 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-2/CHAN-65 (is not EM) E= 107 t= -22551 Q= 2239 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-2/CHAN-88 (is not EM) E= 89 t= -14724 Q= 770 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-3/CHAN-84 (is not EM) E= 99 t= 2295 Q= 667 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-9/CHAN-87 (is not EM) E= 91 t= 12724 Q= 36 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-10/CHAN-21 (is not EM) E= 159 t= 235 Q= 140 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-11/CHAN-15 (is not EM) E= 216 t= -10069 Q= 565 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-3/CHAN-102 (is not EM) E= 97 t= 3466 Q= 111 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-3/CHAN-103 (is not EM) E= 111 t= 5554 Q= 11 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-4/CHAN-10 (is not EM) E= 94 t= -9095 Q= 46 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-4/CHAN-99 (is not EM) E= 92 t= -16207 Q= 3956 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-5/CHAN-52 (is not EM) E= 96 t= -849 Q= 16 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-6/CHAN-11 (is not EM) E= 72 t= -2539 Q= 205 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-5 (is not EM) E= 91 t= -3793 Q= 29 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-6 (is not EM) E= 106 t= -989 Q= 236 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-98 (is not EM) E= 80 t= -26784 Q= 852 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-103 (is not EM) E= 78 t= -7440 Q= 1080 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-107 (is not EM) E= 78 t= -7296 Q= 51 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-108 (is not EM) E= 259 t= 1438 Q= 120 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-109 (is not EM) E= 127 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-11/CHAN-111 (is not EM) E= 242 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-12/CHAN-57 (is not EM) E= 244 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-109 (is not EM) E= 127 t= 2573 Q= 32 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-11/CHAN-111 (is not EM) E= 242 t= 4426 Q= 58 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-12/CHAN-57 (is not EM) E= 244 t= 1394 Q= 39 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-28/SLOT-14/CHAN-54 (is not EM) E= 323 t= -4899 Q= 13 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-28/SLOT-14/CHAN-55 (is not EM) E= 931 t= 668 Q= 42 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-29/SLOT-2/CHAN-12 (is not EM) E= 126 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-29/SLOT-2/CHAN-109 (is not EM) E= 84 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-29/SLOT-2/CHAN-127 (is not EM) E= -118 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-29/SLOT-3/CHAN-64 (is not EM) E= -93 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-29/SLOT-4/CHAN-71 (is not EM) E= 88 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-29/SLOT-2/CHAN-12 (is not EM) E= 126 t= -4726 Q= 534 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-29/SLOT-2/CHAN-109 (is not EM) E= 84 t= 898 Q= 495 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-29/SLOT-2/CHAN-127 (is not EM) E= -118 t= -6446 Q= 1436 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-29/SLOT-3/CHAN-64 (is not EM) E= -93 t= 390 Q= 2789 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-29/SLOT-4/CHAN-71 (is not EM) E= 88 t= -10565 Q= 18067 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-29/SLOT-5/CHAN-54 (is not EM) E= 90 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-29/SLOT-6/CHAN-123 (is not EM) E= 79 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-29/SLOT-10/CHAN-43 (is not EM) E= 92 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-29/SLOT-10/CHAN-106 (is not EM) E= 129 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-29/SLOT-11/CHAN-9 (is not EM) E= 231 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-29/SLOT-6/CHAN-123 (is not EM) E= 79 t= -16467 Q= 3422 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-29/SLOT-10/CHAN-43 (is not EM) E= 92 t= -3678 Q= 8 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-29/SLOT-10/CHAN-106 (is not EM) E= 129 t= -6397 Q= 18 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-29/SLOT-11/CHAN-9 (is not EM) E= 231 t= -12109 Q= 410 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-29/SLOT-11/CHAN-22 (is not EM) E= 292 t= 6831 Q= 117 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-29/SLOT-13/CHAN-93 (is not EM) E= 450 t= -7017 Q= 142 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-29/SLOT-14/CHAN-17 (is not EM) E= 337 t= -66022 Q= 2068 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-30/SLOT-7/CHAN-58 (is not EM) E= 86 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-30/SLOT-7/CHAN-104 (is not EM) E= 126 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-30/SLOT-7/CHAN-58 (is not EM) E= 86 t= 9720 Q= 7 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-30/SLOT-7/CHAN-104 (is not EM) E= 126 t= -7047 Q= 305 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-30/SLOT-10/CHAN-30 (is not EM) E= 460 t= 1373 Q= 35 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-30/SLOT-10/CHAN-56 (is not EM) E= 157 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-30/SLOT-10/CHAN-81 (is not EM) E= 243 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-30/SLOT-10/CHAN-56 (is not EM) E= 157 t= 2919 Q= 37 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-30/SLOT-10/CHAN-81 (is not EM) E= 243 t= 4788 Q= 54 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-30/SLOT-13/CHAN-63 (is not EM) E= 314 t= -12834 Q= 5 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-31/SLOT-2/CHAN-60 (is not EM) E= 135 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-31/SLOT-5/CHAN-88 (is not EM) E= -177 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-31/SLOT-5/CHAN-108 (is not EM) E= 134 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-31/SLOT-6/CHAN-72 (is not EM) E= -85 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-31/SLOT-6/CHAN-100 (is not EM) E= 84 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-31/SLOT-2/CHAN-60 (is not EM) E= 135 t= -12850 Q= 11306 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-31/SLOT-5/CHAN-88 (is not EM) E= -177 t= -1574 Q= 1513 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-31/SLOT-5/CHAN-108 (is not EM) E= 134 t= -18026 Q= 3854 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-31/SLOT-6/CHAN-72 (is not EM) E= -85 t= -11343 Q= 574 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-31/SLOT-6/CHAN-100 (is not EM) E= 84 t= 8884 Q= 27 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-31/SLOT-12/CHAN-35 (is not EM) E= 291 t= -13321 Q= 738 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-0/SLOT-2/CHAN-30 (is not EM) E= 184 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-0/SLOT-2/CHAN-65 (is not EM) E= 142 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-0/SLOT-2/CHAN-30 (is not EM) E= 184 t= -15829 Q= 3268 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-0/SLOT-2/CHAN-65 (is not EM) E= 142 t= -1923 Q= 29 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-0/SLOT-3/CHAN-60 (is not EM) E= 412 t= 371 Q= 494 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-0/SLOT-3/CHAN-61 (is not EM) E= 238 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-0/SLOT-3/CHAN-61 (is not EM) E= 238 t= 3121 Q= 5807 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-0/SLOT-6/CHAN-75 (is not EM) E= 513 t= 1663 Q= 1019 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-0/SLOT-7/CHAN-116 (is not EM) E= 351 t= 447 Q= 784 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-0/SLOT-8/CHAN-29 (is not EM) E= 301 t= -13542 Q= 2062 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-0/SLOT-8/CHAN-54 (is not EM) E= 225 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-0/SLOT-8/CHAN-55 (is not EM) E= 191 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-0/SLOT-8/CHAN-54 (is not EM) E= 225 t= -30960 Q= 417 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-0/SLOT-8/CHAN-55 (is not EM) E= 191 t= -29286 Q= 633 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-0/SLOT-10/CHAN-95 (is not EM) E= 995 t= -600 Q= 36 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-0/SLOT-10/CHAN-106 (is not EM) E= 435 t= -18739 Q= 1149 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-0/SLOT-11/CHAN-124 (is not EM) E= 433 t= 6321 Q= 26 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-0/SLOT-12/CHAN-41 (is not EM) E= 769 t= -1807 Q= 79 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-1/SLOT-2/CHAN-19 (is not EM) E= 124 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-1/SLOT-2/CHAN-24 (is not EM) E= 122 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-1/SLOT-2/CHAN-24 (is not EM) E= 122 t= 1088 Q= 122 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-1/SLOT-6/CHAN-121 (is not EM) E= 496 t= -25719 Q= 65535 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-1/SLOT-8/CHAN-36 (is not EM) E= 201 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-1/SLOT-8/CHAN-106 (is not EM) E= 211 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-1/SLOT-8/CHAN-36 (is not EM) E= 201 t= -20065 Q= 2075 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-1/SLOT-8/CHAN-106 (is not EM) E= 211 t= -3358 Q= 43 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-1/SLOT-9/CHAN-14 (is not EM) E= 273 t= 4500 Q= 13 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-1/SLOT-9/CHAN-15 (is not EM) E= 334 t= -4479 Q= 33 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-1/SLOT-10/CHAN-14 (is not EM) E= 359 t= -10477 Q= 298 P=0x20a5 G=0 @@ -1603,14 +1603,14 @@ Channel: ENDCAP/C-SIDE/FT-3/SLOT-6/CHAN-33 Barrel l/e/p= 0/184/0: E= 1957 t= -13 Channel: ENDCAP/C-SIDE/FT-3/SLOT-6/CHAN-41 Barrel l/e/p= 0/168/0: E= 1888 t= -36909 Q= 57 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-3/SLOT-8/CHAN-12 Barrel l/e/p= 0/160/0: E= 3136 t= 2128 Q= 25 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-3/SLOT-8/CHAN-50 Barrel l/e/p= 0/184/0: E= 1569 t= -15702 Q= 45 P=0x20a5 G=1 -Channel: ENDCAP/C-SIDE/FT-4/SLOT-8/CHAN-13 (is not EM) E= 172 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-4/SLOT-8/CHAN-13 (is not EM) E= 172 t= -11784 Q= 123 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-4/SLOT-9/CHAN-64 (is not EM) E= 296 t= -4100 Q= 12 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-4/SLOT-9/CHAN-91 (is not EM) E= 297 t= 936 Q= 5 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-4/SLOT-12/CHAN-91 (is not EM) E= 565 t= 2997 Q= 160 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-5/SLOT-2/CHAN-69 (is not EM) E= 182 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-5/SLOT-2/CHAN-70 (is not EM) E= 160 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-5/SLOT-3/CHAN-99 (is not EM) E= 240 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-5/SLOT-3/CHAN-100 (is not EM) E= 212 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-5/SLOT-2/CHAN-69 (is not EM) E= 182 t= -16150 Q= 1419 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-5/SLOT-2/CHAN-70 (is not EM) E= 160 t= -14367 Q= 833 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-5/SLOT-3/CHAN-99 (is not EM) E= 240 t= 43 Q= 79 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-5/SLOT-3/CHAN-100 (is not EM) E= 212 t= 2459 Q= 167 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-5/SLOT-5/CHAN-18 (is not EM) E= 315 t= -21566 Q= 53515 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-5/SLOT-9/CHAN-16 (is not EM) E= 371 t= -22815 Q= 4231 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-6/SLOT-1/CHAN-22 Barrel l/e/p= 1/368/0: E= -8172 t= -7545 Q= 464 P=0x20a5 G=1 @@ -1634,22 +1634,22 @@ Channel: ENDCAP/C-SIDE/FT-6/SLOT-14/CHAN-123 Barrel l/e/p= 0/0/0: E= -3956 t= -1 Channel: ENDCAP/C-SIDE/FT-6/SLOT-15/CHAN-67 Barrel l/e/p= 0/176/0: E= -11266 t= 1060 Q= 126 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-6/SLOT-15/CHAN-80 Barrel l/e/p= 0/416/0: E= -24401 t= 6648 Q= 1754 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-7/SLOT-4/CHAN-37 (is not EM) E= 325 t= 2091 Q= 292 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-7/SLOT-8/CHAN-7 (is not EM) E= 242 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-7/SLOT-8/CHAN-58 (is not EM) E= 178 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-7/SLOT-8/CHAN-7 (is not EM) E= 242 t= -23568 Q= 789 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-7/SLOT-8/CHAN-58 (is not EM) E= 178 t= -28701 Q= 380 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-7/SLOT-10/CHAN-64 (is not EM) E= 599 t= -587 Q= 27 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-7/SLOT-11/CHAN-101 (is not EM) E= 431 t= -31082 Q= 5992 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-8/SLOT-5/CHAN-102 (is not EM) E= -220 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-8/SLOT-5/CHAN-102 (is not EM) E= -220 t= -19151 Q= 65535 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-8/SLOT-6/CHAN-27 (is not EM) E= 373 t= -1292 Q= 144 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-8/SLOT-8/CHAN-41 (is not EM) E= 192 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-8/SLOT-8/CHAN-41 (is not EM) E= 192 t= -10453 Q= 3656 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-8/SLOT-10/CHAN-52 (is not EM) E= 357 t= 2335 Q= 2 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-8/SLOT-10/CHAN-104 (is not EM) E= 392 t= -16454 Q= 1377 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-9/SLOT-1/CHAN-8 (is not EM) E= 1671 t= -9228 Q= 22897 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-9/SLOT-7/CHAN-8 (is not EM) E= 149 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-9/SLOT-7/CHAN-9 (is not EM) E= 251 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-9/SLOT-7/CHAN-8 (is not EM) E= 149 t= -4369 Q= 118 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-9/SLOT-7/CHAN-9 (is not EM) E= 251 t= 1529 Q= 83 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-9/SLOT-7/CHAN-10 (is not EM) E= 114 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-9/SLOT-9/CHAN-12 (is not EM) E= 210 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-9/SLOT-9/CHAN-62 (is not EM) E= 214 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-9/SLOT-9/CHAN-121 (is not EM) E= 225 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-9/SLOT-9/CHAN-12 (is not EM) E= 210 t= -24530 Q= 444 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-9/SLOT-9/CHAN-62 (is not EM) E= 214 t= 4865 Q= 50 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-9/SLOT-9/CHAN-121 (is not EM) E= 225 t= -28304 Q= 3375 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-9/SLOT-10/CHAN-2 (is not EM) E= 436 t= 194 Q= 73 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-9/SLOT-10/CHAN-125 (is not EM) E= 567 t= -210 Q= 4 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-9/SLOT-13/CHAN-96 (is not EM) E= 364 t= 6 Q= 98 P=0x20a5 G=0 @@ -1661,45 +1661,45 @@ Channel: ENDCAP/C-SIDE/FT-11/SLOT-8/CHAN-76 (is not EM) E= 323 t= -2383 Q= 41 P= Channel: ENDCAP/C-SIDE/FT-11/SLOT-9/CHAN-116 (is not EM) E= 354 t= 2380 Q= 124 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-11/SLOT-10/CHAN-99 (is not EM) E= 617 t= -5433 Q= 21 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-12/SLOT-3/CHAN-120 (is not EM) E= 414 t= -104 Q= 2486 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-12/SLOT-3/CHAN-121 (is not EM) E= 162 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-12/SLOT-3/CHAN-121 (is not EM) E= 162 t= -2658 Q= 223 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-12/SLOT-7/CHAN-85 (is not EM) E= 646 t= 2584 Q= 5805 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-12/SLOT-10/CHAN-83 (is not EM) E= 736 t= -1994 Q= 316 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-12/SLOT-13/CHAN-43 (is not EM) E= 451 t= -2500 Q= 888 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-13/SLOT-1/CHAN-6 (is not EM) E= 868 t= -24666 Q= 434 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-13/SLOT-7/CHAN-77 (is not EM) E= 623 t= -4659 Q= 1910 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-13/SLOT-7/CHAN-78 (is not EM) E= 1246 t= 626 Q= 543 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-13/SLOT-8/CHAN-6 (is not EM) E= -168 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-13/SLOT-8/CHAN-118 (is not EM) E= 206 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-13/SLOT-8/CHAN-6 (is not EM) E= -168 t= 2456 Q= 176 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-13/SLOT-8/CHAN-118 (is not EM) E= 206 t= 6585 Q= 50 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-13/SLOT-13/CHAN-120 (is not EM) E= 934 t= -42182 Q= 20791 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-14/SLOT-3/CHAN-51 (is not EM) E= 161 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-14/SLOT-8/CHAN-99 (is not EM) E= 208 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-14/SLOT-3/CHAN-51 (is not EM) E= 161 t= 218 Q= 4720 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-14/SLOT-8/CHAN-99 (is not EM) E= 208 t= -9675 Q= 267 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-14/SLOT-10/CHAN-91 (is not EM) E= 619 t= -2326 Q= 315 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-14/SLOT-12/CHAN-55 (is not EM) E= 665 t= 533 Q= 13 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-15/SLOT-1/CHAN-8 (is not EM) E= 1069 t= -9526 Q= 27704 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-15/SLOT-1/CHAN-52 (is not EM) E= 949 t= -17504 Q= 307 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-15/SLOT-2/CHAN-92 (is not EM) E= 1033 t= -27058 Q= 212 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-15/SLOT-3/CHAN-32 (is not EM) E= 187 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-15/SLOT-3/CHAN-32 (is not EM) E= 187 t= -9940 Q= 88 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-15/SLOT-4/CHAN-45 (is not EM) E= 360 t= -3870 Q= 44 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-15/SLOT-7/CHAN-65 (is not EM) E= 105 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-15/SLOT-7/CHAN-67 (is not EM) E= 101 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-17/SLOT-2/CHAN-44 (is not EM) E= 190 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-17/SLOT-3/CHAN-66 (is not EM) E= 176 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-18/SLOT-3/CHAN-68 (is not EM) E= 153 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-15/SLOT-7/CHAN-65 (is not EM) E= 105 t= -13855 Q= 983 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-15/SLOT-7/CHAN-67 (is not EM) E= 101 t= 3044 Q= 128 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-17/SLOT-2/CHAN-44 (is not EM) E= 190 t= -13397 Q= 2465 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-17/SLOT-3/CHAN-66 (is not EM) E= 176 t= 1608 Q= 370 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-18/SLOT-3/CHAN-68 (is not EM) E= 153 t= 2188 Q= 121 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-18/SLOT-6/CHAN-101 (is not EM) E= 396 t= -1564 Q= 6733 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-18/SLOT-7/CHAN-95 (is not EM) E= 524 t= -21021 Q= 53060 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-18/SLOT-8/CHAN-64 (is not EM) E= 198 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-18/SLOT-8/CHAN-64 (is not EM) E= 198 t= -7633 Q= 104 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-18/SLOT-8/CHAN-69 (is not EM) E= 481 t= 1196 Q= 38 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-18/SLOT-8/CHAN-119 (is not EM) E= 347 t= -19742 Q= 4482 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-18/SLOT-8/CHAN-124 (is not EM) E= 263 t= -3374 Q= 319 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-18/SLOT-8/CHAN-125 (is not EM) E= 358 t= -159 Q= 136 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-18/SLOT-12/CHAN-55 (is not EM) E= 508 t= -1943 Q= 41 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-19/SLOT-1/CHAN-22 (is not EM) E= 1088 t= -17113 Q= 661 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-19/SLOT-4/CHAN-101 (is not EM) E= 244 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-19/SLOT-4/CHAN-102 (is not EM) E= 211 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-19/SLOT-8/CHAN-11 (is not EM) E= 157 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-19/SLOT-4/CHAN-101 (is not EM) E= 244 t= 1492 Q= 188 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-19/SLOT-4/CHAN-102 (is not EM) E= 211 t= 3955 Q= 649 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-19/SLOT-8/CHAN-11 (is not EM) E= 157 t= -17439 Q= 102 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-19/SLOT-13/CHAN-115 (is not EM) E= 829 t= -240 Q= 4502 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-20/SLOT-2/CHAN-109 (is not EM) E= 139 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-20/SLOT-3/CHAN-46 (is not EM) E= 206 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-20/SLOT-2/CHAN-109 (is not EM) E= 139 t= -999 Q= 223 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-20/SLOT-3/CHAN-46 (is not EM) E= 206 t= 1157 Q= 359 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-20/SLOT-7/CHAN-40 (is not EM) E= 500 t= -455 Q= 2519 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-20/SLOT-7/CHAN-41 (is not EM) E= 462 t= -9849 Q= 14776 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-20/SLOT-9/CHAN-125 (is not EM) E= -406 t= -4867 Q= 1050 P=0x20a5 G=0 @@ -1709,10 +1709,10 @@ Channel: ENDCAP/C-SIDE/FT-20/SLOT-11/CHAN-74 (is not EM) E= 591 t= -5580 Q= 386 Channel: ENDCAP/C-SIDE/FT-20/SLOT-13/CHAN-69 (is not EM) E= 663 t= -1149 Q= 264 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-20/SLOT-13/CHAN-73 (is not EM) E= 1720 t= -2379 Q= 214 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-20/SLOT-13/CHAN-74 (is not EM) E= 587 t= -5539 Q= 310 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-21/SLOT-3/CHAN-101 (is not EM) E= 193 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-21/SLOT-3/CHAN-101 (is not EM) E= 193 t= 206 Q= 89 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-21/SLOT-4/CHAN-11 (is not EM) E= 422 t= -12359 Q= 757 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-21/SLOT-6/CHAN-22 (is not EM) E= -374 t= -658 Q= 5957 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-21/SLOT-9/CHAN-77 (is not EM) E= 185 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-21/SLOT-9/CHAN-77 (is not EM) E= 185 t= -16322 Q= 665 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-21/SLOT-10/CHAN-39 (is not EM) E= -346 t= 313 Q= 652 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-21/SLOT-13/CHAN-81 (is not EM) E= 378 t= -2087 Q= 160 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-21/SLOT-13/CHAN-88 (is not EM) E= 477 t= -6249 Q= 647 P=0x20a5 G=0 @@ -1722,7 +1722,7 @@ Channel: ENDCAP/C-SIDE/FT-21/SLOT-14/CHAN-96 (is not EM) E= 1458 t= -2351 Q= 284 Channel: ENDCAP/C-SIDE/FT-21/SLOT-14/CHAN-97 (is not EM) E= 1078 t= -643 Q= 280 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-22/SLOT-7/CHAN-107 Barrel l/e/p= 0/328/0: E= -1517 t= -7657 Q= 119 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-22/SLOT-8/CHAN-101 Barrel l/e/p= 0/272/0: E= 3063 t= 5394 Q= 12 P=0x20a5 G=1 -Channel: ENDCAP/C-SIDE/FT-23/SLOT-2/CHAN-123 (is not EM) E= 137 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-23/SLOT-2/CHAN-123 (is not EM) E= 137 t= 4040 Q= 3 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-23/SLOT-7/CHAN-26 (is not EM) E= 731 t= -24806 Q= 65535 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-23/SLOT-7/CHAN-35 (is not EM) E= 342 t= -1798 Q= 226 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-23/SLOT-7/CHAN-79 (is not EM) E= 460 t= 466 Q= 1588 P=0x20a5 G=0 @@ -1732,15 +1732,15 @@ Channel: ENDCAP/C-SIDE/FT-23/SLOT-9/CHAN-84 (is not EM) E= 291 t= -27863 Q= 3626 Channel: ENDCAP/C-SIDE/FT-23/SLOT-9/CHAN-125 (is not EM) E= 514 t= -2107 Q= 140 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-23/SLOT-9/CHAN-126 (is not EM) E= 725 t= -740 Q= 88 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-23/SLOT-9/CHAN-127 (is not EM) E= 395 t= -1740 Q= 132 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-24/SLOT-3/CHAN-77 (is not EM) E= 147 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-24/SLOT-3/CHAN-78 (is not EM) E= 146 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-24/SLOT-3/CHAN-77 (is not EM) E= 147 t= 887 Q= 7816 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-24/SLOT-3/CHAN-78 (is not EM) E= 146 t= 68 Q= 12731 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-24/SLOT-7/CHAN-77 (is not EM) E= 441 t= -20254 Q= 34032 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-24/SLOT-8/CHAN-0 (is not EM) E= 174 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-24/SLOT-8/CHAN-3 (is not EM) E= 197 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-24/SLOT-8/CHAN-0 (is not EM) E= 174 t= -13517 Q= 67 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-24/SLOT-8/CHAN-3 (is not EM) E= 197 t= -11872 Q= 3069 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-24/SLOT-9/CHAN-81 (is not EM) E= 380 t= -1216 Q= 97 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-24/SLOT-13/CHAN-23 (is not EM) E= 606 t= -24676 Q= 2902 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-0/SLOT-1/CHAN-10 (is not EM) E= 996 t= 1080 Q= 526 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-0/SLOT-4/CHAN-6 (is not EM) E= 255 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-0/SLOT-4/CHAN-6 (is not EM) E= 255 t= -8111 Q= 2023 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-0/SLOT-4/CHAN-7 (is not EM) E= 386 t= -354 Q= 656 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-0/SLOT-4/CHAN-8 (is not EM) E= 444 t= 913 Q= 282 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-0/SLOT-7/CHAN-99 (is not EM) E= 365 t= -2043 Q= 1823 P=0x20a5 G=0 @@ -1749,42 +1749,42 @@ Channel: ENDCAP/A-SIDE/FT-0/SLOT-11/CHAN-6 (is not EM) E= 766 t= -2789 Q= 68 P=0 Channel: ENDCAP/A-SIDE/FT-0/SLOT-11/CHAN-20 (is not EM) E= 484 t= 2308 Q= 100 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-0/SLOT-11/CHAN-78 (is not EM) E= 444 t= -847 Q= 240 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-0/SLOT-12/CHAN-2 (is not EM) E= 600 t= -2202 Q= 55 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-1/SLOT-2/CHAN-45 (is not EM) E= 118 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-1/SLOT-4/CHAN-110 (is not EM) E= 197 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-1/SLOT-2/CHAN-45 (is not EM) E= 118 t= -9847 Q= 329 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-1/SLOT-4/CHAN-110 (is not EM) E= 197 t= 224 Q= 44 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-1/SLOT-7/CHAN-17 (is not EM) E= 505 t= 3386 Q= 4334 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-1/SLOT-7/CHAN-29 (is not EM) E= 430 t= -922 Q= 4343 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-1/SLOT-8/CHAN-3 (is not EM) E= 278 t= -6195 Q= 427 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-1/SLOT-8/CHAN-8 (is not EM) E= 187 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-1/SLOT-8/CHAN-36 (is not EM) E= -229 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-1/SLOT-8/CHAN-8 (is not EM) E= 187 t= -15853 Q= 841 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-1/SLOT-8/CHAN-36 (is not EM) E= -229 t= -5963 Q= 789 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-1/SLOT-10/CHAN-71 (is not EM) E= 597 t= 5633 Q= 36 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-1/SLOT-13/CHAN-19 (is not EM) E= 508 t= -2545 Q= 79 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-2/SLOT-6/CHAN-90 (is not EM) E= 126 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-2/SLOT-7/CHAN-102 (is not EM) E= 200 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-2/SLOT-7/CHAN-103 (is not EM) E= 137 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-2/SLOT-7/CHAN-104 (is not EM) E= 143 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-2/SLOT-8/CHAN-60 (is not EM) E= 167 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-2/SLOT-6/CHAN-90 (is not EM) E= 126 t= -11799 Q= 251 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-2/SLOT-7/CHAN-102 (is not EM) E= 200 t= -9886 Q= 2249 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-2/SLOT-7/CHAN-103 (is not EM) E= 137 t= -13378 Q= 1841 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-2/SLOT-7/CHAN-104 (is not EM) E= 143 t= -14291 Q= 1217 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-2/SLOT-8/CHAN-60 (is not EM) E= 167 t= 8630 Q= 60 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-2/SLOT-9/CHAN-53 (is not EM) E= 283 t= -10564 Q= 22 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-2/SLOT-9/CHAN-70 (is not EM) E= 321 t= -13498 Q= 11257 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-2/SLOT-9/CHAN-71 (is not EM) E= 457 t= -11505 Q= 11955 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-2/SLOT-9/CHAN-91 (is not EM) E= 138 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-2/SLOT-9/CHAN-91 (is not EM) E= 138 t= -4285 Q= 79 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-3/SLOT-2/CHAN-42 (is not EM) E= 1168 t= 1356 Q= 112 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-3/SLOT-8/CHAN-2 Barrel l/e/p= 0/64/0: E= 3142 t= 20735 Q= 41 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-3/SLOT-9/CHAN-33 Barrel l/e/p= 2/0/0: E= -6211 t= -2872 Q= 2613 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-3/SLOT-10/CHAN-75 Barrel l/e/p= 1/112/0: E= 1890 t= -13064 Q= 168 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-3/SLOT-10/CHAN-116 Barrel l/e/p= 2/56/0: E= 7520 t= -7496 Q= 4461 P=0x20a5 G=1 -Channel: ENDCAP/A-SIDE/FT-4/SLOT-3/CHAN-17 (is not EM) E= 237 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-4/SLOT-3/CHAN-17 (is not EM) E= 237 t= -1268 Q= 1711 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-4/SLOT-3/CHAN-18 (is not EM) E= 852 t= -230 Q= 651 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-4/SLOT-3/CHAN-19 (is not EM) E= 1035 t= 916 Q= 219 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-4/SLOT-3/CHAN-20 (is not EM) E= 761 t= -673 Q= 171 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-4/SLOT-3/CHAN-21 (is not EM) E= 415 t= -736 Q= 400 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-4/SLOT-3/CHAN-22 (is not EM) E= 175 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-4/SLOT-3/CHAN-22 (is not EM) E= 175 t= 698 Q= 149 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-4/SLOT-10/CHAN-73 (is not EM) E= 609 t= 6131 Q= 209 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-4/SLOT-10/CHAN-74 (is not EM) E= 1121 t= -1057 Q= 18 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-4/SLOT-11/CHAN-9 (is not EM) E= -437 t= -1535 Q= 21 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-5/SLOT-2/CHAN-63 (is not EM) E= 156 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-5/SLOT-3/CHAN-32 (is not EM) E= 136 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-5/SLOT-3/CHAN-104 (is not EM) E= 165 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-5/SLOT-3/CHAN-105 (is not EM) E= 172 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-5/SLOT-2/CHAN-63 (is not EM) E= 156 t= 1045 Q= 270 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-5/SLOT-3/CHAN-32 (is not EM) E= 136 t= 8130 Q= 992 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-5/SLOT-3/CHAN-104 (is not EM) E= 165 t= 1528 Q= 72 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-5/SLOT-3/CHAN-105 (is not EM) E= 172 t= -3003 Q= 569 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-6/SLOT-2/CHAN-40 Barrel l/e/p= 2/288/0: E= 20077 t= -3462 Q= 285 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-6/SLOT-4/CHAN-42 Barrel l/e/p= 2/352/0: E= 18214 t= -37013 Q= 1245 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-6/SLOT-4/CHAN-55 Barrel l/e/p= 3/96/0: E= 29669 t= -9572 Q= 3929 P=0x20a5 G=1 @@ -1814,33 +1814,33 @@ Channel: ENDCAP/A-SIDE/FT-8/SLOT-13/CHAN-106 (is not EM) E= 872 t= -585 Q= 102 P Channel: ENDCAP/A-SIDE/FT-8/SLOT-13/CHAN-107 (is not EM) E= 761 t= -195 Q= 156 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-9/SLOT-1/CHAN-32 (is not EM) E= 972 t= -7799 Q= 30 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-9/SLOT-1/CHAN-33 (is not EM) E= 1204 t= -13876 Q= 319 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-9/SLOT-3/CHAN-117 (is not EM) E= 203 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-9/SLOT-6/CHAN-32 (is not EM) E= 130 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-9/SLOT-7/CHAN-50 (is not EM) E= 138 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-9/SLOT-3/CHAN-117 (is not EM) E= 203 t= -10211 Q= 709 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-9/SLOT-6/CHAN-32 (is not EM) E= 130 t= -7491 Q= 2647 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-9/SLOT-7/CHAN-50 (is not EM) E= 138 t= -18226 Q= 1287 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-9/SLOT-15/CHAN-51 (is not EM) E= 998 t= -3731 Q= 1199 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-9/SLOT-15/CHAN-64 (is not EM) E= 856 t= -2106 Q= 451 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-9/SLOT-15/CHAN-67 (is not EM) E= 632 t= -1346 Q= 383 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-10/SLOT-1/CHAN-33 (is not EM) E= 14343 t= -4165 Q= 98 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-10/SLOT-1/CHAN-36 (is not EM) E= 6973 t= -7908 Q= 415 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-10/SLOT-1/CHAN-37 (is not EM) E= 6631 t= -2962 Q= 219 P=0x20a5 G=1 -Channel: ENDCAP/A-SIDE/FT-11/SLOT-4/CHAN-0 (is not EM) E= 248 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-11/SLOT-4/CHAN-0 (is not EM) E= 248 t= 846 Q= 389 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-11/SLOT-9/CHAN-29 (is not EM) E= 277 t= -3522 Q= 117 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-11/SLOT-9/CHAN-84 (is not EM) E= 685 t= -26851 Q= 19638 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-11/SLOT-9/CHAN-85 (is not EM) E= 1001 t= -25755 Q= 28208 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-11/SLOT-10/CHAN-81 (is not EM) E= 1331 t= 613 Q= 86 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-11/SLOT-11/CHAN-0 (is not EM) E= 605 t= -4878 Q= 51 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-11/SLOT-12/CHAN-57 (is not EM) E= 558 t= -1822 Q= 39 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-12/SLOT-4/CHAN-4 (is not EM) E= 210 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-12/SLOT-8/CHAN-67 (is not EM) E= 208 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-12/SLOT-4/CHAN-4 (is not EM) E= 210 t= -2739 Q= 60 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-12/SLOT-8/CHAN-67 (is not EM) E= 208 t= -22871 Q= 123 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-12/SLOT-9/CHAN-4 (is not EM) E= 313 t= 2749 Q= 55 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-12/SLOT-11/CHAN-106 (is not EM) E= -444 t= -428 Q= 2489 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-12/SLOT-11/CHAN-109 (is not EM) E= -434 t= 4514 Q= 3791 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-12/SLOT-11/CHAN-110 (is not EM) E= -629 t= 41 Q= 9693 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-13/SLOT-3/CHAN-37 (is not EM) E= 298 t= 2267 Q= 1084 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-13/SLOT-3/CHAN-38 (is not EM) E= 187 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-13/SLOT-3/CHAN-41 (is not EM) E= 216 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-13/SLOT-3/CHAN-127 (is not EM) E= 164 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-13/SLOT-5/CHAN-72 (is not EM) E= 236 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-13/SLOT-3/CHAN-38 (is not EM) E= 187 t= -1321 Q= 1715 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-13/SLOT-3/CHAN-41 (is not EM) E= 216 t= 460 Q= 30 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-13/SLOT-3/CHAN-127 (is not EM) E= 164 t= 2086 Q= 92 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-13/SLOT-5/CHAN-72 (is not EM) E= 236 t= -2003 Q= 171 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-13/SLOT-6/CHAN-24 (is not EM) E= -453 t= -27922 Q= 65535 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-13/SLOT-6/CHAN-25 (is not EM) E= -539 t= -27814 Q= 65535 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-13/SLOT-6/CHAN-109 (is not EM) E= 501 t= -61 Q= 5617 P=0x20a5 G=0 @@ -1854,7 +1854,7 @@ Channel: ENDCAP/A-SIDE/FT-13/SLOT-10/CHAN-83 (is not EM) E= 436 t= -4900 Q= 109 Channel: ENDCAP/A-SIDE/FT-13/SLOT-10/CHAN-127 (is not EM) E= 459 t= -3127 Q= 102 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-13/SLOT-11/CHAN-51 (is not EM) E= 483 t= -3713 Q= 26 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-13/SLOT-13/CHAN-45 (is not EM) E= 471 t= 206 Q= 62 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-14/SLOT-2/CHAN-68 (is not EM) E= 127 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-14/SLOT-2/CHAN-68 (is not EM) E= 127 t= -3334 Q= 3431 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-14/SLOT-6/CHAN-82 (is not EM) E= 342 t= 740 Q= 153 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-14/SLOT-7/CHAN-110 (is not EM) E= 437 t= -1352 Q= 1718 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-14/SLOT-7/CHAN-111 (is not EM) E= 575 t= 1386 Q= 516 P=0x20a5 G=0 @@ -1863,14 +1863,14 @@ Channel: ENDCAP/A-SIDE/FT-14/SLOT-10/CHAN-76 (is not EM) E= 1219 t= -1101 Q= 36 Channel: ENDCAP/A-SIDE/FT-14/SLOT-13/CHAN-12 (is not EM) E= 578 t= -1782 Q= 49 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-15/SLOT-1/CHAN-42 (is not EM) E= 1631 t= -14573 Q= 1193 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-15/SLOT-3/CHAN-46 (is not EM) E= 524 t= 3474 Q= 25 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-15/SLOT-5/CHAN-80 (is not EM) E= 179 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-15/SLOT-5/CHAN-81 (is not EM) E= 208 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-15/SLOT-5/CHAN-82 (is not EM) E= 210 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-15/SLOT-5/CHAN-83 (is not EM) E= 235 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-15/SLOT-8/CHAN-71 (is not EM) E= 120 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-15/SLOT-5/CHAN-80 (is not EM) E= 179 t= -1233 Q= 1629 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-15/SLOT-5/CHAN-81 (is not EM) E= 208 t= 1148 Q= 131 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-15/SLOT-5/CHAN-82 (is not EM) E= 210 t= -1451 Q= 270 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-15/SLOT-5/CHAN-83 (is not EM) E= 235 t= -2331 Q= 171 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-15/SLOT-8/CHAN-71 (is not EM) E= 120 t= -26811 Q= 938 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-15/SLOT-8/CHAN-72 (is not EM) E= 321 t= -22649 Q= 9393 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-15/SLOT-8/CHAN-73 (is not EM) E= 194 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-15/SLOT-9/CHAN-16 (is not EM) E= 227 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-15/SLOT-8/CHAN-73 (is not EM) E= 194 t= -24292 Q= 4363 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-15/SLOT-9/CHAN-16 (is not EM) E= 227 t= -6202 Q= 65 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-15/SLOT-9/CHAN-84 (is not EM) E= 435 t= -9741 Q= 488 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-15/SLOT-9/CHAN-115 (is not EM) E= 267 t= 7090 Q= 162 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-15/SLOT-10/CHAN-27 (is not EM) E= 385 t= -3813 Q= 83 P=0x20a5 G=0 @@ -1881,9 +1881,9 @@ Channel: ENDCAP/A-SIDE/FT-16/SLOT-2/CHAN-39 (is not EM) E= 708 t= -8173 Q= 20 P= Channel: ENDCAP/A-SIDE/FT-16/SLOT-7/CHAN-60 Barrel l/e/p= 0/280/0: E= 2662 t= -4314 Q= 0 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-16/SLOT-9/CHAN-73 Barrel l/e/p= 1/304/0: E= 4543 t= 765 Q= 79 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-17/SLOT-2/CHAN-120 (is not EM) E= 279 t= 752 Q= 89 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-17/SLOT-4/CHAN-14 (is not EM) E= 212 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-17/SLOT-4/CHAN-14 (is not EM) E= 212 t= -23406 Q= 15287 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-17/SLOT-7/CHAN-62 (is not EM) E= 373 t= -675 Q= 341 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-17/SLOT-8/CHAN-18 (is not EM) E= 198 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-17/SLOT-8/CHAN-18 (is not EM) E= 198 t= -335 Q= 579 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-17/SLOT-9/CHAN-28 (is not EM) E= 407 t= 1424 Q= 222 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-18/SLOT-6/CHAN-78 (is not EM) E= -340 t= -22935 Q= 65535 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-18/SLOT-9/CHAN-44 (is not EM) E= 394 t= -28236 Q= 5354 P=0x20a5 G=0 @@ -1892,18 +1892,18 @@ Channel: ENDCAP/A-SIDE/FT-18/SLOT-9/CHAN-96 (is not EM) E= 522 t= -3105 Q= 96 P= Channel: ENDCAP/A-SIDE/FT-18/SLOT-11/CHAN-117 (is not EM) E= 436 t= 4246 Q= 35 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-19/SLOT-7/CHAN-41 (is not EM) E= 437 t= 3472 Q= 810 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-19/SLOT-7/CHAN-114 (is not EM) E= -350 t= -16513 Q= 65535 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-19/SLOT-8/CHAN-64 (is not EM) E= -219 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-19/SLOT-8/CHAN-64 (is not EM) E= -219 t= -279 Q= 768 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-19/SLOT-9/CHAN-27 (is not EM) E= 446 t= -18682 Q= 3166 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-19/SLOT-11/CHAN-103 (is not EM) E= 763 t= -871 Q= 382 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-19/SLOT-12/CHAN-61 (is not EM) E= 519 t= 2355 Q= 313 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-19/SLOT-12/CHAN-114 (is not EM) E= 471 t= 4489 Q= 33 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-4/CHAN-83 (is not EM) E= 171 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-4/CHAN-87 (is not EM) E= 198 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-35 (is not EM) E= 95 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-8/CHAN-69 (is not EM) E= 138 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-8/CHAN-70 (is not EM) E= 166 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-8/CHAN-76 (is not EM) E= 116 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-9/CHAN-66 (is not EM) E= 135 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-4/CHAN-83 (is not EM) E= 171 t= -31308 Q= 3570 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-4/CHAN-87 (is not EM) E= 198 t= -64677 Q= 8272 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-7/CHAN-35 (is not EM) E= 95 t= -28559 Q= 841 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-8/CHAN-69 (is not EM) E= 138 t= -2201 Q= 767 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-8/CHAN-70 (is not EM) E= 166 t= 4079 Q= 168 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-8/CHAN-76 (is not EM) E= 116 t= -691 Q= 674 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-9/CHAN-66 (is not EM) E= 135 t= -75 Q= 83 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-21/SLOT-10/CHAN-95 (is not EM) E= 1445 t= 380 Q= 66 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-21/SLOT-11/CHAN-98 (is not EM) E= 375 t= -15990 Q= 27 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-21/SLOT-13/CHAN-12 (is not EM) E= 493 t= -4418 Q= 1 P=0x20a5 G=0 @@ -1916,7 +1916,7 @@ Channel: ENDCAP/A-SIDE/FT-22/SLOT-6/CHAN-97 Barrel l/e/p= 0/480/0: E= -1781 t= 3 Channel: ENDCAP/A-SIDE/FT-22/SLOT-7/CHAN-10 Barrel l/e/p= 0/400/0: E= 2264 t= -39527 Q= 277 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-22/SLOT-7/CHAN-89 Barrel l/e/p= 0/432/0: E= 2291 t= -3106 Q= 0 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-22/SLOT-10/CHAN-92 Barrel l/e/p= 1/504/0: E= -3305 t= -2092 Q= 183 P=0x20a5 G=1 -Channel: ENDCAP/A-SIDE/FT-23/SLOT-3/CHAN-37 (is not EM) E= 170 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-23/SLOT-3/CHAN-37 (is not EM) E= 170 t= 2742 Q= 60 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-23/SLOT-6/CHAN-62 (is not EM) E= 714 t= -702 Q= 2125 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-23/SLOT-6/CHAN-63 (is not EM) E= 1024 t= 180 Q= 17682 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-23/SLOT-7/CHAN-70 (is not EM) E= 693 t= 697 Q= 3421 P=0x20a5 G=0 @@ -1924,8 +1924,8 @@ Channel: ENDCAP/A-SIDE/FT-23/SLOT-7/CHAN-71 (is not EM) E= 677 t= 1762 Q= 10899 Channel: ENDCAP/A-SIDE/FT-23/SLOT-8/CHAN-46 (is not EM) E= 284 t= -915 Q= 94 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-23/SLOT-9/CHAN-103 (is not EM) E= 601 t= -5309 Q= 134 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-24/SLOT-4/CHAN-13 (is not EM) E= 302 t= 2093 Q= 456 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-24/SLOT-4/CHAN-14 (is not EM) E= 226 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-24/SLOT-6/CHAN-91 (is not EM) E= 325 t= -1887 Q= 303 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-24/SLOT-4/CHAN-14 (is not EM) E= 226 t= 2611 Q= 78 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-24/SLOT-6/CHAN-91 (is not EM) E= 325 t= 0 Q= 0 P=0xa5 G=0 Channel: ENDCAP/A-SIDE/FT-24/SLOT-7/CHAN-30 (is not EM) E= 670 t= -1214 Q= 2689 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-24/SLOT-7/CHAN-31 (is not EM) E= 557 t= -241 Q= 1248 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-24/SLOT-7/CHAN-82 (is not EM) E= 579 t= -18720 Q= 65535 P=0x20a5 G=0 @@ -1936,276 +1936,276 @@ Channel: ENDCAP/A-SIDE/FT-24/SLOT-13/CHAN-48 (is not EM) E= 1129 t= -25181 Q= 15 Channel: ENDCAP/A-SIDE/FT-24/SLOT-13/CHAN-49 (is not EM) E= 764 t= -33293 Q= 11139 P=0x20a5 G=0 Event 3 contains 743 channels Channel: BARREL/C-SIDE/FT-0/SLOT-1/CHAN-44 (is not EM) E= 706 t= -902 Q= 288 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-0/SLOT-5/CHAN-113 (is not EM) E= 112 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-0/SLOT-5/CHAN-114 (is not EM) E= 147 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-0/SLOT-9/CHAN-36 (is not EM) E= -110 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-0/SLOT-5/CHAN-113 (is not EM) E= 112 t= 1631 Q= 405 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-0/SLOT-5/CHAN-114 (is not EM) E= 147 t= 1210 Q= 402 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-0/SLOT-9/CHAN-36 (is not EM) E= -110 t= -11736 Q= 109 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-0/SLOT-13/CHAN-84 (is not EM) E= -270 t= -3567 Q= 370 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-0/SLOT-13/CHAN-85 (is not EM) E= -406 t= -8434 Q= 587 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-1/SLOT-1/CHAN-104 (is not EM) E= 754 t= 4801 Q= 523 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-4/CHAN-68 (is not EM) E= 116 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-5/CHAN-98 (is not EM) E= 120 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-6/CHAN-26 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-6/CHAN-27 (is not EM) E= 159 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-4/CHAN-68 (is not EM) E= 116 t= 7387 Q= 283 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-5/CHAN-98 (is not EM) E= 120 t= 3972 Q= 214 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-6/CHAN-26 (is not EM) E= 94 t= 8770 Q= 330 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-6/CHAN-27 (is not EM) E= 159 t= 532 Q= 102 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-1/SLOT-6/CHAN-28 (is not EM) E= 268 t= -242 Q= 256 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-6/CHAN-29 (is not EM) E= 74 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-7/CHAN-104 (is not EM) E= -97 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-6/CHAN-29 (is not EM) E= 74 t= -1467 Q= 3 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-7/CHAN-104 (is not EM) E= -97 t= 2112 Q= 644 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-1/SLOT-13/CHAN-15 (is not EM) E= 339 t= 5728 Q= 6 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-1/SLOT-14/CHAN-5 (is not EM) E= 353 t= -42644 Q= 322 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-1/SLOT-14/CHAN-6 (is not EM) E= 314 t= 18452 Q= 33 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-2/SLOT-4/CHAN-75 (is not EM) E= 88 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-2/SLOT-5/CHAN-70 (is not EM) E= -139 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-2/SLOT-9/CHAN-118 (is not EM) E= 132 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-1/SLOT-14/CHAN-6 (is not EM) E= 314 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-2/SLOT-4/CHAN-75 (is not EM) E= 88 t= 4333 Q= 7 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-2/SLOT-5/CHAN-70 (is not EM) E= -139 t= -4119 Q= 3572 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-2/SLOT-9/CHAN-118 (is not EM) E= 132 t= -27615 Q= 292 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-2/SLOT-13/CHAN-19 (is not EM) E= 445 t= 4768 Q= 34 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-3/SLOT-2/CHAN-80 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-3/SLOT-4/CHAN-84 (is not EM) E= 95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-3/SLOT-5/CHAN-39 (is not EM) E= -100 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-3/SLOT-2/CHAN-80 (is not EM) E= 91 t= -18829 Q= 551 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-3/SLOT-4/CHAN-84 (is not EM) E= 95 t= -17630 Q= 24119 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-3/SLOT-5/CHAN-39 (is not EM) E= -100 t= -8942 Q= 2952 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-3/SLOT-5/CHAN-40 (is not EM) E= -337 t= -4237 Q= 41243 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-3/SLOT-5/CHAN-41 (is not EM) E= -229 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-3/SLOT-10/CHAN-114 (is not EM) E= 156 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-3/SLOT-5/CHAN-41 (is not EM) E= -229 t= -1348 Q= 16454 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-3/SLOT-10/CHAN-114 (is not EM) E= 156 t= 30238 Q= 260 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-3/SLOT-12/CHAN-53 (is not EM) E= -483 t= -10831 Q= 3983 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-3/SLOT-12/CHAN-54 (is not EM) E= -520 t= -3376 Q= 2799 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-2/CHAN-27 (is not EM) E= 86 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-2/CHAN-108 (is not EM) E= -129 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-2/CHAN-27 (is not EM) E= 86 t= -23016 Q= 2060 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-2/CHAN-108 (is not EM) E= -129 t= -1230 Q= 4305 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-4/SLOT-9/CHAN-120 (is not EM) E= 398 t= 2995 Q= 93 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-11/CHAN-17 (is not EM) E= 217 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-11/CHAN-17 (is not EM) E= 217 t= 16868 Q= 53 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-4/SLOT-11/CHAN-114 (is not EM) E= 325 t= 10812 Q= 97 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-4/SLOT-11/CHAN-127 (is not EM) E= 246 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-4/SLOT-11/CHAN-127 (is not EM) E= 246 t= 10909 Q= 18 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-4/SLOT-12/CHAN-118 (is not EM) E= 327 t= 7637 Q= 102 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-4/SLOT-12/CHAN-119 (is not EM) E= 293 t= -6660 Q= 37 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-4/SLOT-12/CHAN-121 (is not EM) E= 297 t= 5857 Q= 38 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-4/CHAN-103 (is not EM) E= 105 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-4/CHAN-104 (is not EM) E= 106 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-6/CHAN-27 (is not EM) E= -130 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-7/CHAN-13 (is not EM) E= -84 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-7/CHAN-85 (is not EM) E= 78 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-7/CHAN-86 (is not EM) E= 161 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-7/CHAN-87 (is not EM) E= 81 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-5/SLOT-9/CHAN-78 (is not EM) E= -91 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-4/CHAN-103 (is not EM) E= 105 t= 2547 Q= 257 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-4/CHAN-104 (is not EM) E= 106 t= 5178 Q= 25 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-6/CHAN-27 (is not EM) E= -130 t= -6091 Q= 2410 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-7/CHAN-13 (is not EM) E= -84 t= -6319 Q= 2370 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-7/CHAN-85 (is not EM) E= 78 t= -24126 Q= 512 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-7/CHAN-86 (is not EM) E= 161 t= -18452 Q= 3023 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-7/CHAN-87 (is not EM) E= 81 t= -17558 Q= 307 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-5/SLOT-9/CHAN-78 (is not EM) E= -91 t= 8756 Q= 1 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-5/SLOT-14/CHAN-33 (is not EM) E= 355 t= 19029 Q= 14 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-6/SLOT-1/CHAN-14 (is not EM) E= 389 t= -1532 Q= 122 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-6/SLOT-4/CHAN-58 (is not EM) E= -92 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-6/SLOT-5/CHAN-80 (is not EM) E= -99 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-6/SLOT-8/CHAN-1 (is not EM) E= 84 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-6/SLOT-4/CHAN-58 (is not EM) E= -92 t= -5411 Q= 243 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-6/SLOT-5/CHAN-80 (is not EM) E= -99 t= 4349 Q= 851 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-6/SLOT-8/CHAN-1 (is not EM) E= 84 t= -10997 Q= 339 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-6/SLOT-12/CHAN-15 (is not EM) E= 301 t= -71 Q= 99 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-6/SLOT-12/CHAN-70 (is not EM) E= 383 t= -6447 Q= 24 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-7/SLOT-6/CHAN-99 (is not EM) E= 84 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-7/SLOT-6/CHAN-99 (is not EM) E= 84 t= -16089 Q= 468 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-7/SLOT-12/CHAN-22 (is not EM) E= 299 t= -13112 Q= 410 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-8/SLOT-3/CHAN-79 (is not EM) E= -116 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-8/SLOT-9/CHAN-124 (is not EM) E= 193 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-8/SLOT-3/CHAN-79 (is not EM) E= -116 t= -8058 Q= 447 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-8/SLOT-9/CHAN-124 (is not EM) E= 193 t= -11801 Q= 7 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-8/SLOT-12/CHAN-80 (is not EM) E= 406 t= -16193 Q= 153 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-8/SLOT-13/CHAN-108 (is not EM) E= 364 t= -3183 Q= 23 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-9/SLOT-2/CHAN-126 (is not EM) E= -90 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-9/SLOT-7/CHAN-38 (is not EM) E= 84 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-9/SLOT-8/CHAN-1 (is not EM) E= 150 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-9/SLOT-11/CHAN-114 (is not EM) E= 230 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-9/SLOT-2/CHAN-126 (is not EM) E= -90 t= -4779 Q= 1513 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-9/SLOT-7/CHAN-38 (is not EM) E= 84 t= 965 Q= 357 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-9/SLOT-8/CHAN-1 (is not EM) E= 150 t= 2708 Q= 211 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-9/SLOT-11/CHAN-114 (is not EM) E= 230 t= -11868 Q= 484 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-9/SLOT-14/CHAN-15 (is not EM) E= 406 t= -22091 Q= 159 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-9/SLOT-14/CHAN-28 (is not EM) E= 336 t= -18548 Q= 84 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-9/SLOT-14/CHAN-35 (is not EM) E= 450 t= -32846 Q= 131 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-10/SLOT-2/CHAN-93 (is not EM) E= 104 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-10/SLOT-3/CHAN-39 (is not EM) E= 108 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-10/SLOT-7/CHAN-69 (is not EM) E= 78 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-10/SLOT-8/CHAN-93 (is not EM) E= 81 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-10/SLOT-2/CHAN-93 (is not EM) E= 104 t= 2923 Q= 374 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-10/SLOT-3/CHAN-39 (is not EM) E= 108 t= 12394 Q= 782 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-10/SLOT-7/CHAN-69 (is not EM) E= 78 t= -11061 Q= 8888 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-10/SLOT-8/CHAN-93 (is not EM) E= 81 t= -3893 Q= 172 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-10/SLOT-11/CHAN-126 (is not EM) E= 297 t= -15076 Q= 77 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-11/SLOT-4/CHAN-97 (is not EM) E= 158 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-11/SLOT-7/CHAN-24 (is not EM) E= 93 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-11/SLOT-8/CHAN-3 (is not EM) E= 101 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-11/SLOT-4/CHAN-97 (is not EM) E= 158 t= -2510 Q= 320 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-11/SLOT-7/CHAN-24 (is not EM) E= 93 t= -2579 Q= 116 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-11/SLOT-8/CHAN-3 (is not EM) E= 101 t= -4830 Q= 913 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-11/SLOT-11/CHAN-20 (is not EM) E= 306 t= -16866 Q= 339 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-12/SLOT-5/CHAN-42 (is not EM) E= 90 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-12/SLOT-5/CHAN-71 (is not EM) E= 147 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-12/SLOT-8/CHAN-110 (is not EM) E= 96 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-12/SLOT-5/CHAN-42 (is not EM) E= 90 t= -1088 Q= 46 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-12/SLOT-5/CHAN-71 (is not EM) E= 147 t= 2490 Q= 45 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-12/SLOT-8/CHAN-110 (is not EM) E= 96 t= -5316 Q= 24104 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-12/SLOT-12/CHAN-46 (is not EM) E= 443 t= -666 Q= 130 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-12/SLOT-12/CHAN-49 (is not EM) E= 250 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-12/SLOT-12/CHAN-49 (is not EM) E= 250 t= 2037 Q= 410 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-12/SLOT-12/CHAN-98 (is not EM) E= 450 t= 6959 Q= 89 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-12/SLOT-14/CHAN-53 (is not EM) E= 598 t= -62331 Q= 4674 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-13/SLOT-4/CHAN-127 (is not EM) E= 88 t= 0 Q= 0 P=0xa5 G=0 Channel: BARREL/C-SIDE/FT-13/SLOT-7/CHAN-100 (is not EM) E= 75 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-13/SLOT-7/CHAN-108 (is not EM) E= 84 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-13/SLOT-9/CHAN-75 (is not EM) E= 105 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-13/SLOT-7/CHAN-108 (is not EM) E= 84 t= 7773 Q= 318 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-13/SLOT-9/CHAN-75 (is not EM) E= 105 t= 2073 Q= 17 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-13/SLOT-10/CHAN-50 (is not EM) E= 548 t= -2389 Q= 4 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-13/SLOT-10/CHAN-62 (is not EM) E= 2174 t= 991 Q= 118 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-13/SLOT-10/CHAN-63 (is not EM) E= 1311 t= -872 Q= 91 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-13/SLOT-10/CHAN-119 (is not EM) E= 243 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-13/SLOT-11/CHAN-18 (is not EM) E= 236 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-13/SLOT-10/CHAN-119 (is not EM) E= 243 t= -1489 Q= 21 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-13/SLOT-11/CHAN-18 (is not EM) E= 236 t= -17503 Q= 25 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-13/SLOT-13/CHAN-43 (is not EM) E= -306 t= -5908 Q= 203 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-13/SLOT-14/CHAN-49 (is not EM) E= 441 t= -75823 Q= 4506 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-14/SLOT-2/CHAN-63 (is not EM) E= 116 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-14/SLOT-3/CHAN-19 (is not EM) E= 87 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-14/SLOT-5/CHAN-77 (is not EM) E= 109 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-14/SLOT-7/CHAN-25 (is not EM) E= -134 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-14/SLOT-7/CHAN-42 (is not EM) E= 140 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-14/SLOT-8/CHAN-29 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-4/CHAN-33 (is not EM) E= -92 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-4/CHAN-65 (is not EM) E= 170 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-5/CHAN-23 (is not EM) E= 156 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-5/CHAN-26 (is not EM) E= 97 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-5/CHAN-52 (is not EM) E= 150 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-7/CHAN-91 (is not EM) E= -117 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-7/CHAN-92 (is not EM) E= -80 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-8/CHAN-32 (is not EM) E= 86 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-8/CHAN-33 (is not EM) E= 124 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-9/CHAN-29 (is not EM) E= 130 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-15/SLOT-10/CHAN-50 (is not EM) E= 163 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-14/SLOT-2/CHAN-63 (is not EM) E= 116 t= -14512 Q= 587 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-14/SLOT-3/CHAN-19 (is not EM) E= 87 t= -9435 Q= 262 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-14/SLOT-5/CHAN-77 (is not EM) E= 109 t= -18072 Q= 553 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-14/SLOT-7/CHAN-25 (is not EM) E= -134 t= -10939 Q= 3639 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-14/SLOT-7/CHAN-42 (is not EM) E= 140 t= 3754 Q= 161 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-14/SLOT-8/CHAN-29 (is not EM) E= 91 t= 386 Q= 47 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-4/CHAN-33 (is not EM) E= -92 t= -13418 Q= 3061 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-4/CHAN-65 (is not EM) E= 170 t= -18301 Q= 3261 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-5/CHAN-23 (is not EM) E= 156 t= -15835 Q= 4672 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-5/CHAN-26 (is not EM) E= 97 t= -11927 Q= 947 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-5/CHAN-52 (is not EM) E= 150 t= 6141 Q= 719 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-7/CHAN-91 (is not EM) E= -117 t= 2171 Q= 5054 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-7/CHAN-92 (is not EM) E= -80 t= 2841 Q= 2438 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-8/CHAN-32 (is not EM) E= 86 t= 1822 Q= 425 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-8/CHAN-33 (is not EM) E= 124 t= 6596 Q= 388 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-9/CHAN-29 (is not EM) E= 130 t= -7374 Q= 1469 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-15/SLOT-10/CHAN-50 (is not EM) E= 163 t= 1145 Q= 152 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-15/SLOT-12/CHAN-37 (is not EM) E= -411 t= -4093 Q= 962 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-15/SLOT-13/CHAN-110 (is not EM) E= -299 t= 1377 Q= 4 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-16/SLOT-1/CHAN-22 (is not EM) E= 490 t= -2157 Q= 40 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-3/CHAN-62 (is not EM) E= -113 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-5/CHAN-92 (is not EM) E= 89 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-9/CHAN-59 (is not EM) E= -158 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-16/SLOT-10/CHAN-68 (is not EM) E= 115 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-3/CHAN-62 (is not EM) E= -113 t= -611 Q= 2482 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-5/CHAN-92 (is not EM) E= 89 t= -5470 Q= 101 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-9/CHAN-59 (is not EM) E= -158 t= 2975 Q= 124 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-16/SLOT-10/CHAN-68 (is not EM) E= 115 t= -24737 Q= 895 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-17/SLOT-6/CHAN-53 (is not EM) E= -69 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-17/SLOT-7/CHAN-37 (is not EM) E= 82 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-17/SLOT-12/CHAN-63 (is not EM) E= -241 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-5/CHAN-43 (is not EM) E= -137 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-5/CHAN-115 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-5/CHAN-116 (is not EM) E= 93 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-6/CHAN-72 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-6/CHAN-82 (is not EM) E= 65 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-10/CHAN-68 (is not EM) E= 128 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-18/SLOT-10/CHAN-69 (is not EM) E= 201 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-17/SLOT-7/CHAN-37 (is not EM) E= 82 t= -11120 Q= 218 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-17/SLOT-12/CHAN-63 (is not EM) E= -241 t= 32298 Q= 38 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-5/CHAN-43 (is not EM) E= -137 t= -3726 Q= 3192 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-5/CHAN-115 (is not EM) E= 91 t= -564 Q= 51 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-5/CHAN-116 (is not EM) E= 93 t= -852 Q= 299 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-6/CHAN-72 (is not EM) E= 94 t= 2942 Q= 133 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-6/CHAN-82 (is not EM) E= 65 t= 11686 Q= 18 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-10/CHAN-68 (is not EM) E= 128 t= -113 Q= 8 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-18/SLOT-10/CHAN-69 (is not EM) E= 201 t= 3058 Q= 1 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-18/SLOT-11/CHAN-114 (is not EM) E= 385 t= -18486 Q= 574 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-18/SLOT-11/CHAN-115 (is not EM) E= 398 t= -24975 Q= 649 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-19/SLOT-1/CHAN-78 (is not EM) E= -849 t= -2631 Q= 3366 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-19/SLOT-4/CHAN-5 (is not EM) E= -87 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-19/SLOT-4/CHAN-19 (is not EM) E= 99 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-19/SLOT-7/CHAN-81 (is not EM) E= 76 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-19/SLOT-9/CHAN-86 (is not EM) E= -85 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-19/SLOT-11/CHAN-53 (is not EM) E= 255 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-19/SLOT-4/CHAN-5 (is not EM) E= -87 t= -2231 Q= 1546 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-19/SLOT-4/CHAN-19 (is not EM) E= 99 t= -2895 Q= 108 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-19/SLOT-7/CHAN-81 (is not EM) E= 76 t= 2755 Q= 61 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-19/SLOT-9/CHAN-86 (is not EM) E= -85 t= -1769 Q= 15 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-19/SLOT-11/CHAN-53 (is not EM) E= 255 t= -19222 Q= 436 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-19/SLOT-13/CHAN-15 (is not EM) E= -335 t= -12371 Q= 6 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-20/SLOT-2/CHAN-65 (is not EM) E= -88 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-20/SLOT-4/CHAN-62 (is not EM) E= 100 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-20/SLOT-5/CHAN-124 (is not EM) E= 188 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-20/SLOT-6/CHAN-10 (is not EM) E= 106 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-20/SLOT-6/CHAN-110 (is not EM) E= 89 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-20/SLOT-12/CHAN-13 (is not EM) E= -239 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-20/SLOT-2/CHAN-65 (is not EM) E= -88 t= 8344 Q= 106 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-20/SLOT-4/CHAN-62 (is not EM) E= 100 t= 12344 Q= 610 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-20/SLOT-5/CHAN-124 (is not EM) E= 188 t= 6861 Q= 106 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-20/SLOT-6/CHAN-10 (is not EM) E= 106 t= 2281 Q= 15 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-20/SLOT-6/CHAN-110 (is not EM) E= 89 t= 407 Q= 70 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-20/SLOT-12/CHAN-13 (is not EM) E= -239 t= -9045 Q= 357 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-20/SLOT-13/CHAN-11 (is not EM) E= 322 t= -7242 Q= 11 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-21/SLOT-2/CHAN-114 (is not EM) E= 197 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-21/SLOT-5/CHAN-22 (is not EM) E= 162 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-21/SLOT-5/CHAN-23 (is not EM) E= 124 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-21/SLOT-9/CHAN-116 (is not EM) E= 131 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-21/SLOT-10/CHAN-88 (is not EM) E= 202 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-22/SLOT-2/CHAN-39 (is not EM) E= -88 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-22/SLOT-7/CHAN-119 (is not EM) E= 111 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-22/SLOT-8/CHAN-54 (is not EM) E= 97 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-23/SLOT-4/CHAN-122 (is not EM) E= 98 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-21/SLOT-2/CHAN-114 (is not EM) E= 197 t= 7048 Q= 110 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-21/SLOT-5/CHAN-22 (is not EM) E= 162 t= 392 Q= 310 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-21/SLOT-5/CHAN-23 (is not EM) E= 124 t= -2128 Q= 69 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-21/SLOT-9/CHAN-116 (is not EM) E= 131 t= -27322 Q= 517 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-21/SLOT-10/CHAN-88 (is not EM) E= 202 t= -54949 Q= 1135 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-22/SLOT-2/CHAN-39 (is not EM) E= -88 t= -17937 Q= 2472 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-22/SLOT-7/CHAN-119 (is not EM) E= 111 t= 7757 Q= 56 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-22/SLOT-8/CHAN-54 (is not EM) E= 97 t= -32247 Q= 386 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-23/SLOT-4/CHAN-122 (is not EM) E= 98 t= 15948 Q= 1358 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-23/SLOT-11/CHAN-31 (is not EM) E= 383 t= -2574 Q= 57 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-23/SLOT-12/CHAN-94 (is not EM) E= 295 t= 24295 Q= 128 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-23/SLOT-12/CHAN-124 (is not EM) E= 283 t= -1403 Q= 10 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-24/SLOT-1/CHAN-49 (is not EM) E= 536 t= 2965 Q= 966 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-24/SLOT-4/CHAN-107 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-24/SLOT-7/CHAN-98 (is not EM) E= 112 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-24/SLOT-9/CHAN-99 (is not EM) E= 90 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-24/SLOT-4/CHAN-107 (is not EM) E= 91 t= 14472 Q= 1279 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-24/SLOT-7/CHAN-98 (is not EM) E= 112 t= -14496 Q= 801 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-24/SLOT-9/CHAN-99 (is not EM) E= 90 t= 1575 Q= 575 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-24/SLOT-13/CHAN-7 (is not EM) E= 286 t= -11689 Q= 65 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-25/SLOT-6/CHAN-69 (is not EM) E= 76 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-25/SLOT-6/CHAN-69 (is not EM) E= 76 t= -13579 Q= 260 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-25/SLOT-10/CHAN-28 (is not EM) E= 274 t= -4818 Q= 26 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-26/SLOT-1/CHAN-42 (is not EM) E= 426 t= 554 Q= 1 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-26/SLOT-4/CHAN-121 (is not EM) E= 169 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-26/SLOT-4/CHAN-122 (is not EM) E= 168 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-26/SLOT-9/CHAN-9 (is not EM) E= 129 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-26/SLOT-9/CHAN-97 (is not EM) E= -233 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-26/SLOT-11/CHAN-76 (is not EM) E= 209 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-26/SLOT-4/CHAN-121 (is not EM) E= 169 t= -22097 Q= 7796 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-26/SLOT-4/CHAN-122 (is not EM) E= 168 t= -17438 Q= 4982 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-26/SLOT-9/CHAN-9 (is not EM) E= 129 t= 5714 Q= 79 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-26/SLOT-9/CHAN-97 (is not EM) E= -233 t= -1550 Q= 988 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-26/SLOT-11/CHAN-76 (is not EM) E= 209 t= -12663 Q= 645 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-26/SLOT-14/CHAN-4 (is not EM) E= 348 t= 32 Q= 62 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-26/SLOT-14/CHAN-59 (is not EM) E= -348 t= 3314 Q= 39 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-27/SLOT-8/CHAN-80 (is not EM) E= -87 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-27/SLOT-9/CHAN-38 (is not EM) E= 88 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-27/SLOT-9/CHAN-98 (is not EM) E= -95 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-27/SLOT-8/CHAN-80 (is not EM) E= -87 t= -3639 Q= 237 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-27/SLOT-9/CHAN-38 (is not EM) E= 88 t= -4250 Q= 27 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-27/SLOT-9/CHAN-98 (is not EM) E= -95 t= 5282 Q= 241 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-27/SLOT-12/CHAN-62 (is not EM) E= 257 t= 5016 Q= 84 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-28/SLOT-1/CHAN-89 (is not EM) E= 516 t= 1033 Q= 285 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-28/SLOT-7/CHAN-42 (is not EM) E= 104 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-28/SLOT-7/CHAN-72 (is not EM) E= 101 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-28/SLOT-8/CHAN-70 (is not EM) E= 190 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-28/SLOT-7/CHAN-42 (is not EM) E= 104 t= -15808 Q= 936 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-28/SLOT-7/CHAN-72 (is not EM) E= 101 t= 1040 Q= 197 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-28/SLOT-8/CHAN-70 (is not EM) E= 190 t= -1215 Q= 51 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-28/SLOT-8/CHAN-71 (is not EM) E= 282 t= -100 Q= 396 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-28/SLOT-9/CHAN-78 (is not EM) E= 119 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-28/SLOT-10/CHAN-31 (is not EM) E= 183 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-28/SLOT-9/CHAN-78 (is not EM) E= 119 t= -9856 Q= 3 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-28/SLOT-10/CHAN-31 (is not EM) E= 183 t= -3445 Q= 39 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-29/SLOT-3/CHAN-21 (is not EM) E= 85 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-29/SLOT-4/CHAN-83 (is not EM) E= -99 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-29/SLOT-7/CHAN-59 (is not EM) E= -89 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-29/SLOT-4/CHAN-83 (is not EM) E= -99 t= 4002 Q= 161 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-29/SLOT-7/CHAN-59 (is not EM) E= -89 t= -4916 Q= 1467 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-29/SLOT-12/CHAN-78 (is not EM) E= 414 t= -10922 Q= 130 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-29/SLOT-13/CHAN-106 (is not EM) E= 455 t= -57350 Q= 3140 P=0x20a5 G=0 -Channel: BARREL/C-SIDE/FT-30/SLOT-7/CHAN-120 (is not EM) E= 86 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-30/SLOT-8/CHAN-89 (is not EM) E= 106 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-30/SLOT-8/CHAN-90 (is not EM) E= 104 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/C-SIDE/FT-30/SLOT-8/CHAN-91 (is not EM) E= 80 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/C-SIDE/FT-30/SLOT-7/CHAN-120 (is not EM) E= 86 t= -10520 Q= 24617 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-30/SLOT-8/CHAN-89 (is not EM) E= 106 t= -2716 Q= 81 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-30/SLOT-8/CHAN-90 (is not EM) E= 104 t= 3438 Q= 15 P=0x20a5 G=0 +Channel: BARREL/C-SIDE/FT-30/SLOT-8/CHAN-91 (is not EM) E= 80 t= 5404 Q= 117 P=0x20a5 G=0 Channel: BARREL/C-SIDE/FT-30/SLOT-14/CHAN-48 (is not EM) E= 534 t= -4010 Q= 13 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-0/SLOT-1/CHAN-30 (is not EM) E= 876 t= -17183 Q= 4398 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-0/SLOT-1/CHAN-108 (is not EM) E= 1681 t= -18483 Q= 24332 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-0/SLOT-2/CHAN-96 (is not EM) E= 136 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-0/SLOT-9/CHAN-50 (is not EM) E= 254 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-0/SLOT-11/CHAN-45 (is not EM) E= 244 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-0/SLOT-2/CHAN-96 (is not EM) E= 136 t= -17131 Q= 2666 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-0/SLOT-9/CHAN-50 (is not EM) E= 254 t= -16448 Q= 608 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-0/SLOT-11/CHAN-45 (is not EM) E= 244 t= -27040 Q= 4937 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-0/SLOT-11/CHAN-80 (is not EM) E= 528 t= -22354 Q= 1949 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-0/SLOT-11/CHAN-124 (is not EM) E= 246 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-0/SLOT-12/CHAN-45 (is not EM) E= 240 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-0/SLOT-11/CHAN-124 (is not EM) E= 246 t= -15999 Q= 1278 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-0/SLOT-12/CHAN-45 (is not EM) E= 240 t= -6465 Q= 1 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-1/SLOT-1/CHAN-49 (is not EM) E= 538 t= -873 Q= 72 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-1/SLOT-1/CHAN-62 (is not EM) E= -443 t= 2910 Q= 8379 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-1/SLOT-2/CHAN-48 (is not EM) E= 87 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-1/SLOT-4/CHAN-8 (is not EM) E= 158 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-1/SLOT-4/CHAN-46 (is not EM) E= -94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-1/SLOT-4/CHAN-56 (is not EM) E= 117 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-1/SLOT-4/CHAN-57 (is not EM) E= 89 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-1/SLOT-4/CHAN-106 (is not EM) E= 118 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-1/SLOT-6/CHAN-86 (is not EM) E= -73 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-1/SLOT-10/CHAN-50 (is not EM) E= 170 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-1/SLOT-10/CHAN-51 (is not EM) E= 161 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-1/SLOT-2/CHAN-48 (is not EM) E= 87 t= 14891 Q= 293 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-1/SLOT-4/CHAN-8 (is not EM) E= 158 t= -6855 Q= 955 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-1/SLOT-4/CHAN-46 (is not EM) E= -94 t= -10354 Q= 2112 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-1/SLOT-4/CHAN-56 (is not EM) E= 117 t= -18226 Q= 1568 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-1/SLOT-4/CHAN-57 (is not EM) E= 89 t= -9804 Q= 558 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-1/SLOT-4/CHAN-106 (is not EM) E= 118 t= 683 Q= 99 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-1/SLOT-6/CHAN-86 (is not EM) E= -73 t= -5161 Q= 587 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-1/SLOT-10/CHAN-50 (is not EM) E= 170 t= 1592 Q= 118 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-1/SLOT-10/CHAN-51 (is not EM) E= 161 t= -3885 Q= 62 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-1/SLOT-12/CHAN-21 (is not EM) E= -287 t= 673 Q= 3 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-1/SLOT-12/CHAN-97 (is not EM) E= 303 t= -7884 Q= 147 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-1/SLOT-14/CHAN-12 (is not EM) E= 404 t= -13145 Q= 99 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-2/SLOT-7/CHAN-26 (is not EM) E= -75 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-2/SLOT-7/CHAN-93 (is not EM) E= 195 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-2/SLOT-7/CHAN-26 (is not EM) E= -75 t= 2567 Q= 647 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-2/SLOT-7/CHAN-93 (is not EM) E= 195 t= -20620 Q= 5306 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-2/SLOT-8/CHAN-75 (is not EM) E= 76 t= 0 Q= 0 P=0xa5 G=0 Channel: BARREL/A-SIDE/FT-2/SLOT-9/CHAN-124 (is not EM) E= 394 t= -5328 Q= 63 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-2/SLOT-10/CHAN-23 (is not EM) E= 230 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-2/SLOT-10/CHAN-23 (is not EM) E= 230 t= 8239 Q= 52 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-2/SLOT-13/CHAN-110 (is not EM) E= 343 t= -18814 Q= 107 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-3/SLOT-3/CHAN-43 (is not EM) E= 218 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-3/SLOT-3/CHAN-44 (is not EM) E= 103 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-3/SLOT-5/CHAN-61 (is not EM) E= 107 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-3/SLOT-5/CHAN-62 (is not EM) E= 92 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-3/SLOT-6/CHAN-11 (is not EM) E= 67 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-3/SLOT-9/CHAN-13 (is not EM) E= 82 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-3/SLOT-9/CHAN-22 (is not EM) E= 200 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-3/SLOT-9/CHAN-24 (is not EM) E= 89 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-3/SLOT-3/CHAN-43 (is not EM) E= 218 t= -14633 Q= 5191 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-3/SLOT-3/CHAN-44 (is not EM) E= 103 t= -24140 Q= 4023 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-3/SLOT-5/CHAN-61 (is not EM) E= 107 t= 10019 Q= 651 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-3/SLOT-5/CHAN-62 (is not EM) E= 92 t= 10246 Q= 1969 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-3/SLOT-6/CHAN-11 (is not EM) E= 67 t= -3419 Q= 133 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-3/SLOT-9/CHAN-13 (is not EM) E= 82 t= -15515 Q= 824 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-3/SLOT-9/CHAN-22 (is not EM) E= 200 t= -14632 Q= 880 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-3/SLOT-9/CHAN-24 (is not EM) E= 89 t= -1509 Q= 279 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-3/SLOT-11/CHAN-55 (is not EM) E= 279 t= -17317 Q= 1186 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-3/SLOT-12/CHAN-60 (is not EM) E= 256 t= 26480 Q= 847 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-4/SLOT-2/CHAN-1 (is not EM) E= 114 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-4/SLOT-2/CHAN-1 (is not EM) E= 114 t= -23330 Q= 2624 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-4/SLOT-2/CHAN-2 (is not EM) E= 445 t= -14864 Q= 21228 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-4/SLOT-5/CHAN-113 (is not EM) E= -108 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-4/SLOT-8/CHAN-30 (is not EM) E= -82 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-4/SLOT-9/CHAN-115 (is not EM) E= -163 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-4/SLOT-10/CHAN-100 (is not EM) E= 239 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-4/SLOT-11/CHAN-36 (is not EM) E= 253 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-4/SLOT-5/CHAN-113 (is not EM) E= -108 t= -1538 Q= 227 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-4/SLOT-8/CHAN-30 (is not EM) E= -82 t= -8248 Q= 649 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-4/SLOT-9/CHAN-115 (is not EM) E= -163 t= 15388 Q= 21 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-4/SLOT-10/CHAN-100 (is not EM) E= 239 t= 9068 Q= 32 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-4/SLOT-11/CHAN-36 (is not EM) E= 253 t= 12543 Q= 132 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-4/SLOT-11/CHAN-112 (is not EM) E= 429 t= 9387 Q= 178 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-3/CHAN-37 (is not EM) E= 98 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-3/CHAN-38 (is not EM) E= 88 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-3/CHAN-88 (is not EM) E= -223 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-3/CHAN-89 (is not EM) E= 86 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-5/CHAN-108 (is not EM) E= 131 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-5/CHAN-109 (is not EM) E= 119 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-9/CHAN-111 (is not EM) E= -122 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-9/CHAN-125 (is not EM) E= 164 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-12/CHAN-84 (is not EM) E= 245 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-3/CHAN-37 (is not EM) E= 98 t= -8992 Q= 160 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-3/CHAN-38 (is not EM) E= 88 t= -2202 Q= 132 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-3/CHAN-88 (is not EM) E= -223 t= -5887 Q= 740 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-3/CHAN-89 (is not EM) E= 86 t= -8553 Q= 567 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-5/CHAN-108 (is not EM) E= 131 t= -13720 Q= 36691 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-5/CHAN-109 (is not EM) E= 119 t= -15590 Q= 65535 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-9/CHAN-111 (is not EM) E= -122 t= -1226 Q= 79 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-9/CHAN-125 (is not EM) E= 164 t= -22995 Q= 79 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-12/CHAN-84 (is not EM) E= 245 t= -2425 Q= 71 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-5/SLOT-12/CHAN-114 (is not EM) E= 264 t= -24978 Q= 627 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-5/SLOT-12/CHAN-117 (is not EM) E= 306 t= -35988 Q= 2135 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-5/SLOT-12/CHAN-118 (is not EM) E= 277 t= -25871 Q= 1684 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-5/SLOT-12/CHAN-121 (is not EM) E= 530 t= -21837 Q= 2488 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-5/SLOT-12/CHAN-122 (is not EM) E= 242 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-5/SLOT-12/CHAN-122 (is not EM) E= 242 t= -8953 Q= 603 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-5/SLOT-13/CHAN-49 (is not EM) E= 338 t= 3321 Q= 70 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-5/SLOT-14/CHAN-24 (is not EM) E= 355 t= -10080 Q= 13 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-6/SLOT-1/CHAN-43 (is not EM) E= 831 t= -22367 Q= 1975 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-6/SLOT-1/CHAN-101 (is not EM) E= 1334 t= -2284 Q= 241 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-3/CHAN-26 (is not EM) E= 88 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-4/CHAN-24 (is not EM) E= 89 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-4/CHAN-25 (is not EM) E= 224 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-4/CHAN-26 (is not EM) E= 123 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-8/CHAN-1 (is not EM) E= 92 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-8/CHAN-2 (is not EM) E= 86 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-8/CHAN-73 (is not EM) E= 153 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-8/CHAN-74 (is not EM) E= 118 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-3/CHAN-26 (is not EM) E= 88 t= -2783 Q= 163 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-4/CHAN-24 (is not EM) E= 89 t= -12376 Q= 2805 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-4/CHAN-25 (is not EM) E= 224 t= -18901 Q= 6307 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-4/CHAN-26 (is not EM) E= 123 t= -21147 Q= 2924 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-8/CHAN-1 (is not EM) E= 92 t= -734 Q= 248 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-8/CHAN-2 (is not EM) E= 86 t= 6399 Q= 62 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-8/CHAN-73 (is not EM) E= 153 t= -8967 Q= 1311 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-8/CHAN-74 (is not EM) E= 118 t= -2229 Q= 3543 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-6/SLOT-8/CHAN-75 (is not EM) E= 345 t= 219 Q= 280 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-6/SLOT-8/CHAN-76 (is not EM) E= 365 t= -501 Q= 315 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-8/CHAN-77 (is not EM) E= 226 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-8/CHAN-78 (is not EM) E= 115 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-8/CHAN-79 (is not EM) E= 82 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-8/CHAN-80 (is not EM) E= 84 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-9/CHAN-43 (is not EM) E= -140 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-6/SLOT-11/CHAN-74 (is not EM) E= 239 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-8/CHAN-77 (is not EM) E= 226 t= 1243 Q= 298 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-8/CHAN-78 (is not EM) E= 115 t= -6277 Q= 202 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-8/CHAN-79 (is not EM) E= 82 t= -1562 Q= 62 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-8/CHAN-80 (is not EM) E= 84 t= -6753 Q= 269 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-9/CHAN-43 (is not EM) E= -140 t= -8028 Q= 43 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-6/SLOT-11/CHAN-74 (is not EM) E= 239 t= -43361 Q= 11970 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-6/SLOT-12/CHAN-77 (is not EM) E= 346 t= -11145 Q= 1044 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-6/SLOT-13/CHAN-50 (is not EM) E= -351 t= -4018 Q= 171 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-6/SLOT-13/CHAN-91 (is not EM) E= 387 t= -17483 Q= 86 P=0x20a5 G=0 @@ -2213,158 +2213,158 @@ Channel: BARREL/A-SIDE/FT-6/SLOT-14/CHAN-1 (is not EM) E= 361 t= 10339 Q= 41 P=0 Channel: BARREL/A-SIDE/FT-6/SLOT-14/CHAN-2 (is not EM) E= 527 t= 10441 Q= 150 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-6/SLOT-14/CHAN-4 (is not EM) E= 377 t= 4393 Q= 35 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-6/SLOT-14/CHAN-22 (is not EM) E= 381 t= -2798 Q= 60 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-7/SLOT-2/CHAN-118 (is not EM) E= 189 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-7/SLOT-2/CHAN-119 (is not EM) E= 112 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-7/SLOT-3/CHAN-69 (is not EM) E= 130 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-7/SLOT-4/CHAN-27 (is not EM) E= 215 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-7/SLOT-4/CHAN-73 (is not EM) E= 92 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-7/SLOT-7/CHAN-89 (is not EM) E= 82 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-7/SLOT-9/CHAN-83 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-7/SLOT-2/CHAN-118 (is not EM) E= 189 t= -16927 Q= 7399 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-7/SLOT-2/CHAN-119 (is not EM) E= 112 t= -13101 Q= 1350 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-7/SLOT-3/CHAN-69 (is not EM) E= 130 t= -16342 Q= 2679 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-7/SLOT-4/CHAN-27 (is not EM) E= 215 t= 7345 Q= 7439 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-7/SLOT-4/CHAN-73 (is not EM) E= 92 t= -14542 Q= 324 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-7/SLOT-7/CHAN-89 (is not EM) E= 82 t= -1081 Q= 696 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-7/SLOT-9/CHAN-83 (is not EM) E= 91 t= -5023 Q= 42 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-7/SLOT-12/CHAN-14 (is not EM) E= 478 t= 24833 Q= 669 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-7/SLOT-14/CHAN-20 (is not EM) E= 316 t= 3054 Q= 19 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-8/SLOT-3/CHAN-4 (is not EM) E= 226 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-8/SLOT-3/CHAN-4 (is not EM) E= 226 t= -12166 Q= 8820 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-8/SLOT-3/CHAN-5 (is not EM) E= 314 t= -13706 Q= 13072 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-8/SLOT-9/CHAN-23 (is not EM) E= 90 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-8/SLOT-9/CHAN-23 (is not EM) E= 90 t= -10680 Q= 358 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-8/SLOT-11/CHAN-32 (is not EM) E= 387 t= -24210 Q= 1285 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-8/SLOT-13/CHAN-95 (is not EM) E= 288 t= 1719 Q= 29 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-9/SLOT-4/CHAN-72 (is not EM) E= 108 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-9/SLOT-4/CHAN-73 (is not EM) E= 131 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-9/SLOT-9/CHAN-82 (is not EM) E= -171 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-2/CHAN-29 (is not EM) E= 119 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-2/CHAN-30 (is not EM) E= 100 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-2/CHAN-76 (is not EM) E= 112 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-2/CHAN-77 (is not EM) E= 190 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-2/CHAN-78 (is not EM) E= 97 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-4/CHAN-80 (is not EM) E= 90 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-5/CHAN-51 (is not EM) E= 95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-6/CHAN-65 (is not EM) E= 87 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-6/CHAN-66 (is not EM) E= 75 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-7/CHAN-101 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-10/SLOT-11/CHAN-13 (is not EM) E= 248 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-9/SLOT-4/CHAN-72 (is not EM) E= 108 t= -14238 Q= 2242 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-9/SLOT-4/CHAN-73 (is not EM) E= 131 t= -19483 Q= 2941 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-9/SLOT-9/CHAN-82 (is not EM) E= -171 t= -3498 Q= 86 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-2/CHAN-29 (is not EM) E= 119 t= 9451 Q= 164 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-2/CHAN-30 (is not EM) E= 100 t= 1427 Q= 51 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-2/CHAN-76 (is not EM) E= 112 t= 18793 Q= 159 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-2/CHAN-77 (is not EM) E= 190 t= 820 Q= 175 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-2/CHAN-78 (is not EM) E= 97 t= 3184 Q= 196 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-4/CHAN-80 (is not EM) E= 90 t= -20800 Q= 3128 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-5/CHAN-51 (is not EM) E= 95 t= -16592 Q= 8916 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-6/CHAN-65 (is not EM) E= 87 t= 3600 Q= 116 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-6/CHAN-66 (is not EM) E= 75 t= -6467 Q= 116 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-7/CHAN-101 (is not EM) E= 94 t= 8372 Q= 1641 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-10/SLOT-11/CHAN-13 (is not EM) E= 248 t= -6440 Q= 98 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-10/SLOT-11/CHAN-69 (is not EM) E= 393 t= 4742 Q= 14 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-7/CHAN-11 (is not EM) E= 107 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-8/CHAN-106 (is not EM) E= 107 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-10/CHAN-120 (is not EM) E= -155 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-11/SLOT-11/CHAN-16 (is not EM) E= 236 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-7/CHAN-11 (is not EM) E= 107 t= 9043 Q= 2255 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-8/CHAN-106 (is not EM) E= 107 t= -13162 Q= 2522 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-10/CHAN-120 (is not EM) E= -155 t= 9750 Q= 612 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-11/SLOT-11/CHAN-16 (is not EM) E= 236 t= -8686 Q= 215 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-11/SLOT-13/CHAN-82 (is not EM) E= 452 t= -6270 Q= 15 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-3/CHAN-84 (is not EM) E= 104 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-3/CHAN-84 (is not EM) E= 104 t= 4237 Q= 165 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-12/SLOT-4/CHAN-7 (is not EM) E= -85 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-4/CHAN-100 (is not EM) E= 111 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-6/CHAN-18 (is not EM) E= 91 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-9/CHAN-36 (is not EM) E= 158 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-12/SLOT-9/CHAN-37 (is not EM) E= 105 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-4/CHAN-100 (is not EM) E= 111 t= 17823 Q= 1731 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-6/CHAN-18 (is not EM) E= 91 t= -12081 Q= 496 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-9/CHAN-36 (is not EM) E= 158 t= 19082 Q= 484 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-12/SLOT-9/CHAN-37 (is not EM) E= 105 t= 12966 Q= 102 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-12/SLOT-11/CHAN-116 (is not EM) E= 401 t= -3358 Q= 6 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-13/SLOT-1/CHAN-41 (is not EM) E= 566 t= 11828 Q= 4 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-13/SLOT-1/CHAN-42 (is not EM) E= 415 t= 8711 Q= 795 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-13/SLOT-12/CHAN-71 (is not EM) E= 278 t= -7046 Q= 42 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-13/SLOT-13/CHAN-18 (is not EM) E= -462 t= 19870 Q= 59 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-14/SLOT-1/CHAN-115 (is not EM) E= 971 t= 1707 Q= 408 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-4/CHAN-89 (is not EM) E= 95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-4/CHAN-106 (is not EM) E= 110 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-5/CHAN-45 (is not EM) E= 88 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-6/CHAN-10 (is not EM) E= 72 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-4/CHAN-89 (is not EM) E= 95 t= -12406 Q= 894 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-4/CHAN-106 (is not EM) E= 110 t= -15449 Q= 6590 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-5/CHAN-45 (is not EM) E= 88 t= 3663 Q= 27 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-6/CHAN-10 (is not EM) E= 72 t= 13604 Q= 136 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-14/SLOT-12/CHAN-54 (is not EM) E= 335 t= 4849 Q= 111 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-14/SLOT-12/CHAN-121 (is not EM) E= -254 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-15/SLOT-6/CHAN-98 (is not EM) E= 86 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-14/SLOT-12/CHAN-121 (is not EM) E= -254 t= 11017 Q= 1046 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-15/SLOT-6/CHAN-98 (is not EM) E= 86 t= 8791 Q= 79 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-16/SLOT-2/CHAN-98 (is not EM) E= -81 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-16/SLOT-2/CHAN-99 (is not EM) E= -113 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-16/SLOT-6/CHAN-80 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-16/SLOT-8/CHAN-39 (is not EM) E= 197 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-16/SLOT-10/CHAN-98 (is not EM) E= 243 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-16/SLOT-2/CHAN-99 (is not EM) E= -113 t= 2291 Q= 4445 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-16/SLOT-6/CHAN-80 (is not EM) E= 94 t= 5902 Q= 4 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-16/SLOT-8/CHAN-39 (is not EM) E= 197 t= -12697 Q= 2831 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-16/SLOT-10/CHAN-98 (is not EM) E= 243 t= -10111 Q= 242 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-16/SLOT-14/CHAN-22 (is not EM) E= 317 t= -6039 Q= 9 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-17/SLOT-5/CHAN-111 (is not EM) E= 165 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-17/SLOT-5/CHAN-111 (is not EM) E= 165 t= 7418 Q= 38 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-17/SLOT-5/CHAN-112 (is not EM) E= 298 t= 1479 Q= 267 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-17/SLOT-5/CHAN-113 (is not EM) E= 151 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-17/SLOT-5/CHAN-114 (is not EM) E= 93 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-17/SLOT-6/CHAN-50 (is not EM) E= 77 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-17/SLOT-5/CHAN-113 (is not EM) E= 151 t= 5227 Q= 55 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-17/SLOT-5/CHAN-114 (is not EM) E= 93 t= -5966 Q= 176 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-17/SLOT-6/CHAN-50 (is not EM) E= 77 t= -5304 Q= 305 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-18/SLOT-4/CHAN-35 (is not EM) E= -87 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-18/SLOT-4/CHAN-36 (is not EM) E= -94 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-18/SLOT-4/CHAN-62 (is not EM) E= 95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-18/SLOT-5/CHAN-59 (is not EM) E= 102 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-18/SLOT-7/CHAN-8 (is not EM) E= 142 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-18/SLOT-10/CHAN-12 (is not EM) E= 166 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-18/SLOT-4/CHAN-36 (is not EM) E= -94 t= -9792 Q= 65535 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-18/SLOT-4/CHAN-62 (is not EM) E= 95 t= 8900 Q= 45 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-18/SLOT-5/CHAN-59 (is not EM) E= 102 t= -3684 Q= 75 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-18/SLOT-7/CHAN-8 (is not EM) E= 142 t= 6509 Q= 174 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-18/SLOT-10/CHAN-12 (is not EM) E= 166 t= 5836 Q= 11 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-18/SLOT-11/CHAN-91 (is not EM) E= 284 t= 21749 Q= 68 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-18/SLOT-12/CHAN-10 (is not EM) E= 292 t= 1240 Q= 135 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-19/SLOT-1/CHAN-16 (is not EM) E= 390 t= -4863 Q= 18454 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-19/SLOT-1/CHAN-57 (is not EM) E= 608 t= -18115 Q= 480 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-85 (is not EM) E= -89 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-7/CHAN-122 (is not EM) E= 122 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-7/CHAN-125 (is not EM) E= 99 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-8/CHAN-12 (is not EM) E= 107 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-19/SLOT-8/CHAN-107 (is not EM) E= 104 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-4/CHAN-85 (is not EM) E= -89 t= 1717 Q= 2835 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-7/CHAN-122 (is not EM) E= 122 t= -14501 Q= 2135 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-7/CHAN-125 (is not EM) E= 99 t= -13890 Q= 601 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-8/CHAN-12 (is not EM) E= 107 t= 5225 Q= 260 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-19/SLOT-8/CHAN-107 (is not EM) E= 104 t= 13293 Q= 1799 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-19/SLOT-9/CHAN-94 (is not EM) E= 81 t= 0 Q= 0 P=0xa5 G=0 Channel: BARREL/A-SIDE/FT-19/SLOT-10/CHAN-37 (is not EM) E= 347 t= -10905 Q= 398 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-20/SLOT-5/CHAN-46 (is not EM) E= 95 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-20/SLOT-5/CHAN-52 (is not EM) E= 97 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-20/SLOT-5/CHAN-46 (is not EM) E= 95 t= -4645 Q= 164 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-20/SLOT-5/CHAN-52 (is not EM) E= 97 t= 11225 Q= 222 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-20/SLOT-10/CHAN-51 (is not EM) E= -157 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-20/SLOT-10/CHAN-73 (is not EM) E= -103 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-20/SLOT-10/CHAN-73 (is not EM) E= -103 t= -234 Q= 61 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-20/SLOT-11/CHAN-63 (is not EM) E= 362 t= -12682 Q= 442 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-21/SLOT-6/CHAN-73 (is not EM) E= -77 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-21/SLOT-7/CHAN-49 (is not EM) E= 87 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-21/SLOT-10/CHAN-15 (is not EM) E= 224 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-21/SLOT-10/CHAN-40 (is not EM) E= 111 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-21/SLOT-12/CHAN-126 (is not EM) E= 226 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-21/SLOT-6/CHAN-73 (is not EM) E= -77 t= -375 Q= 275 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-21/SLOT-7/CHAN-49 (is not EM) E= 87 t= -19237 Q= 1084 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-21/SLOT-10/CHAN-15 (is not EM) E= 224 t= 9120 Q= 86 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-21/SLOT-10/CHAN-40 (is not EM) E= 111 t= -7261 Q= 142 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-21/SLOT-12/CHAN-126 (is not EM) E= 226 t= 4826 Q= 118 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-21/SLOT-13/CHAN-70 (is not EM) E= 373 t= 2912 Q= 34 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-22/SLOT-2/CHAN-86 (is not EM) E= 120 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-22/SLOT-5/CHAN-6 (is not EM) E= 113 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-22/SLOT-6/CHAN-103 (is not EM) E= 124 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-22/SLOT-7/CHAN-41 (is not EM) E= 144 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-22/SLOT-7/CHAN-42 (is not EM) E= 205 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-22/SLOT-7/CHAN-43 (is not EM) E= 207 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-22/SLOT-7/CHAN-44 (is not EM) E= 94 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-22/SLOT-2/CHAN-86 (is not EM) E= 120 t= -1881 Q= 427 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-22/SLOT-5/CHAN-6 (is not EM) E= 113 t= 11950 Q= 169 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-22/SLOT-6/CHAN-103 (is not EM) E= 124 t= 359 Q= 118 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-22/SLOT-7/CHAN-41 (is not EM) E= 144 t= -21521 Q= 4240 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-22/SLOT-7/CHAN-42 (is not EM) E= 205 t= -19969 Q= 4545 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-22/SLOT-7/CHAN-43 (is not EM) E= 207 t= -21605 Q= 8362 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-22/SLOT-7/CHAN-44 (is not EM) E= 94 t= -23478 Q= 2828 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-22/SLOT-12/CHAN-124 (is not EM) E= 259 t= -26593 Q= 325 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-22/SLOT-13/CHAN-49 (is not EM) E= 345 t= -26112 Q= 385 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-22/SLOT-13/CHAN-50 (is not EM) E= 1045 t= -27853 Q= 1995 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-22/SLOT-13/CHAN-51 (is not EM) E= 298 t= -24790 Q= 81 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-23/SLOT-1/CHAN-49 (is not EM) E= 870 t= 2742 Q= 575 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-23/SLOT-2/CHAN-45 (is not EM) E= 103 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-23/SLOT-2/CHAN-46 (is not EM) E= 165 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-23/SLOT-2/CHAN-47 (is not EM) E= 153 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-23/SLOT-2/CHAN-45 (is not EM) E= 103 t= -7668 Q= 271 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-23/SLOT-2/CHAN-46 (is not EM) E= 165 t= -7177 Q= 782 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-23/SLOT-2/CHAN-47 (is not EM) E= 153 t= 1029 Q= 192 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-23/SLOT-2/CHAN-119 (is not EM) E= 83 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-23/SLOT-4/CHAN-43 (is not EM) E= 171 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-23/SLOT-4/CHAN-44 (is not EM) E= 131 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-23/SLOT-8/CHAN-49 (is not EM) E= 140 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-23/SLOT-4/CHAN-43 (is not EM) E= 171 t= 212 Q= 60 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-23/SLOT-4/CHAN-44 (is not EM) E= 131 t= 872 Q= 157 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-23/SLOT-8/CHAN-49 (is not EM) E= 140 t= 7079 Q= 2850 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-24/SLOT-1/CHAN-25 (is not EM) E= 361 t= -17591 Q= 1396 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-24/SLOT-7/CHAN-122 (is not EM) E= 87 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-24/SLOT-7/CHAN-122 (is not EM) E= 87 t= -13037 Q= 810 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-24/SLOT-8/CHAN-49 (is not EM) E= 259 t= -19358 Q= 6253 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-24/SLOT-8/CHAN-50 (is not EM) E= 262 t= -19152 Q= 12446 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-24/SLOT-9/CHAN-124 (is not EM) E= 410 t= 3732 Q= 56 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-24/SLOT-11/CHAN-3 (is not EM) E= 233 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-24/SLOT-11/CHAN-3 (is not EM) E= 233 t= 3257 Q= 99 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-24/SLOT-14/CHAN-41 (is not EM) E= 478 t= -35036 Q= 493 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-24/SLOT-14/CHAN-42 (is not EM) E= 486 t= -31847 Q= 558 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-25/SLOT-1/CHAN-63 (is not EM) E= 906 t= -356 Q= 990 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-25/SLOT-6/CHAN-89 (is not EM) E= 71 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-25/SLOT-6/CHAN-90 (is not EM) E= 151 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-25/SLOT-6/CHAN-91 (is not EM) E= 179 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-25/SLOT-6/CHAN-92 (is not EM) E= 86 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-25/SLOT-6/CHAN-111 (is not EM) E= 85 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-25/SLOT-6/CHAN-89 (is not EM) E= 71 t= -3681 Q= 10 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-25/SLOT-6/CHAN-90 (is not EM) E= 151 t= 3013 Q= 206 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-25/SLOT-6/CHAN-91 (is not EM) E= 179 t= -421 Q= 125 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-25/SLOT-6/CHAN-92 (is not EM) E= 86 t= -2108 Q= 31 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-25/SLOT-6/CHAN-111 (is not EM) E= 85 t= 20674 Q= 5694 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-25/SLOT-10/CHAN-39 (is not EM) E= 379 t= -22713 Q= 7267 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-25/SLOT-13/CHAN-9 (is not EM) E= 292 t= 37620 Q= 68 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-25/SLOT-13/CHAN-79 (is not EM) E= 843 t= -7359 Q= 24 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-26/SLOT-1/CHAN-42 (is not EM) E= 1386 t= 1019 Q= 565 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-26/SLOT-2/CHAN-42 (is not EM) E= 222 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-26/SLOT-2/CHAN-43 (is not EM) E= 158 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-26/SLOT-3/CHAN-50 (is not EM) E= 201 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-26/SLOT-3/CHAN-51 (is not EM) E= 122 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-26/SLOT-4/CHAN-111 (is not EM) E= 171 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-26/SLOT-7/CHAN-124 (is not EM) E= 167 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-26/SLOT-8/CHAN-100 (is not EM) E= 81 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-26/SLOT-2/CHAN-42 (is not EM) E= 222 t= -2534 Q= 24 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-26/SLOT-2/CHAN-43 (is not EM) E= 158 t= -4080 Q= 102 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-26/SLOT-3/CHAN-50 (is not EM) E= 201 t= -16456 Q= 5559 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-26/SLOT-3/CHAN-51 (is not EM) E= 122 t= -2701 Q= 1793 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-26/SLOT-4/CHAN-111 (is not EM) E= 171 t= -15811 Q= 1860 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-26/SLOT-7/CHAN-124 (is not EM) E= 167 t= -14638 Q= 943 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-26/SLOT-8/CHAN-100 (is not EM) E= 81 t= -9275 Q= 149 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-26/SLOT-11/CHAN-120 (is not EM) E= 262 t= -33920 Q= 673 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-26/SLOT-12/CHAN-61 (is not EM) E= 497 t= 24929 Q= 861 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-2/CHAN-15 (is not EM) E= 87 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-2/CHAN-35 (is not EM) E= 99 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-3/CHAN-95 (is not EM) E= 111 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-4/CHAN-2 (is not EM) E= 176 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-4/CHAN-4 (is not EM) E= 153 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-4/CHAN-7 (is not EM) E= 114 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-4/CHAN-9 (is not EM) E= 149 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-2/CHAN-15 (is not EM) E= 87 t= 5566 Q= 410 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-2/CHAN-35 (is not EM) E= 99 t= 23649 Q= 438 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-3/CHAN-95 (is not EM) E= 111 t= 8561 Q= 124 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-4/CHAN-2 (is not EM) E= 176 t= -10467 Q= 1693 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-4/CHAN-4 (is not EM) E= 153 t= -15905 Q= 2429 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-4/CHAN-7 (is not EM) E= 114 t= -12459 Q= 830 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-4/CHAN-9 (is not EM) E= 149 t= -21111 Q= 2175 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-27/SLOT-4/CHAN-10 (is not EM) E= 280 t= -14913 Q= 6024 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-4/CHAN-14 (is not EM) E= 109 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-4/CHAN-14 (is not EM) E= 109 t= -9399 Q= 1274 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-27/SLOT-5/CHAN-65 (is not EM) E= 89 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-5/CHAN-97 (is not EM) E= 108 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-6/CHAN-109 (is not EM) E= -70 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-8/CHAN-20 (is not EM) E= 154 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-27/SLOT-8/CHAN-21 (is not EM) E= 158 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-5/CHAN-97 (is not EM) E= 108 t= 9080 Q= 1067 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-6/CHAN-109 (is not EM) E= -70 t= -1518 Q= 559 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-8/CHAN-20 (is not EM) E= 154 t= -19118 Q= 3430 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-27/SLOT-8/CHAN-21 (is not EM) E= 158 t= -12765 Q= 1386 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-27/SLOT-11/CHAN-74 (is not EM) E= 260 t= 2563 Q= 132 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-27/SLOT-11/CHAN-85 (is not EM) E= 317 t= -12805 Q= 7 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-27/SLOT-14/CHAN-6 (is not EM) E= 394 t= -14633 Q= 91 P=0x20a5 G=0 @@ -2372,18 +2372,18 @@ Channel: BARREL/A-SIDE/FT-27/SLOT-14/CHAN-9 (is not EM) E= 464 t= -25505 Q= 129 Channel: BARREL/A-SIDE/FT-27/SLOT-14/CHAN-63 (is not EM) E= -448 t= 17516 Q= 601 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-28/SLOT-1/CHAN-14 (is not EM) E= 348 t= -2870 Q= 8 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-28/SLOT-1/CHAN-48 (is not EM) E= 415 t= -9050 Q= 45797 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-58 (is not EM) E= -102 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-59 (is not EM) E= -122 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-58 (is not EM) E= -102 t= -9624 Q= 569 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-28/SLOT-8/CHAN-59 (is not EM) E= -122 t= -9545 Q= 5743 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-28/SLOT-14/CHAN-44 (is not EM) E= -715 t= 14925 Q= 1246 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-29/SLOT-12/CHAN-29 (is not EM) E= 287 t= -36245 Q= 4365 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-29/SLOT-13/CHAN-79 (is not EM) E= 312 t= -1171 Q= 4 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-30/SLOT-2/CHAN-45 (is not EM) E= 123 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-30/SLOT-8/CHAN-94 (is not EM) E= 102 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-30/SLOT-8/CHAN-95 (is not EM) E= 154 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-30/SLOT-8/CHAN-96 (is not EM) E= 124 t= 0 Q= 0 P=0xa5 G=0 -Channel: BARREL/A-SIDE/FT-30/SLOT-10/CHAN-42 (is not EM) E= 117 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-30/SLOT-2/CHAN-45 (is not EM) E= 123 t= -21476 Q= 4243 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-30/SLOT-8/CHAN-94 (is not EM) E= 102 t= -17163 Q= 1415 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-30/SLOT-8/CHAN-95 (is not EM) E= 154 t= -25498 Q= 2122 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-30/SLOT-8/CHAN-96 (is not EM) E= 124 t= -23385 Q= 2166 P=0x20a5 G=0 +Channel: BARREL/A-SIDE/FT-30/SLOT-10/CHAN-42 (is not EM) E= 117 t= -15049 Q= 2605 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-31/SLOT-1/CHAN-6 (is not EM) E= 721 t= 1905 Q= 178 P=0x20a5 G=0 -Channel: BARREL/A-SIDE/FT-31/SLOT-7/CHAN-102 (is not EM) E= 80 t= 0 Q= 0 P=0xa5 G=0 +Channel: BARREL/A-SIDE/FT-31/SLOT-7/CHAN-102 (is not EM) E= 80 t= -9348 Q= 1961 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-31/SLOT-11/CHAN-100 (is not EM) E= 296 t= 25849 Q= 274 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-31/SLOT-12/CHAN-50 (is not EM) E= 325 t= -4461 Q= 82 P=0x20a5 G=0 Channel: BARREL/A-SIDE/FT-31/SLOT-12/CHAN-70 (is not EM) E= -436 t= -1350 Q= 901 P=0x20a5 G=0 @@ -2404,23 +2404,23 @@ Channel: ENDCAP/C-SIDE/FT-1/SLOT-12/CHAN-90 (is not EM) E= 756 t= -3778 Q= 607 P Channel: ENDCAP/C-SIDE/FT-1/SLOT-12/CHAN-95 (is not EM) E= 658 t= 2505 Q= 210 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-2/SLOT-2/CHAN-73 (is not EM) E= 288 t= -34187 Q= 153 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-2/SLOT-3/CHAN-45 (is not EM) E= 289 t= 27250 Q= 119 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-2/SLOT-4/CHAN-50 (is not EM) E= 195 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-2/SLOT-5/CHAN-35 (is not EM) E= 135 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-2/SLOT-6/CHAN-46 (is not EM) E= 123 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-2/SLOT-6/CHAN-47 (is not EM) E= 128 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-2/SLOT-6/CHAN-51 (is not EM) E= 181 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-2/SLOT-8/CHAN-87 (is not EM) E= 236 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-2/SLOT-4/CHAN-50 (is not EM) E= 195 t= -11203 Q= 181 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-2/SLOT-5/CHAN-35 (is not EM) E= 135 t= -3314 Q= 2241 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-2/SLOT-6/CHAN-46 (is not EM) E= 123 t= 8069 Q= 265 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-2/SLOT-6/CHAN-47 (is not EM) E= 128 t= -1027 Q= 88 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-2/SLOT-6/CHAN-51 (is not EM) E= 181 t= 4481 Q= 16 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-2/SLOT-8/CHAN-87 (is not EM) E= 236 t= -16051 Q= 6779 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-2/SLOT-15/CHAN-17 (is not EM) E= 903 t= -269 Q= 192 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-3/SLOT-8/CHAN-35 Barrel l/e/p= 0/184/0: E= 1379 t= 10570 Q= 327 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-3/SLOT-10/CHAN-8 Barrel l/e/p= 1/168/0: E= 6944 t= 1199 Q= 8 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-3/SLOT-10/CHAN-53 Barrel l/e/p= 2/80/0: E= 6528 t= 74 Q= 454 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-3/SLOT-10/CHAN-65 Barrel l/e/p= 1/152/0: E= 3552 t= -21409 Q= 76 P=0x20a5 G=1 -Channel: ENDCAP/C-SIDE/FT-4/SLOT-2/CHAN-60 (is not EM) E= 129 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-4/SLOT-2/CHAN-86 (is not EM) E= 132 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-4/SLOT-2/CHAN-118 (is not EM) E= 126 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-4/SLOT-2/CHAN-119 (is not EM) E= 176 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-4/SLOT-2/CHAN-60 (is not EM) E= 129 t= -3773 Q= 1757 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-4/SLOT-2/CHAN-86 (is not EM) E= 132 t= -2948 Q= 19 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-4/SLOT-2/CHAN-118 (is not EM) E= 126 t= 181 Q= 125 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-4/SLOT-2/CHAN-119 (is not EM) E= 176 t= 5473 Q= 26 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-4/SLOT-5/CHAN-39 (is not EM) E= 298 t= 2819 Q= 761 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-4/SLOT-5/CHAN-79 (is not EM) E= 237 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-4/SLOT-5/CHAN-79 (is not EM) E= 237 t= 3606 Q= 790 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-4/SLOT-5/CHAN-80 (is not EM) E= 317 t= -575 Q= 84 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-4/SLOT-6/CHAN-10 (is not EM) E= 336 t= 2289 Q= 662 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-4/SLOT-10/CHAN-34 (is not EM) E= 343 t= 10014 Q= 9 P=0x20a5 G=0 @@ -2441,19 +2441,19 @@ Channel: ENDCAP/C-SIDE/FT-6/SLOT-9/CHAN-0 Barrel l/e/p= 0/400/0: E= -5640 t= -80 Channel: ENDCAP/C-SIDE/FT-6/SLOT-10/CHAN-22 Barrel l/e/p= 1/352/0: E= 31866 t= 139 Q= 88 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-6/SLOT-10/CHAN-92 Barrel l/e/p= 1/320/0: E= -14713 t= -4927 Q= 40 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-7/SLOT-2/CHAN-82 (is not EM) E= 121 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-7/SLOT-3/CHAN-19 (is not EM) E= 184 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-7/SLOT-3/CHAN-20 (is not EM) E= 167 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-7/SLOT-3/CHAN-19 (is not EM) E= 184 t= 670 Q= 392 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-7/SLOT-3/CHAN-20 (is not EM) E= 167 t= -23 Q= 674 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-7/SLOT-4/CHAN-44 (is not EM) E= 471 t= -22652 Q= 49597 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-7/SLOT-11/CHAN-27 (is not EM) E= 530 t= -35858 Q= 6922 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-7/SLOT-11/CHAN-75 (is not EM) E= 504 t= -24187 Q= 3629 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-7/SLOT-12/CHAN-43 (is not EM) E= 497 t= 1647 Q= 341 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-8/SLOT-4/CHAN-86 (is not EM) E= 237 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-8/SLOT-5/CHAN-81 (is not EM) E= 238 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-8/SLOT-8/CHAN-11 (is not EM) E= 157 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-8/SLOT-4/CHAN-86 (is not EM) E= 237 t= -157 Q= 98 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-8/SLOT-5/CHAN-81 (is not EM) E= 238 t= -59 Q= 244 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-8/SLOT-8/CHAN-11 (is not EM) E= 157 t= -14418 Q= 188 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-8/SLOT-11/CHAN-26 (is not EM) E= 438 t= 4752 Q= 2 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-9/SLOT-2/CHAN-68 (is not EM) E= 525 t= 7228 Q= 123 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-9/SLOT-2/CHAN-72 (is not EM) E= 488 t= 4220 Q= 24 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-9/SLOT-7/CHAN-14 (is not EM) E= 145 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-9/SLOT-7/CHAN-14 (is not EM) E= 145 t= 22249 Q= 907 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-9/SLOT-10/CHAN-126 (is not EM) E= 430 t= -1380 Q= 223 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-9/SLOT-11/CHAN-1 (is not EM) E= 344 t= -14554 Q= 281 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-9/SLOT-11/CHAN-2 (is not EM) E= 327 t= -17377 Q= 1481 P=0x20a5 G=0 @@ -2464,12 +2464,12 @@ Channel: ENDCAP/C-SIDE/FT-10/SLOT-8/CHAN-28 Barrel l/e/p= 0/32/0: E= 6879 t= -17 Channel: ENDCAP/C-SIDE/FT-10/SLOT-9/CHAN-49 Barrel l/e/p= 2/56/0: E= -5816 t= -4875 Q= 532 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-10/SLOT-10/CHAN-83 Barrel l/e/p= 1/24/0: E= 1177 t= -470 Q= 171 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-10/SLOT-10/CHAN-104 Barrel l/e/p= 2/8/0: E= 7343 t= -28482 Q= 223 P=0x20a5 G=1 -Channel: ENDCAP/C-SIDE/FT-11/SLOT-3/CHAN-45 (is not EM) E= 176 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-11/SLOT-3/CHAN-77 (is not EM) E= 187 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-11/SLOT-5/CHAN-14 (is not EM) E= 222 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-11/SLOT-5/CHAN-64 (is not EM) E= 210 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-11/SLOT-3/CHAN-45 (is not EM) E= 176 t= 5105 Q= 78 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-11/SLOT-3/CHAN-77 (is not EM) E= 187 t= 7256 Q= 382 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-11/SLOT-5/CHAN-14 (is not EM) E= 222 t= 1081 Q= 1783 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-11/SLOT-5/CHAN-64 (is not EM) E= 210 t= 3287 Q= 2452 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-11/SLOT-5/CHAN-65 (is not EM) E= 538 t= 1969 Q= 9905 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-11/SLOT-5/CHAN-66 (is not EM) E= 223 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-11/SLOT-5/CHAN-66 (is not EM) E= 223 t= 138 Q= 2396 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-11/SLOT-6/CHAN-15 (is not EM) E= 824 t= 651 Q= 595 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-11/SLOT-6/CHAN-31 (is not EM) E= 665 t= 756 Q= 2912 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-11/SLOT-6/CHAN-32 (is not EM) E= 440 t= 1402 Q= 1270 P=0x20a5 G=0 @@ -2481,45 +2481,45 @@ Channel: ENDCAP/C-SIDE/FT-11/SLOT-11/CHAN-75 (is not EM) E= 561 t= 2141 Q= 155 P Channel: ENDCAP/C-SIDE/FT-11/SLOT-11/CHAN-98 (is not EM) E= 585 t= 539 Q= 36 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-11/SLOT-13/CHAN-58 (is not EM) E= 464 t= 1858 Q= 21 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-12/SLOT-8/CHAN-104 (is not EM) E= 405 t= -27150 Q= 4268 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-12/SLOT-8/CHAN-105 (is not EM) E= 227 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-12/SLOT-8/CHAN-105 (is not EM) E= 227 t= -9410 Q= 88 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-12/SLOT-12/CHAN-39 (is not EM) E= 623 t= 2463 Q= 34 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-12/SLOT-12/CHAN-127 (is not EM) E= 485 t= 5587 Q= 172 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-13/SLOT-2/CHAN-76 (is not EM) E= 130 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-13/SLOT-2/CHAN-76 (is not EM) E= 130 t= 8999 Q= 300 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-13/SLOT-5/CHAN-49 (is not EM) E= 552 t= 1150 Q= 4421 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-13/SLOT-5/CHAN-50 (is not EM) E= 252 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-13/SLOT-8/CHAN-57 (is not EM) E= 172 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-13/SLOT-5/CHAN-50 (is not EM) E= 252 t= -1632 Q= 1617 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-13/SLOT-8/CHAN-57 (is not EM) E= 172 t= 3556 Q= 22 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-13/SLOT-9/CHAN-91 (is not EM) E= 344 t= 8536 Q= 236 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-14/SLOT-2/CHAN-101 (is not EM) E= 120 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-14/SLOT-2/CHAN-103 (is not EM) E= 134 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-14/SLOT-2/CHAN-103 (is not EM) E= 134 t= -1120 Q= 202 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-14/SLOT-9/CHAN-53 (is not EM) E= 279 t= -26351 Q= 2241 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-14/SLOT-10/CHAN-33 (is not EM) E= -515 t= -3815 Q= 121 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-14/SLOT-11/CHAN-5 (is not EM) E= 625 t= -1497 Q= 134 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-14/SLOT-12/CHAN-69 (is not EM) E= 623 t= -2570 Q= 50 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-14/SLOT-12/CHAN-104 (is not EM) E= 521 t= -26264 Q= 2217 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-15/SLOT-3/CHAN-21 (is not EM) E= 199 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-15/SLOT-3/CHAN-21 (is not EM) E= 199 t= 8166 Q= 48 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-15/SLOT-4/CHAN-124 (is not EM) E= 306 t= -830 Q= 67 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-15/SLOT-5/CHAN-95 (is not EM) E= -132 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-15/SLOT-8/CHAN-35 (is not EM) E= 135 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-15/SLOT-9/CHAN-109 (is not EM) E= 229 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-15/SLOT-9/CHAN-113 (is not EM) E= 153 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-15/SLOT-5/CHAN-95 (is not EM) E= -132 t= -230 Q= 1680 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-15/SLOT-8/CHAN-35 (is not EM) E= 135 t= 1903 Q= 29 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-15/SLOT-9/CHAN-109 (is not EM) E= 229 t= -13113 Q= 52 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-15/SLOT-9/CHAN-113 (is not EM) E= 153 t= -13528 Q= 3279 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-15/SLOT-12/CHAN-87 (is not EM) E= -1080 t= -21439 Q= 65535 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-16/SLOT-7/CHAN-39 Barrel l/e/p= 0/496/0: E= 1309 t= -6642 Q= 59 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-16/SLOT-10/CHAN-101 Barrel l/e/p= 2/192/0: E= 5466 t= 4013 Q= 470 P=0x20a5 G=1 Channel: ENDCAP/C-SIDE/FT-17/SLOT-1/CHAN-28 (is not EM) E= 1217 t= 10481 Q= 2111 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-17/SLOT-8/CHAN-112 (is not EM) E= 201 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-17/SLOT-8/CHAN-112 (is not EM) E= 201 t= 15923 Q= 569 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-17/SLOT-9/CHAN-47 (is not EM) E= 261 t= -7009 Q= 22 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-17/SLOT-9/CHAN-73 (is not EM) E= 353 t= -13353 Q= 1497 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-17/SLOT-9/CHAN-75 (is not EM) E= 622 t= 981 Q= 61 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-17/SLOT-9/CHAN-124 (is not EM) E= 408 t= 5107 Q= 122 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-18/SLOT-4/CHAN-12 (is not EM) E= 275 t= -18776 Q= 15347 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-18/SLOT-7/CHAN-47 (is not EM) E= 445 t= 1501 Q= 799 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-19/SLOT-2/CHAN-38 (is not EM) E= 125 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-19/SLOT-4/CHAN-75 (is not EM) E= 200 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-19/SLOT-2/CHAN-38 (is not EM) E= 125 t= 27410 Q= 2138 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-19/SLOT-4/CHAN-75 (is not EM) E= 200 t= -1760 Q= 309 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-19/SLOT-5/CHAN-77 (is not EM) E= 264 t= -526 Q= 1467 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-20/SLOT-2/CHAN-115 (is not EM) E= 145 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-20/SLOT-2/CHAN-115 (is not EM) E= 145 t= -20805 Q= 105 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-20/SLOT-9/CHAN-29 (is not EM) E= -282 t= -440 Q= 3003 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-21/SLOT-7/CHAN-51 (is not EM) E= 200 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-21/SLOT-7/CHAN-52 (is not EM) E= 139 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-21/SLOT-7/CHAN-51 (is not EM) E= 200 t= 2041 Q= 686 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-21/SLOT-7/CHAN-52 (is not EM) E= 139 t= 3265 Q= 261 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-21/SLOT-11/CHAN-114 (is not EM) E= 533 t= -2478 Q= 121 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-21/SLOT-13/CHAN-0 (is not EM) E= -678 t= -5114 Q= 606 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-21/SLOT-14/CHAN-116 (is not EM) E= -1042 t= 593 Q= 65535 P=0x20a5 G=0 @@ -2531,33 +2531,33 @@ Channel: ENDCAP/C-SIDE/FT-23/SLOT-5/CHAN-16 (is not EM) E= 737 t= 1586 Q= 8111 P Channel: ENDCAP/C-SIDE/FT-23/SLOT-5/CHAN-17 (is not EM) E= 284 t= -338 Q= 330 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-23/SLOT-11/CHAN-73 (is not EM) E= 563 t= -2933 Q= 403 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-23/SLOT-11/CHAN-74 (is not EM) E= 433 t= 4491 Q= 427 P=0x20a5 G=0 -Channel: ENDCAP/C-SIDE/FT-24/SLOT-8/CHAN-22 (is not EM) E= 222 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/C-SIDE/FT-24/SLOT-8/CHAN-30 (is not EM) E= 163 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/C-SIDE/FT-24/SLOT-8/CHAN-22 (is not EM) E= 222 t= 2766 Q= 42 P=0x20a5 G=0 +Channel: ENDCAP/C-SIDE/FT-24/SLOT-8/CHAN-30 (is not EM) E= 163 t= 5797 Q= 58 P=0x20a5 G=0 Channel: ENDCAP/C-SIDE/FT-24/SLOT-12/CHAN-108 (is not EM) E= 1085 t= -581 Q= 119 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-0/SLOT-6/CHAN-39 (is not EM) E= 460 t= 1680 Q= 1166 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-0/SLOT-10/CHAN-15 (is not EM) E= 339 t= 5152 Q= 34 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-1/SLOT-3/CHAN-32 (is not EM) E= 162 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-1/SLOT-3/CHAN-32 (is not EM) E= 162 t= -1593 Q= 5 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-1/SLOT-3/CHAN-33 (is not EM) E= 326 t= -723 Q= 691 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-1/SLOT-3/CHAN-34 (is not EM) E= 168 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-1/SLOT-3/CHAN-34 (is not EM) E= 168 t= 3050 Q= 208 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-1/SLOT-3/CHAN-50 (is not EM) E= 310 t= 2578 Q= 138 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-1/SLOT-3/CHAN-51 (is not EM) E= 149 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-1/SLOT-3/CHAN-51 (is not EM) E= 149 t= 2531 Q= 153 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-1/SLOT-7/CHAN-74 (is not EM) E= -458 t= -4476 Q= 65535 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-1/SLOT-7/CHAN-75 (is not EM) E= -1316 t= -4097 Q= 65535 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-1/SLOT-8/CHAN-73 (is not EM) E= 395 t= 3977 Q= 16 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-1/SLOT-8/CHAN-74 (is not EM) E= 873 t= 2458 Q= 57 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-1/SLOT-10/CHAN-90 (is not EM) E= 439 t= 657 Q= 51 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-1/SLOT-13/CHAN-43 (is not EM) E= -742 t= -18504 Q= 65149 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-2/SLOT-3/CHAN-66 (is not EM) E= 186 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-2/SLOT-4/CHAN-35 (is not EM) E= 221 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-2/SLOT-3/CHAN-66 (is not EM) E= 186 t= 8871 Q= 124 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-2/SLOT-4/CHAN-35 (is not EM) E= 221 t= 6086 Q= 40 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-3/SLOT-8/CHAN-2 Barrel l/e/p= 0/64/0: E= -2349 t= 1825 Q= 311 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-3/SLOT-8/CHAN-26 Barrel l/e/p= 0/80/0: E= 2658 t= -7453 Q= 17 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-4/SLOT-1/CHAN-24 (is not EM) E= -921 t= 3232 Q= 783 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-4/SLOT-3/CHAN-101 (is not EM) E= 132 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-4/SLOT-3/CHAN-101 (is not EM) E= 132 t= -24967 Q= 4775 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-4/SLOT-3/CHAN-102 (is not EM) E= 460 t= -14229 Q= 14336 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-4/SLOT-3/CHAN-103 (is not EM) E= 269 t= -19829 Q= 7964 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-4/SLOT-3/CHAN-105 (is not EM) E= 157 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-4/SLOT-3/CHAN-105 (is not EM) E= 157 t= -9509 Q= 2219 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-4/SLOT-6/CHAN-78 (is not EM) E= 396 t= 2369 Q= 2278 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-4/SLOT-8/CHAN-106 (is not EM) E= 239 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-4/SLOT-8/CHAN-106 (is not EM) E= 239 t= -14837 Q= 163 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-4/SLOT-9/CHAN-67 (is not EM) E= 370 t= 3736 Q= 322 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-4/SLOT-10/CHAN-114 (is not EM) E= 599 t= -16317 Q= 741 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-4/SLOT-12/CHAN-46 (is not EM) E= 922 t= 44 Q= 27 P=0x20a5 G=0 @@ -2571,19 +2571,19 @@ Channel: ENDCAP/A-SIDE/FT-6/SLOT-10/CHAN-119 Barrel l/e/p= 1/32/0: E= 21271 t= - Channel: ENDCAP/A-SIDE/FT-6/SLOT-11/CHAN-29 Barrel l/e/p= 1/80/0: E= 23771 t= -668 Q= 38 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-6/SLOT-12/CHAN-103 Barrel l/e/p= 0/160/0: E= -6120 t= -3384 Q= 1 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-6/SLOT-15/CHAN-64 Barrel l/e/p= 0/496/0: E= -24503 t= -1570 Q= 214 P=0x20a5 G=1 -Channel: ENDCAP/A-SIDE/FT-7/SLOT-3/CHAN-37 (is not EM) E= 174 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-7/SLOT-3/CHAN-37 (is not EM) E= 174 t= 15907 Q= 5076 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-7/SLOT-11/CHAN-66 (is not EM) E= 696 t= 212 Q= 773 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-7/SLOT-11/CHAN-67 (is not EM) E= 647 t= -2725 Q= 435 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-7/SLOT-12/CHAN-13 (is not EM) E= 460 t= 1632 Q= 15 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-7/SLOT-13/CHAN-44 (is not EM) E= 468 t= -3307 Q= 310 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-8/SLOT-3/CHAN-23 (is not EM) E= 210 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-8/SLOT-3/CHAN-24 (is not EM) E= 167 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-8/SLOT-3/CHAN-23 (is not EM) E= 210 t= 917 Q= 415 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-8/SLOT-3/CHAN-24 (is not EM) E= 167 t= -1489 Q= 147 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-8/SLOT-6/CHAN-64 (is not EM) E= 603 t= 2265 Q= 91 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-8/SLOT-7/CHAN-69 (is not EM) E= 699 t= -32183 Q= 65535 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-8/SLOT-7/CHAN-70 (is not EM) E= 416 t= -34978 Q= 65535 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-8/SLOT-7/CHAN-86 (is not EM) E= 1029 t= -25970 Q= 65535 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-8/SLOT-10/CHAN-85 (is not EM) E= 411 t= -3243 Q= 48 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-8/SLOT-11/CHAN-67 (is not EM) E= 438 t= 5084 Q= 21 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-8/SLOT-11/CHAN-67 (is not EM) E= 438 t= 0 Q= 0 P=0xa5 G=0 Channel: ENDCAP/A-SIDE/FT-8/SLOT-11/CHAN-80 (is not EM) E= 606 t= -4255 Q= 54 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-8/SLOT-12/CHAN-34 (is not EM) E= 447 t= 570 Q= 16 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-8/SLOT-13/CHAN-29 (is not EM) E= -615 t= -8137 Q= 2115 P=0x20a5 G=0 @@ -2591,8 +2591,8 @@ Channel: ENDCAP/A-SIDE/FT-8/SLOT-13/CHAN-39 (is not EM) E= 1046 t= -29765 Q= 118 Channel: ENDCAP/A-SIDE/FT-8/SLOT-13/CHAN-52 (is not EM) E= 669 t= -34674 Q= 6685 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-8/SLOT-13/CHAN-81 (is not EM) E= -593 t= -12676 Q= 3924 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-9/SLOT-4/CHAN-110 (is not EM) E= 690 t= -8540 Q= 490 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-9/SLOT-8/CHAN-84 (is not EM) E= 139 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-9/SLOT-8/CHAN-85 (is not EM) E= 174 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-9/SLOT-8/CHAN-84 (is not EM) E= 139 t= 1031 Q= 67 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-9/SLOT-8/CHAN-85 (is not EM) E= 174 t= -1559 Q= 532 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-9/SLOT-9/CHAN-94 (is not EM) E= 447 t= -668 Q= 45 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-9/SLOT-11/CHAN-54 (is not EM) E= 428 t= 4215 Q= 22 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-9/SLOT-15/CHAN-16 (is not EM) E= 936 t= -39729 Q= 28013 P=0x20a5 G=0 @@ -2605,20 +2605,20 @@ Channel: ENDCAP/A-SIDE/FT-10/SLOT-9/CHAN-77 Barrel l/e/p= 1/184/0: E= 2474 t= -2 Channel: ENDCAP/A-SIDE/FT-10/SLOT-10/CHAN-0 Barrel l/e/p= 1/192/0: E= 13264 t= -21834 Q= 30 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-10/SLOT-10/CHAN-43 Barrel l/e/p= 2/96/0: E= 3589 t= -443 Q= 484 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-11/SLOT-3/CHAN-6 (is not EM) E= 295 t= 11053 Q= 2906 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-11/SLOT-3/CHAN-7 (is not EM) E= 188 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-11/SLOT-3/CHAN-7 (is not EM) E= 188 t= 16645 Q= 6060 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-11/SLOT-6/CHAN-47 (is not EM) E= 402 t= -20472 Q= 26046 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-11/SLOT-6/CHAN-113 (is not EM) E= 570 t= -17894 Q= 65117 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-11/SLOT-6/CHAN-114 (is not EM) E= 361 t= -1792 Q= 10384 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-11/SLOT-8/CHAN-115 (is not EM) E= 204 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-11/SLOT-8/CHAN-115 (is not EM) E= 204 t= -6578 Q= 309 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-11/SLOT-9/CHAN-87 (is not EM) E= 291 t= -19100 Q= 550 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-12/SLOT-5/CHAN-38 (is not EM) E= 476 t= -10517 Q= 11817 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-12/SLOT-5/CHAN-39 (is not EM) E= 479 t= -420 Q= 1210 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-12/SLOT-7/CHAN-90 (is not EM) E= 937 t= -28417 Q= 65535 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-12/SLOT-7/CHAN-91 (is not EM) E= 493 t= -33093 Q= 65535 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-12/SLOT-8/CHAN-35 (is not EM) E= 176 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-12/SLOT-8/CHAN-117 (is not EM) E= 255 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-12/SLOT-8/CHAN-35 (is not EM) E= 176 t= 13375 Q= 21 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-12/SLOT-8/CHAN-117 (is not EM) E= 255 t= -21354 Q= 668 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-12/SLOT-9/CHAN-15 (is not EM) E= 335 t= -6723 Q= 17 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-13/SLOT-4/CHAN-38 (is not EM) E= 207 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-13/SLOT-4/CHAN-38 (is not EM) E= 207 t= 725 Q= 46 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-13/SLOT-8/CHAN-47 (is not EM) E= 565 t= 697 Q= 80 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-13/SLOT-13/CHAN-88 (is not EM) E= 586 t= 1309 Q= 150 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-14/SLOT-4/CHAN-15 (is not EM) E= 192 t= 0 Q= 0 P=0xa5 G=0 @@ -2631,18 +2631,18 @@ Channel: ENDCAP/A-SIDE/FT-14/SLOT-12/CHAN-21 (is not EM) E= -779 t= -1722 Q= 655 Channel: ENDCAP/A-SIDE/FT-14/SLOT-12/CHAN-24 (is not EM) E= -732 t= -1499 Q= 65535 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-14/SLOT-13/CHAN-12 (is not EM) E= 614 t= 141 Q= 83 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-15/SLOT-4/CHAN-110 (is not EM) E= 283 t= -24987 Q= 550 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-15/SLOT-7/CHAN-68 (is not EM) E= 134 t= 0 Q= 0 P=0xa5 G=0 -Channel: ENDCAP/A-SIDE/FT-15/SLOT-9/CHAN-24 (is not EM) E= 165 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-15/SLOT-7/CHAN-68 (is not EM) E= 134 t= -10275 Q= 833 P=0x20a5 G=0 +Channel: ENDCAP/A-SIDE/FT-15/SLOT-9/CHAN-24 (is not EM) E= 165 t= 21968 Q= 361 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-16/SLOT-2/CHAN-25 (is not EM) E= 1974 t= 3993 Q= 9 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-16/SLOT-8/CHAN-15 Barrel l/e/p= 0/344/0: E= 1769 t= -3612 Q= 1 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-16/SLOT-9/CHAN-107 Barrel l/e/p= 2/144/0: E= -2486 t= 6717 Q= 141 P=0x20a5 G=1 -Channel: ENDCAP/A-SIDE/FT-17/SLOT-3/CHAN-114 (is not EM) E= 192 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-17/SLOT-3/CHAN-114 (is not EM) E= 192 t= 2755 Q= 887 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-17/SLOT-6/CHAN-26 (is not EM) E= 447 t= -2898 Q= 568 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-17/SLOT-6/CHAN-27 (is not EM) E= 1487 t= -33 Q= 3464 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-17/SLOT-6/CHAN-28 (is not EM) E= 319 t= -2643 Q= 1598 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-17/SLOT-6/CHAN-125 (is not EM) E= 463 t= 988 Q= 455 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-17/SLOT-8/CHAN-72 (is not EM) E= 262 t= -14958 Q= 641 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-17/SLOT-8/CHAN-78 (is not EM) E= 254 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-17/SLOT-8/CHAN-78 (is not EM) E= 254 t= -16292 Q= 773 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-17/SLOT-9/CHAN-91 (is not EM) E= 333 t= 224 Q= 169 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-17/SLOT-12/CHAN-6 (is not EM) E= 495 t= 34 Q= 59 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-17/SLOT-12/CHAN-28 (is not EM) E= 588 t= 357 Q= 165 P=0x20a5 G=0 @@ -2656,12 +2656,12 @@ Channel: ENDCAP/A-SIDE/FT-18/SLOT-9/CHAN-93 (is not EM) E= 322 t= 1626 Q= 263 P= Channel: ENDCAP/A-SIDE/FT-18/SLOT-9/CHAN-121 (is not EM) E= 314 t= -1860 Q= 16 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-18/SLOT-12/CHAN-85 (is not EM) E= 579 t= -3323 Q= 68 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-18/SLOT-13/CHAN-15 (is not EM) E= 523 t= 280 Q= 5 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-19/SLOT-9/CHAN-27 (is not EM) E= 214 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-19/SLOT-9/CHAN-27 (is not EM) E= 214 t= -7727 Q= 5 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-19/SLOT-10/CHAN-27 (is not EM) E= 318 t= -3795 Q= 157 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-19/SLOT-12/CHAN-33 (is not EM) E= 500 t= 2209 Q= 1544 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-20/SLOT-12/CHAN-9 (is not EM) E= 610 t= 3745 Q= 302 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-21/SLOT-3/CHAN-37 (is not EM) E= 394 t= -9152 Q= 425 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-21/SLOT-9/CHAN-27 (is not EM) E= 145 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-21/SLOT-9/CHAN-27 (is not EM) E= 145 t= 5176 Q= 300 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-21/SLOT-10/CHAN-3 (is not EM) E= 292 t= 2754 Q= 6 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-22/SLOT-2/CHAN-9 (is not EM) E= -858 t= -623 Q= 527 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-22/SLOT-5/CHAN-44 Barrel l/e/p= 0/408/0: E= -2069 t= 10491 Q= 0 P=0x20a5 G=1 @@ -2669,12 +2669,12 @@ Channel: ENDCAP/A-SIDE/FT-22/SLOT-5/CHAN-68 Barrel l/e/p= 0/424/0: E= 1860 t= -1 Channel: ENDCAP/A-SIDE/FT-22/SLOT-7/CHAN-35 Barrel l/e/p= 0/384/0: E= 2245 t= -24304 Q= 0 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-22/SLOT-8/CHAN-127 Barrel l/e/p= 0/504/0: E= 1274 t= 1114 Q= 50 P=0x20a5 G=1 Channel: ENDCAP/A-SIDE/FT-23/SLOT-1/CHAN-22 (is not EM) E= 1501 t= -18696 Q= 770 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-23/SLOT-2/CHAN-123 (is not EM) E= 183 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-23/SLOT-2/CHAN-123 (is not EM) E= 183 t= -11694 Q= 2152 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-23/SLOT-5/CHAN-116 (is not EM) E= 311 t= -261 Q= 240 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-24/SLOT-1/CHAN-13 (is not EM) E= 944 t= 1294 Q= 49 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-24/SLOT-4/CHAN-68 (is not EM) E= 291 t= 26637 Q= 65535 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-24/SLOT-6/CHAN-2 (is not EM) E= 465 t= -1523 Q= 893 P=0x20a5 G=0 -Channel: ENDCAP/A-SIDE/FT-24/SLOT-8/CHAN-57 (is not EM) E= 220 t= 0 Q= 0 P=0xa5 G=0 +Channel: ENDCAP/A-SIDE/FT-24/SLOT-8/CHAN-57 (is not EM) E= 220 t= -3401 Q= 13 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-24/SLOT-10/CHAN-53 (is not EM) E= 362 t= -6210 Q= 121 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-24/SLOT-10/CHAN-57 (is not EM) E= 440 t= -6287 Q= 125 P=0x20a5 G=0 Channel: ENDCAP/A-SIDE/FT-24/SLOT-10/CHAN-121 (is not EM) E= 409 t= 411 Q= 4 P=0x20a5 G=0 diff --git a/LArCalorimeter/LArROD/src/LArRawChannelBuilderAlg.cxx b/LArCalorimeter/LArROD/src/LArRawChannelBuilderAlg.cxx index 7a0ddb9b0a630bd9a4882b8e804703eb4df804d8..fa210727ac5007e90cec4a00b11452c528c6b5e7 100644 --- a/LArCalorimeter/LArROD/src/LArRawChannelBuilderAlg.cxx +++ b/LArCalorimeter/LArROD/src/LArRawChannelBuilderAlg.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration */ #include "LArROD/LArRawChannelBuilderAlg.h" @@ -7,6 +7,7 @@ #include "LArRawEvent/LArRawChannelContainer.h" #include "LArRawEvent/LArDigitContainer.h" #include "LArIdentifier/LArOnlineID.h" +#include "LArCOOLConditions/LArDSPThresholdsFlat.h" #include <cmath> LArRawChannelBuilderAlg::LArRawChannelBuilderAlg(const std::string& name, ISvcLocator* pSvcLocator): @@ -19,12 +20,13 @@ StatusCode LArRawChannelBuilderAlg::initialize() { ATH_CHECK(m_adc2MeVKey.initialize()); ATH_CHECK(m_ofcKey.initialize()); ATH_CHECK(m_shapeKey.initialize()); - ATH_CHECK( m_cablingKey.initialize() ); + ATH_CHECK(m_cablingKey.initialize() ); + ATH_CHECK(m_thresholdsKey.initialize(m_useDBFortQ) ); ATH_CHECK(detStore()->retrieve(m_onlineId,"LArOnlineID")); const std::string cutmsg = m_absECutFortQ.value() ? " fabs(E) < " : " E < "; - ATH_MSG_INFO("Energy cut for time and quality computation: " << cutmsg << m_eCutFortQ.value() << " MeV"); + ATH_MSG_INFO("Energy cut for time and quality computation: " << cutmsg << " taken from COOL folder "<<m_thresholdsKey.key()); return StatusCode::SUCCESS; } @@ -56,6 +58,16 @@ StatusCode LArRawChannelBuilderAlg::execute(const EventContext& ctx) const { SG::ReadCondHandle<LArOnOffIdMapping> cabling(m_cablingKey,ctx); + std::unique_ptr<LArDSPThresholdsFlat> dspThreshFlat; + if (m_useDBFortQ) { + SG::ReadCondHandle<AthenaAttributeList> dspThrshAttr (m_thresholdsKey, ctx); + dspThreshFlat = std::unique_ptr<LArDSPThresholdsFlat>(new LArDSPThresholdsFlat(*dspThrshAttr)); + if (ATH_UNLIKELY(!dspThreshFlat->good())) { + ATH_MSG_ERROR( "Failed to initialize LArDSPThresholdFlat from attribute list loaded from " << m_thresholdsKey.key() + << ". Aborting." ); + return StatusCode::FAILURE; + } + } //Loop over digits: for (const LArDigit* digit : *inputContainer) { @@ -117,7 +129,9 @@ StatusCode LArRawChannelBuilderAlg::execute(const EventContext& ctx) const { if (saturated) prov|=0x0400; const float E1=m_absECutFortQ.value() ? std::fabs(E) : E; - if (E1>m_eCutFortQ.value()) { + float ecut(0.); + if (m_useDBFortQ) { ecut = dspThreshFlat->tQThr(id);} else { ecut = m_eCutFortQ;} + if (E1 > ecut) { ATH_MSG_VERBOSE("Channel " << m_onlineId->channel_name(id) << " gain " << gain << " above threshold for tQ computation"); prov|=0x2000; // fill bit in provenance that time+quality information are available @@ -185,6 +199,7 @@ StatusCode LArRawChannelBuilderAlg::execute(const EventContext& ctx) const { static_cast<int>(std::floor(tau+0.5)), iquaShort,prov,(CaloGain::CaloGain)gain); } + return StatusCode::SUCCESS; } diff --git a/Tools/PROCTools/python/RunTier0TestsTools.py b/Tools/PROCTools/python/RunTier0TestsTools.py index b7cfe7f93dda67a085ec2f72a63f0a3b950adb2a..75597784c7a5c421c55a2ada4881236bd8cde159 100644 --- a/Tools/PROCTools/python/RunTier0TestsTools.py +++ b/Tools/PROCTools/python/RunTier0TestsTools.py @@ -28,7 +28,7 @@ ciRefFileMap = { 's3505-22.0' : 'v7', # OverlayTier0Test_required-test 'overlay-d1498-21.0' : 'v2', - 'overlay-d1498-22.0' : 'v36', + 'overlay-d1498-22.0' : 'v37', 'overlay-bkg-21.0' : 'v1', 'overlay-bkg-22.0' : 'v4', }