From 216d1d911d5f43db34b51f991cbb06bfe12ecbe6 Mon Sep 17 00:00:00 2001 From: nick Date: Thu, 11 Aug 2005 12:53:58 +0000 Subject: [PATCH] 10-aug-2005 NvE AliSignal::GetSignal extended with mode=8 to support dead flag of parent device in conjunction with the dead flag of the signal itself. 05-aug-2005 NvE Support for printfreq=0 introduced in IceF2k to allow suppression of the event summary printout. 08-aug-2005 NvE (De)calibration functions introduced in IceF2k::FillOMdbase and IceF2k::PutHits to enable access to either automatically calibrated or de-calibrated data. 11-aug-2005 NvE New class IceCal2Root introduced to convert Amacalib ascii data into Ralice/IcePack structures. --- RALICE/AliSignal.cxx | 33 +- RALICE/history.txt | 2 + RALICE/icepack/iceconvert/ICEConvHeaders.h | 1 + RALICE/icepack/iceconvert/ICEConvLinkDef.h | 1 + RALICE/icepack/iceconvert/IceCal2Root.cxx | 542 +++ RALICE/icepack/iceconvert/IceCal2Root.h | 46 + RALICE/icepack/iceconvert/IceF2k.cxx | 16 + RALICE/icepack/iceconvert/history.txt | 2 + RALICE/icepack/iceconvert/macros/Analyse.cxx | 68 + RALICE/icepack/iceconvert/macros/Analyse.h | 25 + .../macros/amacalib_amanda2_2003.txt | 3077 +++++++++++++++++ .../icepack/iceconvert/macros/icecal2root.cc | 34 + 12 files changed, 3837 insertions(+), 10 deletions(-) create mode 100644 RALICE/icepack/iceconvert/IceCal2Root.cxx create mode 100644 RALICE/icepack/iceconvert/IceCal2Root.h create mode 100644 RALICE/icepack/iceconvert/macros/Analyse.cxx create mode 100644 RALICE/icepack/iceconvert/macros/Analyse.h create mode 100644 RALICE/icepack/iceconvert/macros/amacalib_amanda2_2003.txt create mode 100644 RALICE/icepack/iceconvert/macros/icecal2root.cc diff --git a/RALICE/AliSignal.cxx b/RALICE/AliSignal.cxx index 76c1ca2dd96..99afcf777e5 100644 --- a/RALICE/AliSignal.cxx +++ b/RALICE/AliSignal.cxx @@ -439,8 +439,8 @@ Float_t AliSignal::GetSignal(Int_t j,Int_t mode) const // In case the j-th slot was marked dead, 0 is returned. // In case no calibration function is present, just the j-th signal // is returned (like with mode=0). -// 4 : Same as mode=3 but the calibration function is taken from -// the AliDevice which owns this AliSignal object. +// 4 : Same as mode=3 but the calibration function and dead flag are +// taken from the AliDevice which owns this AliSignal object. // The corresponding AliDevice slot is obtained via matching of // the slotnames. In case this fails, the slotindex "j" of the // input argument will be used. @@ -450,6 +450,11 @@ Float_t AliSignal::GetSignal(Int_t j,Int_t mode) const // an automatic switch to mode=3 will be made. // 7 : Same as mode=3 but in case no calibration function is present // an automatic switch to mode=4 will be made. +// 8 : Same as mode=7 but also the corresponding dead flag of the +// parent device (if any) will be checked. +// If either the dead flag of the requested signal slot of this +// AliSignal object or the corresponding parent device slot is +// set, 0 is returned. // // <0 : The corresponding de-correction or de-calibration is performed // @@ -463,13 +468,26 @@ Float_t AliSignal::GetSignal(Int_t j,Int_t mode) const // // The default is mode=0. - if (abs(mode)>7) return 0; + if (abs(mode)>8) return 0; Int_t jcal=j; Float_t sig=0; Float_t gain=1; Float_t offset=0; + // Get the corresponding slot index (and dead flag) of the parent device + Int_t pj=0; + Int_t pdead=0; + AliSignal* parent=(AliSignal*)GetDevice(); + if ((abs(mode)==2 || abs(mode)>=4) && parent) + { + TString name=GetSlotName(j); + if (strlen(name.Data())) pj=parent->GetSlotIndex(name); + if (abs(mode)==8 && pj) pdead=parent->GetDeadValue(pj); + } + if (mode==8) mode=7; + if (mode==-8) mode=-7; + AliSignal* sx=(AliSignal*)this; TF1* f=0; @@ -501,12 +519,7 @@ Float_t AliSignal::GetSignal(Int_t j,Int_t mode) const if (abs(mode)==2 || abs(mode)>=4) { sx=(AliSignal*)GetDevice(); - if (sx) - { - TString name=GetSlotName(j); - if (strlen(name.Data())) jcal=sx->GetSlotIndex(name); - if (!jcal) jcal=j; - } + if (pj) jcal=pj; } if (!sx && abs(mode)>=5) sx=(AliSignal*)this; if (mode==5) mode=2; @@ -523,7 +536,7 @@ Float_t AliSignal::GetSignal(Int_t j,Int_t mode) const if (mode==0 || !sx) return sig; // Check for the dead flag setting - if (sx->GetDeadValue(jcal)) return 0; + if (sx->GetDeadValue(jcal) || pdead) return 0; // (De)correct the signal for the gain and offset if (abs(mode)==1 || abs(mode)==2) diff --git a/RALICE/history.txt b/RALICE/history.txt index 9d6dca40adf..1984b22f9fb 100644 --- a/RALICE/history.txt +++ b/RALICE/history.txt @@ -634,6 +634,8 @@ for AliDevice (or derived) objects. 05-aug-2005 NvE Typos fixed in AliAttrib::GetCalFunction and AliAttrib::GetDecalFunction which erroneously always returned a null pointer. +10-aug-2005 NvE AliSignal::GetSignal extended with mode=8 to support dead flag of parent device + in conjunction with the dead flag of the signal itself. \ No newline at end of file diff --git a/RALICE/icepack/iceconvert/ICEConvHeaders.h b/RALICE/icepack/iceconvert/ICEConvHeaders.h index 6d211439824..d8f4f9ddc13 100644 --- a/RALICE/icepack/iceconvert/ICEConvHeaders.h +++ b/RALICE/icepack/iceconvert/ICEConvHeaders.h @@ -9,4 +9,5 @@ /////////////////////////////////////////////////////////////////////////// #include "IceF2k.h" +#include "IceCal2Root.h" diff --git a/RALICE/icepack/iceconvert/ICEConvLinkDef.h b/RALICE/icepack/iceconvert/ICEConvLinkDef.h index 218a58fb578..0744171d4b6 100644 --- a/RALICE/icepack/iceconvert/ICEConvLinkDef.h +++ b/RALICE/icepack/iceconvert/ICEConvLinkDef.h @@ -14,5 +14,6 @@ #pragma link off all functions; #pragma link C++ class IceF2k+; + #pragma link C++ class IceCal2Root; #endif diff --git a/RALICE/icepack/iceconvert/IceCal2Root.cxx b/RALICE/icepack/iceconvert/IceCal2Root.cxx new file mode 100644 index 00000000000..8d4da279753 --- /dev/null +++ b/RALICE/icepack/iceconvert/IceCal2Root.cxx @@ -0,0 +1,542 @@ +/******************************************************************************* + * Copyright(c) 2003, IceCube Experiment at the South Pole. All rights reserved. + * + * Author: The IceCube RALICE-based Offline Project. + * Contributors are mentioned in the code where appropriate. + * + * Permission to use, copy, modify and distribute this software and its + * documentation strictly for non-commercial purposes is hereby granted + * without fee, provided that the above copyright notice appears in all + * copies and that both the copyright notice and this permission notice + * appear in the supporting documentation. + * The authors make no claims about the suitability of this software for + * any purpose. It is provided "as is" without express or implied warranty. + *******************************************************************************/ + +// $Id$ + +/////////////////////////////////////////////////////////////////////////// +// Class IceCal2Root +// Conversion of Amanda ascii calibration data into an AliObjMatrix object +// containing the complete OM position, calibration, Xtalk etc... database. +// In addition a PDG particle database, extended with some specific Amanda +// entries, is provided as well. +// This class is derived from AliJob providing task-based processing. +// The main object in the job environment is an AliObjMatrix* pointer +// which contains the OM database. +// Note that the data structures are only written out if an outputfile has +// been specified via the SetOutputFile memberfunction. +// In case no outputfile has been specified, this class provides a facility +// to investigate/use the dbase data directly in subsequent (sub)tasks. +// +// The OM database information in the AliObjMatrix has the following structure : +// +// (j,1) : Pointer to OM with identifier "j" +// (j,k+1) : Pointer to a TF1* being the probability function for Xtalk +// with OM "j" as transmitter and OM "k" as receiver. +// +// The geometry information is directly available from the OM pointer +// in the form of its position and data words like "ORIENT" for orientation etc... +// Just use the OM memberfunction Data() to obtain a full overview. +// +// Note : Position coordinates are indicated in meters and times are in nanoseconds, +// in accordance with the convention used previously for Amanda. +// +// From the OM pointer also the various (de)calibration functions for +// ADC, LE and TOT can be obtained as TF1* pointers. +// The actual values of the calibration constants are stored as parameters +// of these (de)calibration functions and can be investigated via the +// usual TF1::Print() or TF1::GetParameter() facilities. +// The last two parameters of the Xtalk probability function have no effect +// on the evaluated probability value. However, these two parameters provide +// the minimum and maximum allowed LE differences between the transmitter +// and receiver hits, respectively (as can be seen from the parameter names). +// +// The (de)calibration of signals and/or determination of the Xtalk probability +// can be performed via the standard TF1::Eval(x) functionality, where "x" +// represents the input argument of the function (e.g. an uncalibrated ADC value). +// +// In general the database is not directly accessed by the user in performing +// physics analysis, since all the necessary information is contained in the +// event data itself and available via the GetSignal() memberfunction of the hits. +// However, specific tasks like e.g. calibration, Xtalk correction, +// bad module removal, noise hit removal etc... might need explicit database access. +// So, at the end of the example below some functionality is indicated for clarity. +// The user may use exactly the same procedures to obtain explicit access to the calibration +// functions etc... from the various OMs and/or hits within the actual event data which he/she +// is analysing. +// +// The PDG particle database is a standard ROOT TDatabasePDG object +// with the following extensions : +// +// Name PDG code +// ---- -------- +// brems 10001001 +// deltae 10001002 +// pairprod 10001003 +// nucl_int 10001004 +// mu_pair 10001005 +// hadrons 10001006 +// fiberlaser 10002100 +// n2laser 10002101 +// yaglaser 10002201 +// z_primary 10003000 +// a_primary 10003500 +// +// Usage example : +// --------------- +// +// gSystem->Load("ralice"); +// gSystem->Load("icepack"); +// gSystem->Load("iceconvert"); +// +// IceCal2Root q("IceCal2Root","Amacalib to IcePack data structure conversion"); +// +// // The Amacalib input filename +// q.SetAmacalibFile("amacalib_amanda2_2003.txt"); +// +// // Output file for the event structures +// q.SetOutputFile("calib2003.root"); +// +// /////////////////////////////////////////////////////////////////// +// // Here the user can specify his/her sub-tasks to be executed +// // after the database structures have been filled and before the +// // data is written out. +// // Sub-tasks (i.e. a user classes derived from TTask) are entered +// // as follows : +// // +// // MyTask1 task1("task1","Some modifications to specific OMs"); +// // MyTask2 task2("task2","Removal of specific OMs"); +// // MyTask3 task3("task3","Add private objects to the output file"); +// // q.Add(&task1); +// // q.Add(&task2); +// // q.Add(&task3); +// // +// // The sub-tasks will be executed in the order as they are entered. +// /////////////////////////////////////////////////////////////////// +// +// // Perform the conversion and execute subtasks (if any) +// q.ExecuteJob(); +// +// // Outline of dbase usage for (de)calibration and Xtalk +// +// AliObjMatrix* omdb=q.GetOMdbase(); +// IceAOM* om=(IceAOM*)omdb->GetObject(9,1); // Pointer to OM 9 +// om->Data(); // Overview of generic module parameters +// TF1* fcal=0; // Calibration function +// TF1* fdecal=0; // De-calibration function +// fcal=om->GetCalFunction("ADC"); +// Float_t adc=248; // Uncalibrated ADC +// Float_t cadc=0; // Calibrated ADC +// if (fcal) cadc=fcal->Eval(adc); +// fcal=om->GetCalFunction("TOT"); +// Float_t tot=1538; // Uncalibrated TOT +// Float_t ctot=0; // Calibrated TOT +// if (fcal) ctot=fcal->Eval(tot); +// fdecal=om->GetDecalFunction("LE"); +// Float_t le=21697; // Uncalibrated LE +// Float_t cle=0; // Calibrated LE +// if (fcal) cle=fcal->Eval(le); +// +// // Xtalk probability between (trans) OM 90 and (rec) OM 113 +// // for a transmitter signal of uncalibrated amplitude "adc". +// TF1* fxtalkp=(TF1*)omdb->GetObject(90,113+1); +// Float_t prob=0; +// adc=378; +// if (fxtalkp) prob=fxtalkp->Eval(adc); +// +//--- Author: Nick van Eijndhoven 09-aug-2005 Utrecht University +//- Modified: NvE $Date$ Utrecht University +/////////////////////////////////////////////////////////////////////////// + +#include "IceCal2Root.h" +#include "Rstrstream.h" + +ClassImp(IceCal2Root) // Class implementation to enable ROOT I/O + +IceCal2Root::IceCal2Root(const char* name,const char* title) : AliJob(name,title) +{ +// Default constructor. + fAmacalFileName=""; + fRootFileName=""; + fOutfile=0; + + fPdg=0; + fOmdb=0; +} +/////////////////////////////////////////////////////////////////////////// +IceCal2Root::~IceCal2Root() +{ +// Default destructor. + + if (fPdg) + { + delete fPdg; + fPdg=0; + } + + if (fOmdb) + { + delete fOmdb; + fOmdb=0; + } +} +/////////////////////////////////////////////////////////////////////////// +void IceCal2Root::SetAmacalibFile(TString name) +{ +// Set the name of the Amacalib input file. + fAmacalFileName=name; +} +/////////////////////////////////////////////////////////////////////////// +void IceCal2Root::SetOutputFile(TString name) +{ +// Set the name of the ROOT output file. + fRootFileName=name; +} +/////////////////////////////////////////////////////////////////////////// +TDatabasePDG* IceCal2Root::GetPDG() +{ +// Provide pointer to the PDG database + return fPdg; +} +/////////////////////////////////////////////////////////////////////////// +AliObjMatrix* IceCal2Root::GetOMdbase() +{ +// Provide pointer to the OM geometry, calib. etc... database + return fOmdb; +} +/////////////////////////////////////////////////////////////////////////// +void IceCal2Root::Exec(Option_t* opt) +{ +// Job to convert the ascii database info into the IcePack structure. +// +// Notes : +// ------- +// 1) This class is derived from AliJob, allowing a task based processing. +// After conversion of the ascii dbase data into the IcePack structure, +// the processing of all available sub-tasks (if any) is invoked. +// This provides a facility to investigate/use the dbase data in +// subsequent (sub)tasks processing before the final data structures +// are written out. +// 2) The main object in this job environment is an AliObjMatrix* pointer +// which contains the OM database. + + if (fAmacalFileName=="") + { + cout << " *IceCal2Root Exec* No amacalib input file specified." << endl; + return; + } + + fInput.clear(); + fInput.open(fAmacalFileName.Data()); + + if (!fInput.good()) + { + cout << " *IceCal2Root Exec* Bad input file : " << fAmacalFileName.Data() << endl; + return; + } + + if (fOutfile) + { + delete fOutfile; + fOutfile=0; + } + if (fRootFileName != "") + { + fOutfile=new TFile(fRootFileName.Data(),"RECREATE","Calibration data in IcePack structure"); + } + + // The OM database object + if (fOmdb) + { + fOmdb->Reset(); + } + else + { + fOmdb=new AliObjMatrix(); + fOmdb->SetNameTitle("Cal-OMDBASE","The OM geometry, calib. etc... database"); + fOmdb->SetOwner(); + } + + // Create the particle database and extend it with some F2000 specific definitions + if (fPdg) delete fPdg; + fPdg=new TDatabasePDG(); + fPdg->SetNameTitle("PDG-DBASE","The extended PDG particle database"); + Double_t me=fPdg->GetParticle(11)->Mass(); + fPdg->AddParticle("brems" ,"brems" ,0,1,0,0,"none",10001001,0,0); + fPdg->AddParticle("deltae" ,"deltae" ,me,1,0,-3,"Lepton",10001002,0,0); + fPdg->AddParticle("pairprod","pairprod",0,1,0,0,"none",10001003,0,0); + fPdg->AddParticle("nucl_int","nucl_Int",0,1,0,0,"none",10001004,0,0); + fPdg->AddParticle("mu_pair" ,"mu_pair" ,0,1,0,0,"none",10001005,0,0); + fPdg->AddParticle("hadrons" ,"hadrons" ,0,1,0,0,"none",10001006,0,0); + fPdg->AddParticle("fiberlaser","fiberlaser",0,1,0,0,"none",10002100,0,0); + fPdg->AddParticle("n2laser" ,"n2laser" ,0,1,0,0,"none",10002101,0,0); + fPdg->AddParticle("yaglaser" ,"yaglaser" ,0,1,0,0,"none",10002201,0,0); + fPdg->AddParticle("z_primary","z_primary",0,1,0,0,"none",10003000,0,0); + fPdg->AddParticle("a_primary","a_primary",0,1,0,0,"none",10003500,0,0); + + // Initialise the job working environment + SetMainObject(fOmdb); + AddObject(fPdg); + if (fOutfile) AddObject(fOutfile); + + cout << " ***" << endl; + cout << " *** Start processing of job " << GetName() << " ***" << endl; + cout << " ***" << endl; + cout << " Amacalib input file : " << fAmacalFileName.Data() << endl; + if (fOutfile) cout << " ROOT output file : " << fOutfile->GetName() << endl; + + ListEnvironment(); + + GetCalibData(); + + // Invoke all available sub-tasks (if any) + ExecuteTasks(opt); + + // Write the datastructures to the output file + if (fOutfile) + { + fOutfile->cd(); + if (fOmdb) fOmdb->Write(); + if (fPdg) fPdg->Write(); + } + + // Flush remaining memory resident data to the output file + if (fOutfile) fOutfile->Write(); +} +/////////////////////////////////////////////////////////////////////////// +void IceCal2Root::GetCalibData() +{ +// Obtain all the geometry, calibration and Xtalk data. + + // Prescription of the various (de)calibration functions + TF1 fadccal("fadccal","(x-[1])*[0]"); + TF1 fadcdecal("fadcdecal","(x/[0])+[1]"); + fadccal.SetParName(0,"BETA-ADC"); + fadccal.SetParName(1,"PED-ADC"); + fadcdecal.SetParName(0,"BETA-ADC"); + fadcdecal.SetParName(1,"PED-ADC"); + + TF1 ftdccal("ftdccal","(x*[0])-[1]-([0]-1.)*32767.-[2]/sqrt([3])"); + TF1 ftdcdecal("ftdcdecal","(x+([0]-1.)*32767.+[1]+[2]/sqrt([3]))/[0]"); + ftdccal.SetParName(0,"BETA-TDC"); + ftdccal.SetParName(1,"T0"); + ftdccal.SetParName(2,"ALPHA-TDC"); + ftdccal.SetParName(3,"ADC-SLEW"); + ftdcdecal.SetParName(0,"BETA-TDC"); + ftdcdecal.SetParName(1,"T0"); + ftdcdecal.SetParName(2,"ALPHA-TDC"); + ftdcdecal.SetParName(3,"ADC-SLEW"); + + TF1 ftotcal("ftotcal","x*[0]"); + TF1 ftotdecal("ftotdecal","x/[0]"); + ftotcal.SetParName(0,"BETA-TOT"); + ftotdecal.SetParName(0,"BETA-TOT"); + + // The cross talk probability function + TF1 fxtalkp("fxtalkp","(1.+[2]-[2]+[3]-[3])/(1.+exp(([0]-x)/[1]))"); + fxtalkp.SetParName(0,"C"); + fxtalkp.SetParName(1,"B"); + fxtalkp.SetParName(2,"dLE-min"); + fxtalkp.SetParName(3,"dLE-max"); + + // The basic OM contents + IceAOM om; + + om.SetSlotName("ADC",1); + om.SetSlotName("LE",2); + om.SetSlotName("TOT",3); + + om.SetSlotName("TYPE",4); + om.SetSlotName("ORIENT",5); + om.SetSlotName("THRESH",6); + om.SetSlotName("SENSIT",7); + om.SetSlotName("BETA-TDC",8); + om.SetSlotName("T0",9); + om.SetSlotName("ALPHA-TDC",10); + om.SetSlotName("PED-ADC",11); + om.SetSlotName("BETA-ADC",12); + om.SetSlotName("KAPPA-ADC",13); + om.SetSlotName("PED-TOT",14); + om.SetSlotName("BETA-TOT",15); + om.SetSlotName("KAPPA-TOT",16); + + fInput.seekg(0); // Position at beginning of file + fInput >> dec; // Make sure all integers starting with 0 are taken in decimal format + + TString s; + Int_t jmod,type,serial,string,ix,iy,iz,ori; + Float_t costh=0; + Float_t thresh=0; + Float_t sensit=1; + Double_t pos[3]={0,0,0}; + Float_t ped,beta,alpha,kappa; + Int_t pol; + Float_t totped; + Int_t jtrans,jrec; + Float_t c,b,dlemin,dlemax; + IceAOM* omx=0; + TF1* fcal=0; + TF1* fdecal=0; + while (fInput >> s) + { + if (s == "P") // Read the Geom data + { + fInput >> jmod >> type >> serial >> string >> ix >> iy >> iz >> ori; + omx=(IceAOM*)fOmdb->GetObject(jmod,1); + if (!omx) + { + omx=new IceAOM(om); + omx->SetUniqueID(jmod); + fOmdb->EnterObject(jmod,1,omx); + } + pos[0]=double(ix)/1000.; + pos[1]=double(iy)/1000.; + pos[2]=double(iz)/1000.; + omx->SetPosition(pos,"car"); + costh=1; + if (ori==2) costh=-1; + omx->SetSignal(type,4); + omx->SetSignal(costh,5); + omx->SetSignal(thresh,6); + omx->SetSignal(sensit,7); + } + else if (s == "T") // Read the Time calibration constants + { + fInput >> jmod >> ped >> beta >> alpha >> pol; + omx=(IceAOM*)fOmdb->GetObject(jmod,1); + if (!omx) + { + omx=new IceAOM(om); + omx->SetUniqueID(jmod); + fOmdb->EnterObject(jmod,1,omx); + } + + omx->SetCalFunction(&ftdccal,2); + omx->SetDecalFunction(&ftdcdecal,2); + omx->SetCalFunction(&ftotcal,3); + omx->SetDecalFunction(&ftotdecal,3); + + // Flag time slots of bad OMs as dead and don't provide time (de)calib functions + if (ped<-1e5 || beta<=0 || alpha<0) + { + omx->SetDead(2); + omx->SetDead(3); + omx->SetCalFunction(0,2); + omx->SetDecalFunction(0,2); + omx->SetCalFunction(0,3); + omx->SetDecalFunction(0,3); + } + + omx->SetSignal(beta,8); + omx->SetSignal(ped,9); + omx->SetSignal(alpha,10); + omx->SetSignal(beta,15); + + fcal=omx->GetCalFunction(2); + fdecal=omx->GetDecalFunction(2); + if (fcal) + { + fcal->SetParameter(0,beta); + fcal->SetParameter(1,ped); + fcal->SetParameter(2,alpha); + fcal->SetParameter(3,1.e20); + } + if (fdecal) + { + fdecal->SetParameter(0,beta); + if (!beta) fdecal->SetParameter(0,1); + fdecal->SetParameter(1,ped); + fdecal->SetParameter(2,alpha); + fdecal->SetParameter(3,1.e20); + } + + fcal=omx->GetCalFunction(3); + fdecal=omx->GetDecalFunction(3); + if (fcal) + { + fcal->SetParameter(0,beta); + } + if (fdecal) + { + fdecal->SetParameter(0,beta); + } + } + else if (s == "A") // Read the Amplitude calibration constants + { + fInput >> jmod >> ped >> beta >> totped >> pol; + omx=(IceAOM*)fOmdb->GetObject(jmod,1); + if (!omx) + { + omx=new IceAOM(om); + omx->SetUniqueID(jmod); + fOmdb->EnterObject(jmod,1,omx); + } + + omx->SetCalFunction(&fadccal,1); + omx->SetDecalFunction(&fadcdecal,1); + + // Flag amplitude slots of bad OMs as dead and don't provide amplitude (de)calib functions + if (ped<-1e5 || beta<=0) + { + omx->SetDead(1); + omx->SetCalFunction(0,1); + omx->SetDecalFunction(0,1); + } + if (totped<-1e5) + { + omx->SetDead(3); + omx->SetCalFunction(0,3); + omx->SetDecalFunction(0,3); + } + + omx->SetSignal(ped,11); + omx->SetSignal(beta,12); + omx->SetSignal(totped,14); + + fcal=omx->GetCalFunction(1); + fdecal=omx->GetDecalFunction(1); + if (fcal) + { + fcal->SetParameter(0,beta); + fcal->SetParameter(1,ped); + } + if (fdecal) + { + fdecal->SetParameter(0,beta); + if (!beta) fdecal->SetParameter(0,1); + fdecal->SetParameter(1,ped); + } + } + else if (s == "K") // Read the cross talk probability constants + { + fInput >> jtrans >> jrec >> c >> b >> dlemin >> dlemax; + omx=(IceAOM*)fOmdb->GetObject(jtrans,1); + if (!omx) + { + omx=new IceAOM(om); + omx->SetUniqueID(jtrans); + fOmdb->EnterObject(jtrans,1,omx); + } + + TF1* fx=new TF1(fxtalkp); + fx->SetParameter(0,c); + if (b) + { + fx->SetParameter(1,b); + } + else + { + fx->SetParameter(1,1); + } + fx->SetParameter(2,dlemin); + fx->SetParameter(3,dlemax); + fOmdb->EnterObject(jtrans,jrec+1,fx); + } + else // Skip this line + { + fInput.ignore(99999,'\n'); + } + } +} +/////////////////////////////////////////////////////////////////////////// diff --git a/RALICE/icepack/iceconvert/IceCal2Root.h b/RALICE/icepack/iceconvert/IceCal2Root.h new file mode 100644 index 00000000000..6921c9a53b0 --- /dev/null +++ b/RALICE/icepack/iceconvert/IceCal2Root.h @@ -0,0 +1,46 @@ +#ifndef IceCal2Root_h +#define IceCal2Root_h + +// Copyright(c) 2003, IceCube Experiment at the South Pole, All rights reserved. +// See cxx source for full Copyright notice. + +// $Id$ + +#include "TFile.h" +#include "TString.h" +#include "TDatabasePDG.h" + +#include "AliJob.h" +#include "AliObjMatrix.h" + +#include "IceAOM.h" + +#include "Riostream.h" + +class IceCal2Root : public AliJob +{ + public : + IceCal2Root(const char* name="IceCal2Root",const char* title=""); // Constructor + virtual ~IceCal2Root(); // Destructor + void SetAmacalibFile(TString name); // Set name of the Amacalib input file + void SetOutputFile(TString name); // Set output file for the ROOT data structures + TDatabasePDG* GetPDG(); // Provide pointer to the PDG database + AliObjMatrix* GetOMdbase(); // Provide pointer to the OM geometry, calib. etc... database + virtual void Exec(Option_t* opt); // Perform the format conversion + + protected : + ifstream fInput; // Input stream for generic use of reading data + + TString fAmacalFileName; // Name of the Amacalib input file + TString fBadomFileName; // Name of the bad OM input file + TString fRootFileName; // Name of the ROOT output file + TFile* fOutfile; // The ROOT output file + + TDatabasePDG* fPdg; // Database with PDG information + AliObjMatrix* fOmdb; // Database of all OM devices with their geometry, calib. etc... data + + void GetCalibData(); // Fill geometry, calibration and Xtalk parameters of all devices + + ClassDef(IceCal2Root,1) // Job for conversion of Amacalib ascii data into an AliObjMatrix OM dbase +}; +#endif diff --git a/RALICE/icepack/iceconvert/IceF2k.cxx b/RALICE/icepack/iceconvert/IceF2k.cxx index e777fd0991f..2fef202e3ee 100644 --- a/RALICE/icepack/iceconvert/IceF2k.cxx +++ b/RALICE/icepack/iceconvert/IceF2k.cxx @@ -358,10 +358,26 @@ void IceF2k::FillOMdbase() TF1 fadccal("fadccal","(x-[1])*[0]"); TF1 fadcdecal("fadcdecal","(x/[0])+[1]"); + fadccal.SetParName(0,"BETA-ADC"); + fadccal.SetParName(1,"PED-ADC"); + fadcdecal.SetParName(0,"BETA-ADC"); + fadcdecal.SetParName(1,"PED-ADC"); + TF1 ftdccal("ftdccal","(x*[0])-[1]-([0]-1.)*32767.-[2]/sqrt([3])"); TF1 ftdcdecal("ftdcdecal","(x+([0]-1.)*32767.+[1]+[2]/sqrt([3]))/[0]"); + ftdccal.SetParName(0,"BETA-TDC"); + ftdccal.SetParName(1,"T0"); + ftdccal.SetParName(2,"ALPHA-TDC"); + ftdccal.SetParName(3,"ADC-SLEW"); + ftdcdecal.SetParName(0,"BETA-TDC"); + ftdcdecal.SetParName(1,"T0"); + ftdcdecal.SetParName(2,"ALPHA-TDC"); + ftdcdecal.SetParName(3,"ADC-SLEW"); + TF1 ftotcal("ftotcal","x*[0]"); TF1 ftotdecal("ftotdecal","x/[0]"); + ftotcal.SetParName(0,"BETA-TOT"); + ftotdecal.SetParName(0,"BETA-TOT"); if (fOmdb) { diff --git a/RALICE/icepack/iceconvert/history.txt b/RALICE/icepack/iceconvert/history.txt index 2d9d513ddea..a0ef4c5cf68 100644 --- a/RALICE/icepack/iceconvert/history.txt +++ b/RALICE/icepack/iceconvert/history.txt @@ -25,4 +25,6 @@ the event summary printout. 08-aug-2005 NvE (De)calibration functions introduced in IceF2k::FillOMdbase and IceF2k::PutHits to enable access to either automatically calibrated or de-calibrated data. +11-aug-2005 NvE New class IceCal2Root introduced to convert Amacalib ascii data into + Ralice/IcePack structures. diff --git a/RALICE/icepack/iceconvert/macros/Analyse.cxx b/RALICE/icepack/iceconvert/macros/Analyse.cxx new file mode 100644 index 00000000000..4a202b7fd28 --- /dev/null +++ b/RALICE/icepack/iceconvert/macros/Analyse.cxx @@ -0,0 +1,68 @@ +/******************************************************************************* + * Copyright(c) 2003, IceCube Experiment at the South Pole. All rights reserved. + * + * Author: The IceCube RALICE-based Offline Project. + * Contributors are mentioned in the code where appropriate. + * + * Permission to use, copy, modify and distribute this software and its + * documentation strictly for non-commercial purposes is hereby granted + * without fee, provided that the above copyright notice appears in all + * copies and that both the copyright notice and this permission notice + * appear in the supporting documentation. + * The authors make no claims about the suitability of this software for + * any purpose. It is provided "as is" without express or implied warranty. + *******************************************************************************/ + +// $Id$ + +/////////////////////////////////////////////////////////////////////////// +// Class Analyse +// TTask derived class to demonstrate the concept of analysis via Tasks. +// This example task investigates an OM database structure and is invoked +// in the example macro IceCal2Root.cc. +// +//--- Author: Nick van Eijndhoven 08-aug-2005 Utrecht University +//- Modified: NvE $Date$ Utrecht University +/////////////////////////////////////////////////////////////////////////// + +#include "Analyse.h" +#include "Riostream.h" + +ClassImp(Analyse) // Class implementation to enable ROOT I/O + +Analyse::Analyse(const char* name,const char* title) : TTask(name,title) +{ +// Default constructor. +} +/////////////////////////////////////////////////////////////////////////// +Analyse::~Analyse() +{ +// Default destructor. +} +/////////////////////////////////////////////////////////////////////////// +void Analyse::Exec(Option_t* opt) +{ +// Implementation of the event analysis to be performed. + + TString name=opt; + AliJob* parent=(AliJob*)(gROOT->GetListOfTasks()->FindObject(name.Data())); + + if (!parent) return; + + AliObjMatrix* omdb=(AliObjMatrix*)parent->GetMainObject(); + if (!omdb) return; + + IceAOM* omx=0; + for (Int_t i=1; i<=10; i++) + { + omx=(IceAOM*)omdb->GetObject(i,1); + if (omx) omx->Data(); + } + + TF1* fxtalk=0; + fxtalk=(TF1*)omdb->GetObject(90,113+1); + if (fxtalk) fxtalk->Print(); + fxtalk=(TF1*)omdb->GetObject(121,102+1); + if (fxtalk) fxtalk->Print(); +} +/////////////////////////////////////////////////////////////////////////// diff --git a/RALICE/icepack/iceconvert/macros/Analyse.h b/RALICE/icepack/iceconvert/macros/Analyse.h new file mode 100644 index 00000000000..bd59e15f118 --- /dev/null +++ b/RALICE/icepack/iceconvert/macros/Analyse.h @@ -0,0 +1,25 @@ +#ifndef Analyse_h +#define Analyse_h + +// Copyright(c) 2003, IceCube Experiment at the South Pole, All rights reserved. +// See cxx source for full Copyright notice. + +// $Id$ + +#include "TROOT.h" +#include "TTask.h" +#include "TString.h" + +#include "AliJob.h" +#include "IceAOM.h" + +class Analyse : public TTask +{ + public : + Analyse(const char* name="",const char* title=""); // Constructor + virtual ~Analyse(); // Destructor + virtual void Exec(Option_t* opt); // The actions to be performed + + ClassDef(Analyse,1) // Just a class to demonstrate the TTask concept +}; +#endif diff --git a/RALICE/icepack/iceconvert/macros/amacalib_amanda2_2003.txt b/RALICE/icepack/iceconvert/macros/amacalib_amanda2_2003.txt new file mode 100644 index 00000000000..cc71b97d717 --- /dev/null +++ b/RALICE/icepack/iceconvert/macros/amacalib_amanda2_2003.txt @@ -0,0 +1,3077 @@ +X7 +C AMACALIB file build From OmdbToAmacalib-V1.01 +C Geometry table is 36 +C AdcTot table is 10008 +C Ampl table is 11008 +C Status table is 33 +C Time table is 11005 +C Xtalk table is 11001 +C +Y 2007 -90.0 0.0 1730 0 0 0 +D 1 1 681 0 0 +C---------------------------------------------------------------- +C-Geometry +C---------------------------------------------------------------- +P 1 2020021 0 1 -7130 50390 184720 1 +P 2 2020021 0 1 -7110 50110 164720 2 +P 3 2020021 0 1 -7030 49800 144720 2 +P 4 2020021 0 1 -6900 49490 124720 2 +P 5 2020021 0 1 -6720 49190 104720 2 +P 6 2020021 0 1 -6480 48920 84720 2 +P 7 2020021 0 1 -6240 48640 64720 2 +P 8 2020021 0 1 -5970 48540 44720 2 +P 9 2020021 0 1 -5800 48690 24720 2 +P 10 2020021 0 1 -5710 48880 4720 1 +P 11 2020021 0 1 -5700 49000 -15280 2 +P 12 2020021 0 1 -5720 48970 -35280 2 +P 13 2020021 0 1 -5780 48950 -55280 2 +P 14 2020021 0 1 -5900 48990 -75280 2 +P 15 2020021 0 1 -6060 48900 -95280 2 +P 16 2020021 0 1 -6290 48840 -115280 2 +P 17 2020021 0 1 -6580 48820 -135280 2 +P 18 2020021 0 1 -6910 48850 -155280 2 +P 19 2020021 0 1 -7230 49000 -175280 2 +P 20 2020021 0 1 -7530 49230 -195280 2 +P 21 2020021 0 2 -22580 -27880 183530 1 +P 22 2020021 0 2 -22560 -27880 163530 2 +P 23 2020021 0 2 -22530 -27890 143530 2 +P 24 2020021 0 2 -22510 -27900 123530 2 +P 25 2020021 0 2 -22490 -27900 103530 2 +P 26 2020021 0 2 -22460 -27910 83530 2 +P 27 2020021 0 2 -22430 -27920 63530 2 +P 28 2020021 0 2 -22430 -27920 43530 2 +P 29 2020021 0 2 -22410 -27960 23530 2 +P 30 2020021 0 2 -22390 -27940 3530 1 +P 31 2020021 0 2 -22370 -27870 -16470 2 +P 32 2020021 0 2 -22370 -27870 -36470 2 +P 33 2020021 0 2 -22260 -27800 -56470 2 +P 34 2020021 0 2 -22200 -27770 -76470 2 +P 35 2020021 0 2 -22150 -27700 -96470 2 +P 36 2020021 0 2 -22090 -27740 -116470 2 +P 37 2020021 0 2 -22030 -27740 -136470 2 +P 38 2020021 0 2 -21980 -27740 -156470 2 +P 39 2020021 0 2 -21980 -27740 -176470 2 +P 40 2020021 0 2 -21980 -27740 -196470 2 +P 41 2020021 0 3 33440 -4690 132340 1 +P 42 2020021 0 3 33440 -4640 112340 2 +P 43 2020021 0 3 33440 -4590 92340 2 +P 44 2020021 0 3 33460 -4540 72340 2 +P 45 2020021 0 3 33470 -4490 52340 2 +P 46 2020021 0 3 33490 -4450 32340 2 +P 47 2020021 0 3 33490 -4450 12340 2 +P 48 2020021 0 3 33520 -4370 -7660 2 +P 49 2020021 0 3 33530 -4340 -27660 2 +P 50 2020021 0 3 33530 -4320 -47660 1 +P 51 2020021 0 3 33540 -4280 -67660 2 +P 52 2020021 0 3 33530 -4240 -87660 2 +P 53 2020021 0 3 33520 -4200 -107660 2 +P 54 2020021 0 3 33510 -4150 -127660 2 +P 55 2020021 0 3 33490 -4110 -147660 2 +P 56 2020021 0 3 33480 -4070 -167660 2 +P 57 2020021 0 3 33480 -4070 -187660 2 +P 58 2020021 0 3 33480 -4070 -207660 2 +P 59 2020021 0 3 33480 -4070 -227660 2 +P 60 2020021 0 3 33480 -4070 -247660 2 +P 61 2020021 0 4 3190 -1520 154100 1 +P 62 2020021 0 4 3010 -1500 134100 1 +P 63 2020021 0 4 2830 -1490 114100 2 +P 64 2020021 0 4 2650 -1490 94100 2 +P 65 2020021 0 4 2470 -1490 74100 2 +P 66 2020021 0 4 2290 -1520 54100 2 +P 67 2020021 0 4 2100 -1550 34100 2 +P 68 2020021 0 4 1910 -1600 14100 2 +P 69 2020021 0 4 1720 -1620 -5900 2 +P 70 2020021 0 4 1530 -1630 -25900 1 +P 71 2020021 0 4 1350 -1620 -45900 2 +P 72 2020021 0 4 1160 -1640 -65900 2 +P 73 2020021 0 4 980 -1660 -85900 2 +P 74 2020021 0 4 930 -1750 -105900 2 +P 75 2020021 0 4 800 -1890 -125900 2 +P 76 2020021 0 4 710 -2060 -145900 2 +P 77 2020021 0 4 680 -2250 -165900 2 +P 78 2020021 0 4 680 -2250 -185900 2 +P 79 2020021 0 4 680 -2640 -205900 1 +P 80 2020021 0 4 720 -2830 -225900 1 +P 81 2020121 0 4 900 -3310 -278600 1 +P 82 2020121 0 4 910 -3330 -281000 2 +P 83 2020121 0 4 920 -3350 -283500 1 +P 84 2020121 0 4 930 -3370 -285300 2 +P 85 2020121 0 4 1010 -3520 -303500 1 +P 86 2020121 0 4 1020 -3530 -305300 2 +P 87 2020221 0 5 -63010 6350 231460 2 +P 88 2020121 0 5 -63000 6340 221670 2 +P 89 2020221 0 5 -62980 6340 211670 2 +P 90 2020121 0 5 -62970 6340 201780 2 +P 91 2020221 0 5 -62950 6330 192110 2 +P 92 2020121 0 5 -62940 6330 181960 2 +P 93 2020221 0 5 -62920 6330 171530 2 +P 94 2020121 0 5 -62900 6320 161980 2 +P 95 2020221 0 5 -62890 6320 151780 2 +P 96 2020121 0 5 -62870 6320 142130 2 +P 97 2020221 0 5 -62850 6320 131880 2 +P 98 2020121 0 5 -62830 6320 122260 2 +P 99 2020121 0 5 -62810 6320 112220 2 +P 100 2020121 0 5 -62790 6320 102540 2 +P 101 2020121 0 5 -62780 6320 92370 2 +P 102 2020121 0 5 -62760 6320 82810 2 +P 103 2020121 0 5 -62740 6330 73010 2 +P 104 2020121 0 5 -62720 6330 63240 2 +P 105 2020121 0 5 -62700 6330 53340 2 +P 106 2020121 0 5 -62680 6340 43530 2 +P 107 2020121 0 5 -62650 6340 33480 2 +P 108 2020121 0 5 -62630 6350 23670 2 +P 109 2020121 0 5 -62610 6360 13820 2 +P 110 2020121 0 5 -62590 6360 4220 2 +P 111 2020121 0 5 -62570 6370 -5790 2 +P 112 2020121 0 5 -62540 6380 -15870 2 +P 113 2020121 0 5 -62520 6390 -25640 2 +P 114 2020121 0 5 -62500 6410 -35530 2 +P 115 2020121 0 5 -62480 6420 -45490 2 +P 116 2020121 0 5 -62450 6430 -55560 2 +P 117 2020121 0 5 -62430 6450 -65210 2 +P 118 2020121 0 5 -62410 6460 -74980 2 +P 119 2020121 0 5 -62380 6480 -84760 2 +P 120 2020121 0 5 -62360 6500 -94750 2 +P 121 2020121 0 5 -62330 6520 -104510 2 +P 122 2020121 0 5 -62310 6540 -114440 2 +P 123 2020221 0 6 -53050 36260 219610 2 +P 124 2020121 0 6 -53050 36270 209790 2 +P 125 2020221 0 6 -53050 36270 199930 2 +P 126 2020121 0 6 -53050 36280 190210 2 +P 127 2020221 0 6 -53050 36280 180410 2 +P 128 2020121 0 6 -53050 36290 170710 2 +P 129 2020221 0 6 -53050 36290 160820 2 +P 130 2020121 0 6 -53050 36300 151100 2 +P 131 2020221 0 6 -53050 36300 141220 2 +P 132 2020121 0 6 -53050 36310 131380 2 +P 133 2020221 0 6 -53050 36310 121530 2 +P 134 2020121 0 6 -53050 36320 111670 2 +P 135 2020121 0 6 -53050 36320 101910 2 +P 136 2020121 0 6 -53050 36330 92250 2 +P 137 2020121 0 6 -53050 36330 82280 2 +P 138 2020121 0 6 -53050 36330 72190 2 +P 139 2020121 0 6 -53050 36340 62310 2 +P 140 2020121 0 6 -53050 36340 52440 2 +P 141 2020121 0 6 -53050 36340 42730 2 +P 142 2020121 0 6 -53050 36350 32970 2 +P 143 2020121 0 6 -53050 36350 23140 2 +P 144 2020121 0 6 -53050 36350 13260 2 +P 145 2020121 0 6 -53060 36350 3470 2 +P 146 2020121 0 6 -53060 36350 -6280 2 +P 147 2020121 0 6 -53060 36360 -16230 2 +P 148 2020121 0 6 -53060 36360 -25970 2 +P 149 2020121 0 6 -53060 36360 -36020 2 +P 150 2020121 0 6 -53070 36360 -45760 2 +P 151 2020121 0 6 -53070 36360 -55670 2 +P 152 2020121 0 6 -53080 36360 -65480 2 +P 153 2020121 0 6 -53080 36360 -75560 2 +P 154 2020121 0 6 -53090 36360 -85280 2 +P 155 2020121 0 6 -53090 36360 -95170 2 +P 156 2020121 0 6 -53100 36360 -104930 2 +P 157 2020121 0 6 -53100 36360 -114720 2 +P 158 2020121 0 6 -53110 36360 -124290 2 +P 159 2020121 0 7 47290 34030 213870 2 +P 160 2020121 0 7 47270 34040 204240 2 +P 161 2020121 0 7 47250 34050 194320 2 +P 162 2020121 0 7 47230 34050 184540 2 +P 163 2020121 0 7 47210 34060 174670 2 +P 164 2020121 0 7 47200 34070 164890 2 +P 165 2020121 0 7 47180 34070 154940 2 +P 166 2020121 0 7 47170 34080 145220 2 +P 167 2020121 0 7 47150 34090 135500 2 +P 168 2020121 0 7 47140 34090 125920 2 +P 169 2020121 0 7 47130 34100 116170 2 +P 170 2020121 0 7 47110 34110 106470 2 +P 171 2020121 0 7 47100 34120 96400 2 +P 172 2020121 0 7 47090 34120 86380 2 +P 173 2020121 0 7 47090 34130 76330 2 +P 174 2020121 0 7 47080 34140 66700 2 +P 175 2020121 0 7 47070 34150 56620 2 +P 176 2020121 0 7 47070 34160 46910 2 +P 177 2020121 0 7 47070 34170 36920 2 +P 178 2020121 0 7 47060 34180 27240 2 +P 179 2020121 0 7 47060 34190 17310 2 +P 180 2020121 0 7 47060 34200 7610 2 +P 181 2020121 0 7 47070 34210 -2270 2 +P 182 2020121 0 7 47070 34220 -12020 2 +P 183 2020121 0 7 47080 34230 -21660 2 +P 184 2020121 0 7 47080 34250 -31360 2 +P 185 2020121 0 7 47090 34260 -41060 2 +P 186 2020221 0 7 47100 34280 -50640 2 +P 187 2020121 0 7 47120 34300 -60640 2 +P 188 2020121 0 7 47130 34320 -70490 2 +P 189 2020121 0 7 47150 34340 -80360 2 +P 190 2020221 0 7 47170 34360 -90170 2 +P 191 2020121 0 7 47190 34380 -100000 2 +P 192 2020121 0 7 47210 34410 -109820 2 +P 193 2020121 0 7 47230 34440 -119980 2 +P 194 2020221 0 7 47260 34470 -129930 2 +P 195 2020221 0 8 26870 57740 215610 2 +P 196 2020121 0 8 26890 57720 206060 2 +P 197 2020221 0 8 26920 57700 195800 2 +P 198 2020121 0 8 26950 57680 186190 2 +P 199 2020221 0 8 26970 57670 176040 2 +P 200 2020121 0 8 27000 57650 166240 2 +P 201 2020221 0 8 27040 57620 155740 2 +P 202 2020121 0 8 27070 57600 145990 2 +P 203 2020221 0 8 27100 57580 136350 2 +P 204 2020121 0 8 27130 57560 127080 2 +P 205 2020221 0 8 27170 57540 116690 2 +P 206 2020121 0 8 27200 57520 106820 2 +P 207 2020121 0 8 27240 57490 96890 2 +P 208 2020121 0 8 27280 57470 87190 2 +P 209 2020121 0 8 27320 57440 77150 2 +P 210 2020121 0 8 27360 57420 67570 2 +P 211 2020121 0 8 27400 57390 57320 2 +P 212 2020121 0 8 27440 57370 47750 2 +P 213 2020121 0 8 27490 57340 37630 2 +P 214 2020121 0 8 27540 57310 27830 2 +P 215 2020121 0 8 27580 57290 17760 2 +P 216 2020121 0 8 27630 57260 8080 2 +P 217 2020121 0 8 27680 57230 -1910 2 +P 218 2020121 0 8 27740 57200 -11630 2 +P 219 2020121 0 8 27790 57170 -21550 2 +P 220 2020121 0 8 27840 57140 -31460 2 +P 221 2020121 0 8 27900 57110 -41340 2 +P 222 2020121 0 8 27960 57080 -51080 2 +P 223 2020121 0 8 28020 57050 -60880 2 +P 224 2020121 0 8 28080 57020 -70920 2 +P 225 2020121 0 8 28140 56990 -80750 2 +P 226 2020121 0 8 28210 56960 -90540 2 +P 227 2020121 0 8 28270 56930 -100550 2 +P 228 2020121 0 8 28340 56900 -110180 2 +P 229 2020121 0 8 28410 56870 -120020 2 +P 230 2020121 0 8 28480 56840 -129290 2 +P 231 2021021 0 9 -2530 -55980 214560 2 +P 232 2021021 0 9 -2520 -55990 204890 2 +P 233 2020121 0 9 -2520 -56000 195060 2 +P 234 2020121 0 9 -2510 -56000 185410 2 +P 235 2020121 0 9 -2500 -56010 175490 2 +P 236 2020121 0 9 -2490 -56020 165500 2 +P 237 2020121 0 9 -2480 -56020 155570 2 +P 238 2020121 0 9 -2470 -56030 145780 2 +P 239 2020121 0 9 -2460 -56030 136060 2 +P 240 2020121 0 9 -2450 -56040 126530 2 +P 241 2020121 0 9 -2440 -56040 116530 2 +P 242 2020121 0 9 -2420 -56050 106640 2 +P 243 2020121 0 9 -2410 -56050 97080 2 +P 244 2020121 0 9 -2400 -56050 87250 2 +P 245 2020121 0 9 -2390 -56060 77340 2 +P 246 2020121 0 9 -2380 -56060 67490 2 +P 247 2020121 0 9 -2370 -56060 57610 2 +P 248 2020121 0 9 -2360 -56060 47810 2 +P 249 2020121 0 9 -2350 -56060 37890 2 +P 250 2020121 0 9 -2340 -56060 28010 2 +P 251 2020121 0 9 -2330 -56050 18240 2 +P 252 2020121 0 9 -2330 -56050 8300 2 +P 253 2020121 0 9 -2320 -56040 -1430 2 +P 254 2020121 0 9 -2310 -56040 -11280 2 +P 255 2020121 0 9 -2310 -56030 -21100 2 +P 256 2020121 0 9 -2300 -56020 -30970 2 +P 257 2020121 0 9 -2300 -56010 -41010 2 +P 258 2020121 0 9 -2290 -56000 -50760 2 +P 259 2020121 0 9 -2290 -55990 -60580 2 +P 260 2020121 0 9 -2290 -55980 -70320 2 +P 261 2020121 0 9 -2290 -55960 -79970 2 +P 262 2020121 0 9 -2290 -55950 -89890 2 +P 263 2020121 0 9 -2300 -55930 -99790 2 +P 264 2020121 0 9 -2300 -55910 -109710 2 +P 265 2020121 0 9 -2310 -55880 -119370 2 +P 266 2020121 0 9 -2320 -55860 -129140 2 +P 267 2020121 0 10 28440 -48500 200510 2 +P 268 2020121 0 10 28440 -48490 190600 2 +P 269 2020121 0 10 28430 -48490 180680 2 +P 270 2020121 0 10 28430 -48480 170900 2 +P 271 2020121 0 10 28420 -48480 161060 2 +P 272 2020121 0 10 28420 -48470 151140 2 +P 273 2020121 0 10 28410 -48470 141260 2 +P 274 2020121 0 10 28400 -48470 131580 2 +P 275 2020121 0 10 28400 -48470 121960 2 +P 276 2020121 0 10 28390 -48470 112180 2 +P 277 2020121 0 10 28390 -48470 102350 2 +P 278 2020121 0 10 28380 -48470 92640 2 +P 279 2020121 0 10 28370 -48470 82660 2 +P 280 2020121 0 10 28370 -48470 72900 2 +P 281 2020121 0 10 28370 -48480 63120 2 +P 282 2020121 0 10 28360 -48480 53420 2 +P 283 2020121 0 10 28360 -48490 43490 2 +P 284 2020121 0 10 28360 -48490 33610 2 +P 285 2020121 0 10 28360 -48500 23730 2 +P 286 2020121 0 10 28360 -48510 13890 2 +P 287 2020121 0 10 28360 -48520 3960 2 +P 288 2020121 0 10 28360 -48530 -6010 2 +P 289 2020121 0 10 28370 -48550 -15950 2 +P 290 2020121 0 10 28380 -48560 -25850 2 +P 291 2020121 0 10 28380 -48580 -35490 2 +P 292 2020121 0 10 28390 -48590 -44760 2 +P 293 2020121 0 10 28400 -48610 -55230 2 +P 294 2020121 0 10 28410 -48630 -64800 2 +P 295 2020121 0 10 28430 -48650 -74750 2 +P 296 2020121 0 10 28440 -48680 -84600 2 +P 297 2020121 0 10 28460 -48700 -94630 2 +P 298 2020121 0 10 28470 -48730 -104430 2 +P 299 2020121 0 10 28490 -48760 -114330 2 +P 300 2020121 0 10 28500 -48790 -124160 2 +P 301 2020121 0 10 28520 -48820 -134090 2 +P 302 2020121 0 10 28530 -48850 -143790 2 +P 303 2020221 0 11 4180 103510 524370 2 +P 304 2020221 0 11 4180 103510 504370 2 +P 305 2020221 0 11 4180 103510 444370 2 +P 306 2020221 0 11 4180 103510 424370 2 +P 307 2020121 0 11 4180 103510 364370 2 +P 308 2020121 0 11 4180 103510 344370 2 +P 309 2020121 0 11 4180 103510 284370 2 +P 310 2020121 0 11 4180 103510 264370 2 +P 311 2020121 0 11 4180 103510 204370 2 +P 312 2020121 0 11 4180 103510 184370 2 +P 313 2020121 0 11 4180 103510 164370 2 +P 314 2020121 0 11 4180 103510 144370 2 +P 315 2020121 0 11 4180 103510 124370 2 +P 316 2020121 0 11 4180 103510 104370 2 +P 317 2020121 0 11 4180 103510 84370 2 +P 318 2020121 0 11 4180 103510 64370 2 +P 319 2020121 0 11 4180 103510 44370 2 +P 320 2020121 0 11 4180 103510 24370 2 +P 321 2020121 0 11 4180 103510 4370 2 +P 322 2020121 0 11 4180 103510 -15630 2 +P 323 2020121 0 11 4180 103510 -35630 2 +P 324 2020121 0 11 4180 103510 -55630 2 +P 325 2020121 0 11 4180 103510 -75630 2 +P 326 2020121 0 11 4180 103510 -95630 2 +P 327 2020121 0 11 4180 103510 -115630 2 +P 328 2020121 0 11 4180 103510 -135630 2 +P 329 2020121 0 11 4180 103510 -155630 2 +P 330 2020121 0 11 4180 103510 -175630 2 +P 331 2020121 0 11 4180 103510 -195630 2 +P 332 2020121 0 11 4180 103510 -215630 2 +P 333 2020121 0 11 4180 103510 -235630 2 +P 334 2020121 0 11 4180 103510 -255630 2 +P 335 2020121 0 11 4180 103510 -275630 2 +P 336 2020121 0 11 4180 103510 -295630 2 +P 337 2020121 0 11 4180 103510 -355630 2 +P 338 2020121 0 11 4180 103510 -375630 2 +P 339 2020121 0 11 4180 103510 -435630 2 +P 340 2020121 0 11 4180 103510 -455630 2 +P 341 2020121 0 11 4180 103510 -515630 2 +P 342 2020121 0 11 4180 103510 -535630 2 +P 343 2020121 0 11 4180 103510 -595630 2 +P 344 2020121 0 11 4180 103510 -615630 2 +P 345 2020121 0 12 -61340 84960 562200 2 +P 346 2020121 0 12 -61340 84960 542200 2 +P 347 2020121 0 12 -61340 84960 482200 2 +P 348 2020121 0 12 -61340 84960 462200 2 +P 349 2020121 0 12 -61340 84960 402200 2 +P 350 2020121 0 12 -61340 84960 382200 2 +P 351 2020121 0 12 -61340 84960 322200 2 +P 352 2020121 0 12 -61340 84960 302200 2 +P 353 2020121 0 12 -61340 84960 242200 2 +P 354 2020121 0 12 -61340 84960 222200 2 +P 355 2020121 0 12 -61340 84960 202200 2 +P 356 2020121 0 12 -61340 84960 182200 2 +P 357 2020121 0 12 -61340 84960 162200 2 +P 358 2020121 0 12 -61340 84960 142200 2 +P 359 2020121 0 12 -61340 84960 122200 2 +P 360 2020121 0 12 -61340 84960 102200 2 +P 361 2020121 0 12 -61340 84960 82200 2 +P 362 2020121 0 12 -61340 84960 62200 2 +P 363 2020121 0 12 -61340 84960 42200 2 +P 364 2020121 0 12 -61340 84960 22200 2 +P 365 2020121 0 12 -61340 84960 2200 2 +P 366 2020121 0 12 -61340 84960 -17800 2 +P 367 2020121 0 12 -61340 84960 -37800 2 +P 368 2020121 0 12 -61340 84960 -57800 2 +P 369 2020121 0 12 -61340 84960 -77800 2 +P 370 2020121 0 12 -61340 84960 -97800 2 +P 371 2020121 0 12 -61340 84960 -117800 2 +P 372 2020121 0 12 -61340 84960 -137800 2 +P 373 2020121 0 12 -61340 84960 -157800 2 +P 374 2020121 0 12 -61340 84960 -177800 2 +P 375 2020121 0 12 -61340 84960 -197800 2 +P 376 2020121 0 12 -61340 84960 -217800 2 +P 377 2020121 0 12 -61340 84960 -237800 2 +P 378 2020121 0 12 -61340 84960 -257800 2 +P 379 2020121 0 12 -61340 84960 -317800 2 +P 380 2020121 0 12 -61340 84960 -337800 2 +P 381 2020121 0 12 -61340 84960 -397800 2 +P 382 2020121 0 12 -61340 84960 -417800 2 +P 383 2020121 0 12 -61340 84960 -477800 2 +P 384 2020121 0 12 -61340 84960 -497800 2 +P 385 2020121 0 12 -61340 84960 -557800 2 +P 386 2020121 0 12 -61340 84960 -577800 2 +P 387 2020121 0 13 -29540 76470 547990 2 +P 388 2020121 0 13 -29540 76470 527990 2 +P 389 2020121 0 13 -29540 76470 467990 2 +P 390 2020121 0 13 -29540 76470 447990 2 +P 391 2020121 0 13 -29540 76470 387990 2 +P 392 2020121 0 13 -29540 76470 367990 2 +P 393 2020121 0 13 -29540 76470 307990 2 +P 394 2020121 0 13 -29540 76470 287990 2 +P 395 2020121 0 13 -29540 76470 227990 2 +P 396 2020121 0 13 -29540 76470 207990 2 +P 397 2020121 0 13 -29540 76470 187990 2 +P 398 2020121 0 13 -29540 76470 167990 2 +P 399 2020121 0 13 -29540 76470 147990 2 +P 400 2020121 0 13 -29540 76470 127990 2 +P 401 2020121 0 13 -29540 76470 107990 2 +P 402 2020121 0 13 -29540 76470 87990 2 +P 403 2020121 0 13 -29540 76470 67990 2 +P 404 2020121 0 13 -29540 76470 47990 2 +P 405 2020121 0 13 -29540 76470 27990 2 +P 406 2020121 0 13 -29540 76470 7990 2 +P 407 2020121 0 13 -29540 76470 -12010 2 +P 408 2020121 0 13 -29540 76470 -32010 2 +P 409 2020121 0 13 -29540 76470 -52010 2 +P 410 2020121 0 13 -29540 76470 -72010 2 +P 411 2020121 0 13 -29540 76470 -92010 2 +P 412 2020121 0 13 -29540 76470 -112010 2 +P 413 2020121 0 13 -29540 76470 -132010 2 +P 414 2020121 0 13 -29540 76470 -152010 2 +P 415 2020121 0 13 -29540 76470 -172010 2 +P 416 2020121 0 13 -29540 76470 -192010 2 +P 417 2020121 0 13 -29540 76470 -212010 2 +P 418 2020121 0 13 -29540 76470 -232010 2 +P 419 2020121 0 13 -29540 76470 -252010 2 +P 420 2020121 0 13 -29540 76470 -272010 2 +P 421 2020121 0 13 -29540 76470 -332010 2 +P 422 2020121 0 13 -29540 76470 -352010 2 +P 423 2020121 0 13 -29540 76470 -412010 2 +P 424 2020121 0 13 -29540 76470 -432010 2 +P 425 2020121 0 13 -29540 76470 -492010 2 +P 426 2020121 0 13 -29540 76470 -512010 2 +P 427 2020121 0 13 -29540 76470 -572010 2 +P 428 2020121 0 13 -29540 76470 -592010 2 +P 429 2020121 0 14 -101310 30230 267990 2 +P 430 2020121 0 14 -101340 30240 256040 2 +P 431 2020121 0 14 -101440 30260 220090 2 +P 432 2020121 0 14 -101480 30260 208140 2 +P 433 2020121 0 14 -101510 30240 196190 2 +P 434 2020121 0 14 -101530 30190 184240 2 +P 435 2020121 0 14 -101550 30170 172290 2 +P 436 2020121 0 14 -101560 30140 160340 2 +P 437 2020121 0 14 -101640 30150 148390 2 +P 438 2020121 0 14 -101660 30130 136440 2 +P 439 2020121 0 14 -101690 30100 124490 2 +P 440 2020121 0 14 -101720 30080 112540 2 +P 441 2020121 0 14 -101810 30080 100590 2 +P 442 2020121 0 14 -101770 30100 88640 2 +P 443 2020121 0 14 -101750 30050 76690 2 +P 444 2020121 0 14 -101730 30030 64740 2 +P 445 2020121 0 14 -101700 30010 52790 2 +P 446 2020121 0 14 -101670 29980 40840 2 +P 447 2020121 0 14 -101630 29980 28890 2 +P 448 2020121 0 14 -101600 29970 16940 2 +P 449 2020121 0 14 -101560 29950 4990 2 +P 450 2020121 0 14 -101530 29930 -6960 2 +P 451 2020121 0 14 -101500 29940 -18910 2 +P 452 2020121 0 14 -101430 30000 -30860 2 +P 453 2020121 0 14 -101370 29930 -42810 2 +P 454 2020121 0 14 -101370 29900 -54760 2 +P 455 2020121 0 14 -101380 29890 -66710 2 +P 456 2020121 0 14 -101370 29870 -78660 2 +P 457 2020121 0 14 -101360 29840 -90610 2 +P 458 2020121 0 14 -101350 29820 -102560 2 +P 459 2020121 0 14 -101350 29800 -114510 2 +P 460 2020121 0 14 -101340 29780 -126460 2 +P 461 2020121 0 14 -101320 29730 -138410 2 +P 462 2020121 0 14 -101310 29680 -150360 2 +P 463 2020121 0 14 -101290 29630 -162310 2 +P 464 2020121 0 14 -101300 29590 -174260 2 +P 465 2020121 0 14 -101320 29560 -186210 2 +P 466 2020121 0 14 -101330 29550 -198160 2 +P 467 2020121 0 14 -101340 29550 -210110 2 +P 468 2020121 0 14 -101360 29550 -222060 2 +P 469 2020121 0 14 -101440 29530 -258010 2 +P 470 2020121 0 14 -101440 29530 -269960 2 +P 471 2020121 0 15 -93700 -36570 270560 2 +P 472 2020121 0 15 -93740 -36570 258610 2 +P 473 2020121 0 15 -93870 -36610 222660 2 +P 474 2020121 0 15 -93910 -36620 210710 2 +P 475 2020121 0 15 -93910 -36650 198760 2 +P 476 2020121 0 15 -93900 -36680 186810 2 +P 477 2020121 0 15 -93900 -36720 174860 2 +P 478 2020121 0 15 -93880 -36720 162910 2 +P 479 2020121 0 15 -93840 -36720 150960 2 +P 480 2020121 0 15 -93810 -36740 139010 2 +P 481 2020121 0 15 -93800 -36740 127060 2 +P 482 2020121 0 15 -93790 -36740 115110 2 +P 483 2020121 0 15 -93770 -36690 103160 2 +P 484 2020121 0 15 -93750 -36660 91210 2 +P 485 2020121 0 15 -93730 -36660 79260 2 +P 486 2020121 0 15 -93710 -36660 67310 2 +P 487 2020121 0 15 -93690 -36680 55360 2 +P 488 2020121 0 15 -93680 -36690 43410 2 +P 489 2020121 0 15 -93670 -36690 31460 2 +P 490 2020121 0 15 -93670 -36700 19510 2 +P 491 2020121 0 15 -93670 -36710 7560 2 +P 492 2020121 0 15 -93660 -36740 -4390 2 +P 493 2020121 0 15 -93660 -36750 -16340 2 +P 494 2020121 0 15 -93670 -36760 -28290 2 +P 495 2020121 0 15 -93660 -36790 -40240 2 +P 496 2020121 0 15 -93650 -36810 -52190 2 +P 497 2020121 0 15 -93670 -36820 -64140 2 +P 498 2020121 0 15 -93700 -36850 -76090 2 +P 499 2020121 0 15 -93710 -36840 -88040 2 +P 500 2020121 0 15 -93710 -36850 -99990 2 +P 501 2020121 0 15 -93710 -36840 -111940 2 +P 502 2020121 0 15 -93710 -36820 -123890 2 +P 503 2020121 0 15 -93680 -36810 -135840 2 +P 504 2020121 0 15 -93650 -36810 -147790 2 +P 505 2020121 0 15 -93650 -36820 -159740 2 +P 506 2020121 0 15 -93620 -36810 -171690 2 +P 507 2020121 0 15 -93600 -36790 -183640 2 +P 508 2020121 0 15 -93620 -36790 -195590 2 +P 509 2020121 0 15 -93630 -36780 -207540 2 +P 510 2020121 0 15 -93650 -36780 -219490 2 +P 511 2020121 0 15 -93650 -36790 -231440 2 +P 512 2020121 0 15 -93630 -36830 -243390 2 +P 513 2020121 0 16 -43070 -86440 213580 2 +P 514 2020121 0 16 -43110 -86370 189630 2 +P 515 2020121 0 16 -43170 -86310 165680 2 +P 516 2020121 0 16 -43240 -86350 141730 2 +P 517 2020121 0 16 -43260 -86370 129780 2 +P 518 2020121 0 16 -43280 -86410 117830 2 +P 519 2020121 0 16 -43310 -86450 105880 2 +P 520 2020121 0 16 -43330 -86500 93930 2 +P 521 2020121 0 16 -43320 -86540 81980 2 +P 522 2020121 0 16 -43340 -86540 70030 2 +P 523 2020121 0 16 -43370 -86560 58080 2 +P 524 2020121 0 16 -43380 -86610 46130 2 +P 525 2020121 0 16 -43380 -86670 34180 2 +P 526 2020121 0 16 -43370 -86730 22230 2 +P 527 2020121 0 16 -43380 -86750 10280 2 +P 528 2020121 0 16 -43330 -86760 -1670 2 +P 529 2020121 0 16 -43330 -86770 -13620 2 +P 530 2020121 0 16 -43320 -86820 -25570 2 +P 531 2020121 0 16 -43310 -86870 -37520 2 +P 532 2020121 0 16 -43310 -86910 -49470 2 +P 533 2020121 0 16 -43320 -86940 -61420 2 +P 534 2020121 0 16 -43350 -86970 -73370 2 +P 535 2020121 0 16 -43380 -86990 -85320 2 +P 536 2020121 0 16 -43440 -86980 -97270 2 +P 537 2020121 0 16 -43460 -86940 -109220 2 +P 538 2020121 0 16 -43470 -86880 -121170 2 +P 539 2020121 0 16 -43440 -86830 -133120 2 +P 540 2020121 0 16 -43420 -86800 -145070 2 +P 541 2020121 0 16 -43390 -86760 -157020 2 +P 542 2020121 0 16 -43350 -86750 -168970 2 +P 543 2020121 0 16 -43310 -86760 -180920 2 +P 544 2020121 0 16 -43280 -86790 -192870 2 +P 545 2020121 0 16 -43280 -86830 -204820 2 +P 546 2020121 0 16 -43260 -86860 -216770 2 +P 547 2020121 0 16 -43270 -86910 -228720 2 +P 548 2020121 0 16 -43270 -86930 -240670 2 +P 549 2020121 0 16 -43300 -86950 -252620 2 +P 550 2020121 0 16 -43340 -86950 -264570 2 +P 551 2020121 0 16 -43370 -86930 -276520 2 +P 552 2020121 0 16 -43340 -87030 -288470 2 +P 553 2020121 0 16 -43340 -87030 -300420 2 +P 554 2020121 0 16 -43340 -87030 -312370 2 +P 555 2020221 0 17 24380 -92720 728190 2 +P 556 2020121 0 17 24430 -92690 704240 2 +P 557 2020121 0 17 24440 -92640 680290 2 +P 558 2020121 0 17 24450 -92580 656340 2 +P 559 2020221 0 17 24440 -92570 644390 2 +P 560 2020221 0 17 24430 -92530 632440 2 +P 561 2020121 0 17 24420 -92500 620490 2 +P 562 2020121 0 17 24390 -92490 608540 2 +P 563 2020121 0 17 24370 -92490 596590 2 +P 564 2020121 0 17 24350 -92490 584640 2 +P 565 2020121 0 17 24310 -92510 572690 2 +P 566 2020121 0 17 24290 -92520 560740 2 +P 567 2020121 0 17 24300 -92560 548790 2 +P 568 2020121 0 17 24350 -92580 536840 2 +P 569 2020121 0 17 24360 -92560 524890 2 +P 570 2020121 0 17 24360 -92550 512940 2 +P 571 2020121 0 17 24350 -92520 500990 2 +P 572 2020121 0 17 24320 -92540 489040 2 +P 573 2020121 0 17 24350 -92550 477090 2 +P 574 2020121 0 17 24370 -92510 465140 2 +P 575 2020121 0 17 24370 -92480 453190 2 +P 576 2020121 0 17 24370 -92480 441240 2 +P 577 2020121 0 17 24390 -92490 429290 2 +P 578 2020121 0 17 24430 -92500 417340 2 +P 579 2020121 0 17 24440 -92470 405390 2 +P 580 2020121 0 17 24430 -92440 393440 2 +P 581 2020121 0 17 24380 -92440 381490 2 +P 582 2020121 0 17 24340 -92460 369540 2 +P 583 2020121 0 17 24360 -92470 357590 2 +P 584 2020121 0 17 24410 -92520 345640 2 +P 585 2020121 0 17 24450 -92550 333690 2 +P 586 2020121 0 17 24490 -92580 321740 2 +P 587 2020121 0 17 24550 -92590 309790 2 +P 588 2020121 0 17 24600 -92590 297840 2 +P 589 2020221 0 17 24640 -92580 285890 2 +P 590 2020221 0 17 24680 -92560 273940 2 +P 591 2020221 0 17 24710 -92530 261990 2 +P 592 2020221 0 17 24740 -92500 250040 2 +P 593 2020121 0 17 24750 -92480 238090 2 +P 594 2020121 0 17 24730 -92440 226140 2 +P 595 2020221 0 17 24730 -92410 214190 2 +P 596 2020221 0 17 24730 -92390 202240 2 +P 597 2020221 0 18 66630 75740 220170 2 +P 598 2020221 0 18 66640 75720 196220 2 +P 599 2021021 0 18 66640 75650 172270 2 +P 600 2021021 0 18 66610 75590 148320 2 +P 601 2021021 0 18 66580 75570 136370 2 +P 602 2021021 0 18 66570 75530 124420 2 +P 603 2021021 0 18 66570 75520 112470 2 +P 604 2021021 0 18 66570 75470 100520 2 +P 605 2021021 0 18 66580 75440 88570 2 +P 606 2021021 0 18 66590 75420 76620 2 +P 607 2021021 0 18 66590 75380 64670 2 +P 608 2021021 0 18 66610 75350 52720 2 +P 609 2021021 0 18 66640 75360 40770 2 +P 610 2021021 0 18 66610 75390 28820 2 +P 611 2021021 0 18 66580 75420 16870 2 +P 612 2021021 0 18 66560 75440 4920 2 +P 613 2021021 0 18 66520 75460 -7030 2 +P 614 2021021 0 18 66490 75480 -18980 2 +P 615 2021021 0 18 66470 75500 -30930 2 +P 616 2021021 0 18 66440 75500 -42880 2 +P 617 2021021 0 18 66410 75490 -54830 2 +P 618 2021021 0 18 66380 75480 -66780 2 +P 619 2021021 0 18 66340 75480 -78730 2 +P 620 2021021 0 18 66320 75470 -90680 2 +P 621 2021021 0 18 66290 75450 -102630 2 +P 622 2021021 0 18 66280 75430 -114580 2 +P 623 2021021 0 18 66260 75400 -126530 2 +P 624 2021021 0 18 66240 75380 -138480 2 +P 625 2021021 0 18 66240 75350 -150430 2 +P 626 2021021 0 18 66230 75320 -162380 2 +P 627 2021021 0 18 66220 75280 -174330 2 +P 628 2021021 0 18 66220 75250 -186280 2 +P 629 2021021 0 18 66210 75220 -198230 2 +P 630 2021021 0 18 66200 75180 -210180 2 +P 631 2021021 0 18 66210 75160 -222130 2 +P 632 2021021 0 18 66220 75140 -234080 2 +P 633 2021021 0 18 66250 75130 -246030 2 +P 634 2021021 0 18 66270 75140 -257980 2 +P 635 2021021 0 18 66300 75160 -269930 2 +P 636 2021021 0 18 66310 75190 -281880 2 +P 637 2021021 0 18 66310 75220 -293830 2 +P 638 2021021 0 18 66300 75240 -305780 2 +P 639 2020121 0 19 93980 27100 270570 2 +P 640 2020121 0 19 93990 27070 258620 2 +P 641 2020121 0 19 94020 26960 222670 2 +P 642 2020121 0 19 94040 26930 210720 2 +P 643 2020121 0 19 94070 26900 198770 2 +P 644 2020121 0 19 94100 26860 186820 2 +P 645 2020121 0 19 94120 26820 174870 2 +P 646 2020121 0 19 94160 26790 162920 2 +P 647 2020121 0 19 94170 26760 150970 2 +P 648 2020121 0 19 94200 26730 139020 2 +P 649 2020121 0 19 94220 26710 127070 2 +P 650 2020121 0 19 94250 26680 115120 2 +P 651 2020121 0 19 94240 26660 103170 2 +P 652 2020121 0 19 94260 26640 91220 2 +P 653 2020121 0 19 94290 26620 79270 2 +P 654 2020221 0 19 94330 26590 67320 2 +P 655 2020121 0 19 94370 26570 55370 2 +P 656 2020121 0 19 94380 26540 43420 2 +P 657 2020121 0 19 94420 26520 31470 2 +P 658 2020121 0 19 94450 26500 19520 2 +P 659 2020121 0 19 94450 26490 7570 2 +P 660 2020121 0 19 94470 26470 -4380 2 +P 661 2020121 0 19 94500 26450 -16330 2 +P 662 2020121 0 19 94500 26420 -28280 2 +P 663 2020121 0 19 94500 26400 -40230 2 +P 664 2020121 0 19 94490 26370 -52180 2 +P 665 2020121 0 19 94500 26350 -64130 2 +P 666 2020121 0 19 94500 26330 -76080 2 +P 667 2020221 0 19 94500 26310 -88030 2 +P 668 2020221 0 19 94500 26300 -99980 2 +P 669 2020221 0 19 94500 26280 -111930 2 +P 670 2020221 0 19 94500 26270 -123880 2 +P 671 2020221 0 19 94490 26260 -135830 2 +P 672 2020221 0 19 94490 26230 -147780 2 +P 673 2020221 0 19 94470 26210 -159730 2 +P 674 2020221 0 19 94470 26190 -171680 2 +P 675 2020221 0 19 94460 26160 -183630 2 +P 676 2020221 0 19 94470 26140 -195580 2 +P 677 2020221 0 19 94470 26110 -207530 2 +P 678 2020121 0 19 94470 26070 -219480 2 +P 679 2020121 0 19 94460 25940 -255430 2 +P 680 2020121 0 19 94480 25880 -267380 2 +P 681 2021021 0 18 66630 75620 160300 2 +C---------------------------------------------------------------- +C-Time +C---------------------------------------------------------------- +T 1 93.800003 1.041667 769.799988 1 +T 2 186.100006 1.041667 785.599976 1 +T 3 -999999.000000 1.041667 -999999.000000 1 +T 4 369.200012 1.041667 578.900024 1 +T 5 499.299988 1.041667 561.599976 1 +T 6 693.700012 1.041667 557.500000 1 +T 7 669.900024 1.041667 606.500000 1 +T 8 766.500000 1.041667 512.599976 1 +T 9 915.799988 1.041667 492.399994 1 +T 10 978.900024 1.041667 582.400024 1 +T 11 1064.800049 1.041667 678.500000 1 +T 12 1198.500000 1.041667 680.700012 1 +T 13 1288.000000 1.041667 690.700012 1 +T 14 1390.800049 1.041667 705.000000 1 +T 15 1541.300049 1.041667 780.200012 1 +T 16 1525.099976 1.041667 907.799988 1 +T 17 1656.000000 1.041667 668.700012 1 +T 18 1827.800049 1.041667 1850.000000 1 +T 19 1863.300049 1.041667 771.200012 1 +T 20 1953.199951 1.041667 891.700012 1 +T 21 79.099998 1.041667 486.799988 1 +T 22 184.899994 1.041667 452.899994 1 +T 23 277.799988 1.041667 460.799988 1 +T 24 369.799988 1.041667 797.900024 1 +T 25 511.899994 1.041667 456.200012 1 +T 26 552.599976 1.041667 529.799988 1 +T 27 704.299988 1.041667 553.099976 1 +T 28 -999999.000000 1.041667 -999999.000000 1 +T 29 905.099976 1.041667 532.400024 1 +T 30 931.000000 1.041667 551.299988 1 +T 31 1058.400024 1.041667 373.200012 1 +T 32 -999999.000000 1.041667 -999999.000000 1 +T 33 1219.699951 1.041667 716.000000 1 +T 34 1329.400024 1.041667 783.200012 1 +T 35 1369.400024 1.041667 809.599976 1 +T 36 1512.199951 1.041667 822.700012 1 +T 37 1606.900024 1.041667 648.700012 1 +T 38 1706.699951 1.041667 1285.000000 1 +T 39 1818.400024 1.041667 1297.000000 1 +T 40 -999999.000000 1.041667 -999999.000000 1 +T 41 8.400000 1.041667 808.700012 1 +T 42 124.199997 1.041667 747.700012 1 +T 43 202.800003 1.041667 399.200012 1 +T 44 302.200012 1.041667 840.000000 1 +T 45 414.500000 1.041667 516.200012 1 +T 46 487.200012 1.041667 615.599976 1 +T 47 -999999.000000 1.041667 -999999.000000 1 +T 48 687.700012 1.041667 573.299988 1 +T 49 920.400024 1.041667 587.000000 1 +T 50 -999999.000000 1.041667 -999999.000000 1 +T 51 988.200012 1.041667 640.900024 1 +T 52 1084.599976 1.041667 584.799988 1 +T 53 1203.800049 1.041667 723.400024 1 +T 54 1208.599976 1.041667 816.200012 1 +T 55 1363.900024 1.041667 832.000000 1 +T 56 1430.500000 1.041667 814.299988 1 +T 57 -999999.000000 1.041667 -999999.000000 1 +T 58 1667.099976 1.041667 702.200012 1 +T 59 1752.400024 1.041667 858.000000 1 +T 60 1854.699951 1.041667 854.200012 1 +T 61 127.099998 1.041667 749.599976 1 +T 62 -999999.000000 1.041667 -999999.000000 1 +T 63 302.000000 1.041667 623.099976 1 +T 64 363.700012 1.041667 507.200012 1 +T 65 507.399994 1.041667 669.900024 1 +T 66 579.700012 1.041667 636.299988 1 +T 67 665.599976 1.041667 586.400024 1 +T 68 816.500000 1.041667 539.299988 1 +T 69 951.200012 1.041667 505.299988 1 +T 70 957.799988 1.041667 596.400024 1 +T 71 1065.400024 1.041667 729.299988 1 +T 72 1174.599976 1.041667 656.200012 1 +T 73 1379.400024 1.041667 1290.500000 1 +T 74 1315.900024 1.041667 784.799988 1 +T 75 1481.599976 1.041667 712.900024 1 +T 76 1572.000000 1.041667 1056.800049 1 +T 77 1629.000000 1.041667 750.099976 1 +T 78 -999999.000000 1.041667 -999999.000000 1 +T 79 1810.300049 1.041667 790.799988 1 +T 80 1889.699951 1.041667 808.500000 1 +T 81 3397.699951 1.041667 253.600006 1 +T 82 3417.199951 1.041667 120.699997 1 +T 83 3231.000000 1.041667 216.500000 1 +T 84 3182.000000 1.041667 315.899994 1 +T 85 3237.199951 1.041667 265.500000 1 +T 86 3242.199951 1.041667 227.800003 1 +T 87 1076.099976 1.041667 449.100006 1 +T 88 1115.099976 1.041667 244.899994 1 +T 89 1069.900024 1.041667 321.700012 1 +T 90 1107.400024 1.041667 172.399994 1 +T 91 1208.500000 1.041667 334.100006 1 +T 92 1250.199951 1.041667 192.699997 1 +T 93 1294.599976 1.041667 440.299988 1 +T 94 1318.300049 1.041667 231.899994 1 +T 95 1398.000000 1.041667 301.200012 1 +T 96 -999999.000000 1.041667 -999999.000000 1 +T 97 1516.099976 1.041667 356.600006 1 +T 98 1555.000000 1.041667 208.899994 1 +T 99 1586.500000 1.041667 225.699997 1 +T 100 1632.800049 1.041667 278.100006 1 +T 101 1686.099976 1.041667 231.399994 1 +T 102 1736.099976 1.041667 211.000000 1 +T 103 1782.699951 1.041667 245.800003 1 +T 104 1830.400024 1.041667 261.000000 1 +T 105 1941.699951 1.041667 194.899994 1 +T 106 1987.199951 1.041667 264.000000 1 +T 107 2150.000000 1.041667 217.300003 1 +T 108 2198.399902 1.041667 250.800003 1 +T 109 2116.000000 1.041667 227.300003 1 +T 110 2163.100098 1.041667 247.300003 1 +T 111 2410.500000 1.041667 226.199997 1 +T 112 2462.899902 1.041667 200.500000 1 +T 113 2382.899902 1.041667 218.399994 1 +T 114 2426.800049 1.041667 253.600006 1 +T 115 2453.800049 1.041667 245.699997 1 +T 116 2502.300049 1.041667 232.500000 1 +T 117 2531.500000 1.041667 457.200012 1 +T 118 2582.800049 1.041667 247.600006 1 +T 119 2672.300049 1.041667 232.699997 1 +T 120 2728.199951 1.041667 242.199997 1 +T 121 2737.600098 1.041667 304.000000 1 +T 122 2789.300049 1.041667 341.700012 1 +T 123 998.799988 1.041667 389.600006 1 +T 124 1037.900024 1.041667 232.300003 1 +T 125 1019.700012 1.041667 356.200012 1 +T 126 1047.199951 1.041667 277.799988 1 +T 127 1128.900024 1.041667 313.899994 1 +T 128 1159.099976 1.041667 268.899994 1 +T 129 1246.699951 1.041667 331.000000 1 +T 130 1282.500000 1.041667 248.699997 1 +T 131 1332.400024 1.041667 360.399994 1 +T 132 1370.300049 1.041667 182.000000 1 +T 133 1441.400024 1.041667 376.700012 1 +T 134 1485.400024 1.041667 180.100006 1 +T 135 1500.599976 1.041667 189.100006 1 +T 136 1534.300049 1.041667 213.399994 1 +T 137 1631.099976 1.041667 215.199997 1 +T 138 1668.599976 1.041667 259.799988 1 +T 139 1749.900024 1.041667 269.399994 1 +T 140 1800.000000 1.041667 289.600006 1 +T 141 1881.400024 1.041667 265.799988 1 +T 142 1932.500000 1.041667 294.799988 1 +T 143 1948.199951 1.041667 428.200012 1 +T 144 1998.800049 1.041667 282.000000 1 +T 145 2085.100098 1.041667 299.500000 1 +T 146 2136.800049 1.041667 339.399994 1 +T 147 2313.699951 1.041667 251.600006 1 +T 148 2349.699951 1.041667 248.199997 1 +T 149 2380.100098 1.041667 293.100006 1 +T 150 2425.300049 1.041667 268.299988 1 +T 151 2396.600098 1.041667 289.799988 1 +T 152 2446.600098 1.041667 331.700012 1 +T 153 2489.199951 1.041667 264.299988 1 +T 154 2540.199951 1.041667 277.899994 1 +T 155 2564.399902 1.041667 294.000000 1 +T 156 2613.699951 1.041667 284.700012 1 +T 157 2768.800049 1.041667 257.399994 1 +T 158 2830.699951 1.041667 210.000000 1 +T 159 1097.599976 1.041667 253.899994 1 +T 160 1154.699951 1.041667 220.100006 1 +T 161 1101.500000 1.041667 232.300003 1 +T 162 1155.400024 1.041667 212.899994 1 +T 163 1182.400024 1.041667 183.699997 1 +T 164 1223.900024 1.041667 233.000000 1 +T 165 1302.000000 1.041667 219.899994 1 +T 166 1360.800049 1.041667 168.300003 1 +T 167 1404.599976 1.041667 250.100006 1 +T 168 1455.099976 1.041667 217.899994 1 +T 169 1510.599976 1.041667 257.700012 1 +T 170 1556.800049 1.041667 206.500000 1 +T 171 1613.800049 1.041667 136.500000 1 +T 172 1656.400024 1.041667 352.500000 1 +T 173 1715.000000 1.041667 203.100006 1 +T 174 1749.699951 1.041667 282.700012 1 +T 175 1820.300049 1.041667 189.399994 1 +T 176 1869.000000 1.041667 226.600006 1 +T 177 1919.300049 1.041667 180.000000 1 +T 178 1962.900024 1.041667 244.800003 1 +T 179 2142.500000 1.041667 199.800003 1 +T 180 2183.300049 1.041667 270.000000 1 +T 181 2138.500000 1.041667 235.199997 1 +T 182 2184.300049 1.041667 216.600006 1 +T 183 2239.300049 1.041667 197.500000 1 +T 184 2285.600098 1.041667 214.699997 1 +T 185 2472.600098 1.041667 314.500000 1 +T 186 -999999.000000 1.041667 -999999.000000 1 +T 187 2507.899902 1.041667 241.500000 1 +T 188 2551.800049 1.041667 245.199997 1 +T 189 2533.500000 1.041667 278.399994 1 +T 190 2580.600098 1.041667 471.299988 1 +T 191 2648.899902 1.041667 213.199997 1 +T 192 2701.899902 1.041667 260.700012 1 +T 193 2751.000000 1.041667 274.299988 1 +T 194 2792.800049 1.041667 568.900024 1 +T 195 -999999.000000 1.041667 -999999.000000 1 +T 196 1372.699951 1.041667 260.600006 1 +T 197 -999999.000000 1.041667 -999999.000000 1 +T 198 1396.099976 1.041667 263.399994 1 +T 199 -999999.000000 1.041667 -999999.000000 1 +T 200 1512.199951 1.041667 195.399994 1 +T 201 1547.000000 1.041667 355.100006 1 +T 202 1586.199951 1.041667 250.699997 1 +T 203 1643.699951 1.041667 339.100006 1 +T 204 1682.699951 1.041667 237.899994 1 +T 205 1744.900024 1.041667 341.100006 1 +T 206 1775.400024 1.041667 246.600006 1 +T 207 1830.000000 1.041667 305.399994 1 +T 208 1877.199951 1.041667 300.399994 1 +T 209 1952.400024 1.041667 135.300003 1 +T 210 2010.300049 1.041667 116.900002 1 +T 211 2027.300049 1.041667 222.500000 1 +T 212 2065.199951 1.041667 216.300003 1 +T 213 2200.000000 1.041667 305.100006 1 +T 214 2256.800049 1.041667 231.399994 1 +T 215 -999999.000000 1.041667 -999999.000000 1 +T 216 2406.600098 1.041667 228.000000 1 +T 217 2340.399902 1.041667 320.700012 1 +T 218 2392.800049 1.041667 290.700012 1 +T 219 2462.800049 1.041667 371.500000 1 +T 220 2507.300049 1.041667 274.100006 1 +T 221 2702.699951 1.041667 276.100006 1 +T 222 2754.100098 1.041667 262.600006 1 +T 223 2677.100098 1.041667 288.899994 1 +T 224 2737.399902 1.041667 243.800003 1 +T 225 2773.100098 1.041667 286.500000 1 +T 226 2821.199951 1.041667 257.500000 1 +T 227 2857.500000 1.041667 253.600006 1 +T 228 2910.300049 1.041667 347.600006 1 +T 229 2975.100098 1.041667 266.399994 1 +T 230 3015.800049 1.041667 318.299988 1 +T 231 -999999.000000 1.041667 -999999.000000 1 +T 232 -999999.000000 1.041667 -999999.000000 1 +T 233 1189.099976 1.041667 200.600006 1 +T 234 1245.599976 1.041667 243.199997 1 +T 235 1307.199951 1.041667 178.000000 1 +T 236 1353.199951 1.041667 229.500000 1 +T 237 1378.900024 1.041667 259.600006 1 +T 238 1429.599976 1.041667 253.000000 1 +T 239 1482.900024 1.041667 163.899994 1 +T 240 1522.500000 1.041667 203.100006 1 +T 241 1619.000000 1.041667 209.600006 1 +T 242 1666.900024 1.041667 264.200012 1 +T 243 1695.400024 1.041667 215.699997 1 +T 244 1736.800049 1.041667 256.600006 1 +T 245 1804.699951 1.041667 254.100006 1 +T 246 1858.500000 1.041667 307.299988 1 +T 247 1900.500000 1.041667 414.600006 1 +T 248 1952.599976 1.041667 210.000000 1 +T 249 2024.199951 1.041667 214.800003 1 +T 250 2063.300049 1.041667 238.100006 1 +T 251 2191.199951 1.041667 315.700012 1 +T 252 2243.000000 1.041667 290.899994 1 +T 253 2203.100098 1.041667 273.799988 1 +T 254 2252.699951 1.041667 201.500000 1 +T 255 2313.100098 1.041667 254.300003 1 +T 256 2358.500000 1.041667 314.700012 1 +T 257 2557.000000 1.041667 288.000000 1 +T 258 2602.600098 1.041667 299.500000 1 +T 259 2633.100098 1.041667 326.899994 1 +T 260 2681.300049 1.041667 313.899994 1 +T 261 2606.300049 1.041667 333.000000 1 +T 262 2660.000000 1.041667 423.899994 1 +T 263 2712.199951 1.041667 438.299988 1 +T 264 2770.500000 1.041667 278.399994 1 +T 265 2841.199951 1.041667 352.299988 1 +T 266 2893.800049 1.041667 333.700012 1 +T 267 -999999.000000 1.041667 -999999.000000 1 +T 268 1299.699951 1.041667 170.000000 1 +T 269 1249.199951 1.041667 188.399994 1 +T 270 1295.500000 1.041667 217.199997 1 +T 271 1313.800049 1.041667 270.299988 1 +T 272 1369.800049 1.041667 229.399994 1 +T 273 1420.900024 1.041667 255.100006 1 +T 274 1475.699951 1.041667 212.600006 1 +T 275 1553.199951 1.041667 249.899994 1 +T 276 1599.500000 1.041667 181.800003 1 +T 277 1631.099976 1.041667 243.699997 1 +T 278 1676.300049 1.041667 266.799988 1 +T 279 1745.699951 1.041667 224.399994 1 +T 280 1799.099976 1.041667 256.299988 1 +T 281 1816.300049 1.041667 303.200012 1 +T 282 1864.000000 1.041667 306.299988 1 +T 283 1940.599976 1.041667 267.200012 1 +T 284 1990.900024 1.041667 263.100006 1 +T 285 2057.399902 1.041667 210.800003 1 +T 286 2096.699951 1.041667 308.500000 1 +T 287 2270.600098 1.041667 241.699997 1 +T 288 2323.399902 1.041667 202.199997 1 +T 289 2240.199951 1.041667 234.300003 1 +T 290 2285.899902 1.041667 331.899994 1 +T 291 2400.199951 1.041667 274.799988 1 +T 292 2438.500000 1.041667 324.200012 1 +T 293 2612.000000 1.041667 297.200012 1 +T 294 2668.500000 1.041667 245.300003 1 +T 295 2552.899902 1.041667 297.799988 1 +T 296 2616.000000 1.041667 252.399994 1 +T 297 2669.899902 1.041667 296.700012 1 +T 298 2719.500000 1.041667 265.000000 1 +T 299 2754.300049 1.041667 263.600006 1 +T 300 2803.000000 1.041667 279.200012 1 +T 301 2917.100098 1.041667 311.700012 1 +T 302 2969.000000 1.041667 295.399994 1 +T 303 -999999.000000 1.041667 -999999.000000 1 +T 304 -999999.000000 1.041667 -999999.000000 1 +T 305 -999999.000000 1.041667 -999999.000000 1 +T 306 -999999.000000 1.041667 -999999.000000 1 +T 307 615.400024 1.041667 321.500000 1 +T 308 974.200012 1.041667 38.599998 1 +T 309 1116.000000 1.041667 60.200001 1 +T 310 952.799988 1.041667 256.899994 1 +T 311 1519.400024 1.041667 37.400002 1 +T 312 1828.900024 1.041667 82.800003 1 +T 313 1897.400024 1.041667 69.599998 1 +T 314 2024.400024 1.041667 91.199997 1 +T 315 2111.100098 1.041667 53.000000 1 +T 316 2217.500000 1.041667 54.099998 1 +T 317 1940.300049 1.041667 470.200012 1 +T 318 2431.699951 1.041667 59.599998 1 +T 319 2531.500000 1.041667 71.800003 1 +T 320 2638.399902 1.041667 86.599998 1 +T 321 2734.899902 1.041667 52.200001 1 +T 322 2822.899902 1.041667 128.199997 1 +T 323 2927.800049 1.041667 152.000000 1 +T 324 2630.699951 1.041667 729.200012 1 +T 325 3130.699951 1.041667 115.800003 1 +T 326 2868.399902 1.041667 749.799988 1 +T 327 3212.100098 1.041667 80.599998 1 +T 328 3310.500000 1.041667 83.900002 1 +T 329 3420.300049 1.041667 60.700001 1 +T 330 3201.300049 1.041667 815.299988 1 +T 331 3521.000000 1.041667 1467.099976 1 +T 332 3353.300049 1.041667 1014.000000 1 +T 333 3850.199951 1.041667 99.900002 1 +T 334 3943.399902 1.041667 44.099998 1 +T 335 4043.800049 1.041667 105.900002 1 +T 336 4132.000000 1.041667 97.699997 1 +T 337 4444.600098 1.041667 91.099998 1 +T 338 4550.100098 1.041667 64.199997 1 +T 339 4806.600098 1.041667 708.400024 1 +T 340 4828.100098 1.041667 42.599998 1 +T 341 5132.799805 1.041667 40.299999 1 +T 342 5254.500000 1.041667 107.400002 1 +T 343 5532.200195 1.041667 95.900002 1 +T 344 5615.200195 1.041667 17.100000 1 +T 345 143.399994 1.041667 46.000000 1 +T 346 233.199997 1.041667 43.900002 1 +T 347 431.100006 1.041667 229.000000 1 +T 348 255.600006 1.041667 265.399994 1 +T 349 998.299988 1.041667 35.099998 1 +T 350 1039.000000 1.041667 515.400024 1 +T 351 1352.000000 1.041667 27.500000 1 +T 352 1124.500000 1.041667 411.000000 1 +T 353 1592.300049 1.041667 452.000000 1 +T 354 -999999.000000 1.041667 -999999.000000 1 +T 355 1866.500000 1.041667 432.899994 1 +T 356 1692.000000 1.041667 425.200012 1 +T 357 2313.000000 1.041667 48.200001 1 +T 358 1910.400024 1.041667 480.399994 1 +T 359 2526.199951 1.041667 116.000000 1 +T 360 2619.800049 1.041667 37.299999 1 +T 361 2447.699951 1.041667 460.799988 1 +T 362 2822.300049 1.041667 76.199997 1 +T 363 2923.000000 1.041667 46.099998 1 +T 364 2516.699951 1.041667 547.700012 1 +T 365 2931.600098 1.041667 522.000000 1 +T 366 2800.899902 1.041667 569.000000 1 +T 367 3115.699951 1.041667 31.200001 1 +T 368 4766.299805 1.041667 3403.000000 1 +T 369 3313.899902 1.041667 87.599998 1 +T 370 3418.199951 1.041667 54.400002 1 +T 371 3496.199951 1.041667 73.500000 1 +T 372 3615.699951 1.041667 33.200001 1 +T 373 3815.699951 1.041667 36.099998 1 +T 374 3946.600098 1.041667 106.300003 1 +T 375 4036.899902 1.041667 102.300003 1 +T 376 3767.000000 1.041667 827.700012 1 +T 377 4160.399902 1.041667 886.299988 1 +T 378 4379.299805 1.041667 62.099998 1 +T 379 4658.500000 1.041667 79.599998 1 +T 380 4783.399902 1.041667 91.300003 1 +T 381 5061.700195 1.041667 83.199997 1 +T 382 5159.600098 1.041667 74.500000 1 +T 383 5559.899902 1.041667 30.000000 1 +T 384 5604.600098 1.041667 29.100000 1 +T 385 6086.700195 1.041667 66.300003 1 +T 386 5750.600098 1.041667 755.900024 1 +T 387 -999999.000000 1.041667 -999999.000000 1 +T 388 -999999.000000 1.041667 -999999.000000 1 +T 389 270.100006 1.041667 454.500000 1 +T 390 65.800003 1.041667 754.500000 1 +T 391 601.500000 1.041667 661.000000 1 +T 392 1542.500000 1.041667 39.299999 1 +T 393 1807.300049 1.041667 54.000000 1 +T 394 1934.300049 1.041667 32.099998 1 +T 395 2218.399902 1.041667 28.900000 1 +T 396 2316.800049 1.041667 60.299999 1 +T 397 2426.899902 1.041667 19.600000 1 +T 398 2530.100098 1.041667 44.400002 1 +T 399 2524.899902 1.041667 63.400002 1 +T 400 -999999.000000 1.041667 -999999.000000 1 +T 401 -999999.000000 1.041667 -999999.000000 1 +T 402 2832.800049 1.041667 52.099998 1 +T 403 2926.899902 1.041667 63.700001 1 +T 404 3025.399902 1.041667 74.300003 1 +T 405 3129.399902 1.041667 53.299999 1 +T 406 -999999.000000 1.041667 -999999.000000 1 +T 407 3335.500000 1.041667 62.299999 1 +T 408 2643.300049 1.041667 626.599976 1 +T 409 3060.600098 1.041667 572.299988 1 +T 410 2886.199951 1.041667 377.100006 1 +T 411 3379.699951 1.041667 128.500000 1 +T 412 3039.000000 1.041667 655.599976 1 +T 413 3415.100098 1.041667 631.700012 1 +T 414 3683.699951 1.041667 55.500000 1 +T 415 3459.600098 1.041667 804.500000 1 +T 416 -999999.000000 1.041667 -999999.000000 1 +T 417 3750.000000 1.041667 536.000000 1 +T 418 -999999.000000 1.041667 -999999.000000 1 +T 419 3917.899902 1.041667 605.099976 1 +T 420 4270.600098 1.041667 33.700001 1 +T 421 4344.799805 1.041667 813.299988 1 +T 422 4689.600098 1.041667 18.000000 1 +T 423 4969.700195 1.041667 90.199997 1 +T 424 -999999.000000 1.041667 -999999.000000 1 +T 425 5204.299805 1.041667 896.599976 1 +T 426 5475.399902 1.041667 15.300000 1 +T 427 -999999.000000 1.041667 -999999.000000 1 +T 428 -999999.000000 1.041667 -999999.000000 1 +T 429 2299.199951 1.041667 89.300003 1 +T 430 1324.500000 1.041667 1121.000000 1 +T 431 2537.300049 1.041667 106.400002 1 +T 432 2606.500000 1.041667 127.699997 1 +T 433 2668.899902 1.041667 86.099998 1 +T 434 2727.500000 1.041667 128.300003 1 +T 435 2788.300049 1.041667 125.900002 1 +T 436 2850.300049 1.041667 136.300003 1 +T 437 2922.000000 1.041667 117.000000 1 +T 438 2977.000000 1.041667 84.599998 1 +T 439 3039.699951 1.041667 134.300003 1 +T 440 3100.699951 1.041667 88.400002 1 +T 441 3161.199951 1.041667 108.900002 1 +T 442 2217.800049 1.041667 1724.000000 1 +T 443 3286.500000 1.041667 93.000000 1 +T 444 2226.800049 1.041667 915.900024 1 +T 445 3249.100098 1.041667 87.300003 1 +T 446 2371.500000 1.041667 866.200012 1 +T 447 -999999.000000 1.041667 -999999.000000 1 +T 448 3437.100098 1.041667 86.000000 1 +T 449 3483.600098 1.041667 135.500000 1 +T 450 3558.500000 1.041667 111.599998 1 +T 451 3608.199951 1.041667 86.800003 1 +T 452 3665.399902 1.041667 78.800003 1 +T 453 2871.399902 1.041667 2274.000000 1 +T 454 4139.100098 1.041667 81.099998 1 +T 455 -999999.000000 1.041667 -999999.000000 1 +T 456 2943.199951 1.041667 1958.000000 1 +T 457 2992.399902 1.041667 1602.000000 1 +T 458 4381.700195 1.041667 135.300003 1 +T 459 4452.100098 1.041667 100.500000 1 +T 460 4506.500000 1.041667 87.500000 1 +T 461 4580.000000 1.041667 100.500000 1 +T 462 4629.000000 1.041667 115.199997 1 +T 463 3548.600098 1.041667 3205.000000 1 +T 464 4748.299805 1.041667 94.699997 1 +T 465 3551.199951 1.041667 2611.000000 1 +T 466 4674.500000 1.041667 129.600006 1 +T 467 4742.700195 1.041667 95.900002 1 +T 468 4807.600098 1.041667 79.599998 1 +T 469 4991.899902 1.041667 138.800003 1 +T 470 5043.500000 1.041667 108.099998 1 +T 471 2245.100098 1.041667 81.300003 1 +T 472 1649.199951 1.041667 1105.000000 1 +T 473 2495.399902 1.041667 83.800003 1 +T 474 2554.000000 1.041667 127.800003 1 +T 475 2563.899902 1.041667 18.299999 1 +T 476 2032.800049 1.041667 1372.000000 1 +T 477 2224.399902 1.041667 1278.000000 1 +T 478 2836.399902 1.041667 123.300003 1 +T 479 2902.399902 1.041667 146.100006 1 +T 480 2330.399902 1.041667 356.399994 1 +T 481 2970.300049 1.041667 90.000000 1 +T 482 3060.000000 1.041667 89.900002 1 +T 483 2667.800049 1.041667 1471.000000 1 +T 484 3175.000000 1.041667 75.500000 1 +T 485 3133.300049 1.041667 138.000000 1 +T 486 3069.800049 1.041667 -8.500000 1 +T 487 3110.699951 1.041667 113.900002 1 +T 488 2785.699951 1.041667 1420.000000 1 +T 489 2939.000000 1.041667 1532.000000 1 +T 490 3295.000000 1.041667 94.199997 1 +T 491 3360.399902 1.041667 37.799999 1 +T 492 3415.199951 1.041667 111.599998 1 +T 493 3480.500000 1.041667 114.300003 1 +T 494 -999999.000000 1.041667 -999999.000000 1 +T 495 3769.600098 1.041667 97.599998 1 +T 496 3830.899902 1.041667 147.600006 1 +T 497 3900.199951 1.041667 65.800003 1 +T 498 3361.399902 1.041667 1679.000000 1 +T 499 3998.399902 1.041667 115.900002 1 +T 500 4066.500000 1.041667 155.800003 1 +T 501 4115.200195 1.041667 121.599998 1 +T 502 4183.799805 1.041667 134.000000 1 +T 503 -999999.000000 1.041667 -999999.000000 1 +T 504 4305.600098 1.041667 94.099998 1 +T 505 4364.500000 1.041667 145.000000 1 +T 506 4427.799805 1.041667 106.800003 1 +T 507 4370.899902 1.041667 74.300003 1 +T 508 4421.899902 1.041667 25.400000 1 +T 509 -999999.000000 1.041667 -999999.000000 1 +T 510 4536.899902 1.041667 89.699997 1 +T 511 4597.200195 1.041667 114.500000 1 +T 512 4657.200195 1.041667 91.300003 1 +T 513 2034.000000 1.041667 116.300003 1 +T 514 2151.399902 1.041667 130.000000 1 +T 515 1468.099976 1.041667 1708.000000 1 +T 516 2412.100098 1.041667 124.800003 1 +T 517 2498.800049 1.041667 98.000000 1 +T 518 2514.100098 1.041667 93.900002 1 +T 519 2602.000000 1.041667 161.199997 1 +T 520 2670.899902 1.041667 123.800003 1 +T 521 2717.600098 1.041667 140.800003 1 +T 522 1981.599976 1.041667 1902.000000 1 +T 523 2854.500000 1.041667 123.000000 1 +T 524 2928.899902 1.041667 125.000000 1 +T 525 2982.500000 1.041667 77.300003 1 +T 526 2231.899902 1.041667 1291.000000 1 +T 527 3108.800049 1.041667 101.500000 1 +T 528 2400.600098 1.041667 941.500000 1 +T 529 3022.899902 1.041667 116.400002 1 +T 530 3096.899902 1.041667 109.000000 1 +T 531 2823.100098 1.041667 557.700012 1 +T 532 2660.199951 1.041667 1665.000000 1 +T 533 2850.500000 1.041667 1790.000000 1 +T 534 3311.399902 1.041667 84.199997 1 +T 535 3383.500000 1.041667 141.899994 1 +T 536 3449.199951 1.041667 122.500000 1 +T 537 4318.600098 1.041667 96.900002 1 +T 538 4389.799805 1.041667 76.300003 1 +T 539 4455.799805 1.041667 97.500000 1 +T 540 4503.299805 1.041667 119.400002 1 +T 541 4568.500000 1.041667 119.000000 1 +T 542 4631.100098 1.041667 110.800003 1 +T 543 -999999.000000 1.041667 -999999.000000 1 +T 544 4757.500000 1.041667 83.599998 1 +T 545 4813.299805 1.041667 155.399994 1 +T 546 4885.299805 1.041667 152.399994 1 +T 547 4931.600098 1.041667 143.000000 1 +T 548 4995.600098 1.041667 102.699997 1 +T 549 4916.899902 1.041667 113.300003 1 +T 550 4975.899902 1.041667 109.500000 1 +T 551 5039.399902 1.041667 116.500000 1 +T 552 5131.100098 1.041667 17.100000 1 +T 553 5160.600098 1.041667 120.099998 1 +T 554 5219.000000 1.041667 108.599998 1 +T 555 -999999.000000 1.041667 -999999.000000 1 +T 556 -999999.000000 1.041667 -999999.000000 1 +T 557 -999999.000000 1.041667 -999999.000000 1 +T 558 -999999.000000 1.041667 -999999.000000 1 +T 559 -999999.000000 1.041667 -999999.000000 1 +T 560 -999999.000000 1.041667 -999999.000000 1 +T 561 -999999.000000 1.041667 -999999.000000 1 +T 562 -999999.000000 1.041667 -999999.000000 1 +T 563 -999999.000000 1.041667 -999999.000000 1 +T 564 -999999.000000 1.041667 -999999.000000 1 +T 565 -999999.000000 1.041667 -999999.000000 1 +T 566 -999999.000000 1.041667 -999999.000000 1 +T 567 -999999.000000 1.041667 -999999.000000 1 +T 568 -999999.000000 1.041667 -999999.000000 1 +T 569 -999999.000000 1.041667 -999999.000000 1 +T 570 -999999.000000 1.041667 -999999.000000 1 +T 571 -999999.000000 1.041667 -999999.000000 1 +T 572 -999999.000000 1.041667 -999999.000000 1 +T 573 -999999.000000 1.041667 -999999.000000 1 +T 574 -999999.000000 1.041667 -999999.000000 1 +T 575 -999999.000000 1.041667 -999999.000000 1 +T 576 -999999.000000 1.041667 -999999.000000 1 +T 577 -999999.000000 1.041667 -999999.000000 1 +T 578 -999999.000000 1.041667 -999999.000000 1 +T 579 -999999.000000 1.041667 -999999.000000 1 +T 580 788.099976 1.041667 892.000000 1 +T 581 3721.399902 1.041667 91.500000 1 +T 582 974.099976 1.041667 1571.000000 1 +T 583 1236.800049 1.041667 1214.000000 1 +T 584 3908.699951 1.041667 116.199997 1 +T 585 1338.800049 1.041667 1334.000000 1 +T 586 4016.600098 1.041667 83.000000 1 +T 587 -999999.000000 1.041667 -999999.000000 1 +T 588 4176.700195 1.041667 108.900002 1 +T 589 4204.399902 1.041667 88.500000 1 +T 590 -999999.000000 1.041667 -999999.000000 1 +T 591 4219.799805 1.041667 122.599998 1 +T 592 4281.799805 1.041667 116.699997 1 +T 593 1740.900024 1.041667 1451.199951 1 +T 594 1655.400024 1.041667 1500.000000 1 +T 595 -999999.000000 1.041667 -999999.000000 1 +T 596 -999999.000000 1.041667 -999999.000000 1 +T 597 1840.099976 1.041667 74.300003 1 +T 598 1974.000000 1.041667 79.199997 1 +T 599 2071.399902 1.041667 45.400002 1 +T 600 2196.600098 1.041667 33.400002 1 +T 601 -999999.000000 1.041667 -999999.000000 1 +T 602 2329.199951 1.041667 46.700001 1 +T 603 2373.600098 1.041667 78.800003 1 +T 604 -999999.000000 1.041667 -999999.000000 1 +T 605 2549.300049 1.041667 87.800003 1 +T 606 2570.000000 1.041667 88.500000 1 +T 607 2612.800049 1.041667 116.199997 1 +T 608 2742.800049 1.041667 47.599998 1 +T 609 2771.699951 1.041667 76.300003 1 +T 610 -999999.000000 1.041667 -999999.000000 1 +T 611 2879.000000 1.041667 79.300003 1 +T 612 2741.399902 1.041667 109.500000 1 +T 613 2775.500000 1.041667 139.800003 1 +T 614 2858.000000 1.041667 101.400002 1 +T 615 2922.000000 1.041667 97.199997 1 +T 616 2987.300049 1.041667 105.599998 1 +T 617 3052.100098 1.041667 94.000000 1 +T 618 3107.199951 1.041667 76.400002 1 +T 619 3152.899902 1.041667 155.899994 1 +T 620 -999999.000000 1.041667 -999999.000000 1 +T 621 3737.699951 1.041667 99.900002 1 +T 622 3797.300049 1.041667 167.300003 1 +T 623 3853.199951 1.041667 96.300003 1 +T 624 3926.199951 1.041667 77.699997 1 +T 625 3975.899902 1.041667 90.500000 1 +T 626 4046.300049 1.041667 84.699997 1 +T 627 4104.799805 1.041667 59.200001 1 +T 628 4169.899902 1.041667 115.699997 1 +T 629 4230.100098 1.041667 93.699997 1 +T 630 4290.500000 1.041667 154.699997 1 +T 631 4349.100098 1.041667 30.500000 1 +T 632 -999999.000000 1.041667 -999999.000000 1 +T 633 4248.600098 1.041667 62.000000 1 +T 634 4309.100098 1.041667 150.300003 1 +T 635 4359.100098 1.041667 106.599998 1 +T 636 4427.500000 1.041667 178.500000 1 +T 637 4498.399902 1.041667 80.800003 1 +T 638 4551.799805 1.041667 93.900002 1 +T 639 1274.500000 1.041667 1881.000000 1 +T 640 2178.399902 1.041667 100.699997 1 +T 641 2351.500000 1.041667 73.599998 1 +T 642 1438.500000 1.041667 1114.000000 1 +T 643 2469.800049 1.041667 128.899994 1 +T 644 2537.100098 1.041667 80.800003 1 +T 645 2598.500000 1.041667 82.800003 1 +T 646 2663.399902 1.041667 79.800003 1 +T 647 2722.199951 1.041667 47.500000 1 +T 648 2779.800049 1.041667 105.400002 1 +T 649 2845.300049 1.041667 131.899994 1 +T 650 1979.099976 1.041667 1154.000000 1 +T 651 2965.199951 1.041667 104.400002 1 +T 652 2085.600098 1.041667 1276.000000 1 +T 653 3087.600098 1.041667 105.000000 1 +T 654 3005.600098 1.041667 148.300003 1 +T 655 3049.199951 1.041667 96.699997 1 +T 656 3113.399902 1.041667 118.500000 1 +T 657 3174.500000 1.041667 79.099998 1 +T 658 2300.600098 1.041667 1540.000000 1 +T 659 3292.800049 1.041667 81.400002 1 +T 660 3357.000000 1.041667 131.600006 1 +T 661 3414.800049 1.041667 124.400002 1 +T 662 3500.000000 1.041667 146.500000 1 +T 663 3619.500000 1.041667 120.699997 1 +T 664 3709.300049 1.041667 93.599998 1 +T 665 3754.500000 1.041667 117.400002 1 +T 666 3808.199951 1.041667 95.400002 1 +T 667 3894.399902 1.041667 190.500000 1 +T 668 3959.600098 1.041667 263.200012 1 +T 669 4011.300049 1.041667 190.699997 1 +T 670 4065.600098 1.041667 107.900002 1 +T 671 4168.100098 1.041667 94.699997 1 +T 672 4202.500000 1.041667 99.300003 1 +T 673 4238.600098 1.041667 379.200012 1 +T 674 4326.600098 1.041667 176.199997 1 +T 675 -999999.000000 1.041667 -999999.000000 1 +T 676 3777.600098 1.041667 900.000000 1 +T 677 -999999.000000 1.041667 -999999.000000 1 +T 678 4362.100098 1.041667 99.800003 1 +T 679 4535.600098 1.041667 120.199997 1 +T 680 3942.699951 1.041667 1851.000000 1 +C---------------------------------------------------------------- +C-ADC +C---------------------------------------------------------------- +A 1 0 0.00622820 0 1 +A 2 0 0.00698519 0 1 +A 3 0 -0.00000100 0 1 +A 4 0 0.00600601 0 1 +A 5 0 0.01409245 0 1 +A 6 0 0.00721137 0 1 +A 7 0 0.01220405 0 1 +A 8 0 0.01241619 0 1 +A 9 0 0.00855066 0 1 +A 10 0 0.00927300 0 1 +A 11 0 0.00885818 0 1 +A 12 0 0.00639059 0 1 +A 13 0 0.00595877 0 1 +A 14 0 0.00759071 0 1 +A 15 0 0.00380677 0 1 +A 16 0 0.00821355 0 1 +A 17 0 0.00962001 0 1 +A 18 0 0.00835073 0 1 +A 19 0 0.00754375 0 1 +A 20 0 0.00750019 0 1 +A 21 0 0.01479071 0 1 +A 22 0 0.01397429 0 1 +A 23 0 0.03703704 0 1 +A 24 0 0.00971628 0 1 +A 25 0 0.01543448 0 1 +A 26 0 0.00648088 0 1 +A 27 0 0.01376462 0 1 +A 28 0 -0.00000100 0 1 +A 29 0 0.01069519 0 1 +A 30 0 0.01258970 0 1 +A 31 0 0.03703704 0 1 +A 32 0 -0.00000100 0 1 +A 33 0 0.01064056 0 1 +A 34 0 0.00597265 0 1 +A 35 0 0.00483279 0 1 +A 36 0 0.01550147 0 1 +A 37 0 0.00891186 0 1 +A 38 0 0.00514430 0 1 +A 39 0 0.00814465 0 1 +A 40 0 -0.00000100 0 1 +A 41 0 0.00831117 0 1 +A 42 0 0.00782473 0 1 +A 43 0 0.01048548 0 1 +A 44 0 0.00512610 0 1 +A 45 0 0.01008675 0 1 +A 46 0 0.00646621 0 1 +A 47 0 -0.00000100 0 1 +A 48 0 0.01679825 0 1 +A 49 0 0.00702741 0 1 +A 50 0 -0.00000100 0 1 +A 51 0 0.01008065 0 1 +A 52 0 0.00786349 0 1 +A 53 0 0.00573723 0 1 +A 54 0 0.00643418 0 1 +A 55 0 0.00604266 0 1 +A 56 0 0.00578670 0 1 +A 57 0 -0.00000100 0 1 +A 58 0 0.01022390 0 1 +A 59 0 0.00576136 0 1 +A 60 0 0.00895576 0 1 +A 61 0 0.00423908 0 1 +A 62 0 -0.00000100 0 1 +A 63 0 0.02000000 0 1 +A 64 0 0.01007252 0 1 +A 65 0 0.00928505 0 1 +A 66 0 0.00908513 0 1 +A 67 0 0.01203804 0 1 +A 68 0 0.00918780 0 1 +A 69 0 0.00903098 0 1 +A 70 0 0.00983091 0 1 +A 71 0 0.00992063 0 1 +A 72 0 0.00942685 0 1 +A 73 0 0.00825764 0 1 +A 74 0 0.02777778 0 1 +A 75 0 0.01409841 0 1 +A 76 0 0.00915499 0 1 +A 77 0 0.00975800 0 1 +A 78 0 -0.00000100 0 1 +A 79 0 0.00797321 0 1 +A 80 0 0.00675037 0 1 +A 81 0 0.00418533 0 1 +A 82 0 0.01070320 0 1 +A 83 0 0.00631712 0 1 +A 84 0 0.00480584 0 1 +A 85 0 0.00482509 0 1 +A 86 0 0.00509866 0 1 +A 87 0 0.00333389 0 1 +A 88 0 0.00364485 0 1 +A 89 0 0.00481116 0 1 +A 90 0 0.01527650 0 1 +A 91 0 0.00407897 0 1 +A 92 0 0.00535217 0 1 +A 93 0 0.00732279 0 1 +A 94 0 0.00625430 0 1 +A 95 0 0.00702346 0 1 +A 96 0 -0.00000100 0 1 +A 97 0 0.00550449 0 1 +A 98 0 0.00814399 0 1 +A 99 0 0.00849979 0 1 +A 100 0 0.00562240 0 1 +A 101 0 0.00996612 0 1 +A 102 0 0.01406074 0 1 +A 103 0 0.00551207 0 1 +A 104 0 0.00398549 0 1 +A 105 0 0.01103996 0 1 +A 106 0 0.00508337 0 1 +A 107 0 0.00908265 0 1 +A 108 0 0.00702445 0 1 +A 109 0 0.01061909 0 1 +A 110 0 0.00595486 0 1 +A 111 0 0.00713827 0 1 +A 112 0 0.01474709 0 1 +A 113 0 0.01188637 0 1 +A 114 0 0.00585892 0 1 +A 115 0 0.00612108 0 1 +A 116 0 0.00876808 0 1 +A 117 0 0.00499925 0 1 +A 118 0 0.00904814 0 1 +A 119 0 0.01150086 0 1 +A 120 0 0.00949037 0 1 +A 121 0 0.00808734 0 1 +A 122 0 0.00626684 0 1 +A 123 0 0.00438423 0 1 +A 124 0 0.01000100 0 1 +A 125 0 0.00420398 0 1 +A 126 0 0.00529521 0 1 +A 127 0 0.00639018 0 1 +A 128 0 0.00542947 0 1 +A 129 0 0.00572836 0 1 +A 130 0 0.00755173 0 1 +A 131 0 0.00719062 0 1 +A 132 0 0.01261989 0 1 +A 133 0 0.00473104 0 1 +A 134 0 0.01313543 0 1 +A 135 0 0.00898957 0 1 +A 136 0 0.00840124 0 1 +A 137 0 0.00959233 0 1 +A 138 0 0.00440025 0 1 +A 139 0 0.00599448 0 1 +A 140 0 0.00597051 0 1 +A 141 0 0.00551420 0 1 +A 142 0 0.00482462 0 1 +A 143 0 0.00940203 0 1 +A 144 0 0.00551055 0 1 +A 145 0 0.00452304 0 1 +A 146 0 0.00417049 0 1 +A 147 0 0.01289823 0 1 +A 148 0 0.01395479 0 1 +A 149 0 0.00999800 0 1 +A 150 0 0.00495148 0 1 +A 151 0 0.00805023 0 1 +A 152 0 0.00444444 0 1 +A 153 0 0.01082017 0 1 +A 154 0 0.00961538 0 1 +A 155 0 0.00580282 0 1 +A 156 0 0.00599520 0 1 +A 157 0 0.00847314 0 1 +A 158 0 0.01282216 0 1 +A 159 0 0.00349871 0 1 +A 160 0 0.00385416 0 1 +A 161 0 0.00436757 0 1 +A 162 0 0.00483699 0 1 +A 163 0 0.00879507 0 1 +A 164 0 0.00532255 0 1 +A 165 0 0.00499975 0 1 +A 166 0 0.01296680 0 1 +A 167 0 0.00418533 0 1 +A 168 0 0.00561766 0 1 +A 169 0 0.00510360 0 1 +A 170 0 0.00781800 0 1 +A 171 0 0.01525088 0 1 +A 172 0 0.00823045 0 1 +A 173 0 0.01010816 0 1 +A 174 0 0.00522521 0 1 +A 175 0 0.01526484 0 1 +A 176 0 0.01111235 0 1 +A 177 0 0.01393923 0 1 +A 178 0 0.00541155 0 1 +A 179 0 0.01231830 0 1 +A 180 0 0.00665956 0 1 +A 181 0 0.01065417 0 1 +A 182 0 0.01442793 0 1 +A 183 0 0.01537515 0 1 +A 184 0 0.01531863 0 1 +A 185 0 0.00915835 0 1 +A 186 0 -0.00000100 0 1 +A 187 0 0.01241157 0 1 +A 188 0 0.00785669 0 1 +A 189 0 0.01005227 0 1 +A 190 0 0.00364564 0 1 +A 191 0 0.01181893 0 1 +A 192 0 0.00831601 0 1 +A 193 0 0.01160631 0 1 +A 194 0 0.00379954 0 1 +A 195 0 -0.00000100 0 1 +A 196 0 0.00421230 0 1 +A 197 0 -0.00000100 0 1 +A 198 0 0.00383347 0 1 +A 199 0 -0.00000100 0 1 +A 200 0 0.00663922 0 1 +A 201 0 0.00268413 0 1 +A 202 0 0.00401558 0 1 +A 203 0 0.00376025 0 1 +A 204 0 0.00654322 0 1 +A 205 0 0.00523725 0 1 +A 206 0 0.00501052 0 1 +A 207 0 0.00495540 0 1 +A 208 0 0.00388123 0 1 +A 209 0 0.01482360 0 1 +A 210 0 0.01762736 0 1 +A 211 0 0.00572902 0 1 +A 212 0 0.00884643 0 1 +A 213 0 0.00301286 0 1 +A 214 0 0.00748503 0 1 +A 215 0 -0.00000100 0 1 +A 216 0 0.00946074 0 1 +A 217 0 0.00357143 0 1 +A 218 0 0.00408948 0 1 +A 219 0 0.00307645 0 1 +A 220 0 0.00551998 0 1 +A 221 0 0.00493827 0 1 +A 222 0 0.00741510 0 1 +A 223 0 0.00357526 0 1 +A 224 0 0.00862366 0 1 +A 225 0 0.00392943 0 1 +A 226 0 0.00756659 0 1 +A 227 0 0.00597586 0 1 +A 228 0 0.00461212 0 1 +A 229 0 0.00607312 0 1 +A 230 0 0.00492029 0 1 +A 231 0 -0.00000100 0 1 +A 232 0 -0.00000100 0 1 +A 233 0 0.00547016 0 1 +A 234 0 0.00985999 0 1 +A 235 0 0.00546986 0 1 +A 236 0 0.00439406 0 1 +A 237 0 0.00367539 0 1 +A 238 0 0.00406157 0 1 +A 239 0 0.01527184 0 1 +A 240 0 0.00717824 0 1 +A 241 0 0.01003311 0 1 +A 242 0 0.00492708 0 1 +A 243 0 0.00602736 0 1 +A 244 0 0.00682827 0 1 +A 245 0 0.00545256 0 1 +A 246 0 0.00289737 0 1 +A 247 0 0.00449075 0 1 +A 248 0 0.00628931 0 1 +A 249 0 0.01173709 0 1 +A 250 0 0.00864304 0 1 +A 251 0 0.00450775 0 1 +A 252 0 0.00415093 0 1 +A 253 0 0.00624571 0 1 +A 254 0 0.01346076 0 1 +A 255 0 0.00953562 0 1 +A 256 0 0.00398010 0 1 +A 257 0 0.00706065 0 1 +A 258 0 0.00725426 0 1 +A 259 0 0.00484168 0 1 +A 260 0 0.00540307 0 1 +A 261 0 0.00421141 0 1 +A 262 0 0.00461021 0 1 +A 263 0 0.00627628 0 1 +A 264 0 0.01015538 0 1 +A 265 0 -0.00000100 0 1 +A 266 0 -0.00000100 0 1 +A 267 0 -0.00000100 0 1 +A 268 0 0.00652486 0 1 +A 269 0 0.00551694 0 1 +A 270 0 0.00580450 0 1 +A 271 0 0.00446648 0 1 +A 272 0 0.00531293 0 1 +A 273 0 0.00594177 0 1 +A 274 0 0.00744934 0 1 +A 275 0 0.00475556 0 1 +A 276 0 0.00999201 0 1 +A 277 0 0.00540628 0 1 +A 278 0 0.00429627 0 1 +A 279 0 0.00817461 0 1 +A 280 0 0.00578369 0 1 +A 281 0 0.00496278 0 1 +A 282 0 0.00497711 0 1 +A 283 0 0.01032098 0 1 +A 284 0 0.00543331 0 1 +A 285 0 0.01638538 0 1 +A 286 0 0.00426913 0 1 +A 287 0 0.01360729 0 1 +A 288 0 0.01390821 0 1 +A 289 0 0.01336720 0 1 +A 290 0 0.00443321 0 1 +A 291 0 0.00732493 0 1 +A 292 0 0.00462770 0 1 +A 293 0 0.00787464 0 1 +A 294 0 0.01586798 0 1 +A 295 0 0.00797766 0 1 +A 296 0 0.00886289 0 1 +A 297 0 0.00849834 0 1 +A 298 0 0.00912076 0 1 +A 299 0 0.01487652 0 1 +A 300 0 0.01451800 0 1 +A 301 0 0.01006137 0 1 +A 302 0 0.00579643 0 1 +A 303 0 -0.00000100 0 1 +A 304 0 -0.00000100 0 1 +A 305 0 -0.00000100 0 1 +A 306 0 -0.00000100 0 1 +A 307 0 0.00692569 0 1 +A 308 0 0.00611733 0 1 +A 309 0 0.00607755 0 1 +A 310 0 0.01418440 0 1 +A 311 0 0.00590493 0 1 +A 312 0 0.00612482 0 1 +A 313 0 0.00677140 0 1 +A 314 0 0.00377772 0 1 +A 315 0 0.00789578 0 1 +A 316 0 0.00236105 0 1 +A 317 0 0.00727908 0 1 +A 318 0 0.01005733 0 1 +A 319 0 0.00814797 0 1 +A 320 0 0.01130071 0 1 +A 321 0 0.00303150 0 1 +A 322 0 0.00238852 0 1 +A 323 0 0.00882768 0 1 +A 324 0 0.00587510 0 1 +A 325 0 0.00356100 0 1 +A 326 0 0.00862143 0 1 +A 327 0 0.00576302 0 1 +A 328 0 0.00394042 0 1 +A 329 0 0.00363438 0 1 +A 330 0 0.00604449 0 1 +A 331 0 0.00500726 0 1 +A 332 0 0.00529689 0 1 +A 333 0 0.00972101 0 1 +A 334 0 0.00469087 0 1 +A 335 0 0.00606539 0 1 +A 336 0 0.00744214 0 1 +A 337 0 0.00825151 0 1 +A 338 0 0.00668673 0 1 +A 339 0 0.00828706 0 1 +A 340 0 0.00762195 0 1 +A 341 0 0.00621620 0 1 +A 342 0 0.00874814 0 1 +A 343 0 0.00522302 0 1 +A 344 0 0.00658155 0 1 +A 345 0 0.01144427 0 1 +A 346 0 0.00557849 0 1 +A 347 0 0.01668335 0 1 +A 348 0 0.00718959 0 1 +A 349 0 0.00607681 0 1 +A 350 0 0.00426949 0 1 +A 351 0 0.00633754 0 1 +A 352 0 -0.00000100 0 1 +A 353 0 0.00834446 0 1 +A 354 0 -0.00000100 0 1 +A 355 0 0.01175226 0 1 +A 356 0 0.01186240 0 1 +A 357 0 0.00309492 0 1 +A 358 0 0.00509658 0 1 +A 359 0 0.00417327 0 1 +A 360 0 0.01464558 0 1 +A 361 0 0.00827198 0 1 +A 362 0 0.01429593 0 1 +A 363 0 0.01387155 0 1 +A 364 0 0.00949848 0 1 +A 365 0 0.01473188 0 1 +A 366 0 0.00624376 0 1 +A 367 0 0.00841468 0 1 +A 368 0 0.00753352 0 1 +A 369 0 0.01017397 0 1 +A 370 0 0.00738662 0 1 +A 371 0 0.01326964 0 1 +A 372 0 0.00796242 0 1 +A 373 0 0.00717978 0 1 +A 374 0 0.00393360 0 1 +A 375 0 0.01195172 0 1 +A 376 0 0.00565323 0 1 +A 377 0 0.00473485 0 1 +A 378 0 0.01925298 0 1 +A 379 0 0.00631114 0 1 +A 380 0 0.00830841 0 1 +A 381 0 0.00710126 0 1 +A 382 0 0.00683714 0 1 +A 383 0 0.00595274 0 1 +A 384 0 0.00352560 0 1 +A 385 0 0.01228199 0 1 +A 386 0 0.01121831 0 1 +A 387 0 -0.00000100 0 1 +A 388 0 0.01394506 0 1 +A 389 0 0.00740741 0 1 +A 390 0 0.00787340 0 1 +A 391 0 0.00606759 0 1 +A 392 0 0.00799616 0 1 +A 393 0 0.00437886 0 1 +A 394 0 0.00855139 0 1 +A 395 0 0.00610986 0 1 +A 396 0 0.01043841 0 1 +A 397 0 0.00694155 0 1 +A 398 0 0.00747161 0 1 +A 399 0 0.01123722 0 1 +A 400 0 -0.00000100 0 1 +A 401 0 -0.00000100 0 1 +A 402 0 0.02447981 0 1 +A 403 0 0.00754888 0 1 +A 404 0 0.00406570 0 1 +A 405 0 0.00513084 0 1 +A 406 0 -0.00000100 0 1 +A 407 0 0.00554693 0 1 +A 408 0 0.00763825 0 1 +A 409 0 0.01871608 0 1 +A 410 0 0.01014507 0 1 +A 411 0 0.00654922 0 1 +A 412 0 0.00807102 0 1 +A 413 0 0.00794281 0 1 +A 414 0 0.00543390 0 1 +A 415 0 0.01509206 0 1 +A 416 0 -0.00000100 0 1 +A 417 0 0.00855139 0 1 +A 418 0 -0.00000100 0 1 +A 419 0 0.00843170 0 1 +A 420 0 0.00552669 0 1 +A 421 0 0.01188495 0 1 +A 422 0 0.00601106 0 1 +A 423 0 0.01583782 0 1 +A 424 0 0.00583839 0 1 +A 425 0 0.01320655 0 1 +A 426 0 0.00724848 0 1 +A 427 0 0.00944020 0 1 +A 428 0 -0.00000100 0 1 +A 429 0 0.00542682 0 1 +A 430 0 0.00564717 0 1 +A 431 0 0.00584385 0 1 +A 432 0 0.00474023 0 1 +A 433 0 0.00717617 0 1 +A 434 0 0.00682967 0 1 +A 435 0 0.00533476 0 1 +A 436 0 0.00728067 0 1 +A 437 0 0.00575109 0 1 +A 438 0 0.00524027 0 1 +A 439 0 0.00584693 0 1 +A 440 0 0.00514139 0 1 +A 441 0 0.00413445 0 1 +A 442 0 0.00735781 0 1 +A 443 0 0.00576136 0 1 +A 444 0 0.00614024 0 1 +A 445 0 0.00524631 0 1 +A 446 0 -0.00000100 0 1 +A 447 0 -0.00000100 0 1 +A 448 0 0.00567472 0 1 +A 449 0 0.00766636 0 1 +A 450 0 0.00666978 0 1 +A 451 0 0.00559785 0 1 +A 452 0 0.00539665 0 1 +A 453 0 0.00808996 0 1 +A 454 0 0.00512821 0 1 +A 455 0 -0.00000100 0 1 +A 456 0 0.00516369 0 1 +A 457 0 0.00709320 0 1 +A 458 0 0.00683620 0 1 +A 459 0 0.00601251 0 1 +A 460 0 0.00667156 0 1 +A 461 0 0.00464943 0 1 +A 462 0 0.00502588 0 1 +A 463 0 0.00832848 0 1 +A 464 0 0.00606061 0 1 +A 465 0 0.00567924 0 1 +A 466 0 0.00451569 0 1 +A 467 0 0.00388093 0 1 +A 468 0 0.00524549 0 1 +A 469 0 0.00458085 0 1 +A 470 0 0.00461340 0 1 +A 471 0 0.00490701 0 1 +A 472 0 0.00413121 0 1 +A 473 0 0.00518430 0 1 +A 474 0 0.00557600 0 1 +A 475 0 0.00582276 0 1 +A 476 0 0.00618735 0 1 +A 477 0 0.00509710 0 1 +A 478 0 0.00584864 0 1 +A 479 0 0.00503626 0 1 +A 480 0 0.01139861 0 1 +A 481 0 0.00455705 0 1 +A 482 0 0.02344666 0 1 +A 483 0 0.01871958 0 1 +A 484 0 0.00481997 0 1 +A 485 0 0.00288642 0 1 +A 486 0 0.00472344 0 1 +A 487 0 0.00514165 0 1 +A 488 0 0.00521458 0 1 +A 489 0 0.00941265 0 1 +A 490 0 0.00438673 0 1 +A 491 0 0.00797321 0 1 +A 492 0 0.00541682 0 1 +A 493 0 0.00560915 0 1 +A 494 0 -0.00000100 0 1 +A 495 0 0.00461340 0 1 +A 496 0 0.00562493 0 1 +A 497 0 0.00435692 0 1 +A 498 0 0.00512505 0 1 +A 499 0 0.00451202 0 1 +A 500 0 0.00553189 0 1 +A 501 0 0.00604084 0 1 +A 502 0 0.00527565 0 1 +A 503 0 -0.00000100 0 1 +A 504 0 0.00514350 0 1 +A 505 0 0.00538329 0 1 +A 506 0 0.00430441 0 1 +A 507 0 0.00550206 0 1 +A 508 0 0.00591576 0 1 +A 509 0 -0.00000100 0 1 +A 510 0 0.00606907 0 1 +A 511 0 0.00513663 0 1 +A 512 0 0.00558285 0 1 +A 513 0 0.00530588 0 1 +A 514 0 0.00402463 0 1 +A 515 0 0.00747384 0 1 +A 516 0 0.00567118 0 1 +A 517 0 0.00513136 0 1 +A 518 0 0.00395648 0 1 +A 519 0 0.00449196 0 1 +A 520 0 0.00491618 0 1 +A 521 0 0.00572639 0 1 +A 522 0 0.00659500 0 1 +A 523 0 0.00529017 0 1 +A 524 0 0.00479019 0 1 +A 525 0 0.00628694 0 1 +A 526 0 0.00987752 0 1 +A 527 0 0.00590284 0 1 +A 528 0 0.00876962 0 1 +A 529 0 0.00652401 0 1 +A 530 0 0.00979912 0 1 +A 531 0 0.00722230 0 1 +A 532 0 0.00650787 0 1 +A 533 0 0.00828638 0 1 +A 534 0 0.00501907 0 1 +A 535 0 0.00519642 0 1 +A 536 0 0.00521975 0 1 +A 537 0 0.00452489 0 1 +A 538 0 0.00596445 0 1 +A 539 0 0.00553649 0 1 +A 540 0 0.00479708 0 1 +A 541 0 0.00514324 0 1 +A 542 0 0.00394275 0 1 +A 543 0 -0.00000100 0 1 +A 544 0 0.00452407 0 1 +A 545 0 0.00547735 0 1 +A 546 0 0.00458022 0 1 +A 547 0 0.00497240 0 1 +A 548 0 0.00659196 0 1 +A 549 0 0.00523040 0 1 +A 550 0 0.00615536 0 1 +A 551 0 0.00676407 0 1 +A 552 0 0.00518108 0 1 +A 553 0 0.00521948 0 1 +A 554 0 0.00858074 0 1 +A 555 0 -0.00000100 0 1 +A 556 0 0.00539840 0 1 +A 557 0 -0.00000100 0 1 +A 558 0 0.00454050 0 1 +A 559 0 -0.00000100 0 1 +A 560 0 -0.00000100 0 1 +A 561 0 -0.00000100 0 1 +A 562 0 0.00502614 0 1 +A 563 0 -0.00000100 0 1 +A 564 0 -0.00000100 0 1 +A 565 0 0.00714439 0 1 +A 566 0 0.00233182 0 1 +A 567 0 0.00735132 0 1 +A 568 0 0.00533106 0 1 +A 569 0 -0.00000100 0 1 +A 570 0 0.00244212 0 1 +A 571 0 -0.00000100 0 1 +A 572 0 0.01302932 0 1 +A 573 0 -0.00000100 0 1 +A 574 0 -0.00000100 0 1 +A 575 0 -0.00000100 0 1 +A 576 0 0.01162520 0 1 +A 577 0 -0.00000100 0 1 +A 578 0 -0.00000100 0 1 +A 579 0 0.00677231 0 1 +A 580 0 0.01145213 0 1 +A 581 0 0.00632791 0 1 +A 582 0 0.01566171 0 1 +A 583 0 0.00652061 0 1 +A 584 0 0.00565707 0 1 +A 585 0 0.01297353 0 1 +A 586 0 0.00483559 0 1 +A 587 0 -0.00000100 0 1 +A 588 0 0.00614742 0 1 +A 589 0 -0.00000100 0 1 +A 590 0 -0.00000100 0 1 +A 591 0 0.00601106 0 1 +A 592 0 0.00619464 0 1 +A 593 0 0.00431574 0 1 +A 594 0 0.00955566 0 1 +A 595 0 0.00723694 0 1 +A 596 0 0.00633392 0 1 +A 597 0 0.00269978 0 1 +A 598 0 0.00591576 0 1 +A 599 0 0.00660153 0 1 +A 600 0 0.00429904 0 1 +A 601 0 -0.00000100 0 1 +A 602 0 0.00306176 0 1 +A 603 0 0.00720617 0 1 +A 604 0 -0.00000100 0 1 +A 605 0 0.00646078 0 1 +A 606 0 0.00531632 0 1 +A 607 0 0.00613346 0 1 +A 608 0 -0.00000100 0 1 +A 609 0 0.00440917 0 1 +A 610 0 -0.00000100 0 1 +A 611 0 0.00419762 0 1 +A 612 0 0.00503347 0 1 +A 613 0 0.00404596 0 1 +A 614 0 0.00414405 0 1 +A 615 0 0.00332945 0 1 +A 616 0 0.01679825 0 1 +A 617 0 0.00467968 0 1 +A 618 0 0.00429941 0 1 +A 619 0 0.00439580 0 1 +A 620 0 -0.00000100 0 1 +A 621 0 0.00488186 0 1 +A 622 0 0.00642302 0 1 +A 623 0 0.00867453 0 1 +A 624 0 0.00607423 0 1 +A 625 0 0.00626449 0 1 +A 626 0 0.00284309 0 1 +A 627 0 0.00414250 0 1 +A 628 0 0.00419182 0 1 +A 629 0 0.00491618 0 1 +A 630 0 0.00556638 0 1 +A 631 0 0.00450999 0 1 +A 632 0 -0.00000100 0 1 +A 633 0 0.00344994 0 1 +A 634 0 0.00528429 0 1 +A 635 0 0.00448511 0 1 +A 636 0 0.00912492 0 1 +A 637 0 0.00368338 0 1 +A 638 0 0.00306946 0 1 +A 639 0 0.00459517 0 1 +A 640 0 0.00868357 0 1 +A 641 0 0.00830358 0 1 +A 642 0 0.00432545 0 1 +A 643 0 0.01142465 0 1 +A 644 0 0.01277629 0 1 +A 645 0 0.01076079 0 1 +A 646 0 0.00665513 0 1 +A 647 0 0.00721188 0 1 +A 648 0 0.00511143 0 1 +A 649 0 0.00886682 0 1 +A 650 0 0.00474834 0 1 +A 651 0 0.00797894 0 1 +A 652 0 0.00746882 0 1 +A 653 0 0.00375799 0 1 +A 654 0 -0.00000100 0 1 +A 655 0 0.00567988 0 1 +A 656 0 0.00628299 0 1 +A 657 0 0.00536653 0 1 +A 658 0 0.00522302 0 1 +A 659 0 0.00922339 0 1 +A 660 0 0.00562145 0 1 +A 661 0 0.00637511 0 1 +A 662 0 0.00774054 0 1 +A 663 0 0.00767283 0 1 +A 664 0 0.00568893 0 1 +A 665 0 0.00624064 0 1 +A 666 0 0.00528178 0 1 +A 667 0 0.01247816 0 1 +A 668 0 0.00787340 0 1 +A 669 0 0.00695507 0 1 +A 670 0 0.00601938 0 1 +A 671 0 0.00571429 0 1 +A 672 0 0.00387297 0 1 +A 673 0 0.00527760 0 1 +A 674 0 0.00332447 0 1 +A 675 0 -0.00000100 0 1 +A 676 0 0.00406471 0 1 +A 677 0 -0.00000100 0 1 +A 678 0 0.00574713 0 1 +A 679 0 0.00675676 0 1 +A 680 0 0.00623286 0 1 +C---------------------------------------------------------------- +C-Status +C---------------------------------------------------------------- +S 1 0 100.000000 0 0 0 0 1 +S 2 0 100.000000 0 0 0 0 1 +S 3 10 100.000000 0 0 0 0 1 +S 4 0 100.000000 0 0 0 0 1 +S 5 0 100.000000 0 0 0 0 1 +S 6 0 100.000000 0 0 0 0 1 +S 7 0 100.000000 0 0 0 0 1 +S 8 0 100.000000 0 0 0 0 1 +S 9 0 100.000000 0 0 0 0 1 +S 10 0 100.000000 0 0 0 0 1 +S 11 0 100.000000 0 0 0 0 1 +S 12 0 100.000000 0 0 0 0 1 +S 13 0 100.000000 0 0 0 0 1 +S 14 0 100.000000 0 0 0 0 1 +S 15 0 100.000000 0 0 0 0 1 +S 16 0 100.000000 0 0 0 0 1 +S 17 0 100.000000 0 0 0 0 1 +S 18 10 100.000000 0 0 0 0 1 +S 19 0 100.000000 0 0 0 0 1 +S 20 0 100.000000 0 0 0 0 1 +S 21 0 100.000000 0 0 0 0 1 +S 22 0 100.000000 0 0 0 0 1 +S 23 0 100.000000 0 0 0 0 1 +S 24 0 100.000000 0 0 0 0 1 +S 25 0 100.000000 0 0 0 0 1 +S 26 0 100.000000 0 0 0 0 1 +S 27 0 100.000000 0 0 0 0 1 +S 28 10 100.000000 0 0 0 0 1 +S 29 0 100.000000 0 0 0 0 1 +S 30 0 100.000000 0 0 0 0 1 +S 31 0 100.000000 0 0 0 0 1 +S 32 10 100.000000 0 0 0 0 1 +S 33 0 100.000000 0 0 0 0 1 +S 34 0 100.000000 0 0 0 0 1 +S 35 0 100.000000 0 0 0 0 1 +S 36 0 100.000000 0 0 0 0 1 +S 37 0 100.000000 0 0 0 0 1 +S 38 0 100.000000 0 0 0 0 1 +S 39 10 100.000000 0 0 0 0 1 +S 40 10 50.000000 0 0 0 0 1 +S 41 0 100.000000 0 0 0 0 1 +S 42 0 100.000000 0 0 0 0 1 +S 43 0 100.000000 0 0 0 0 1 +S 44 0 100.000000 0 0 0 0 1 +S 45 0 100.000000 0 0 0 0 1 +S 46 0 100.000000 0 0 0 0 1 +S 47 10 100.000000 0 0 0 0 1 +S 48 0 100.000000 0 0 0 0 1 +S 49 0 100.000000 0 0 0 0 1 +S 50 10 100.000000 0 0 0 0 1 +S 51 0 100.000000 0 0 0 0 1 +S 52 0 100.000000 0 0 0 0 1 +S 53 0 100.000000 0 0 0 0 1 +S 54 0 100.000000 0 0 0 0 1 +S 55 0 100.000000 0 0 0 0 1 +S 56 0 100.000000 0 0 0 0 1 +S 57 10 100.000000 0 0 0 0 1 +S 58 0 100.000000 0 0 0 0 1 +S 59 0 100.000000 0 0 0 0 1 +S 60 0 100.000000 0 0 0 0 1 +S 61 10 100.000000 0 0 0 0 1 +S 62 10 100.000000 0 0 0 0 1 +S 63 0 100.000000 0 0 0 0 1 +S 64 0 100.000000 0 0 0 0 1 +S 65 0 100.000000 0 0 0 0 1 +S 66 0 100.000000 0 0 0 0 1 +S 67 0 100.000000 0 0 0 0 1 +S 68 0 100.000000 0 0 0 0 1 +S 69 0 100.000000 0 0 0 0 1 +S 70 0 100.000000 0 0 0 0 1 +S 71 0 100.000000 0 0 0 0 1 +S 72 0 100.000000 0 0 0 0 1 +S 73 0 100.000000 0 0 0 0 1 +S 74 0 100.000000 0 0 0 0 1 +S 75 0 100.000000 0 0 0 0 1 +S 76 0 100.000000 0 0 0 0 1 +S 77 0 100.000000 0 0 0 0 1 +S 78 10 100.000000 0 0 0 0 1 +S 79 0 100.000000 0 0 0 0 1 +S 80 0 100.000000 0 0 0 0 1 +S 81 10 100.000000 0 0 0 1 1 +S 82 10 100.000000 0 0 0 1 1 +S 83 10 100.000000 0 0 0 1 1 +S 84 10 100.000000 0 0 0 1 1 +S 85 10 100.000000 0 0 0 1 1 +S 86 10 100.000000 0 0 0 1 1 +S 87 0 140.000000 0 0 0 2 1 +S 88 0 140.000000 0 0 0 1 1 +S 89 0 140.000000 0 0 0 2 1 +S 90 0 140.000000 0 0 0 1 1 +S 91 0 140.000000 0 0 0 2 1 +S 92 0 140.000000 0 0 0 1 1 +S 93 0 140.000000 0 0 0 2 1 +S 94 0 140.000000 0 0 0 1 1 +S 95 0 140.000000 0 0 0 2 1 +S 96 10 140.000000 0 0 0 1 1 +S 97 0 140.000000 0 0 0 2 1 +S 98 0 140.000000 0 0 0 1 1 +S 99 0 140.000000 0 0 0 1 1 +S 100 0 140.000000 0 0 0 1 1 +S 101 0 140.000000 0 0 0 1 1 +S 102 0 140.000000 0 0 0 1 1 +S 103 0 140.000000 0 0 0 1 1 +S 104 0 140.000000 0 0 0 1 1 +S 105 0 140.000000 0 0 0 1 1 +S 106 0 140.000000 0 0 0 1 1 +S 107 0 140.000000 0 0 0 1 1 +S 108 0 140.000000 0 0 0 1 1 +S 109 0 140.000000 0 0 0 1 1 +S 110 0 140.000000 0 0 0 1 1 +S 111 0 140.000000 0 0 0 1 1 +S 112 0 140.000000 0 0 0 1 1 +S 113 0 140.000000 0 0 0 1 1 +S 114 0 140.000000 0 0 0 1 1 +S 115 0 140.000000 0 0 0 1 1 +S 116 0 140.000000 0 0 0 1 1 +S 117 5 140.000000 0 0 0 1 1 +S 118 0 140.000000 0 0 0 1 1 +S 119 0 140.000000 0 0 0 1 1 +S 120 0 140.000000 0 0 0 1 1 +S 121 0 140.000000 0 0 0 1 1 +S 122 0 140.000000 0 0 0 1 1 +S 123 0 140.000000 0 0 0 2 1 +S 124 0 140.000000 0 0 0 1 1 +S 125 0 140.000000 0 0 0 2 1 +S 126 0 140.000000 0 0 0 1 1 +S 127 0 140.000000 0 0 0 2 1 +S 128 0 140.000000 0 0 0 1 1 +S 129 0 140.000000 0 0 0 2 1 +S 130 0 140.000000 0 0 0 1 1 +S 131 0 140.000000 0 0 0 2 1 +S 132 0 140.000000 0 0 0 1 1 +S 133 0 140.000000 0 0 0 2 1 +S 134 0 140.000000 0 0 0 1 1 +S 135 0 140.000000 0 0 0 1 1 +S 136 0 140.000000 0 0 0 1 1 +S 137 0 140.000000 0 0 0 1 1 +S 138 0 140.000000 0 0 0 1 1 +S 139 0 140.000000 0 0 0 1 1 +S 140 0 140.000000 0 0 0 1 1 +S 141 0 140.000000 0 0 0 1 1 +S 142 0 140.000000 0 0 0 1 1 +S 143 10 140.000000 0 0 0 1 1 +S 144 0 140.000000 0 0 0 1 1 +S 145 0 140.000000 0 0 0 1 1 +S 146 0 140.000000 0 0 0 1 1 +S 147 0 140.000000 0 0 0 1 1 +S 148 0 140.000000 0 0 0 1 1 +S 149 0 140.000000 0 0 0 1 1 +S 150 0 140.000000 0 0 0 1 1 +S 151 0 140.000000 0 0 0 1 1 +S 152 0 140.000000 0 0 0 1 1 +S 153 0 140.000000 0 0 0 1 1 +S 154 0 140.000000 0 0 0 1 1 +S 155 0 140.000000 0 0 0 1 1 +S 156 0 140.000000 0 0 0 1 1 +S 157 0 140.000000 0 0 0 1 1 +S 158 0 140.000000 0 0 0 1 1 +S 159 0 140.000000 0 0 0 1 1 +S 160 0 140.000000 0 0 0 1 1 +S 161 0 140.000000 0 0 0 1 1 +S 162 0 140.000000 0 0 0 1 1 +S 163 0 140.000000 0 0 0 1 1 +S 164 0 140.000000 0 0 0 1 1 +S 165 0 140.000000 0 0 0 1 1 +S 166 0 140.000000 0 0 0 1 1 +S 167 0 140.000000 0 0 0 1 1 +S 168 0 140.000000 0 0 0 1 1 +S 169 0 140.000000 0 0 0 1 1 +S 170 0 140.000000 0 0 0 1 1 +S 171 0 140.000000 0 0 0 1 1 +S 172 10 140.000000 0 0 0 1 1 +S 173 0 140.000000 0 0 0 1 1 +S 174 0 140.000000 0 0 0 1 1 +S 175 0 140.000000 0 0 0 1 1 +S 176 0 140.000000 0 0 0 1 1 +S 177 0 140.000000 0 0 0 1 1 +S 178 0 140.000000 0 0 0 1 1 +S 179 0 140.000000 0 0 0 1 1 +S 180 0 140.000000 0 0 0 1 1 +S 181 0 140.000000 0 0 0 1 1 +S 182 0 140.000000 0 0 0 1 1 +S 183 0 140.000000 0 0 0 1 1 +S 184 0 140.000000 0 0 0 1 1 +S 185 0 140.000000 0 0 0 1 1 +S 186 10 140.000000 0 0 0 3 1 +S 187 0 140.000000 0 0 0 1 1 +S 188 0 140.000000 0 0 0 1 1 +S 189 0 140.000000 0 0 0 1 1 +S 190 0 140.000000 0 0 0 2 1 +S 191 0 140.000000 0 0 0 1 1 +S 192 0 140.000000 0 0 0 1 1 +S 193 0 140.000000 0 0 0 1 1 +S 194 0 140.000000 0 0 0 2 1 +S 195 10 140.000000 0 0 0 3 1 +S 196 0 140.000000 0 0 0 1 1 +S 197 10 140.000000 0 0 0 3 1 +S 198 0 140.000000 0 0 0 1 1 +S 199 10 140.000000 0 0 0 9 1 +S 200 0 140.000000 0 0 0 1 1 +S 201 0 140.000000 0 0 0 2 1 +S 202 0 140.000000 0 0 0 1 1 +S 203 0 140.000000 0 0 0 2 1 +S 204 0 140.000000 0 0 0 1 1 +S 205 0 140.000000 0 0 0 2 1 +S 206 0 140.000000 0 0 0 1 1 +S 207 0 140.000000 0 0 0 1 1 +S 208 0 140.000000 0 0 0 1 1 +S 209 0 140.000000 0 0 0 1 1 +S 210 0 140.000000 0 0 0 1 1 +S 211 0 140.000000 0 0 0 1 1 +S 212 0 140.000000 0 0 0 1 1 +S 213 0 140.000000 0 0 0 1 1 +S 214 0 140.000000 0 0 0 1 1 +S 215 10 140.000000 0 0 0 1 1 +S 216 0 140.000000 0 0 0 1 1 +S 217 0 140.000000 0 0 0 1 1 +S 218 0 140.000000 0 0 0 1 1 +S 219 0 140.000000 0 0 0 1 1 +S 220 0 140.000000 0 0 0 1 1 +S 221 0 140.000000 0 0 0 1 1 +S 222 0 140.000000 0 0 0 1 1 +S 223 0 140.000000 0 0 0 1 1 +S 224 0 140.000000 0 0 0 1 1 +S 225 0 140.000000 0 0 0 1 1 +S 226 0 140.000000 0 0 0 1 1 +S 227 0 140.000000 0 0 0 1 1 +S 228 0 140.000000 0 0 0 1 1 +S 229 0 140.000000 0 0 0 1 1 +S 230 0 140.000000 0 0 0 1 1 +S 231 0 140.000000 0 0 0 4 0 +S 232 0 140.000000 0 0 0 4 0 +S 233 0 140.000000 0 0 0 1 1 +S 234 0 140.000000 0 0 0 1 1 +S 235 10 140.000000 0 0 0 1 1 +S 236 0 140.000000 0 0 0 1 1 +S 237 0 140.000000 0 0 0 1 1 +S 238 0 140.000000 0 0 0 1 1 +S 239 0 140.000000 0 0 0 1 1 +S 240 0 140.000000 0 0 0 1 1 +S 241 0 140.000000 0 0 0 1 1 +S 242 0 140.000000 0 0 0 1 1 +S 243 0 140.000000 0 0 0 1 1 +S 244 0 140.000000 0 0 0 1 1 +S 245 0 140.000000 0 0 0 1 1 +S 246 0 140.000000 0 0 0 1 1 +S 247 0 140.000000 0 0 0 1 1 +S 248 0 140.000000 0 0 0 1 1 +S 249 0 140.000000 0 0 0 1 1 +S 250 0 140.000000 0 0 0 1 1 +S 251 0 140.000000 0 0 0 1 1 +S 252 0 140.000000 0 0 0 1 1 +S 253 0 140.000000 0 0 0 1 1 +S 254 0 140.000000 0 0 0 1 1 +S 255 0 140.000000 0 0 0 1 1 +S 256 0 140.000000 0 0 0 1 1 +S 257 0 140.000000 0 0 0 1 1 +S 258 0 140.000000 0 0 0 1 1 +S 259 0 140.000000 0 0 0 1 1 +S 260 0 140.000000 0 0 0 1 1 +S 261 0 140.000000 0 0 0 1 1 +S 262 0 140.000000 0 0 0 1 1 +S 263 0 140.000000 0 0 0 1 1 +S 264 0 140.000000 0 0 0 1 1 +S 265 10 140.000000 0 0 0 1 1 +S 266 10 140.000000 0 0 0 1 1 +S 267 10 140.000000 0 0 0 1 1 +S 268 0 140.000000 0 0 0 1 1 +S 269 0 140.000000 0 0 0 1 1 +S 270 0 140.000000 0 0 0 1 1 +S 271 0 140.000000 0 0 0 1 1 +S 272 0 140.000000 0 0 0 1 1 +S 273 0 140.000000 0 0 0 1 1 +S 274 0 140.000000 0 0 0 1 1 +S 275 0 140.000000 0 0 0 1 1 +S 276 0 140.000000 0 0 0 1 1 +S 277 0 140.000000 0 0 0 1 1 +S 278 0 140.000000 0 0 0 1 1 +S 279 0 140.000000 0 0 0 1 1 +S 280 0 140.000000 0 0 0 1 1 +S 281 0 140.000000 0 0 0 1 1 +S 282 0 140.000000 0 0 0 1 1 +S 283 0 140.000000 0 0 0 1 1 +S 284 0 140.000000 0 0 0 1 1 +S 285 0 140.000000 0 0 0 1 1 +S 286 0 140.000000 0 0 0 1 1 +S 287 0 140.000000 0 0 0 1 1 +S 288 0 140.000000 0 0 0 1 1 +S 289 0 140.000000 0 0 0 1 1 +S 290 0 140.000000 0 0 0 1 1 +S 291 0 140.000000 0 0 0 1 1 +S 292 0 140.000000 0 0 0 1 1 +S 293 0 140.000000 0 0 0 1 1 +S 294 0 140.000000 0 0 0 1 1 +S 295 0 140.000000 0 0 0 1 1 +S 296 0 140.000000 0 0 0 1 1 +S 297 0 140.000000 0 0 0 1 1 +S 298 0 140.000000 0 0 0 1 1 +S 299 0 140.000000 0 0 0 1 1 +S 300 0 140.000000 0 0 0 1 1 +S 301 0 140.000000 0 0 0 1 1 +S 302 0 140.000000 0 0 0 1 1 +S 303 10 0.000000 0 0 0 -999999 0 +S 304 10 0.000000 0 0 0 -999999 0 +S 305 10 0.000000 0 0 0 -999999 0 +S 306 10 0.000000 0 0 0 -999999 0 +S 307 0 60.000000 0 0 0 1 2 +S 308 5 60.000000 0 0 0 1 2 +S 309 0 60.000000 0 0 0 1 2 +S 310 0 60.000000 0 0 0 1 2 +S 311 0 60.000000 0 0 0 1 2 +S 312 0 60.000000 0 0 0 1 2 +S 313 0 60.000000 0 0 0 1 2 +S 314 0 60.000000 0 0 0 1 2 +S 315 0 60.000000 0 0 0 1 2 +S 316 0 60.000000 0 0 0 1 2 +S 317 0 60.000000 0 0 0 1 2 +S 318 0 60.000000 0 0 0 1 2 +S 319 0 60.000000 0 0 0 1 2 +S 320 0 60.000000 0 0 0 1 2 +S 321 0 60.000000 0 0 0 1 2 +S 322 0 60.000000 0 0 0 1 2 +S 323 0 60.000000 0 0 0 1 2 +S 324 0 60.000000 0 0 0 1 2 +S 325 0 60.000000 0 0 0 1 2 +S 326 0 60.000000 0 0 0 1 2 +S 327 0 60.000000 0 0 0 1 2 +S 328 5 60.000000 0 0 0 1 2 +S 329 0 60.000000 0 0 0 1 2 +S 330 0 60.000000 0 0 0 1 2 +S 331 0 60.000000 0 0 0 1 2 +S 332 0 60.000000 0 0 0 1 2 +S 333 0 60.000000 0 0 0 1 2 +S 334 0 60.000000 0 0 0 1 2 +S 335 0 60.000000 0 0 0 1 2 +S 336 0 60.000000 0 0 0 1 2 +S 337 0 60.000000 0 0 0 1 2 +S 338 0 60.000000 0 0 0 1 2 +S 339 0 60.000000 0 0 0 1 2 +S 340 0 60.000000 0 0 0 1 2 +S 341 10 60.000000 0 0 0 1 2 +S 342 0 60.000000 0 0 0 1 2 +S 343 0 60.000000 0 0 0 1 2 +S 344 0 60.000000 0 0 0 1 2 +S 345 0 60.000000 0 0 0 1 2 +S 346 0 60.000000 0 0 0 1 2 +S 347 0 60.000000 0 0 0 1 2 +S 348 0 60.000000 0 0 0 1 2 +S 349 10 60.000000 0 0 0 1 2 +S 350 0 60.000000 0 0 0 1 2 +S 351 0 60.000000 0 0 0 1 2 +S 352 0 60.000000 0 0 0 1 2 +S 353 10 60.000000 0 0 0 1 2 +S 354 10 60.000000 0 0 0 1 2 +S 355 0 60.000000 0 0 0 1 2 +S 356 0 100.000000 0 0 0 1 1 +S 357 0 60.000000 0 0 0 1 2 +S 358 0 60.000000 0 0 0 1 2 +S 359 0 60.000000 0 0 0 1 2 +S 360 0 60.000000 0 0 0 1 2 +S 361 10 60.000000 0 0 0 1 2 +S 362 0 60.000000 0 0 0 1 2 +S 363 0 60.000000 0 0 0 1 2 +S 364 0 60.000000 0 0 0 1 2 +S 365 0 60.000000 0 0 0 1 2 +S 366 0 60.000000 0 0 0 1 2 +S 367 0 60.000000 0 0 0 1 2 +S 368 0 60.000000 0 0 0 1 2 +S 369 0 60.000000 0 0 0 1 2 +S 370 0 60.000000 0 0 0 1 2 +S 371 0 60.000000 0 0 0 1 2 +S 372 0 60.000000 0 0 0 1 2 +S 373 0 60.000000 0 0 0 1 2 +S 374 0 60.000000 0 0 0 1 2 +S 375 0 60.000000 0 0 0 1 2 +S 376 10 60.000000 0 0 0 1 2 +S 377 10 60.000000 0 0 0 1 2 +S 378 0 60.000000 0 0 0 1 2 +S 379 0 60.000000 0 0 0 1 2 +S 380 0 60.000000 0 0 0 1 2 +S 381 0 60.000000 0 0 0 1 2 +S 382 0 60.000000 0 0 0 1 2 +S 383 10 60.000000 0 0 0 1 2 +S 384 0 60.000000 0 0 0 1 2 +S 385 0 60.000000 0 0 0 1 2 +S 386 0 60.000000 0 0 0 1 2 +S 387 10 60.000000 0 0 0 1 2 +S 388 0 200.000000 0 0 0 1 1 +S 389 0 60.000000 0 0 0 1 2 +S 390 0 60.000000 0 0 0 1 2 +S 391 0 60.000000 0 0 0 1 2 +S 392 0 60.000000 0 0 0 1 2 +S 393 0 60.000000 0 0 0 1 2 +S 394 0 60.000000 0 0 0 1 2 +S 395 0 60.000000 0 0 0 1 2 +S 396 0 60.000000 0 0 0 1 2 +S 397 0 60.000000 0 0 0 1 2 +S 398 0 60.000000 0 0 0 1 2 +S 399 0 60.000000 0 0 0 1 2 +S 400 10 60.000000 0 0 0 1 2 +S 401 10 60.000000 0 0 0 1 2 +S 402 0 60.000000 0 0 0 1 2 +S 403 0 60.000000 0 0 0 1 2 +S 404 0 60.000000 0 0 0 1 2 +S 405 0 60.000000 0 0 0 1 2 +S 406 10 60.000000 0 0 0 1 2 +S 407 0 60.000000 0 0 0 1 2 +S 408 10 60.000000 0 0 0 1 2 +S 409 0 60.000000 0 0 0 1 2 +S 410 0 60.000000 0 0 0 1 2 +S 411 0 60.000000 0 0 0 1 2 +S 412 10 60.000000 0 0 0 1 2 +S 413 10 60.000000 0 0 0 1 2 +S 414 0 60.000000 0 0 0 1 2 +S 415 0 60.000000 0 0 0 1 2 +S 416 10 60.000000 0 0 0 1 2 +S 417 0 60.000000 0 0 0 1 2 +S 418 10 60.000000 0 0 0 1 2 +S 419 0 60.000000 0 0 0 1 2 +S 420 0 60.000000 0 0 0 1 2 +S 421 0 60.000000 0 0 0 1 2 +S 422 0 60.000000 0 0 0 1 2 +S 423 0 60.000000 0 0 0 1 2 +S 424 10 60.000000 0 0 0 1 2 +S 425 0 60.000000 0 0 0 1 2 +S 426 0 60.000000 0 0 0 1 2 +S 427 0 60.000000 0 0 0 1 2 +S 428 10 50.000000 0 0 0 1 2 +S 429 0 50.000000 0 0 0 1 2 +S 430 0 50.000000 0 0 0 1 2 +S 431 0 50.000000 0 0 0 1 2 +S 432 0 50.000000 0 0 0 1 2 +S 433 0 50.000000 0 0 0 1 2 +S 434 0 50.000000 0 0 0 1 2 +S 435 0 50.000000 0 0 0 1 2 +S 436 0 50.000000 0 0 0 1 2 +S 437 0 50.000000 0 0 0 1 2 +S 438 0 50.000000 0 0 0 1 2 +S 439 0 50.000000 0 0 0 1 2 +S 440 0 50.000000 0 0 0 1 2 +S 441 0 50.000000 0 0 0 1 2 +S 442 0 200.000000 0 0 0 1 1 +S 443 0 50.000000 0 0 0 1 2 +S 444 10 50.000000 0 0 0 1 2 +S 445 0 50.000000 0 0 0 1 2 +S 446 0 50.000000 0 0 0 1 2 +S 447 10 50.000000 0 0 0 1 2 +S 448 0 50.000000 0 0 0 1 2 +S 449 0 50.000000 0 0 0 1 2 +S 450 0 50.000000 0 0 0 1 2 +S 451 0 50.000000 0 0 0 1 2 +S 452 0 50.000000 0 0 0 1 2 +S 453 0 200.000000 0 0 0 1 1 +S 454 0 50.000000 0 0 0 1 2 +S 455 10 50.000000 0 0 0 1 2 +S 456 5 200.000000 0 0 0 1 1 +S 457 0 200.000000 0 0 0 1 1 +S 458 0 50.000000 0 0 0 1 2 +S 459 0 50.000000 0 0 0 1 2 +S 460 0 50.000000 0 0 0 1 2 +S 461 0 50.000000 0 0 0 1 2 +S 462 0 50.000000 0 0 0 1 2 +S 463 0 300.000000 0 0 0 1 1 +S 464 0 50.000000 0 0 0 1 2 +S 465 0 300.000000 0 0 0 1 1 +S 466 0 50.000000 0 0 0 1 2 +S 467 0 50.000000 0 0 0 1 2 +S 468 0 50.000000 0 0 0 1 2 +S 469 0 50.000000 0 0 0 1 2 +S 470 0 50.000000 0 0 0 1 2 +S 471 0 50.000000 0 0 0 1 2 +S 472 0 200.000000 0 0 0 1 1 +S 473 0 50.000000 0 0 0 1 2 +S 474 0 50.000000 0 0 0 1 2 +S 475 0 50.000000 0 0 0 1 2 +S 476 0 200.000000 0 0 0 1 1 +S 477 0 200.000000 0 0 0 1 1 +S 478 0 50.000000 0 0 0 1 2 +S 479 0 50.000000 0 0 0 1 2 +S 480 0 50.000000 0 0 0 1 2 +S 481 0 50.000000 0 0 0 1 2 +S 482 0 50.000000 0 0 0 1 2 +S 483 10 50.000000 0 0 0 1 2 +S 484 0 50.000000 0 0 0 1 2 +S 485 0 50.000000 0 0 0 1 2 +S 486 0 50.000000 0 0 0 1 2 +S 487 0 50.000000 0 0 0 1 2 +S 488 0 200.000000 0 0 0 1 1 +S 489 5 200.000000 0 0 0 1 1 +S 490 0 50.000000 0 0 0 1 2 +S 491 0 50.000000 0 0 0 1 2 +S 492 0 50.000000 0 0 0 1 2 +S 493 0 50.000000 0 0 0 1 2 +S 494 10 200.000000 0 0 0 1 1 +S 495 0 50.000000 0 0 0 1 2 +S 496 0 50.000000 0 0 0 1 2 +S 497 0 50.000000 0 0 0 1 2 +S 498 0 200.000000 0 0 0 1 1 +S 499 0 50.000000 0 0 0 1 2 +S 500 0 50.000000 0 0 0 1 2 +S 501 0 50.000000 0 0 0 1 2 +S 502 0 50.000000 0 0 0 1 2 +S 503 10 50.000000 0 0 0 1 2 +S 504 10 50.000000 0 0 0 1 2 +S 505 0 50.000000 0 0 0 1 2 +S 506 0 50.000000 0 0 0 1 2 +S 507 0 50.000000 0 0 0 1 2 +S 508 0 50.000000 0 0 0 1 2 +S 509 0 50.000000 0 0 0 1 2 +S 510 0 50.000000 0 0 0 1 2 +S 511 0 50.000000 0 0 0 1 2 +S 512 0 50.000000 0 0 0 1 2 +S 513 0 50.000000 0 0 0 1 2 +S 514 0 50.000000 0 0 0 1 2 +S 515 0 200.000000 0 0 0 1 1 +S 516 0 50.000000 0 0 0 1 2 +S 517 0 50.000000 0 0 0 1 2 +S 518 0 50.000000 0 0 0 1 2 +S 519 0 50.000000 0 0 0 1 2 +S 520 0 50.000000 0 0 0 1 2 +S 521 0 50.000000 0 0 0 1 2 +S 522 0 200.000000 0 0 0 1 1 +S 523 0 50.000000 0 0 0 1 2 +S 524 0 50.000000 0 0 0 1 2 +S 525 0 50.000000 0 0 0 1 2 +S 526 0 200.000000 0 0 0 1 1 +S 527 0 50.000000 0 0 0 1 2 +S 528 0 50.000000 0 0 0 1 2 +S 529 0 50.000000 0 0 0 1 2 +S 530 0 50.000000 0 0 0 1 2 +S 531 0 50.000000 0 0 0 1 2 +S 532 0 200.000000 0 0 0 1 1 +S 533 0 200.000000 0 0 0 1 1 +S 534 0 50.000000 0 0 0 1 2 +S 535 0 50.000000 0 0 0 1 2 +S 536 0 50.000000 0 0 0 1 2 +S 537 0 50.000000 0 0 0 1 2 +S 538 0 50.000000 0 0 0 1 2 +S 539 0 50.000000 0 0 0 1 2 +S 540 0 50.000000 0 0 0 1 2 +S 541 0 50.000000 0 0 0 1 2 +S 542 0 50.000000 0 0 0 1 2 +S 543 10 50.000000 0 0 0 1 2 +S 544 0 50.000000 0 0 0 1 2 +S 545 0 50.000000 0 0 0 1 2 +S 546 0 50.000000 0 0 0 1 2 +S 547 0 50.000000 0 0 0 1 2 +S 548 0 50.000000 0 0 0 1 2 +S 549 0 50.000000 0 0 0 1 2 +S 550 0 50.000000 0 0 0 1 2 +S 551 0 50.000000 0 0 0 1 2 +S 552 0 50.000000 0 0 0 1 2 +S 553 0 50.000000 0 0 0 1 2 +S 554 0 50.000000 0 0 0 1 2 +S 555 0 50.000000 0 0 0 6 2 +S 556 10 200.000000 0 0 0 1 1 +S 557 10 50.000000 0 0 0 1 2 +S 558 10 50.000000 0 0 0 1 2 +S 559 0 50.000000 0 0 0 5 2 +S 560 0 50.000000 0 0 0 5 2 +S 561 5 200.000000 0 0 0 1 1 +S 562 5 200.000000 0 0 0 1 1 +S 563 10 50.000000 0 0 0 1 2 +S 564 10 50.000000 0 0 0 1 2 +S 565 0 200.000000 0 0 0 1 1 +S 566 0 200.000000 0 0 0 1 1 +S 567 0 200.000000 0 0 0 1 1 +S 568 0 200.000000 0 0 0 1 1 +S 569 10 50.000000 0 0 0 1 2 +S 570 0 200.000000 0 0 0 1 1 +S 571 10 200.000000 0 0 0 1 1 +S 572 0 200.000000 0 0 0 1 1 +S 573 10 50.000000 0 0 0 1 2 +S 574 10 50.000000 0 0 0 1 2 +S 575 10 50.000000 0 0 0 1 2 +S 576 0 200.000000 0 0 0 1 1 +S 577 10 50.000000 0 0 0 1 2 +S 578 10 50.000000 0 0 0 1 2 +S 579 0 200.000000 0 0 0 1 1 +S 580 0 200.000000 0 0 0 1 1 +S 581 0 50.000000 0 0 0 1 2 +S 582 0 200.000000 0 0 0 1 1 +S 583 0 200.000000 0 0 0 1 1 +S 584 0 50.000000 0 0 0 1 2 +S 585 0 200.000000 0 0 0 1 1 +S 586 0 50.000000 0 0 0 1 2 +S 587 10 200.000000 0 0 0 1 1 +S 588 0 50.000000 0 0 0 1 2 +S 589 0 50.000000 0 0 0 5 2 +S 590 0 50.000000 0 0 0 6 2 +S 591 0 50.000000 0 0 0 6 2 +S 592 0 50.000000 0 0 0 6 2 +S 593 10 200.000000 0 0 0 1 1 +S 594 0 200.000000 0 0 0 1 1 +S 595 0 50.000000 0 0 0 5 2 +S 596 0 50.000000 0 0 0 6 2 +S 597 0 50.000000 0 0 0 6 2 +S 598 0 50.000000 0 0 0 6 2 +S 599 0 50.000000 0 0 0 4 2 +S 600 0 50.000000 0 0 0 4 2 +S 601 0 50.000000 0 0 0 4 2 +S 602 0 50.000000 0 0 0 4 2 +S 603 0 50.000000 0 0 0 4 2 +S 604 10 50.000000 0 0 0 4 2 +S 605 0 50.000000 0 0 0 4 2 +S 606 0 50.000000 0 0 0 4 2 +S 607 0 50.000000 0 0 0 4 2 +S 608 0 50.000000 0 0 0 4 2 +S 609 0 50.000000 0 0 0 4 2 +S 610 10 50.000000 0 0 0 4 2 +S 611 0 50.000000 0 0 0 4 2 +S 612 0 50.000000 0 0 0 4 2 +S 613 0 50.000000 0 0 0 4 2 +S 614 0 50.000000 0 0 0 4 2 +S 615 0 50.000000 0 0 0 4 2 +S 616 10 50.000000 0 0 0 4 2 +S 617 0 50.000000 0 0 0 4 2 +S 618 0 50.000000 0 0 0 4 2 +S 619 0 50.000000 0 0 0 4 2 +S 620 10 50.000000 0 0 0 4 2 +S 621 0 50.000000 0 0 0 4 2 +S 622 0 50.000000 0 0 0 4 2 +S 623 0 50.000000 0 0 0 4 2 +S 624 0 50.000000 0 0 0 4 2 +S 625 0 50.000000 0 0 0 4 2 +S 626 0 50.000000 0 0 0 4 2 +S 627 0 50.000000 0 0 0 4 2 +S 628 0 50.000000 0 0 0 4 2 +S 629 0 50.000000 0 0 0 4 2 +S 630 0 50.000000 0 0 0 4 2 +S 631 0 50.000000 0 0 0 4 2 +S 632 10 50.000000 0 0 0 4 2 +S 633 0 50.000000 0 0 0 4 2 +S 634 0 50.000000 0 0 0 4 2 +S 635 0 50.000000 0 0 0 4 2 +S 636 0 50.000000 0 0 0 4 2 +S 637 0 50.000000 0 0 0 4 2 +S 638 0 50.000000 0 0 0 4 2 +S 639 0 200.000000 0 0 0 1 1 +S 640 0 50.000000 0 0 0 1 2 +S 641 0 50.000000 0 0 0 1 2 +S 642 0 200.000000 0 0 0 1 1 +S 643 0 50.000000 0 0 0 1 2 +S 644 0 50.000000 0 0 0 1 2 +S 645 0 50.000000 0 0 0 1 2 +S 646 0 50.000000 0 0 0 1 2 +S 647 10 200.000000 0 0 0 1 1 +S 648 0 50.000000 0 0 0 1 2 +S 649 0 50.000000 0 0 0 1 2 +S 650 0 200.000000 0 0 0 1 1 +S 651 10 50.000000 0 0 0 1 2 +S 652 0 200.000000 0 0 0 1 1 +S 653 0 50.000000 0 0 0 1 2 +S 654 0 50.000000 0 0 0 6 2 +S 655 0 50.000000 0 0 0 1 2 +S 656 0 50.000000 0 0 0 1 2 +S 657 0 50.000000 0 0 0 1 2 +S 658 0 200.000000 0 0 0 1 1 +S 659 0 50.000000 0 0 0 1 2 +S 660 0 50.000000 0 0 0 1 2 +S 661 0 50.000000 0 0 0 1 2 +S 662 0 50.000000 0 0 0 1 2 +S 663 0 50.000000 0 0 0 1 2 +S 664 0 50.000000 0 0 0 1 2 +S 665 0 50.000000 0 0 0 1 2 +S 666 0 50.000000 0 0 0 1 2 +S 667 0 50.000000 0 0 0 5 2 +S 668 0 50.000000 0 0 0 5 2 +S 669 0 50.000000 0 0 0 5 2 +S 670 0 50.000000 0 0 0 6 2 +S 671 0 50.000000 0 0 0 5 2 +S 672 0 50.000000 0 0 0 6 2 +S 673 0 50.000000 0 0 0 5 2 +S 674 0 50.000000 0 0 0 5 2 +S 675 10 50.000000 0 0 0 5 2 +S 676 10 50.000000 0 0 0 5 2 +S 677 10 50.000000 0 0 0 5 2 +S 678 0 50.000000 0 0 0 1 2 +S 679 0 50.000000 0 0 0 1 2 +S 680 5 200.000000 0 0 0 1 1 +S 681 0 -999999.000000 0 0 0 4 0 +C---------------------------------------------------------------- +C-AdcTot +C---------------------------------------------------------------- +O 87 3.091290 0.005878 0.000000 0.000000 0.000000 174.899994 547.400024 +O 88 0.742110 0.021492 1.000000 10.313000 128.248993 99.300003 230.100006 +O 89 2.593900 0.007153 0.000000 0.000000 0.000000 171.199997 580.900024 +O 90 0.967370 0.021803 1.000000 19.319000 169.895996 98.900002 227.500000 +O 91 2.596080 0.006901 0.000000 0.000000 0.000000 171.199997 631.299988 +O 92 -0.109200 0.028682 1.000000 16.671000 149.889008 100.300003 215.899994 +O 93 3.226150 0.005999 0.000000 0.000000 0.000000 171.100006 568.200012 +O 94 0.417030 0.025340 1.000000 20.986000 174.794006 99.699997 230.199997 +O 95 2.460730 0.007159 0.000000 0.000000 0.000000 171.199997 570.400024 +O 96 -2.479090 0.020000 1.000000 15.000000 180.000000 0.000000 0.000000 +O 97 2.741120 0.006260 0.000000 0.000000 0.000000 171.199997 625.000000 +O 98 0.718180 0.021839 1.000000 23.591999 188.582001 100.300003 237.899994 +O 99 0.684410 0.021626 1.000000 20.466000 183.485992 100.199997 246.399994 +O 100 1.005550 0.020482 1.000000 16.665001 178.024002 98.900002 254.000000 +O 101 0.677770 0.021666 1.000000 26.375000 194.205002 99.300003 240.000000 +O 102 1.093790 0.021001 1.000000 23.530001 180.289001 100.699997 230.100006 +O 103 0.514820 0.021479 1.000000 21.068001 198.863998 98.300003 266.399994 +O 104 0.403900 0.022980 1.000000 15.601000 161.692001 98.900002 245.199997 +O 105 1.156640 0.017903 1.000000 18.636999 194.522003 98.900002 265.299988 +O 106 0.554830 0.022651 1.000000 28.426001 201.289993 100.199997 251.500000 +O 107 0.765680 0.019633 1.000000 22.533001 202.237000 99.300003 265.399994 +O 108 0.272700 0.021851 1.000000 28.208000 224.578003 98.900002 274.200012 +O 109 1.184880 0.017156 1.000000 15.938000 188.134995 98.900002 270.399994 +O 110 0.410740 0.021405 1.000000 21.829000 202.505997 99.300003 268.399994 +O 111 0.332880 0.021780 1.000000 30.278000 227.615997 99.300003 277.200012 +O 112 0.994890 0.018914 1.000000 19.247000 194.378998 100.199997 262.799988 +O 113 1.341850 0.015291 1.000000 14.923000 190.750000 99.300003 291.899994 +O 114 0.648860 0.020186 1.000000 17.483999 181.016006 98.900002 259.000000 +O 115 0.389720 0.022102 1.000000 26.513000 216.475006 99.300003 268.399994 +O 116 0.683350 0.020769 1.000000 19.951000 188.960999 98.900002 254.000000 +O 117 2.174160 0.016427 1.000000 26.048000 206.615005 98.900002 256.500000 +O 118 0.982970 0.018812 1.000000 20.163000 197.520004 98.900002 264.100006 +O 119 1.169930 0.017421 1.000000 17.854000 196.975998 100.199997 272.899994 +O 120 1.604690 0.015763 1.000000 16.559999 193.485001 98.900002 271.600006 +O 121 1.841440 0.013665 1.000000 13.771000 190.888000 98.300003 298.299988 +O 122 1.242590 0.016919 1.000000 16.702000 200.384995 99.300003 286.399994 +O 123 3.124640 0.005761 0.000000 0.000000 0.000000 170.600006 495.000000 +O 124 1.231890 0.020556 1.000000 13.423000 148.369003 98.900002 223.699997 +O 125 2.721590 0.007012 0.000000 0.000000 0.000000 169.100006 580.900024 +O 126 1.337470 0.020885 1.000000 16.649000 170.535995 100.199997 236.300003 +O 127 2.457280 0.007124 0.000000 0.000000 0.000000 169.100006 566.200012 +O 128 1.108160 0.020639 1.000000 14.591000 156.533005 99.300003 233.699997 +O 129 2.740760 0.006396 0.000000 0.000000 0.000000 169.100006 593.500000 +O 130 0.708670 0.023538 1.000000 20.504999 171.729004 98.900002 225.000000 +O 131 3.065660 0.005913 0.000000 0.000000 0.000000 171.199997 633.400024 +O 132 0.895170 0.022798 1.000000 22.688999 170.740997 99.699997 216.000000 +O 133 2.774400 0.006445 0.000000 0.000000 0.000000 169.100006 593.500000 +O 134 1.073790 0.020520 1.000000 15.150000 154.207993 99.699997 218.899994 +O 135 0.686680 0.022163 1.000000 22.115000 187.414001 99.900002 240.899994 +O 136 0.642740 0.022786 1.000000 21.697001 186.576004 100.199997 240.100006 +O 137 1.169410 0.018352 1.000000 18.068001 184.598007 99.300003 254.699997 +O 138 0.647080 0.023934 1.000000 23.753000 183.220001 99.900002 236.300003 +O 139 1.210040 0.018857 1.000000 16.669001 186.912994 98.900002 264.100006 +O 140 1.024020 0.021310 1.000000 19.709999 178.240997 100.199997 242.600006 +O 141 0.647670 0.022662 1.000000 25.697001 198.061996 100.199997 250.199997 +O 142 0.948260 0.020642 1.000000 29.539000 208.095993 98.900002 251.500000 +O 143 2.589500 0.015123 1.000000 14.785000 161.746002 99.300003 236.899994 +O 144 1.062640 0.019490 1.000000 21.242001 196.789001 98.900002 257.799988 +O 145 1.470420 0.017841 1.000000 15.002000 176.412994 98.300003 266.399994 +O 146 1.333740 0.018512 1.000000 17.238001 184.557007 99.300003 266.899994 +O 147 1.576420 0.016742 1.000000 17.139999 188.604004 98.900002 266.600006 +O 148 1.860650 0.014390 1.000000 17.921000 193.925003 98.900002 270.399994 +O 149 1.113560 0.018848 1.000000 22.454000 207.048004 100.199997 267.899994 +O 150 1.336080 0.019450 1.000000 16.853001 178.225998 99.300003 255.100006 +O 151 1.097150 0.019075 1.000000 23.327999 201.848999 100.199997 260.299988 +O 152 1.100730 0.019503 1.000000 17.531000 182.149994 100.699997 259.600006 +O 153 1.205940 0.018522 1.000000 16.740000 183.740005 99.300003 261.000000 +O 154 1.346900 0.018362 1.000000 19.891001 190.798004 100.699997 255.100006 +O 155 0.903720 0.017555 1.000000 17.198000 204.636993 99.300003 294.899994 +O 156 0.230420 0.021581 1.000000 25.087999 224.792007 98.900002 283.000000 +O 157 0.599100 0.019201 1.000000 27.431999 232.473999 99.300003 287.500000 +O 158 1.162690 0.015839 1.000000 14.078000 189.494003 98.900002 280.500000 +O 159 0.760530 0.020883 1.000000 17.638000 183.082993 99.300003 245.300003 +O 160 0.763450 0.022429 1.000000 17.202999 165.522995 98.900002 232.600006 +O 161 0.464120 0.023822 1.000000 20.601999 173.248001 99.900002 230.500000 +O 162 0.081750 0.026173 1.000000 14.875000 149.917007 98.900002 225.000000 +O 163 0.742380 0.022108 1.000000 23.205999 183.979004 98.900002 236.300003 +O 164 0.550930 0.023164 1.000000 19.486000 176.884003 99.300003 239.000000 +O 165 0.694350 0.021112 1.000000 16.952999 176.966995 98.900002 247.699997 +O 166 1.135320 0.021020 1.000000 16.153000 160.966995 99.300003 223.199997 +O 167 0.393490 0.022474 1.000000 17.913000 183.395996 98.900002 254.000000 +O 168 0.048830 0.025597 1.000000 20.641001 177.856995 101.099998 237.399994 +O 169 0.825530 0.020773 1.000000 18.275999 178.393997 97.699997 247.699997 +O 170 -0.719790 0.030439 1.000000 29.149000 193.123001 101.900002 232.100006 +O 171 0.644870 0.020234 1.000000 17.150999 182.417007 99.300003 254.699997 +O 172 2.444390 0.017700 1.000000 16.229000 156.272995 99.699997 217.000000 +O 173 0.686350 0.020386 1.000000 18.215000 194.447006 98.900002 257.799988 +O 174 0.018320 0.025620 1.000000 20.629999 179.503998 99.300003 240.399994 +O 175 0.949660 0.019280 1.000000 26.167000 209.201004 99.300003 258.899994 +O 176 1.198450 0.018957 1.000000 19.148001 185.781998 98.900002 251.500000 +O 177 1.817260 0.016602 1.000000 25.091000 193.589996 98.900002 246.399994 +O 178 0.793310 0.021130 1.000000 20.915001 197.250000 99.300003 262.500000 +O 179 1.532360 0.015521 1.000000 17.677000 192.990997 98.900002 266.600006 +O 180 1.161250 0.019488 1.000000 21.372999 189.289001 98.900002 247.699997 +O 181 0.805960 0.019733 1.000000 19.112000 203.130005 100.199997 266.600006 +O 182 1.193110 0.017935 1.000000 17.488001 189.729996 99.300003 261.000000 +O 183 0.648160 0.019236 1.000000 17.975000 186.876999 99.300003 260.000000 +O 184 1.057120 0.019605 1.000000 18.778999 182.462006 99.300003 239.000000 +O 185 1.701810 0.016256 1.000000 15.722000 185.608002 98.900002 270.399994 +O 186 -2.479090 0.020000 1.000000 15.000000 180.000000 0.000000 0.000000 +O 187 1.767140 0.014802 1.000000 19.929001 209.535004 98.900002 276.700012 +O 188 1.166880 0.019101 1.000000 20.851999 191.498001 98.900002 252.699997 +O 189 1.257220 0.017804 1.000000 20.591999 201.171997 100.199997 269.100006 +O 190 2.581190 0.005933 0.000000 0.000000 0.000000 169.100006 694.299988 +O 191 1.423720 0.016572 1.000000 17.548000 193.921997 98.900002 267.899994 +O 192 1.363800 0.017068 1.000000 23.618000 217.455994 99.300003 278.700012 +O 193 1.546020 0.015614 1.000000 16.219000 189.740005 99.300003 278.700012 +O 194 2.885450 0.005353 0.000000 0.000000 0.000000 169.100006 719.500000 +O 195 -1.154730 0.005000 0.000000 0.000000 0.000000 0.000000 0.000000 +O 196 0.018200 0.027315 1.000000 28.011999 192.401001 98.900002 235.100006 +O 197 -1.154730 0.005000 0.000000 0.000000 0.000000 0.000000 0.000000 +O 198 0.446730 0.025104 1.000000 18.660000 158.261002 98.900002 220.000000 +O 199 -1.154730 0.005000 0.000000 0.000000 0.000000 0.000000 0.000000 +O 200 0.960650 0.021089 1.000000 16.870001 165.057999 98.900002 232.600006 +O 201 2.473300 0.007040 0.000000 0.000000 0.000000 171.199997 620.799988 +O 202 0.144240 0.025383 1.000000 20.264000 170.360992 98.900002 231.300003 +O 203 2.461990 0.006915 0.000000 0.000000 0.000000 171.199997 618.700012 +O 204 0.587330 0.023697 1.000000 17.073000 161.927002 98.900002 230.000000 +O 205 2.530010 0.006491 0.000000 0.000000 0.000000 169.100006 660.700012 +O 206 0.167560 0.024131 1.000000 21.330000 183.912003 100.300003 242.100006 +O 207 1.673130 0.020511 1.000000 27.281000 188.695999 99.300003 230.100006 +O 208 0.841910 0.021152 1.000000 21.898001 187.229004 99.300003 247.399994 +O 209 0.782810 0.019743 1.000000 23.837999 200.910995 99.300003 255.800003 +O 210 0.965240 0.019569 1.000000 20.062000 184.537003 99.699997 241.500000 +O 211 0.451730 0.022123 1.000000 19.105000 182.695007 98.300003 249.600006 +O 212 0.183790 0.025145 1.000000 36.021000 204.496002 99.300003 237.300003 +O 213 0.882720 0.018822 1.000000 18.351000 195.197998 99.300003 275.700012 +O 214 0.228630 0.023148 1.000000 23.006001 192.100006 100.000000 246.199997 +O 215 -2.479090 0.020000 1.000000 15.000000 180.000000 0.000000 0.000000 +O 216 0.887630 0.019804 1.000000 21.791000 193.447006 98.900002 254.000000 +O 217 0.528950 0.021897 1.000000 18.510000 180.300003 99.300003 255.100006 +O 218 0.970440 0.018871 1.000000 25.601000 210.274994 98.900002 270.399994 +O 219 1.537960 0.016158 1.000000 16.268000 190.009003 99.300003 281.600006 +O 220 -0.018240 0.024617 1.000000 27.816000 210.882004 100.199997 259.000000 +O 221 1.029130 0.017993 1.000000 25.233999 227.895996 98.900002 289.299988 +O 222 1.287160 0.015488 1.000000 16.622000 197.184998 99.300003 287.500000 +O 223 1.053340 0.019231 1.000000 17.354000 188.121002 99.300003 269.899994 +O 224 1.385680 0.017112 1.000000 17.874001 198.589005 99.300003 275.700012 +O 225 1.266610 0.016395 1.000000 16.266001 197.917007 96.599998 289.899994 +O 226 1.055830 0.017622 1.000000 23.025000 218.761002 100.699997 280.100006 +O 227 0.668890 0.018755 1.000000 15.538000 186.082001 99.300003 277.200012 +O 228 1.530270 0.015162 1.000000 14.377000 189.212006 166.899994 97.800003 +O 229 1.115230 0.016981 1.000000 17.259001 198.076004 98.300003 279.799988 +O 230 0.512310 0.020220 1.000000 22.795000 225.000000 100.000000 288.200012 +O 231 -2.479090 0.020000 1.000000 15.000000 180.000000 0.000000 0.000000 +O 232 -2.479090 0.020000 1.000000 15.000000 180.000000 0.000000 0.000000 +O 233 0.538880 0.022876 1.000000 17.778999 163.158997 99.300003 225.699997 +O 234 1.758450 0.020154 1.000000 16.202999 150.283005 99.699997 201.800003 +O 235 -2.479090 0.020000 1.000000 15.000000 180.000000 0.000000 0.000000 +O 236 -0.202190 0.027777 1.000000 26.493000 186.246994 99.900002 228.199997 +O 237 -0.219490 0.027153 1.000000 24.482000 189.014999 99.900002 238.600006 +O 238 0.781420 0.021476 1.000000 24.931999 190.360001 98.900002 238.899994 +O 239 1.024110 0.019045 1.000000 17.704000 183.889008 99.699997 244.399994 +O 240 0.378020 0.023106 1.000000 24.988001 194.334000 98.900002 243.899994 +O 241 0.419450 0.023799 1.000000 23.083000 184.139008 99.300003 233.699997 +O 242 0.334950 0.023405 1.000000 22.840000 192.501999 98.900002 247.699997 +O 243 0.416750 0.021831 1.000000 24.205999 200.940002 101.099998 257.100006 +O 244 0.722660 0.022164 1.000000 23.224001 193.005997 99.300003 244.199997 +O 245 0.034490 0.024319 1.000000 19.903000 183.218002 100.699997 249.300003 +O 246 0.956290 0.019946 1.000000 22.819000 192.865005 98.900002 255.300003 +O 247 2.975100 0.013948 1.000000 10.821000 131.115997 98.900002 232.600006 +O 248 0.519490 0.022813 1.000000 19.368000 178.210007 98.900002 236.300003 +O 249 -0.033900 0.024859 1.000000 28.459999 202.841003 98.900002 248.899994 +O 250 -0.417790 0.027171 1.000000 27.737000 199.524002 98.900002 247.699997 +O 251 0.760330 0.018774 1.000000 15.692000 186.031998 98.300003 278.200012 +O 252 0.871770 0.019315 1.000000 16.379999 186.529007 99.300003 274.299988 +O 253 0.569440 0.021945 1.000000 20.620001 193.604996 98.900002 256.500000 +O 254 0.639940 0.020252 1.000000 30.691999 223.264008 100.199997 266.600006 +O 255 0.885140 0.019973 1.000000 23.923000 204.013000 98.900002 257.799988 +O 256 0.923150 0.018843 1.000000 17.381001 184.033005 99.300003 258.100006 +O 257 1.034100 0.018350 1.000000 19.673000 199.378998 99.300003 269.899994 +O 258 1.279750 0.016371 1.000000 15.055000 186.664001 99.300003 278.700012 +O 259 1.225290 0.016636 1.000000 15.038000 188.882996 99.300003 278.700012 +O 260 0.645550 0.019286 1.000000 20.080000 211.970993 100.000000 284.899994 +O 261 1.084940 0.017694 1.000000 15.474000 192.100998 98.300003 279.799988 +O 262 2.089900 0.017723 1.000000 24.712000 193.606995 98.300003 241.199997 +O 263 2.463220 0.013155 1.000000 14.378000 186.591003 99.300003 278.700012 +O 264 1.528020 0.016335 1.000000 18.716000 193.386993 99.300003 265.399994 +O 265 -2.479090 0.020000 1.000000 15.000000 180.000000 0.000000 0.000000 +O 266 -2.479090 0.020000 1.000000 15.000000 180.000000 0.000000 0.000000 +O 267 -2.479090 0.020000 1.000000 15.000000 180.000000 0.000000 0.000000 +O 268 0.533380 0.024109 1.000000 21.657000 165.539993 99.900002 213.199997 +O 269 -0.060510 0.025322 1.000000 19.785000 168.363998 100.199997 223.699997 +O 270 0.264260 0.026491 1.000000 22.299000 162.957001 100.699997 211.300003 +O 271 0.528310 0.022930 1.000000 18.667000 175.964996 99.300003 240.000000 +O 272 0.363470 0.026482 1.000000 24.291000 175.589996 99.699997 217.899994 +O 273 0.332590 0.024322 1.000000 20.600000 180.600998 99.699997 238.699997 +O 274 0.182860 0.026561 1.000000 23.291000 175.164001 99.300003 227.399994 +O 275 0.199370 0.024810 1.000000 23.983999 187.843002 99.300003 237.899994 +O 276 1.074990 0.020171 1.000000 18.849001 179.582993 99.300003 246.300003 +O 277 0.729830 0.021846 1.000000 27.268000 198.759995 98.900002 247.699997 +O 278 0.085430 0.025279 1.000000 18.337999 170.445999 98.900002 241.399994 +O 279 1.117950 0.018992 1.000000 19.219000 178.192001 98.900002 245.199997 +O 280 1.426630 0.017979 1.000000 19.964001 185.190994 100.199997 251.500000 +O 281 1.588310 0.017019 1.000000 17.447001 179.335999 100.699997 255.100006 +O 282 1.360990 0.018251 1.000000 16.910000 178.563004 99.300003 256.600006 +O 283 1.150130 0.019234 1.000000 19.096001 183.130997 100.199997 254.000000 +O 284 0.825090 0.020905 1.000000 22.153999 191.210999 98.900002 255.300003 +O 285 1.157530 0.017825 1.000000 27.804001 216.141998 98.900002 267.899994 +O 286 -0.202680 0.026385 1.000000 26.406000 200.235001 98.900002 255.300003 +O 287 1.569520 0.015484 1.000000 17.804001 193.647003 100.199997 269.100006 +O 288 1.169380 0.018005 1.000000 27.649000 212.470993 100.000000 264.700012 +O 289 1.497570 0.015276 1.000000 22.910000 210.731003 99.300003 274.299988 +O 290 0.891040 0.018162 1.000000 15.288000 186.712006 99.300003 284.600006 +O 291 0.804960 0.019678 1.000000 21.492001 203.772003 98.900002 271.600006 +O 292 0.783790 0.020862 1.000000 22.252001 199.703995 98.900002 260.299988 +O 293 1.132200 0.017351 1.000000 20.683001 207.078003 98.900002 277.899994 +O 294 1.510700 0.015844 1.000000 16.871000 194.847000 97.699997 275.399994 +O 295 0.727680 0.020391 1.000000 27.535000 214.964005 98.900002 265.299988 +O 296 1.391560 0.016235 1.000000 18.792999 195.479996 99.300003 271.299988 +O 297 1.251690 0.016373 1.000000 19.691999 212.813004 99.300003 286.000000 +O 298 1.134010 0.018200 1.000000 19.740000 197.442993 100.699997 271.299988 +O 299 1.386790 0.017693 1.000000 16.624001 187.125000 99.900002 258.200012 +O 300 2.131380 0.013282 1.000000 18.320999 194.065994 98.900002 266.600006 +O 301 2.604540 0.010308 1.000000 14.513000 198.207001 99.300003 297.799988 +O 302 1.226280 0.018566 1.000000 18.228001 192.098007 99.300003 271.299988 +C---------------------------------------------------------------- +C-XTalk +C---------------------------------------------------------------- +K 87 113 2000.000000 50.000000 5.000000 60.000000 +K 87 114 2000.000000 50.000000 30.000000 85.000000 +K 88 113 1224.000000 48.500000 70.000000 95.000000 +K 88 116 1803.000000 127.199997 20.000000 40.000000 +K 89 116 2000.000000 50.000000 5.000000 45.000000 +K 90 113 1101.000000 46.599998 -40.000000 -15.000000 +K 90 116 922.400024 34.099998 -115.000000 -55.000000 +K 91 118 1880.000000 133.500000 15.000000 55.000000 +K 92 117 1389.000000 30.100000 -130.000000 -80.000000 +K 93 118 2000.000000 50.000000 -5.000000 40.000000 +K 97 119 2000.000000 50.000000 -45.000000 -10.000000 +K 98 120 1338.000000 89.900002 -35.000000 -10.000000 +K 100 119 1142.000000 50.700001 -10.000000 15.000000 +K 102 121 958.099976 40.900002 -25.000000 0.000000 +K 116 90 1381.000000 44.900002 -270.000000 -220.000000 +K 117 96 943.599976 66.800003 -120.000000 -90.000000 +K 118 91 1267.000000 69.400002 -110.000000 -90.000000 +K 121 102 2000.000000 50.000000 -85.000000 -45.000000 +K 123 148 2000.000000 50.000000 -110.000000 -65.000000 +K 123 151 2000.000000 50.000000 -40.000000 5.000000 +K 123 152 1900.000000 248.600006 -65.000000 -25.000000 +K 124 147 1703.000000 202.899994 -595.000000 -475.000000 +K 124 149 559.799988 42.900002 -105.000000 -70.000000 +K 124 151 972.000000 110.300003 -525.000000 -420.000000 +K 130 154 972.400024 105.500000 -225.000000 -155.000000 +K 132 156 2000.000000 50.000000 -75.000000 -50.000000 +K 147 124 2000.000000 50.000000 -10.000000 50.000000 +K 149 124 759.400024 75.599998 30.000000 60.000000 +K 151 124 1323.000000 147.800003 -30.000000 20.000000 +K 153 129 1028.000000 40.299999 -170.000000 -95.000000 +K 154 129 894.599976 52.799999 10.000000 35.000000 +K 154 130 957.000000 47.000000 -155.000000 -90.000000 +K 155 131 1037.000000 53.799999 -15.000000 25.000000 +K 156 131 2000.000000 50.000000 5.000000 30.000000 +K 156 132 1055.000000 125.300003 -5.000000 25.000000 +K 161 187 1241.000000 57.599998 -240.000000 -170.000000 +K 161 188 1139.000000 50.000000 -235.000000 -160.000000 +K 162 187 301.100006 16.900000 -60.000000 -35.000000 +K 162 188 1219.000000 53.599998 -225.000000 -150.000000 +K 162 190 1948.000000 176.899994 -40.000000 -20.000000 +K 163 187 1603.000000 179.500000 -85.000000 -50.000000 +K 163 189 2000.000000 50.000000 -70.000000 -30.000000 +K 163 190 2000.000000 50.000000 -235.000000 -160.000000 +K 164 188 1077.000000 63.900002 -70.000000 -45.000000 +K 164 189 572.400024 24.500000 -30.000000 -5.000000 +K 164 190 1579.000000 119.800003 -50.000000 -25.000000 +K 165 189 2000.000000 50.000000 -245.000000 -170.000000 +K 165 190 2000.000000 50.000000 -260.000000 -170.000000 +K 165 192 534.400024 44.799999 -50.000000 -5.000000 +K 166 189 867.700012 92.000000 -45.000000 -15.000000 +K 166 191 1195.000000 59.900002 -210.000000 -125.000000 +K 167 192 2000.000000 50.000000 -30.000000 5.000000 +K 168 191 1047.000000 45.599998 -170.000000 -100.000000 +K 169 191 1723.000000 154.199997 -45.000000 -15.000000 +K 169 193 2000.000000 50.000000 -55.000000 -30.000000 +K 170 191 720.799988 39.900002 -40.000000 -15.000000 +K 170 192 1070.000000 52.200001 -40.000000 -15.000000 +K 170 193 918.000000 36.900002 -35.000000 -5.000000 +K 170 194 1086.000000 55.400002 -45.000000 -25.000000 +K 187 162 769.700012 91.000000 -50.000000 20.000000 +K 188 161 1091.000000 37.500000 -270.000000 -115.000000 +K 188 162 1166.000000 49.299999 -270.000000 -115.000000 +K 188 164 1741.000000 146.000000 -110.000000 0.000000 +K 189 164 905.500000 65.800003 -150.000000 -15.000000 +K 189 166 963.799988 73.699997 -150.000000 -15.000000 +K 192 165 605.500000 51.000000 -150.000000 -10.000000 +K 192 167 685.700012 58.599998 -155.000000 -20.000000 +K 193 170 2000.000000 50.000000 -145.000000 -40.000000 +K 198 223 813.400024 24.900000 -10.000000 15.000000 +K 198 224 453.200012 15.600000 -20.000000 0.000000 +K 198 226 1161.000000 41.299999 -45.000000 -25.000000 +K 201 225 2000.000000 50.000000 -55.000000 -20.000000 +K 201 228 2000.000000 50.000000 -40.000000 0.000000 +K 201 230 1952.000000 156.100006 -55.000000 -10.000000 +K 202 226 1341.000000 88.000000 -40.000000 -20.000000 +K 202 229 1702.000000 63.500000 -195.000000 -130.000000 +K 204 227 974.900024 45.000000 -40.000000 -20.000000 +K 206 230 2000.000000 50.000000 -45.000000 -20.000000 +K 223 198 2000.000000 50.000000 -90.000000 -50.000000 +K 224 198 838.599976 68.800003 -80.000000 -20.000000 +K 230 201 1131.000000 67.500000 -50.000000 -25.000000 +K 233 259 2000.000000 50.000000 -50.000000 -35.000000 +K 233 261 920.700012 41.900002 -40.000000 -10.000000 +K 233 262 400.200012 0.100000 -30.000000 0.000000 +K 234 260 1852.000000 163.699997 -55.000000 -35.000000 +K 234 261 1056.000000 71.800003 -155.000000 -100.000000 +K 234 262 705.200012 122.400002 -35.000000 10.000000 +K 261 234 2000.000000 50.000000 -250.000000 -190.000000 +K 262 233 719.299988 151.000000 -30.000000 -5.000000 +K 262 234 963.700012 32.099998 -35.000000 -15.000000 +K 271 298 2000.000000 50.000000 -30.000000 0.000000 +K 272 297 2000.000000 50.000000 -170.000000 -100.000000 +K 273 297 2000.000000 50.000000 -40.000000 -10.000000 +K 273 298 2000.000000 50.000000 -210.000000 -160.000000 +K 274 297 2000.000000 50.000000 -45.000000 -10.000000 +K 274 298 2000.000000 50.000000 -40.000000 -10.000000 +K 275 298 2000.000000 50.000000 -65.000000 -20.000000 +K 280 301 2000.000000 50.000000 -45.000000 -20.000000 +K 294 267 2000.000000 50.000000 -45.000000 -15.000000 +K 297 272 1341.000000 52.299999 -240.000000 -175.000000 +K 297 273 1291.000000 82.300003 -50.000000 -20.000000 +K 297 274 1055.000000 63.200001 -55.000000 -25.000000 +K 298 271 412.899994 19.000000 -30.000000 -5.000000 +K 298 274 886.299988 44.599998 -40.000000 -15.000000 +K 298 275 1478.000000 90.400002 -50.000000 -25.000000 +K 299 274 743.500000 82.800003 -35.000000 -10.000000 +K 299 276 419.100006 22.799999 -45.000000 -15.000000 +K 300 275 2000.000000 50.000000 -235.000000 -170.000000 +K 300 276 1220.000000 164.899994 -50.000000 -50.000000 +K 302 277 890.099976 100.599998 -40.000000 -15.000000 diff --git a/RALICE/icepack/iceconvert/macros/icecal2root.cc b/RALICE/icepack/iceconvert/macros/icecal2root.cc new file mode 100644 index 00000000000..f42bdd317ae --- /dev/null +++ b/RALICE/icepack/iceconvert/macros/icecal2root.cc @@ -0,0 +1,34 @@ +////////////////////////////////////////////////////////// +// Example macro to demonstrate the IceCal2Root facility +// and also shows how one can interactively invoke a +// subtask (i.e. Analyse.cxx) to be executed. +// The latter is very convenient in developing/testing +// new reconstruction/analysis algorithms. +// +// To run this macro in batch, just do +// +// root -b -q icecal2root.cc +// +// For more details see the docs of class IceCal2Root +// +// NvE 09-aug-2005 Utrecht University +////////////////////////////////////////////////////////// +{ + gSystem->Load("ralice"); + gSystem->Load("icepack"); + gSystem->Load("iceconvert"); + + // Interactively compile and load the Analyse.cxx code + gROOT->LoadMacro("Analyse.cxx+"); + + IceCal2Root q("IceCal2Root","Calibration format conversion"); + + q.SetAmacalibFile("amacalib_amanda2_2003.txt"); + q.SetOutputFile("cal2003.root"); + + // Add Analyse as a sub-task to the IceCal2Root job + Analyse ana("Analyse","OMDB analyser"); + q.Add(&ana); + + q.ExecuteJob(); +} \ No newline at end of file -- 2.31.1