diff --git a/MobileRobot/AugReaMarker/CamMark/camtomar/src/VisionControl.cpp~ b/MobileRobot/AugReaMarker/CamMark/camtomar/src/VisionControl.cpp~ index 27c0b9f9b22fa472608265f701ad061877f274dd..8a57d2df5e21d014c3e83b969f2eb372857a1f47 100644 --- a/MobileRobot/AugReaMarker/CamMark/camtomar/src/VisionControl.cpp~ +++ b/MobileRobot/AugReaMarker/CamMark/camtomar/src/VisionControl.cpp~ @@ -92,18 +92,19 @@ double PID4Docking::control_signalX, PID4Docking::control_signalY, PID4Docking:: //const double PID4Docking::RefPose[4] = {-.0957, 0.00638817 /* Y_ref*/ , 0.308857 /* X_ref*/ , 0.17 /* theta_ref*/}; // ---- Ref. Values for Logitech Camera ---- // -const double PID4Docking::RefPose[4] = {-.0957, -0.0310121 /* Y_ref*/ , 0.219607 /* X_ref*/ , -0.618508 /* theta_ref*/}; +const double PID4Docking::RefPose[4] = {-.0957, 0.00903123 /* Y_ref*/ , 0.199791 /* X_ref*/ , -0.56 /* theta_ref*/}; // ---------------- PID gains---------------- // -double PID4Docking::Kp_y = .49; //.55 -double PID4Docking::Ki_y = 0 ;//.002 -double PID4Docking::Kd_y = 0; //.1 +double PID4Docking::Kp_y = .44; //.55 +double PID4Docking::Ki_y = .0005 ;//.002 +double PID4Docking::Kd_y = .15; //.1 -double PID4Docking::Kp_theta = .07;// .34 * Kp_y; .//35 * Kp_y (u can't put that gain less than certain value since the left joint on the robot would hit the docking platform!) +double PID4Docking::Kp_theta = .08;// .11 double PID4Docking::Ki_theta = 0; //* Ki_y; // .15 * Ki_y double PID4Docking::Kd_theta = 0; //* Kd_y; // .0008 // ---------------- PID gains---------------- // + double PID4Docking::TT_S,PID4Docking::TT_E; // random pose initialized const double PID4Docking::y_up = .3; @@ -119,8 +120,8 @@ double PID4Docking::speed_reducer_Y = 1; double PID4Docking::speed_reducer_theta = 1; // ------ offsets X, Y, theta for Docking --------- -double PID4Docking::X_dock_thresh = .001; -double PID4Docking::y_dock_thresh = .0025; +double PID4Docking::x_dock_thresh = .001; +double PID4Docking::y_dock_thresh = .002; //.0015 double PID4Docking::theta_dock_thresh = (CV_PI/180) * 1; // 1 deg. double PID4Docking::safety_margin_X = .15; // safety margin X axis in docking process : 18 cm @@ -143,9 +144,9 @@ PID4Docking::PID4Docking() // Publish pose message and buffer up to 100 messages MarPose_pub = node_vis.advertise<geometry_msgs::PoseStamped>("/marker_pose", 100); - commandPub = node_cont.advertise<geometry_msgs::Twist>("/base_controller/command",1); + commandPub = node_cont.advertise<geometry_msgs::Twist>("/base_controller/command",100); - MarPose_Sub = node_vis.subscribe("/marker_pose",1,&PID4Docking::camCB,this); + MarPose_Sub = node_vis.subscribe("/marker_pose",100,&PID4Docking::camCB,this); } PID4Docking::~PID4Docking() @@ -316,7 +317,8 @@ if (TheVideoCapturer.retrieve(TheInputImage)) if (node_vis.ok() && found) { - y_t = -TheMarkers[0].Tvec.at<Vec3f>(0,0)[0]; + /*y_t = -TheMarkers[0].Tvec.at<Vec3f>(0,0)[0]; // changed !!! */ + y_t = TheMarkers[0].Tvec.at<Vec3f>(0,0)[0]; x_t = TheMarkers[0].Tvec.at<Vec3f>(0,0)[1]; z_t = TheMarkers[0].Tvec.at<Vec3f>(0,0)[2]; @@ -446,8 +448,9 @@ camPose[3] = CamFB->pose.orientation.x; // theta orientation ROS_INFO_STREAM("--------- PID gains in trial no. " << docking_counter << " : ---------\n"); - ROS_INFO_STREAM(" Kp = " << Kp_y << " , Ki = " << Ki_y << " , Kd = " << Kd_y << "\n"); - + ROS_INFO_STREAM(" Kp_y = " << Kp_y << " , Ki_y = " << Ki_y << " , Kd_y = " << Kd_y << "\n"); + ROS_INFO_STREAM(" Kp_theta = " << Kp_theta << " , Ki_theta = " << Ki_theta << " , Kd_theta = " << Kd_theta << "\n"); + ROS_INFO_STREAM(" --------------------- Pose estimation ------------------ \n"); ROS_INFO_STREAM(" X_mar = " << camPose[2] << " vs. X_ref = " << RefPose[2] << " \n"); ROS_INFO_STREAM(" Y_mar = " << camPose[1] << " vs. Y_ref = " << RefPose[1] << " \n"); @@ -460,7 +463,7 @@ camPose[3] = CamFB->pose.orientation.x; // theta orientation { ROS_INFO_STREAM("---------- MOVING TOWARDS DOCKING PLATFORM --------- \n "); if ( - (abs(RefPose[2] - camPose[2]) <= X_dock_thresh) //&& // Z + (abs(RefPose[2] - camPose[2]) <= x_dock_thresh) //&& // Z //(abs(RefPose[1] - camPose[1]) <= y_dock_thresh) && // Y //(abs(RefPose[3] - camPose[3]) <= theta_dock_thresh) // Yaw ) @@ -505,7 +508,7 @@ camPose[3] = CamFB->pose.orientation.x; // theta orientation } else { ROS_INFO("---------- MOVING TOWARDS RANDOM POSE ---------\n"); - RandomPose(x_new,y_new,theta_new); + Undocking(x_new,y_new,theta_new); } } @@ -514,7 +517,7 @@ void PID4Docking::Controller(double RefX, double MarPoseX, double RefY, double M ROS_INFO_STREAM("--------------------- Controller started ----------------------\n "); // -----------------X--------------------- // - if(abs(RefX - MarPoseX) > X_dock_thresh) + if(abs(RefX - MarPoseX) > x_dock_thresh) { /*// e(t) = setpoint - actual value; curr_errorX = RefX - MarPoseX; @@ -533,7 +536,7 @@ void PID4Docking::Controller(double RefX, double MarPoseX, double RefY, double M control_signalX = speed_reducer_X * 0.1; } else { - control_signalX = 5e-5; + control_signalX = 0; // 5e-5 } // -----------------Y--------------------- // @@ -560,12 +563,23 @@ void PID4Docking::Controller(double RefX, double MarPoseX, double RefY, double M d_termY = Kd_y * diffY; ROS_INFO_STREAM("pY = " << p_termY << ", iY = " << i_termY << " dY = " << d_termY<< " \n"); - // control signal + control_signalY = p_termY + i_termY + d_termY; - // robot & marker coordinates conversion - control_signalY = - speed_reducer_Y * control_signalY; + //control_signalY = speed_reducer_Y * control_signalY; + + /* -- MARKER IN CAMERA COORDINATATE FRAME */ + if(MarPoseY < 0) + { + control_signalY = - speed_reducer_Y * control_signalY; + ROS_INFO("marker pose < 0 => robot is going to the RIGHT \n"); + }else + { + control_signalY = speed_reducer_Y * control_signalY; + ROS_INFO("marker pose > 0 => robot is going to the LEFT \n"); + } + prev_errorY = curr_errorY; } else if ((RefY - MarPoseY) <= y_dock_thresh && (RefY - MarPoseY) >= -y_dock_thresh) @@ -590,7 +604,7 @@ void PID4Docking::Controller(double RefX, double MarPoseX, double RefY, double M i_termYAW = Ki_theta * int_errorYAW; d_termYAW = Kd_theta * diffYAW; - ROS_INFO_STREAM("p_theta = " << p_termYAW << ", i_theta = " << i_termYAW << " d_theta = " << d_termYAW << " \n"); + //ROS_INFO_STREAM("p_theta = " << p_termYAW << ", i_theta = " << i_termYAW << " d_theta = " << d_termYAW << " \n"); // control signal control_signalYAW = p_termYAW + i_termYAW + d_termYAW; @@ -606,13 +620,20 @@ void PID4Docking::Controller(double RefX, double MarPoseX, double RefY, double M } else if (MarPoseYAW < 0 && abs(RefYAW) >= abs(MarPoseYAW)) { - ROS_INFO("abs(RefYAW) >= abs(orientation) && orientation < 0 => CW rotation \n"); // correct - control_signalYAW = - speed_reducer_theta * control_signalYAW; + /*ROS_INFO("abs(RefYAW) >= abs(orientation) && orientation < 0 => CW rotation \n"); // correct (changed) + control_signalYAW = - speed_reducer_theta * control_signalYAW;*/ + + ROS_INFO("abs(RefYAW) >= abs(orientation) && orientation < 0 => CCW rotation \n"); + control_signalYAW = speed_reducer_theta * control_signalYAW; } else if (MarPoseYAW < 0 && abs(RefYAW) < abs(MarPoseYAW)) { - ROS_INFO("abs(RefYAW) < abs(orientation) && orientation < 0 => CCW rotation \n"); // correct ? - control_signalYAW = - speed_reducer_theta * control_signalYAW; + /*ROS_INFO("abs(RefYAW) < abs(orientation) && orientation < 0 => CCW rotation \n"); // correct ? (changed) + control_signalYAW = - speed_reducer_theta * control_signalYAW;*/ + + ROS_INFO("abs(RefYAW) < abs(orientation) && orientation < 0 => CW rotation \n"); + control_signalYAW = speed_reducer_theta * control_signalYAW; + } else { ROS_INFO("New Condition should be added! \n"); @@ -627,11 +648,13 @@ void PID4Docking::Controller(double RefX, double MarPoseX, double RefY, double M control_signalYAW = 0; } - //ROS_INFO_STREAM("Control signalX = " << control_signalX <<" . \n"); - //ROS_INFO_STREAM("Control signalY = " << control_signalY << ". \n"); - //ROS_INFO_STREAM("Control signalYAW = "<< control_signalYAW <<". \n"); + /* --- + ROS_INFO_STREAM("Control signalX = " << control_signalX <<"\n"); + ROS_INFO_STREAM("Control signalY = " << control_signalY << "\n"); + ROS_INFO_STREAM("Control signalYAW = "<< control_signalYAW <<"\n"); + */ + ROS_INFO_STREAM(" ---------------------- Controller ended ----------------------- \n"); - dock(control_signalX, control_signalY, control_signalYAW); } @@ -696,7 +719,7 @@ void PID4Docking::GenerateRandomVal() theta_new = ((double) rand() / (RAND_MAX)) * (theta_up - theta_dwn) + theta_dwn; // will be used for Q_Learning } -void PID4Docking::RandomPose(double X_rand, double Y_rand, double theta_rand) +void PID4Docking::Undocking(double X_rand, double Y_rand, double theta_rand) { ROS_INFO_STREAM(" Xr = " << X_rand << ", Yr = " << Y_rand << ", Thetar = " << theta_rand << " rad ~ " << theta_rand * (180/CV_PI) << " deg\n"); ROS_INFO_STREAM(" -------------------------------------------------------------- \n"); diff --git a/MobileRobot/docking_data/Pose.txt b/MobileRobot/docking_data/Pose.txt index 1954a078efe224a7ebf057349a6251f5e3797418..cf6c6d94a493b688479ce9242ce59c5058c572b2 100644 --- a/MobileRobot/docking_data/Pose.txt +++ b/MobileRobot/docking_data/Pose.txt @@ -1,558 +1,538 @@ %time,field.position.x,field.position.y,field.position.z,field.orientation.x,field.orientation.y,field.orientation.z,field.orientation.w -1469729948841284425,-0.0272413939238,-0.0277289450169,1.13821768761,-0.0421219726735,0.00713919245428,0.836901572296,-0.545683543492 -1469729948957315250,-0.0272413939238,-0.0277289450169,1.13821768761,-0.0421219726735,0.00713919245428,0.836901572296,-0.545683543492 -1469729949056013628,-0.0272413939238,-0.0277289450169,1.13821768761,-0.0421219726735,0.00713919245428,0.836901572296,-0.545683543492 -1469729949135645271,-0.0272413939238,-0.0277289450169,1.13821768761,-0.0421219726735,0.00713919245428,0.836901572296,-0.545683543492 -1469729949214200364,-0.0272413939238,-0.0277289450169,1.13821768761,-0.0421219726735,0.00713919245428,0.836901572296,-0.545683543492 -1469729949292509272,-0.0271865483373,-0.0277022719383,1.13725066185,-0.0493255403572,0.00840146850364,0.837546490163,-0.544070108728 -1469729949375646139,-0.0272413939238,-0.0277289450169,1.13821768761,-0.0421219726735,0.00713919245428,0.836901572296,-0.545683543492 -1469729949457242246,-0.0272413939238,-0.0277289450169,1.13821768761,-0.0421219726735,0.00713919245428,0.836901572296,-0.545683543492 -1469729949535788880,-0.0269913356751,-0.0277590975165,1.13490307331,-0.103849963363,0.0209698389981,0.839252787678,-0.533319987752 -1469729949613799168,-0.0266526322812,-0.0278697535396,1.12795948982,-0.169988930859,0.0385492175706,0.839670868017,-0.514364223691 -1469729949687188760,-0.0278904493898,-0.0269897487015,1.14903116226,-0.0970407214907,0.0200000452245,0.845201954889,-0.525182589216 -1469729949761705100,-0.0273109525442,-0.0240782629699,1.13869786263,-0.101412798237,0.021816909722,0.84004228781,-0.532511428511 -1469729949841616493,-0.0272054038942,-0.0203183181584,1.10736739635,-0.0924359016371,0.0155918213479,0.836150667435,-0.540429977465 -1469729949918237042,-0.0264333710074,-0.0159617457539,1.09336400032,-0.18497485506,0.0388056918478,0.836501522407,-0.514338044758 -1469729949998026869,-0.0263262428343,-0.01243469771,1.09266042709,-0.125531933174,0.0247504215446,0.840683529377,-0.526194216826 -1469729950081924744,-0.0264730956405,-0.00969342887402,1.08510923386,-0.040555576455,0.00648795929514,0.831445098388,-0.554086816274 -1469729950161980365,-0.0261841006577,-0.00468878354877,1.06798434258,-0.106715080096,0.0297525540343,0.84380326283,-0.525093068746 -1469729950240371927,-0.026279790327,-0.00200276309624,1.06310749054,-0.0944940013373,0.0199446434303,0.837797264635,-0.537372159941 -1469729950315048782,-0.0262118782848,0.000939747435041,1.06174564362,-0.112080465061,0.0233862235913,0.832247777964,-0.542452477156 -1469729950394749786,-0.0260175224394,0.00538741471246,1.05604457855,-0.136688538631,0.0301610938268,0.836401021935,-0.529943282185 -1469729950471809423,-0.0259048342705,0.00788273569196,1.04381084442,-0.088837044023,0.0187873362587,0.8325973932,-0.546385025821 -1469729950556911723,-0.0257903840393,0.0116889476776,1.02571856976,-0.169865802303,0.0334605158046,0.833899030958,-0.524059547435 -1469729950653175417,-0.0255597215146,0.0143203418702,1.02152585983,-0.186319661209,0.0405863610535,0.837273906031,-0.512455010144 -1469729950733688705,-0.0254785977304,0.0170226935297,1.02145171165,-0.132355346625,0.0242045519314,0.831775757355,-0.538558531045 -1469729950823333755,-0.0251375921071,0.0206178501248,1.01476204395,-0.0753926476104,0.0150553569489,0.831637509947,-0.549971214668 -1469729950900394578,-0.0249468814582,0.0228944011033,1.0048648119,-0.0327448113774,0.00480158804402,0.825518401449,-0.563404021063 -1469729950974447570,-0.0246410388499,0.027071127668,0.985809147358,-0.165007274672,0.0371505980094,0.83661801663,-0.521020850469 -1469729951053995424,-0.0244431942701,0.0295058358461,0.978949964046,-0.170856468945,0.0329300549368,0.830765325097,-0.528727390171 -1469729951130921603,-0.024170383811,0.0343501605093,0.975752651691,-0.143550298019,0.0294950905857,0.830781316023,-0.53695973454 -1469729951210506863,-0.0239204708487,0.0372868999839,0.971707701683,-0.174921602035,0.0377748114399,0.827727013388,-0.531830318871 -1469729951287212324,-0.0238413698971,0.0418601483107,0.963639199734,-0.111908334132,0.022331630744,0.823421703353,-0.555836775922 -1469729951367097643,-0.0239234417677,0.0446569696069,0.953269064426,-0.0612988576185,0.00995341896507,0.823810971502,-0.563452626881 -1469729951449606627,-0.0237266235054,0.0475738756359,0.943848609924,-0.152357362346,0.0260493377393,0.825453635733,-0.542894981924 -1469729951528526990,-0.023443069309,0.0523909553885,0.938545048237,-0.163115543126,0.0291384109406,0.822943707466,-0.543422420351 -1469729951608484446,-0.0234469939023,0.0553035251796,0.931053161621,-0.076357871259,0.0158560660015,0.825350904852,-0.559208319438 -1469729951690047828,-0.023448728025,0.0577720701694,0.91851246357,-0.085108834265,0.0167468939227,0.827909682892,-0.554113332133 -1469729951771750458,-0.0233801212162,0.0619383119047,0.916418552399,-0.114554792986,0.0194792399648,0.817135305626,-0.564612832758 -1469729951850669072,-0.0232908688486,0.0645636320114,0.91122585535,-0.0794285233278,0.0123708535972,0.817256658511,-0.570639663695 -1469729951936116381,-0.0232500452548,0.0679161027074,0.892457723618,-0.145766170019,0.0257060978311,0.825736500161,-0.544289125846 -1469729952017075353,-0.0230391677469,0.0701523795724,0.888634324074,-0.188859977254,0.0334591478808,0.820161198867,-0.539025047923 -1469729952103599773,-0.0229192301631,0.0738562643528,0.88400053978,-0.135689482079,0.0232578484648,0.817237593317,-0.559616076438 -1469729952183715355,-0.0229136683047,0.0752962082624,0.872846245766,-0.0232213693666,0.00406954249839,0.815549012457,-0.578207588249 -1469729952258969877,-0.0227228011936,0.0771496295929,0.864437282085,-0.161171412468,0.0299364545417,0.818921392045,-0.549995761933 -1469729952335830989,-0.0224005505443,0.0802780166268,0.85808300972,-0.159714760545,0.0264091737881,0.816497513516,-0.554189102407 -1469729952412316898,-0.0221626795828,0.0818708464503,0.848159611225,-0.159579858273,0.0305106248028,0.817598405251,-0.552391363381 -1469729952485508830,-0.0219554714859,0.0846614912152,0.837321102619,-0.114965140425,0.0222972547289,0.817185764597,-0.564352084305 -1469729952565449586,-0.0216802582145,0.0862004086375,0.83029037714,-0.173605771464,0.0279852973345,0.81319808918,-0.554785298112 -1469729952648363800,-0.0212591253221,0.0889974460006,0.823109924793,-0.188706785909,0.0306648975681,0.81039798515,-0.553809099487 -1469729952727996110,-0.0211504567415,0.0902174860239,0.815273165703,-0.118471552437,0.0237693913592,0.813154573648,-0.569367321378 -1469729952805834310,-0.0212284624577,0.0915583223104,0.808079779148,-0.113722037288,0.0197263398577,0.812122516575,-0.571957330421 -1469729952882017877,-0.0212628636509,0.0929612368345,0.805991590023,-0.137665691104,0.022151158435,0.806858321047,-0.574053249646 -1469729952962371248,-0.0213555116206,0.0935566052794,0.79269272089,-0.0940632947553,0.0139206260795,0.807270476553,-0.582471192795 -1469729953045115566,-0.0210450701416,0.0942850708961,0.785674989223,-0.181616126246,0.0264289023321,0.807448726454,-0.560663580016 -1469729953132225399,-0.0208170637488,0.0950841084123,0.776118397713,-0.0828794474496,0.0133811936314,0.805659536665,-0.586399737235 -1469729953216237350,-0.020572880283,0.0953423976898,0.766970038414,-0.13166661015,0.022035525471,0.808590183292,-0.573027272364 -1469729953291196504,-0.0203196965158,0.0956333950162,0.759611845016,-0.216451615701,0.0343853889834,0.807419617417,-0.547758983947 -1469729953369997928,-0.0201536864042,0.0964811742306,0.751385569572,-0.165555190779,0.0276940699622,0.805681269915,-0.568068841429 -1469729953448970449,-0.0201301854104,0.0966623350978,0.743511974812,-0.139027714841,0.0223179832374,0.804395657051,-0.577166205739 -1469729953531644103,-0.0196568593383,0.0974267721176,0.735342264175,-0.214609673841,0.0315496215786,0.802061566894,-0.556457143168 -1469729953612591168,-0.0196356400847,0.0978935882449,0.729742944241,-0.117379201221,0.0173621276681,0.802606345674,-0.584588516418 -1469729953685911665,-0.019234906882,0.0981741845608,0.718556821346,-0.133051059891,0.0193535294148,0.802278844398,-0.581611134859 -1469729953766944223,-0.0189119186252,0.0982712507248,0.711280822754,-0.235050359423,0.0351244045463,0.80045278556,-0.55026624722 -1469729953849369865,-0.0189105961472,0.0986082330346,0.705311596394,-0.112684383483,0.0168940293924,0.798370142363,-0.591288370657 -1469729953931333531,-0.0186402648687,0.098522439599,0.694119036198,-0.197788064934,0.0272794459381,0.799179333843,-0.566963936734 -1469729954008274300,-0.0185253731906,0.0984913110733,0.687318503857,-0.189248343789,0.0290531161772,0.79933012538,-0.569572059947 -1469729954090792923,-0.0185227803886,0.098254583776,0.680247664452,-0.210997192716,0.03034392403,0.797693044378,-0.564132287581 -1469729954168115474,-0.0185783654451,0.0981631949544,0.671544551849,-0.124170966746,0.0195381670228,0.795879038273,-0.592263782013 -1469729954247190526,-0.0185116603971,0.0978811457753,0.664833843708,-0.196587103105,0.0274693673974,0.794543341057,-0.573846516004 -1469729954325587710,-0.0186055693775,0.0971056371927,0.65403676033,-0.230264882698,0.031694934172,0.794771531712,-0.560635110678 -1469729954407488485,-0.0187217462808,0.0969657823443,0.648195028305,-0.159414677215,0.0216294048124,0.794230907233,-0.585932074162 -1469729954486569661,-0.0188332684338,0.0965262874961,0.638681173325,-0.168603019241,0.0230107347142,0.792082062047,-0.586216286855 -1469729954566897297,-0.0187493339181,0.0959674865007,0.631653189659,-0.239907348515,0.0319935190451,0.791034542371,-0.561858729257 -1469729954647899450,-0.0187183693051,0.0953741669655,0.623458862305,-0.196196482587,0.0277802696574,0.792445141994,-0.576858642796 -1469729954727308429,-0.0187819115818,0.0947865098715,0.61490893364,-0.176135709509,0.0233693361639,0.789919894019,-0.586904291172 -1469729954800862413,-0.0185805428773,0.0941865220666,0.60796713829,-0.251848620257,0.0320207831553,0.789179039411,-0.559234642771 -1469729954874780974,-0.0183593742549,0.0935964658856,0.600975334644,-0.192354573334,0.0260548556393,0.789998974399,-0.581568983925 -1469729954963545480,-0.0183031186461,0.0926265269518,0.591666698456,-0.201004124488,0.0258721775786,0.787854449096,-0.581561122674 -1469729955045875357,-0.0180661994964,0.0916982740164,0.583828389645,-0.221442549339,0.0289834209759,0.788485387208,-0.573074125058 -1469729955127378035,-0.0178939271718,0.0909453257918,0.57546800375,-0.20226029693,0.0258106551222,0.786591734593,-0.582836190913 -1469729955213096620,-0.0176533032209,0.0901549831033,0.568558216095,-0.226864860798,0.0266569673104,0.784857712925,-0.576038289952 -1469729955295504183,-0.0175537634641,0.0895198136568,0.562503516674,-0.177666317792,0.020958092581,0.785166452738,-0.592882011342 -1469729955375424584,-0.0171480234712,0.0884129628539,0.552369594574,-0.218391078223,0.0263967526688,0.784252267597,-0.580135267994 -1469729955461460147,-0.0169612895697,0.0875402837992,0.545231103897,-0.232615748371,0.0282934573615,0.784715544164,-0.573856174166 -1469729955542603196,-0.0167196579278,0.0865175276995,0.536299824715,-0.20582338266,0.0247775944642,0.783051833854,-0.586389487849 -1469729955623190092,-0.0164294075221,0.0857587009668,0.529857397079,-0.235521019868,0.0254770485307,0.780647169326,-0.578334476079 -1469729955701694187,-0.0161787755787,0.0845879688859,0.519321978092,-0.274620273908,0.0311024804883,0.780801871019,-0.560325600949 -1469729955782919931,-0.0160668343306,0.0838914737105,0.51304680109,-0.216812414341,0.0257989338383,0.781328145058,-0.584682068941 -1469729955859003390,-0.0158881973475,0.0827692002058,0.503435969353,-0.190379437227,0.0210065233308,0.780439396448,-0.595171189097 -1469729955956526628,-0.0157869253308,0.0820391848683,0.497261464596,-0.20565827892,0.0222733520672,0.779440875869,-0.591337882369 -1469729956036562290,-0.015645859763,0.081126563251,0.490403801203,-0.263155928375,0.0298484928833,0.779214172234,-0.568052197094 -1469729956118785488,-0.0155291501433,0.0798842385411,0.480749249458,-0.213176534445,0.0218144802838,0.77788374818,-0.590742556389 -1469729956194777390,-0.0154113071039,0.0790894255042,0.474818974733,-0.248491130956,0.0257778060413,0.775042069436,-0.580428680507 -1469729956276944083,-0.0152382152155,0.0777756348252,0.464561134577,-0.222366164815,0.0229400576018,0.775529161077,-0.59040796304 -1469729956361302456,-0.0149688897654,0.0769147574902,0.45771703124,-0.286259772838,0.0305150235846,0.776080472559,-0.561091147589 -1469729956439552048,-0.0147514138371,0.0757922232151,0.448518514633,-0.247689995528,0.0245188895147,0.774283695098,-0.581836102075 -1469729956517041029,-0.0145388003439,0.0749603062868,0.441805273294,-0.261742529586,0.0264640826689,0.774106220411,-0.575803838173 -1469729956594747627,-0.0143127180636,0.0738184005022,0.432486325502,-0.2414824668,0.0235734185174,0.772837207757,-0.586389940631 -1469729956675726988,-0.0141623606905,0.0730735734105,0.425738483667,-0.241414805438,0.0238191516225,0.773075986318,-0.58609304646 -1469729956754474077,-0.0139389811084,0.0719428434968,0.416155695915,-0.240062779899,0.0235523467746,0.771408934846,-0.588849220011 -1469729956835293286,-0.013793242164,0.0712636187673,0.409871965647,-0.233479830466,0.0216832353619,0.771301208304,-0.591702165061 -1469729956912420288,-0.0136254029348,0.0707473084331,0.403519392014,-0.248274992797,0.0231702505675,0.771045037444,-0.585928509012 -1469729956991642097,-0.0134472986683,0.0696726888418,0.393724858761,-0.271188193793,0.0260046543156,0.769937839481,-0.577041111912 -1469729957075591412,-0.0133807463571,0.0689631924033,0.38744404912,-0.252500529474,0.0226626554032,0.768318002912,-0.587722156352 -1469729957152000888,-0.0131854452193,0.0682791545987,0.380931437016,-0.269527258294,0.0251762813733,0.768830369272,-0.579328123932 -1469729957234736907,-0.0129724657163,0.0672035291791,0.371158212423,-0.275410110693,0.0252609111151,0.768105457501,-0.577516375053 -1469729957314792340,-0.0128847202286,0.0665815025568,0.36501789093,-0.271886127947,0.0237059360973,0.766562873787,-0.581289362156 -1469729957395976612,-0.0126698203385,0.0654622539878,0.355250626802,-0.278455177766,0.0245526981435,0.76524797089,-0.579875350432 -1469729957477701484,-0.0125800818205,0.0648483932018,0.348909139633,-0.26998783451,0.022422143786,0.764132633167,-0.585410228484 -1469729957558481368,-0.0123918373138,0.0641745254397,0.342326313257,-0.269827286511,0.0233713250781,0.764865611385,-0.584489189924 -1469729957632995702,-0.0122458785772,0.063125655055,0.332650780678,-0.270163933223,0.0223900030767,0.763948529414,-0.585570475139 -1469729957712965825,-0.0120738623664,0.0624895840883,0.326254159212,-0.303904967858,0.0259203963196,0.763096309177,-0.569784105153 -1469729957787367513,-0.0120371477678,0.0614639222622,0.316602617502,-0.287783627337,0.0223940854369,0.76154618042,-0.580281400582 -1469729957862721604,-0.0119301918894,0.0606860592961,0.310012668371,-0.314420242202,0.0258432831613,0.761319944,-0.566448566841 -1469729957941896633,-0.0117156468332,0.0598053485155,0.300502151251,-0.287580293324,0.0230030749134,0.761787173315,-0.580042012278 -1469729958022124962,-0.0115277152508,0.059036038816,0.294268339872,-0.290814128434,0.0224906607465,0.759369988936,-0.581617170298 -1469729958098481291,-0.0114771490917,0.0585454814136,0.288192629814,-0.283128940871,0.0214709721212,0.759856800931,-0.584803079914 -1469729958179836751,-0.0113527616486,0.0582096911967,0.283492773771,-0.30501298612,0.0232483410177,0.759769375743,-0.573739565153 -1469729958257246626,-0.0112905604765,0.0582112371922,0.279546290636,-0.305309371832,0.0238725265872,0.758989853437,-0.574587410518 -1469729958336801198,-0.0112321702763,0.0588597841561,0.278767436743,-0.296839821427,0.0223803061815,0.759111202487,-0.578908822328 -1469729958417105048,-0.0111789228395,0.0592935308814,0.27736338973,-0.317224838472,0.0228782568255,0.756269372633,-0.571753113886 -1469729958495052610,-0.0111304987222,0.0592579245567,0.275358647108,-0.327054094242,0.0251266737329,0.757145200123,-0.56492071624 -1469729958575725990,-0.0110929245129,0.0589980334044,0.27487680316,-0.339987917753,0.0259810485978,0.756699177261,-0.557798849074 -1469729958651069287,-0.0110729867592,0.0581524893641,0.274450391531,-0.341138904049,0.0250818440853,0.755794578392,-0.558363416167 -1469729958733032234,-0.0110521540046,0.0576923787594,0.274236649275,-0.340233196472,0.0247245386204,0.755359402295,-0.559519653428 -1469729958811307673,-0.0109949782491,0.0571036785841,0.274006575346,-0.359361085795,0.0269176392675,0.7542199298,-0.54889648223 -1469729958898239860,-0.0109808212146,0.0563450157642,0.273871779442,-0.350473934386,0.0248297931357,0.753539225858,-0.555634896117 -1469729958987285366,-0.0109969303012,0.0558852553368,0.273820579052,-0.341171518287,0.0237762029609,0.753435610989,-0.561579439952 -1469729959066932829,-0.0108671532944,0.0551522448659,0.271690130234,-0.332226858675,0.0237573336267,0.753639498931,-0.566646635148 -1469729959143396215,-0.010810835287,0.0543644577265,0.270326524973,-0.357522097786,0.0244833503504,0.751940714682,-0.553320591298 -1469729959226066163,-0.0108746690676,0.0539501570165,0.271520107985,-0.355231435094,0.0253692919018,0.75322219377,-0.553012977571 -1469729959302157601,-0.010868338868,0.0531663559377,0.272720605135,-0.380002075737,0.0265120768539,0.750953739461,-0.539410802085 -1469729959385087715,-0.0108699798584,0.0527299195528,0.273423910141,-0.374917626038,0.0254210295579,0.75057579504,-0.543531526999 -1469729959466319501,-0.0108269099146,0.0518306344748,0.27333176136,-0.391942921898,0.0265553178142,0.749536406926,-0.532795209966 -1469729959549868320,-0.0108471699059,0.0513487420976,0.273467242718,-0.377787098969,0.0256136541576,0.750363591006,-0.541825922107 -1469729959629333757,-0.0108110858127,0.050463989377,0.273362755775,-0.397269450495,0.0268947435559,0.748998727934,-0.529579608771 -1469729959723438285,-0.0107942884788,0.0499541684985,0.273355543613,-0.381645621413,0.0265539300693,0.751032503597,-0.538137238067 -1469729959807086541,-0.0107842944562,0.0493298731744,0.273279607296,-0.386431251646,0.0268302639732,0.749906520449,-0.536275335322 -1469729959885786522,-0.010764577426,0.0485887303948,0.273363143206,-0.388902371456,0.0268414408131,0.750239673968,-0.534017709571 -1469729959960991379,-0.0107412301004,0.0477669723332,0.273249149323,-0.408558104556,0.0266204243696,0.746814072793,-0.524061417094 -1469729960041181501,-0.0107116708532,0.0472187884152,0.27338090539,-0.387090930817,0.0262035625957,0.749465439554,-0.536447145114 -1469729960116176707,-0.010702312924,0.0463120080531,0.273415893316,-0.386018836439,0.0257237646128,0.748714547836,-0.53828827937 -1469729960205733127,-0.010657905601,0.04549446702,0.273206532001,-0.41599309524,0.0265195337184,0.745260413145,-0.520416540517 -1469729960285723416,-0.0106649072841,0.0450023449957,0.273274362087,-0.399661787233,0.0256043533377,0.746244527795,-0.53172735274 -1469729960364818659,-0.0106363659725,0.0441155619919,0.273251235485,-0.408472377147,0.0255981103992,0.744948256848,-0.52682743709 -1469729960439106978,-0.0106228478253,0.043642628938,0.273303240538,-0.398430496767,0.0249573056139,0.745379525148,-0.533891033482 -1469729960514449378,-0.0105985328555,0.0431530363858,0.273438096046,-0.408165892246,0.0263592952499,0.746037665624,-0.525484151456 -1469729960593207827,-0.010584667325,0.0422835424542,0.273295015097,-0.405751635562,0.0252767612998,0.744768802466,-0.529193845816 -1469729960671468373,-0.0105858445168,0.0418157204986,0.273406386375,-0.398070018351,0.0246033249352,0.74491037481,-0.534830319253 -1469729960751291889,-0.0105408318341,0.0409215837717,0.273217827082,-0.417049103587,0.026098316546,0.74425175946,-0.521035739284 -1469729960832911114,-0.0105337975547,0.0404553189874,0.273298084736,-0.420895751641,0.0264891671083,0.744115082209,-0.518109867407 -1469729960909900165,-0.0105026699603,0.0399980321527,0.273255288601,-0.421025014163,0.0266975973839,0.744415372609,-0.51756248779 -1469729960990917621,-0.0105126844719,0.0393182374537,0.273388326168,-0.411559494254,0.0247043286703,0.744036022465,-0.525755528843 -1469729961069701634,-0.010522515513,0.0387750789523,0.273323088884,-0.406034259836,0.0236545624995,0.743406016555,-0.53096528706 -1469729961148564118,-0.0104861250147,0.0383337438107,0.273357272148,-0.424582791622,0.0253196541356,0.743184720949,-0.51649282543 -1469729961227381844,-0.0104723777622,0.0376911200583,0.273294150829,-0.412304387222,0.0258004364957,0.744573940415,-0.52435586867 -1469729961305416058,-0.010505429469,0.0372547507286,0.273297965527,-0.411714856675,0.0246894231889,0.743235695008,-0.526765612812 -1469729961385030636,-0.0104610435665,0.0366436056793,0.273334741592,-0.429267377699,0.0262818277376,0.743642084384,-0.511893772483 -1469729961462574283,-0.0104584936053,0.0362696312368,0.273284584284,-0.41989175151,0.0258262946893,0.743977048126,-0.519155151548 -1469729961542738262,-0.0104692541063,0.0358601883054,0.273323059082,-0.406317189055,0.0242278691715,0.7435401032,-0.530535076284 -1469729961620336952,-0.0104569494724,0.0353131629527,0.273331135511,-0.424204580032,0.0252998274887,0.742965196107,-0.517120015453 -1469729961700096040,-0.0104719195515,0.0349047444761,0.273202836514,-0.406117933025,0.0237966969473,0.743183666885,-0.531206154864 -1469729961787005173,-0.0104186348617,0.0344985537231,0.273065418005,-0.424846073756,0.0260704802302,0.743206275152,-0.516207880848 -1469729961866284946,-0.0104250404984,0.03398572281,0.273112654686,-0.421042495091,0.0254300396262,0.743370861747,-0.519111059714 -1469729961941329611,-0.0104165906087,0.0335950776935,0.27303904295,-0.431610766738,0.0259874773731,0.742309637937,-0.511872248204 -1469729962021496173,-0.0104065509513,0.0332181341946,0.27303403616,-0.447070596393,0.0260935482891,0.740849832056,-0.500588188955 -1469729962095880087,-0.0104127749801,0.0327781178057,0.273056179285,-0.440203784973,0.0247136823695,0.740181121412,-0.507682744541 -1469729962178913653,-0.0104049472138,0.03252325207,0.273129075766,-0.438861737651,0.0258347015252,0.741912484922,-0.506259625231 -1469729962253641190,-0.0103815803304,0.0320635139942,0.273026645184,-0.445262849269,0.0259389561055,0.74114937948,-0.501762655958 -1469729962331502071,-0.0103980377316,0.0317668616772,0.272991597652,-0.433957233414,0.0256258605551,0.741572966955,-0.510973550705 -1469729962407262796,-0.0103746084496,0.0314819589257,0.273006677628,-0.449181179286,0.0259956788066,0.740950246802,-0.498551125385 -1469729962496033035,-0.0103654330596,0.0311217159033,0.273035883904,-0.454495019122,0.0265183976462,0.740874595138,-0.49379741439 -1469729962574811819,-0.0104031190276,0.0308487769216,0.272996276617,-0.436380393042,0.024411486934,0.739829615886,-0.511496208522 -1469729962650962678,-0.0103388857096,0.0305732935667,0.272976368666,-0.469828095286,0.0272453719825,0.739683697581,-0.481027315356 -1469729962728980985,-0.0103684011847,0.0303078386933,0.272945791483,-0.454590153339,0.0258395260751,0.739818558396,-0.495326772982 -1469729962809577006,-0.0102883772925,0.0297848172486,0.270213037729,-0.457950610542,0.0247192513984,0.738491711417,-0.494267325527 -1469729962882292467,-0.0102995801717,0.029626712203,0.269688636065,-0.422891337206,0.0227672617507,0.739648690977,-0.523033825527 -1469729962959992359,-0.010266889818,0.029382750392,0.269643127918,-0.43944830392,0.0239388366529,0.739694500226,-0.509081689532 -1469729963033846973,-0.010307486169,0.0291069280356,0.270378738642,-0.454162933363,0.0237119706496,0.737380421792,-0.499443576358 -1469729963110600762,-0.0102716125548,0.0287427082658,0.270423769951,-0.474684707163,0.0254287500445,0.737090477785,-0.480338875186 -1469729963190414852,-0.010268105194,0.0285400357097,0.27041643858,-0.481133649611,0.0254506522313,0.736558301947,-0.474704690673 -1469729963269013154,-0.0102398907766,0.0283011458814,0.270396411419,-0.489734703597,0.0266250218744,0.736545820629,-0.465780294148 -1469729963352134096,-0.0102449245751,0.0280230455101,0.270405232906,-0.491030226295,0.0255174342813,0.735784062199,-0.465682285713 -1469729963435383587,-0.0102364774793,0.0278020184487,0.270410329103,-0.491190619647,0.026210707726,0.735848715796,-0.465372368574 -1469729963512713643,-0.0102681452408,0.0276346486062,0.270466119051,-0.479411081478,0.0238071098252,0.735317670455,-0.478441386163 -1469729963590894484,-0.0102091012523,0.0272909402847,0.270380675793,-0.500910473363,0.0264786720781,0.735147501491,-0.456010667257 -1469729963671709326,-0.0102184340358,0.0271276682615,0.270409941673,-0.506633471181,0.0256547660563,0.734265082608,-0.451130964711 -1469729963750000999,-0.010197407566,0.0268892794847,0.270373731852,-0.503900685579,0.0265990972317,0.734966349746,-0.452991227112 -1469729963827108822,-0.0102129327133,0.0266596395522,0.270409137011,-0.501301368441,0.0252484968297,0.734496873198,-0.456698800819 -1469729963906764513,-0.0102054057643,0.0264727789909,0.270419150591,-0.503264051607,0.0258586443013,0.734587825442,-0.454353773603 -1469729963983871283,-0.0101993791759,0.0262177158147,0.27034470439,-0.506426414653,0.0257072270219,0.734308561074,-0.451289665464 -1469729964063820859,-0.0101906014606,0.0259815584868,0.270319968462,-0.50226047972,0.0261565255935,0.734765153364,-0.455159769842 -1469729964142207755,-0.0101722963154,0.0257590282708,0.270271241665,-0.517706692819,0.0268401535642,0.733951150051,-0.438833790525 -1469729964219275785,-0.0101721761748,0.0254062991589,0.270293444395,-0.509752325175,0.0266447835946,0.734390216531,-0.44734062229 -1469729964300991432,-0.0101923393086,0.0251722969115,0.270284205675,-0.499186424621,0.0247034622551,0.734175065608,-0.459553724243 -1469729964377077152,-0.0101558975875,0.0248219072819,0.270238399506,-0.514149525577,0.0267148696465,0.734296390817,-0.442431228014 -1469729964459505394,-0.0101435743272,0.0243428945541,0.270206540823,-0.52020698156,0.0274769931339,0.734224936812,-0.435365884456 -1469729964549619464,-0.0101527385414,0.0240262299776,0.270225197077,-0.511619240742,0.0272951723925,0.734779931192,-0.44452129171 -1469729964637255660,-0.0101917190477,0.0237559340894,0.270286947489,-0.50273252579,0.0245926285836,0.733691849584,-0.456455342816 -1469729964714723468,-0.0101961782202,0.0232587773353,0.27023267746,-0.498191313204,0.0239307689602,0.733467549279,-0.461798752596 -1469729964793265342,-0.0101267080754,0.0229794476181,0.270166754723,-0.519690600154,0.0279113878856,0.734650713052,-0.435236676247 -1469729964868645193,-0.0101391710341,0.0225545410067,0.270205259323,-0.51556173822,0.0270647603039,0.734324254095,-0.440717009748 -1469729964942469374,-0.0102234100923,0.0222361087799,0.270188182592,-0.482674911117,0.0218616538435,0.733007026122,-0.478798180787 -1469729965033415942,-0.0102145373821,0.0217599887401,0.270145624876,-0.482764731213,0.0221096184392,0.733146294063,-0.478482905202 -1469729965108567465,-0.010118749924,0.0215392485261,0.270129680634,-0.519174243357,0.0277050496833,0.734386792627,-0.436310181032 -1469729965189364488,-0.0101154092699,0.0211249124259,0.270153671503,-0.51780498743,0.027928812521,0.734807912977,-0.437213114453 -1469729965264329785,-0.0102213155478,0.0207978896797,0.270178556442,-0.482236951458,0.0217649467091,0.732983099958,-0.479280278042 -1469729965344598433,-0.0101258745417,0.0205541215837,0.270105957985,-0.516780185824,0.0268828677777,0.734041380505,-0.439771307234 -1469729965419642373,-0.0101100197062,0.0201801918447,0.270113646984,-0.516596729467,0.027789294753,0.734696129639,-0.43883615541 -1469729965493958931,-0.0102045116946,0.0199136435986,0.270129144192,-0.47966095931,0.0222093200071,0.733552816098,-0.480970244623 -1469729965574129402,-0.010106115602,0.0197140891105,0.270098954439,-0.516822342898,0.0276015636761,0.734676860678,-0.438614557383 -1469729965654373915,-0.0101570328698,0.0193299818784,0.270101308823,-0.501183172101,0.024462232778,0.733560290696,-0.458373567174 -1469729965731018490,-0.0101391291246,0.0190941914916,0.270065635443,-0.505093475609,0.0254388261765,0.734096709493,-0.45313956805 -1469729965809033155,-0.0101275229827,0.0189835708588,0.270641118288,-0.489568600168,0.0262346628068,0.736054274911,-0.466753074528 -1469729965885865936,-0.0101622454822,0.0187425222248,0.272683292627,-0.528358894501,0.0271138656695,0.732561070501,-0.42831763316 -1469729965961129451,-0.0102219823748,0.0186282340437,0.272842168808,-0.502842987029,0.0237109899907,0.732574812264,-0.45817121667 -1469729966039797634,-0.0101753864437,0.0184977483004,0.272758930922,-0.517279439181,0.0256845747733,0.732952337587,-0.44107046517 -1469729966118465231,-0.0101797254756,0.0182734113187,0.272780418396,-0.523200393039,0.0265315649115,0.732627165069,-0.434528321044 -1469729966197030493,-0.0102206533775,0.0181248206645,0.272827863693,-0.504673528591,0.0235137054092,0.732380633368,-0.456476004918 -1469729966271881540,-0.0102085899562,0.0179768372327,0.272749811411,-0.510610740906,0.0241498177659,0.732207893881,-0.450072280541 -1469729966348033532,-0.0101855304092,0.0177668631077,0.272766202688,-0.517229643278,0.0256067923548,0.732640501396,-0.441651088546 -1469729966425811762,-0.0102129951119,0.0175669100136,0.272800922394,-0.509719601273,0.0238848485024,0.732164466339,-0.451165863426 -1469729966508075441,-0.01012054272,0.0173748340458,0.272628754377,-0.532954436418,0.0289797223705,0.733605229975,-0.420646063748 -1469729966586129438,-0.0101924333721,0.0172004755586,0.272819638252,-0.512533275084,0.0247583361729,0.732652277477,-0.447121132389 -1469729966665316712,-0.0102227255702,0.01714293845,0.272815167904,-0.499184739991,0.0229270747696,0.732490366742,-0.462327597308 -1469729966742092753,-0.0102232256904,0.0170725695789,0.27274364233,-0.498903541024,0.0227196787521,0.73234706908,-0.462868062586 -1469729966821227878,-0.0101610105485,0.0169571544975,0.272748917341,-0.528125396766,0.0271260764036,0.732785936836,-0.428220167724 -1469729966896210985,-0.0101873474196,0.0168160535395,0.272839784622,-0.517729493625,0.0259486162132,0.732863628737,-0.440674190783 -1469729966973438239,-0.0102410251275,0.0167301818728,0.272938638926,-0.502541013221,0.023258744244,0.732251493728,-0.459041730979 -1469729967046991110,-0.010230676271,0.0166127607226,0.272985547781,-0.518758771454,0.0242149137726,0.731512896326,-0.441805225749 -1469729967122954274,-0.0101632364094,0.0164992269129,0.272857129574,-0.5355961415,0.0280480530439,0.732569399123,-0.419156480803 -1469729967197625888,-0.0101999361068,0.0163776967674,0.272914558649,-0.520769756528,0.0262285697791,0.732683128098,-0.437362957524 -1469729967279301852,-0.0102463904768,0.0162118505687,0.272973150015,-0.502471243733,0.0228176333367,0.732065683483,-0.459436437277 -1469729967357243514,-0.0101707922295,0.0160543713719,0.272899478674,-0.535904714265,0.0276107913782,0.732312255428,-0.419240434569 -1469729967436014473,-0.0101832766086,0.0159773398191,0.272886037827,-0.526224851844,0.0271915799794,0.732925382758,-0.430311987504 -1469729967516813254,-0.0101886698976,0.0159028861672,0.272871047258,-0.52229905558,0.0265470648065,0.732786661488,-0.435342001919 -1469729967598021976,-0.0102468393743,0.0157617013901,0.272995233536,-0.507182388525,0.0233404358374,0.731970982593,-0.454356390367 -1469729967675325650,-0.0102481245995,0.0157107338309,0.272960007191,-0.505801194178,0.0227380075355,0.731572351013,-0.45656328172 -1469729967756103690,-0.0102648567408,0.0156760290265,0.273020386696,-0.506631437283,0.0220314905782,0.730861785814,-0.456815334918 -1469729967833182801,-0.0102330269292,0.0156079875305,0.272917926311,-0.513179196794,0.0237371580778,0.731610722176,-0.448139945219 -1469729967911993547,-0.0101873781532,0.0155614856631,0.272893428802,-0.534128499159,0.0266883719857,0.731763279955,-0.422512697202 -1469729967988001205,-0.0101937158033,0.0155112538487,0.272907823324,-0.531176407735,0.0267400541254,0.731932071507,-0.425924918349 -1469729968067704071,-0.0101982150227,0.0154356146231,0.27295678854,-0.527934430088,0.0268370147735,0.732391823335,-0.429147095153 -1469729968142037026,-0.0102156568319,0.0153938857839,0.272979944944,-0.520685065332,0.0254889878902,0.732226178169,-0.438271831448 -1469729968221553563,-0.0102618495002,0.0152698270977,0.273065745831,-0.509336456847,0.0229472950084,0.731405412024,-0.452875168938 -1469729968297927300,-0.0102677252144,0.01518732775,0.273011445999,-0.501057268673,0.0215823832549,0.731071406503,-0.462612594767 -1469729968378280600,-0.0102005051449,0.0150800319389,0.272909879684,-0.532872299669,0.0261907159534,0.731495602617,-0.424588438367 -1469729968461371684,-0.0102004306391,0.0149290738627,0.272952854633,-0.528500088439,0.0264583768786,0.732085032354,-0.428997804442 -1469729968540687217,-0.010230797343,0.0148759810254,0.273017644882,-0.521804540772,0.0248608102777,0.73158789228,-0.438042369196 -1469729968621460202,-0.0102295549586,0.0148531896994,0.272992640734,-0.518087834291,0.0245641463117,0.731849635671,-0.442015508149 -1469729968696527158,-0.0102266166359,0.01483836025,0.272984296083,-0.520675161745,0.0247243232675,0.731748113633,-0.439125018617 -1469729968777377082,-0.0102240946144,0.0148452920839,0.272945284843,-0.518383628354,0.0247328459849,0.731990520055,-0.44142562084 -1469729968852614202,-0.0102379126474,0.0148216122761,0.273006469011,-0.523691194257,0.0244281454374,0.731153363586,-0.436538151466 -1469729968945890074,-0.0102278776467,0.0147889973596,0.272954106331,-0.52782923987,0.0246688965118,0.7309812703,-0.431803336664 -1469729969021883629,-0.0102337021381,0.014747842215,0.272932618856,-0.525240749413,0.0238578921074,0.730624966053,-0.435591683943 -1469729969099425282,-0.010253011249,0.0146701019257,0.272940814495,-0.523464237413,0.0234402542459,0.730339193733,-0.438224153521 -1469729969180082242,-0.0102069061249,0.0146083272994,0.272896230221,-0.534804668246,0.0260093239619,0.731078427513,-0.422885108173 -1469729969258520017,-0.0102112740278,0.0145460516214,0.27287659049,-0.523822144958,0.0255446801095,0.731773014622,-0.435277020805 -1469729969334189160,-0.0101963570341,0.0144942626357,0.272932469845,-0.53007982436,0.0266530429291,0.732014406351,-0.427153255874 -1469729969414953808,-0.0102192973718,0.0144383050501,0.273013055325,-0.526448151218,0.0255553040867,0.731658286116,-0.432290900748 -1469729969496883113,-0.010228427127,0.014383206144,0.273009300232,-0.521240294518,0.0247297573004,0.731623310445,-0.438661972466 -1469729969581134851,-0.0102301239967,0.0143407499418,0.272999972105,-0.524134201036,0.0245622436648,0.731323768303,-0.435712728074 -1469729969659084420,-0.0102475760505,0.0143028059974,0.273034006357,-0.524530617219,0.0237011220556,0.730490338623,-0.436680379215 -1469729969738031163,-0.0102661233395,0.014273292385,0.273047298193,-0.515438231991,0.0227076689445,0.730598570503,-0.447251069928 -1469729969811832370,-0.0102459909394,0.0142637137324,0.272927254438,-0.512677076629,0.0229443755681,0.731160458893,-0.449488769693 -1469729969891540144,-0.0102661168203,0.0142301181331,0.272948861122,-0.510814126533,0.0222826543891,0.730736512064,-0.452323514074 -1469729969970686362,-0.0102774072438,0.0142003092915,0.272934615612,-0.5067474027,0.0213153579897,0.730162146611,-0.457838361244 -1469729970051142896,-0.0102854538709,0.0141432657838,0.272876828909,-0.501679325042,0.0210077762224,0.730222741728,-0.463304733007 -1469729970126186095,-0.0102838203311,0.0141189927235,0.272937059402,-0.503961296398,0.0213651570353,0.730289741735,-0.460698854909 -1469729970205801612,-0.0102358357981,0.0140894157812,0.272862941027,-0.525844824268,0.0241608441006,0.730485869885,-0.435079151765 -1469729970283428306,-0.0102112498134,0.0140401879326,0.272874414921,-0.525859116969,0.0254200823357,0.731569729819,-0.433164794191 -1469729970371196238,-0.0101960403845,0.0139937791973,0.272906064987,-0.534282010178,0.0265233640882,0.73153257737,-0.422728438839 -1469729970451714499,-0.0102121569216,0.0139125669375,0.272958278656,-0.532074548255,0.0256628660488,0.731228168923,-0.426079167972 -1469729970530082620,-0.0102386465296,0.013818718493,0.273008614779,-0.530480424782,0.0242623666472,0.730436278742,-0.429493538002 -1469729970607264796,-0.0102689294145,0.0137349469587,0.272882789373,-0.508017051709,0.0219076930378,0.730509407717,-0.45584507609 -1469729970686136122,-0.0101733263582,0.0135801546276,0.27281793952,-0.547437025258,0.0278112431508,0.730936011383,-0.406536327275 -1469729970763393421,-0.0102234166116,0.01339002233,0.272995710373,-0.526962642649,0.0247404286695,0.731154710451,-0.432563375504 -1469729970840078941,-0.0102407289669,0.0133371111006,0.272988826036,-0.532474406542,0.0244064330446,0.73028023687,-0.427277553869 -1469729970915877872,-0.0102306986228,0.0133791007102,0.272995114326,-0.532330493917,0.024600267005,0.73044786663,-0.4271592048 -1469729971008348676,-0.0101792467758,0.0134460497648,0.272841632366,-0.546089016276,0.0272152278729,0.730917588227,-0.408418409103 -1469729971086566088,-0.010183814913,0.0135548776016,0.272818982601,-0.551932846742,0.0276326911088,0.73040897327,-0.401384228434 -1469729971164935095,-0.0102491229773,0.0137425949797,0.272928655148,-0.535741989469,0.0238017722249,0.729469646142,-0.424603381659 -1469729971250710492,-0.0102398898453,0.0138196358457,0.273012340069,-0.54130677374,0.0248523222268,0.729703964895,-0.417014942658 -1469729971332369416,-0.0102238859981,0.0138568552211,0.272991508245,-0.543732691051,0.0253953057399,0.729857604811,-0.413542882696 -1469729971415837605,-0.0102378679439,0.0138198295608,0.272977352142,-0.537938656633,0.0249349200971,0.730130983827,-0.420605513416 -1469729971493085174,-0.0102382991463,0.0137882549316,0.272967040539,-0.540784496575,0.0246575673138,0.729644367106,-0.417807647355 -1469729971571370897,-0.0102474875748,0.0137588838115,0.273001223803,-0.549824349312,0.0245757275146,0.728694448292,-0.407545849628 -1469729971650917479,-0.0102078858763,0.0139294806868,0.272904366255,-0.55419650092,0.0264427599737,0.729449748464,-0.400087594507 -1469729971729145801,-0.0102929035202,0.0140931056812,0.272890478373,-0.520132429337,0.0215475046125,0.728927180278,-0.444593215027 -1469729971806962008,-0.0102182077244,0.0140167446807,0.272838413715,-0.546690776039,0.0257070715128,0.729598092943,-0.410067024573 -1469729971887973796,-0.0102692479268,0.01401744131,0.272937089205,-0.535170255903,0.0230905827053,0.728762772758,-0.426572904941 -1469729971963380318,-0.0102597894147,0.0140386940911,0.272883743048,-0.530683852456,0.0231673107799,0.729211608613,-0.43137959423 -1469729972042515736,-0.0102555751801,0.0140149043873,0.272914290428,-0.537631173832,0.0237678946626,0.729061893242,-0.4229143695 -1469729972120790372,-0.0101934401318,0.0138939637691,0.272885859013,-0.549072004312,0.0266624923642,0.730237671755,-0.405662406851 -1469729972197687478,-0.0102403461933,0.0137999281287,0.273005098104,-0.544723350112,0.024646069854,0.729128087267,-0.413571366806 -1469729972276452642,-0.0102391885594,0.0137809310108,0.272970199585,-0.546054378617,0.0247509694391,0.729138333234,-0.411787926139 -1469729972354644154,-0.0102639896795,0.0136927356943,0.27289429307,-0.53470466726,0.0230178644471,0.728874530725,-0.426969571734 -1469729972431015029,-0.0102717671543,0.013606030494,0.272894561291,-0.540509491077,0.0229749144725,0.728083824973,-0.420969817413 -1469729972510227814,-0.0102003822103,0.0135208722204,0.272825747728,-0.561987568746,0.0269604040186,0.728867672184,-0.390121808714 -1469729972588864064,-0.0102308485657,0.0133717656136,0.272966057062,-0.546529422919,0.0252700502931,0.729448867124,-0.410574432586 -1469729972675622567,-0.0102441841736,0.0132718710229,0.272903800011,-0.537161906483,0.0240044342747,0.729470900039,-0.422792004837 -1469729972751588191,-0.0102922618389,0.013148566708,0.272840738297,-0.526356737521,0.0212163027416,0.728109293967,-0.438583298136 -1469729972832471585,-0.0102119548246,0.0130439177155,0.27286106348,-0.548180354348,0.0260371692892,0.729636120309,-0.407984677241 -1469729972916491907,-0.0102120218799,0.0129431532696,0.272895753384,-0.540456329495,0.0254417651693,0.730171363071,-0.417264248464 -1469729972999838391,-0.0102317333221,0.0128526045009,0.272922933102,-0.53771220854,0.0247713457638,0.729965158309,-0.421192151958 -1469729973076171483,-0.0102808885276,0.0127431889996,0.272893339396,-0.523230245496,0.0219207158993,0.728885792386,-0.440993303885 -1469729973156957623,-0.0103038577363,0.0127167971805,0.272884100676,-0.510170940487,0.0208393900109,0.72918876439,-0.455604079431 -1469729973231508084,-0.0102033354342,0.0125842969865,0.272855132818,-0.54848663639,0.0264421372733,0.730006648565,-0.406882681037 -1469729973308932692,-0.0102036353201,0.012487128377,0.272880703211,-0.552680825544,0.026117727627,0.729456314081,-0.402188084391 -1469729973386098679,-0.0102643407881,0.0122636007145,0.272828102112,-0.531046669434,0.0228994610414,0.729076415731,-0.431175868517 -1469729973465636841,-0.0102837765589,0.0121928770095,0.272834181786,-0.535188589937,0.0219072907569,0.72792435745,-0.428041322355 -1469729973547562968,-0.0101965712383,0.0121154645458,0.272795528173,-0.556272775188,0.0267755866841,0.729419766246,-0.397228488597 -1469729973626247528,-0.0101839676499,0.0119885206223,0.272853344679,-0.561336538436,0.0278502761742,0.729699072,-0.389441801887 -1469729973705907023,-0.0102466195822,0.0118564814329,0.272899836302,-0.541585877229,0.0242891767989,0.729114191813,-0.417716732695 -1469729973783645561,-0.0102856410667,0.011742263101,0.272798150778,-0.516413322594,0.0211943911139,0.729030738543,-0.44875634847 -1469729973861715079,-0.0103064971045,0.0117064360529,0.272810995579,-0.511096219561,0.0199162976243,0.728453182286,-0.455784989503 -1469729973936856200,-0.010290523991,0.0117470799014,0.272843718529,-0.525690734525,0.0213997515983,0.728255466362,-0.439130137865 -1469729974013351413,-0.0102790687233,0.0117579130456,0.272827059031,-0.533740065119,0.0222054691184,0.728118185699,-0.429502465281 -1469729974094513734,-0.0102872736752,0.0117181381211,0.27282333374,-0.532629885475,0.0217193702125,0.727951306007,-0.431185076433 -1469729974180939216,-0.0102955140173,0.0117234513164,0.272839665413,-0.532356770909,0.0214251266943,0.727671039559,-0.432009364019 -1469729974263156819,-0.0102757588029,0.0117479572073,0.272806555033,-0.533897514704,0.0223181270726,0.728296285646,-0.428998677516 -1469729974339278678,-0.0102861048654,0.0117253372446,0.272822678089,-0.528623934804,0.0216288985509,0.728239039941,-0.435610866492 -1469729974421801831,-0.0102349026129,0.0116370217875,0.272893965244,-0.556991277174,0.0253454221103,0.728290057477,-0.398386644994 -1469729974504124339,-0.0102250585333,0.0114666549489,0.272941619158,-0.555379406193,0.0260528160645,0.729082135553,-0.399141836406 -1469729974586335759,-0.0102935712785,0.011297811754,0.272874861956,-0.530952682294,0.0220769300063,0.728204240629,-0.432805316807 -1469729974667197452,-0.0102747529745,0.0108311343938,0.272819757462,-0.533915493228,0.022605494935,0.72835049834,-0.428869198309 -1469729974744716435,-0.0101817082614,0.0105914426968,0.272800505161,-0.552425914989,0.0272153263403,0.730218082732,-0.401081645195 -1469729974819811317,-0.0102290427312,0.0104559194297,0.272819042206,-0.532995692598,0.0244268081894,0.73007850266,-0.426971079428 -1469729974899413241,-0.0101931840181,0.0105456141755,0.272769331932,-0.550837864182,0.0262672893345,0.729762059386,-0.404147267187 -1469729974984267563,-0.0102084241807,0.0106327217072,0.272816777229,-0.552192467799,0.0259592959517,0.729317927888,-0.403119031454 -1469729975063587546,-0.0102833369747,0.0107536474243,0.27276596427,-0.52617386074,0.021114879523,0.728215517437,-0.438631269178 -1469729975149019367,-0.0102043440565,0.0109023666009,0.272714078426,-0.548802832097,0.0256895586517,0.7294795424,-0.40744950028 -1469729975229311015,-0.010210569948,0.0109869800508,0.272835075855,-0.563732185439,0.0264529378105,0.728469993737,-0.388378337972 -1469729975308713072,-0.0102480668575,0.01111481525,0.272800624371,-0.555167889122,0.0239154629766,0.727635053111,-0.402198825212 -1469729975386548959,-0.0102667864412,0.0113039091229,0.272806495428,-0.534745328421,0.0230005650374,0.728712690304,-0.427195766282 -1469729975464857951,-0.0102926455438,0.0112574053928,0.272852420807,-0.538226691519,0.0219340580121,0.727483887738,-0.424968373785 -1469729975545938285,-0.0102605652064,0.0108981328085,0.272892564535,-0.546870212145,0.0240982459457,0.728220103496,-0.412368435353 -1469729975621266391,-0.0102149406448,0.00997857004404,0.272727161646,-0.541562141762,0.0251713934992,0.729676186535,-0.416712743222 -1469729975701222630,-0.0102022243664,0.00986487977207,0.272533625364,-0.538330758144,0.0241778011702,0.729390477138,-0.421432035597 -1469729975777793880,-0.010176513344,0.00969760492444,0.272128582001,-0.531640167496,0.0225477840872,0.728993135379,-0.43060345831 -1469729975858615066,-0.0101111093536,0.00962028466165,0.27168738842,-0.554601879431,0.0244654684345,0.728194014749,-0.401934911485 -1469729975938654664,-0.0100929383188,0.00957664474845,0.271480321884,-0.578565687948,0.0255354997832,0.726597112853,-0.369684079416 -1469729976033755442,-0.0100859412923,0.00961339101195,0.271205723286,-0.579226535774,0.0268080273872,0.727376409452,-0.367017041695 -1469729976114437666,-0.01008862257,0.00962527934462,0.271043926477,-0.5857790698,0.0270187099278,0.726684580717,-0.357858059637 -1469729976194239174,-0.0101891150698,0.00972769595683,0.270499825478,-0.539971414592,0.0240664078436,0.729423936916,-0.419276042353 -1469729976272238563,-0.0101987468079,0.00971037801355,0.270250469446,-0.533031299394,0.0255932366068,0.730990326755,-0.425294912146 -1469729976351332676,-0.0101814894006,0.00950738694519,0.270294100046,-0.54209201975,0.0251696130117,0.729929706762,-0.415578339053 -1469729976431722875,-0.0100868167356,0.0091826049611,0.26992058754,-0.552030978787,0.0283088101276,0.730981707006,-0.400157661118 -1469729976514896594,-0.0101084327325,0.00902849901468,0.26991173625,-0.552970530976,0.0265889377888,0.729793390528,-0.401146142198 -1469729976596577041,-0.0101358406246,0.00893971323967,0.269900918007,-0.555277736549,0.0252996665465,0.728584053385,-0.400239727312 -1469729976675978744,-0.0101294573396,0.00892284326255,0.269819974899,-0.546731769727,0.0252961846161,0.72951999214,-0.410176859516 -1469729976757605816,-0.0101145757362,0.00896917935461,0.269824355841,-0.552464225681,0.0256202079897,0.729026754998,-0.403295022016 -1469729976836025706,-0.0100874630734,0.00897862017155,0.269765943289,-0.560711535725,0.0265920798693,0.728891028343,-0.391935331137 -1469729976924304539,-0.0101030729711,0.00892750080675,0.26966330409,-0.540332132101,0.0252179913611,0.730085844228,-0.417588194264 -1469729977005302842,-0.0101475473493,0.00889848638326,0.269780337811,-0.537541018428,0.0236346428141,0.728956276329,-0.423218388503 -1469729977083025379,-0.0101247094572,0.00885383039713,0.26965534687,-0.540460881355,0.0237546604479,0.728854520905,-0.419653236837 -1469729977155570748,-0.0101520912722,0.00876961741596,0.269637644291,-0.5470231138,0.0230563298458,0.727834661781,-0.412905344761 -1469729977233712037,-0.0101431468502,0.00879508443177,0.269601911306,-0.549073095391,0.0238959643299,0.728191665845,-0.409493121554 -1469729977316122565,-0.0100990049541,0.0089965518564,0.269243359566,-0.573008004682,0.024501763827,0.726336811955,-0.378809088775 -1469729977396716652,-0.0101668033749,0.00933752767742,0.268141835928,-0.554789004942,0.0240182071181,0.728021132398,-0.402016811221 -1469729977478370272,-0.01021269802,0.00941215176135,0.267675220966,-0.529488515184,0.0228571712439,0.729409945227,-0.432528142223 -1469729977552755703,-0.0101577239111,0.00934115238488,0.26730260253,-0.533520027162,0.0234959797547,0.729634758006,-0.427126959418 -1469729977631813177,-0.0101001188159,0.00921671558172,0.266772150993,-0.53191177341,0.0235008480636,0.729662624927,-0.429080446108 -1469729977706697260,-0.0101052504033,0.00918532907963,0.266739189625,-0.523480892841,0.0220991624548,0.72934856738,-0.439920503171 -1469729977782377120,-0.0100623024628,0.00911808852106,0.266521602869,-0.568526069673,0.0246652231065,0.726986352098,-0.384266286231 -1469729977860215748,-0.0100539950654,0.00907654315233,0.266292184591,-0.58086804151,0.0254035742806,0.726327148858,-0.366600394976 -1469729977933990651,-0.0100642079487,0.00908423028886,0.266046434641,-0.563867631235,0.0246954223442,0.727488413427,-0.390133360391 -1469729978011298579,-0.0100679928437,0.00921795051545,0.265018254519,-0.556573271932,0.0277592510108,0.730166370117,-0.395363995458 -1469729978088405040,-0.0101211387664,0.00931675266474,0.264765292406,-0.534975009165,0.022999660628,0.729005727654,-0.426407556484 -1469729978165866144,-0.0100540919229,0.00934509094805,0.264521986246,-0.540101269648,0.0248478407895,0.729920832903,-0.418197060041 -1469729978247682414,-0.00998214818537,0.00910136383027,0.264204442501,-0.554646519096,0.0276901743095,0.730136829147,-0.398121468681 -1469729978332453735,-0.00998430233449,0.00891536939889,0.264280468225,-0.552317482034,0.0273653438581,0.730480226462,-0.4007432791 -1469729978410653425,-0.00998336356133,0.00885515101254,0.264147847891,-0.544626354234,0.0258345420135,0.730166977057,-0.411789869142 -1469729978489063431,-0.0100360438228,0.00863869395107,0.264043569565,-0.523882257686,0.0222990795083,0.729351075243,-0.43942819684 -1469729978568212839,-0.00999471265823,0.00824477523565,0.263876706362,-0.509011310181,0.0217790876696,0.730489597465,-0.454772586513 -1469729978645692206,-0.00994919426739,0.00850163493305,0.263833105564,-0.532220827929,0.0242745400791,0.730481397597,-0.427257141294 -1469729978724962253,-0.00993468798697,0.0091533139348,0.263486236334,-0.570805772345,0.0263279325681,0.727838927617,-0.379128086101 -1469729978801323224,-0.00999139621854,0.00938270427287,0.263152211905,-0.557510973364,0.0226784902226,0.726770643119,-0.400589107391 -1469729978879967681,-0.00992968771607,0.00944308191538,0.263052731752,-0.577489574115,0.0254973897514,0.72671823221,-0.371128395407 -1469729978955705040,-0.0099746035412,0.00986056495458,0.262139379978,-0.550661662618,0.0252816682992,0.72908742924,-0.405664998607 -1469729979043086611,-0.00996924657375,0.0100193610415,0.261737257242,-0.553409531092,0.0242812731528,0.728107587541,-0.403742060771 -1469729979122394238,-0.00996606610715,0.0100762555376,0.261572271585,-0.536534104718,0.0227278720059,0.728711669417,-0.424963411559 -1469729979198749078,-0.00988283287734,0.0101000899449,0.26127320528,-0.553622701138,0.0253502292623,0.728954774862,-0.401850975944 -1469729979280073397,-0.00981986988336,0.0101189026609,0.26101616025,-0.574574125672,0.0279174678666,0.728369089134,-0.372241398948 -1469729979361359765,-0.00980245694518,0.0101263830438,0.26084497571,-0.583238944412,0.0289168861184,0.728117441309,-0.358944479106 -1469729979437595057,-0.00979384966195,0.0101552354172,0.260564029217,-0.579952925677,0.0288178991299,0.72847266607,-0.363526763082 -1469729979518285378,-0.00982753373682,0.0101933209226,0.260416209698,-0.568175929274,0.0259015052085,0.727883857272,-0.383001717679 -1469729979594752092,-0.0098720015958,0.0103841386735,0.259836643934,-0.54479258238,0.0246209469458,0.729269102653,-0.413232896888 -1469729979674833853,-0.00990625750273,0.0106215346605,0.25923421979,-0.539827980054,0.0236896390798,0.728935641059,-0.420330089507 -1469729979754019289,-0.0098264599219,0.0108212875202,0.25880420208,-0.565188260892,0.0259201227217,0.72801287265,-0.387153243876 -1469729979830854234,-0.00982304941863,0.0108876815066,0.258613407612,-0.557633389627,0.0244885850594,0.72785516681,-0.398336752162 -1469729979906089740,-0.00977585278451,0.0109162647277,0.25821262598,-0.589405841254,0.0271316384805,0.726362706074,-0.35250793993 -1469729979984233869,-0.0098649635911,0.011047960259,0.257470697165,-0.554457322961,0.0229090557516,0.727300409174,-0.403839531244 -1469729980060816804,-0.00986145716161,0.0111294919625,0.257165908813,-0.544522763531,0.0242984970275,0.728999254886,-0.41408287747 -1469729980143177529,-0.00986752286553,0.0111730573699,0.256926953793,-0.535290787813,0.0245682732248,0.729998657506,-0.424219439054 -1469729980221410330,-0.00972625333816,0.0111430175602,0.256293267012,-0.576633472072,0.0279368192572,0.728010502359,-0.369748673386 -1469729980299701768,-0.00974412634969,0.0111768487841,0.256170660257,-0.562285884926,0.0259060271638,0.728220867543,-0.39097036901 -1469729980380712580,-0.00978167541325,0.011190331541,0.256077587605,-0.551081201921,0.0230731264281,0.727374554962,-0.408293272686 -1469729980455911394,-0.00972393155098,0.0110635291785,0.255432009697,-0.564868812172,0.023275012923,0.726424243843,-0.390754803894 -1469729980536160772,-0.00973113812506,0.0110216885805,0.255081415176,-0.569518680567,0.0236205748753,0.726166109925,-0.38441295728 -1469729980616817246,-0.00970463640988,0.0110557042062,0.254968881607,-0.565657346619,0.0249202265258,0.727477739109,-0.387539530405 -1469729980695555540,-0.00970969442278,0.0110729206353,0.254706412554,-0.562561237828,0.0252747358858,0.727921367428,-0.391173266293 -1469729980772310730,-0.00972526147962,0.0112166358158,0.254291474819,-0.555227415963,0.0266219329598,0.72966822634,-0.398243730295 -1469729980850145190,-0.00976076256484,0.0113139729947,0.254302710295,-0.545124341086,0.0240089677856,0.728997921455,-0.413309874955 -1469729980924921004,-0.00971668772399,0.0115781882778,0.254034906626,-0.553114522217,0.0272064133441,0.730224041968,-0.400121212781 -1469729981004084787,-0.00970105361193,0.011525942944,0.253926932812,-0.5591478645,0.0273868143352,0.729530350481,-0.392923778553 -1469729981082686256,-0.00969964452088,0.011461623013,0.253884941339,-0.565057996264,0.0275926235941,0.729154979899,-0.385072880464 -1469729981162216916,-0.00969951134175,0.0115582337603,0.25383412838,-0.561537441226,0.0276890620382,0.729676353312,-0.389206163057 -1469729981242054512,-0.00969457626343,0.0115539515391,0.253849834204,-0.565020340897,0.0282152383082,0.729588949942,-0.384260170747 -1469729981320193843,-0.00972357392311,0.0115390894935,0.253902852535,-0.55457578313,0.026618812674,0.729573495024,-0.399323997445 -1469729981393253171,-0.0097080161795,0.0115068182349,0.25388404727,-0.563362684562,0.0275553045753,0.729243484302,-0.387384991238 -1469729981470772444,-0.00970019493252,0.0114580420777,0.253838330507,-0.560996485248,0.0276672792208,0.729733912346,-0.389879317703 -1469729981550700730,-0.00975284166634,0.0113654760644,0.253915011883,-0.548635858848,0.0247084352482,0.728980609013,-0.408626307642 -1469729981629073333,-0.00976120866835,0.0113280033693,0.25387609005,-0.537728326438,0.0242092171776,0.729846691309,-0.421409501477 -1469729981705808332,-0.00978242140263,0.0112809212878,0.253891289234,-0.534082667181,0.0229250416946,0.729174599145,-0.427240624287 -1469729981785997489,-0.00975256692618,0.0111586228013,0.253853470087,-0.550902746839,0.0253061791704,0.729057844178,-0.405389221198 -1469729981864647307,-0.00970887485892,0.0111176045612,0.253794699907,-0.557910227979,0.0272734590685,0.729709920811,-0.394354874976 -1469729981944716331,-0.00968923047185,0.011036365293,0.253808617592,-0.565608979119,0.0282357883229,0.72958687711,-0.383395633448 -1469729982024888036,-0.00974046159536,0.0109422048554,0.253910750151,-0.548370876082,0.0253183838835,0.729468056692,-0.408074400041 -1469729982103049945,-0.00977040361613,0.0108775570989,0.253906339407,-0.541102787717,0.023917787979,0.729212470031,-0.4181924032 -1469729982181957176,-0.00978332478553,0.0108114546165,0.253845274448,-0.535922284844,0.0228002792304,0.728779284282,-0.425615092162 -1469729982262606836,-0.00969433970749,0.0106810471043,0.253795176744,-0.563482182072,0.0282087749933,0.729723172026,-0.386259223463 -1469729982341754264,-0.00971081852913,0.0106184389442,0.253838449717,-0.554719224718,0.027137057523,0.729986346014,-0.398334151775 -1469729982422595855,-0.00970860663801,0.0105799864978,0.253857046366,-0.555661751374,0.0270441351462,0.729875409496,-0.397228548102 -1469729982498819196,-0.0097155161202,0.0105173131451,0.253812432289,-0.552594928305,0.0264125327709,0.729817728386,-0.4016308089 -1469729982582858596,-0.00975837279111,0.0104629574344,0.253852963448,-0.538646182429,0.024460953962,0.729861086042,-0.420196081571 -1469729982662252953,-0.0097776548937,0.0103914979845,0.253834187984,-0.537012577073,0.0231846946015,0.728963396281,-0.423901319748 -1469729982738798182,-0.00979006383568,0.0103796981275,0.253823548555,-0.527840886008,0.0222438232784,0.729098931294,-0.435090748891 -1469729982818617430,-0.00979686900973,0.0103561477736,0.253786623478,-0.52802077422,0.0219554394017,0.728825803976,-0.435344654419 -1469729982893988319,-0.00976768229157,0.0102663608268,0.253738194704,-0.536180723436,0.023277420963,0.729061928953,-0.424778880407 -1469729982975058024,-0.00976304151118,0.00995446089655,0.253712505102,-0.5289479679,0.023157217295,0.729648124009,-0.432771770881 -1469729983055040134,-0.0097933486104,0.00988337118179,0.25374853611,-0.534708584911,0.0222006176837,0.728452012639,-0.427728333267 -1469729983131325542,-0.00971663650125,0.0098113277927,0.253583222628,-0.554986242422,0.0249515324487,0.728481729914,-0.400851669489 -1469729983207207945,-0.00969715882093,0.00983980856836,0.253340393305,-0.570055382924,0.0244918729448,0.72674131838,-0.382470998533 -1469729983288500680,-0.0096791991964,0.00986746139824,0.25272539258,-0.58871670775,0.0265366228454,0.725885319473,-0.354681474901 -1469729983367144349,-0.0096782753244,0.00982545781881,0.252411544323,-0.587412944266,0.0277708692154,0.72679731377,-0.354880932749 -1469729983446917954,-0.00969965476543,0.00983474496752,0.252274930477,-0.57737690354,0.0272146570819,0.72759279549,-0.369464474137 -1469729983527151012,-0.00984795670956,0.00999613665044,0.25207272172,-0.532578306669,0.0209088855611,0.72745451679,-0.432126245179 -1469729983604076367,-0.00978891830891,0.0101495282724,0.252083688974,-0.550050801759,0.0239533909522,0.728279562697,-0.40801866269 -1469729983682006766,-0.00974817946553,0.0102906329557,0.252005070448,-0.569063540924,0.0266729377499,0.72805130557,-0.381308978704 -1469729983756553308,-0.00983799993992,0.0104367705062,0.252052903175,-0.541225238582,0.0214118057002,0.726962517314,-0.422069039517 -1469729983832577105,-0.00978140626103,0.0105186346918,0.252030879259,-0.5410297193,0.0229489599425,0.728228362405,-0.420051949479 -1469729983911942539,-0.00974140223116,0.0105584217235,0.252191513777,-0.564197964834,0.0245809711911,0.7272132435,-0.390176025418 -1469729983991544684,-0.00977215357125,0.0104244370013,0.252230495214,-0.560781865179,0.0218205206193,0.725578739726,-0.398224882478 -1469729984072999480,-0.00980120897293,0.0103650400415,0.251891046762,-0.545072930929,0.0221421886153,0.727328533164,-0.416411369078 -1469729984153101011,-0.00974054913968,0.0103836292401,0.251631677151,-0.546563439399,0.0233925740566,0.728190605165,-0.412867577731 -1469729984232057475,-0.00970711652189,0.0103404950351,0.251383692026,-0.552644507007,0.0237954352406,0.727885192978,-0.405217191122 -1469729984308046739,-0.00970749557018,0.0102794151753,0.251251131296,-0.544858976214,0.0230191735982,0.728085941456,-0.41531876377 -1469729984380483854,-0.00959977228194,0.0100505109876,0.250680983067,-0.584222260702,0.0272413982427,0.72699570547,-0.359749218969 -1469729984461617899,-0.00967712141573,0.00999825634062,0.250258743763,-0.570889340462,0.0245264033006,0.726739160077,-0.381226979236 -1469729984539775609,-0.00970562361181,0.00993515457958,0.249877586961,-0.558109427582,0.0249134567148,0.728027608293,-0.397327305984 -1469729984621638901,-0.00973855145276,0.00990601349622,0.249398946762,-0.543871642741,0.021463976824,0.726767148533,-0.418989791921 -1469729984702054708,-0.00963668525219,0.00993312429637,0.249036282301,-0.565508276427,0.0251186844266,0.727301117627,-0.388075411852 -1469729984778808807,-0.00957134738564,0.00994545593858,0.248711407185,-0.575255844014,0.0268852622761,0.727579586433,-0.372808049813 -1469729984857823006,-0.00963796675205,0.00997340586036,0.247870758176,-0.554254661505,0.0223847577595,0.72693207739,-0.404809149701 -1469729984942698857,-0.00963905826211,0.0100415656343,0.247093260288,-0.54123447851,0.0248695370855,0.729846872877,-0.416857634629 -1469729985020374804,-0.00956947635859,0.0100254192948,0.246799170971,-0.561443345765,0.0262290158469,0.728579572736,-0.391491014476 -1469729985098888802,-0.0095177134499,0.00996433477849,0.246171593666,-0.59005294143,0.0262813202732,0.725665021947,-0.352926471715 -1469729985171916867,-0.00959835853428,0.00998829957098,0.24556787312,-0.551016763255,0.0221723143361,0.726890684939,-0.409290663512 -1469729985251292731,-0.00957460422069,0.00999440066516,0.244708701968,-0.545972262303,0.0249402128229,0.729361428255,-0.411490196183 -1469729985328027065,-0.00945915747434,0.00999657530338,0.244258388877,-0.565555866824,0.0279788868195,0.72943509417,-0.383781431007 -1469729985408626439,-0.0094439079985,0.00993046537042,0.243826657534,-0.590749453424,0.0265740350414,0.725933859347,-0.351182197434 -1469729985484679008,-0.00957456510514,0.00994006637484,0.242824420333,-0.540156884959,0.0224109770371,0.72806054517,-0.421492740514 -1469729985565718020,-0.00947277247906,0.00993258226663,0.242295756936,-0.56138135569,0.0262290947558,0.728681382142,-0.391390407895 -1469729985642664890,-0.00940168369561,0.00992730632424,0.241917848587,-0.569805438101,0.0279085597842,0.728904460421,-0.378472142409 -1469729985721422225,-0.00948943663388,0.00990734621882,0.241388067603,-0.558382202467,0.0231035119426,0.72698179967,-0.398964919075 -1469729985798401943,-0.00951078534126,0.00988855399191,0.240890055895,-0.555111928878,0.0228812978871,0.727191444895,-0.403137439461 -1469729985876164173,-0.00949067436159,0.009900867939,0.240332216024,-0.544764800271,0.0240405853787,0.728828775518,-0.414079676653 -1469729985955411328,-0.00939844362438,0.00987931713462,0.239909932017,-0.56825908381,0.0263332908998,0.727970901714,-0.382683338697 -1469729986033547870,-0.0093839475885,0.00990409776568,0.239572092891,-0.579437859097,0.0264995293667,0.727031706797,-0.367388676609 -1469729986110845769,-0.00946676172316,0.00994302146137,0.239256188273,-0.548116371767,0.0218143895266,0.727140259056,-0.412746434352 -1469729986190572641,-0.00949635915458,0.00989269092679,0.238331988454,-0.524771287897,0.0224724208777,0.729669071616,-0.437827741955 -1469729986268705175,-0.00940308813006,0.00987310986966,0.23805527389,-0.557481198548,0.0255670729523,0.728634424522,-0.397055302757 -1469729986345957769,-0.00932574551553,0.00985138770193,0.237688347697,-0.568090512974,0.0272132515925,0.728538563778,-0.381790739928 -1469729986419023869,-0.0093380138278,0.00982026290148,0.237076401711,-0.571979056602,0.0248922865953,0.726704715169,-0.379632177018 -1469729986498830864,-0.00944786239415,0.00986383762211,0.236183553934,-0.52480515884,0.022632249754,0.7297228782,-0.437689213435 -1469729986583872380,-0.00930051133037,0.00987112149596,0.235671266913,-0.558709665993,0.0267926306205,0.729385573663,-0.393855746439 -1469729986661076927,-0.00926450453699,0.00985094625503,0.235222861171,-0.56838895237,0.0264919463974,0.72819337011,-0.382055743744 -1469729986738951884,-0.00941718090326,0.00984577927738,0.234561666846,-0.538403522091,0.0218095638404,0.727948879999,-0.423953321055 -1469729986814847754,-0.00936359725893,0.00986316613853,0.23411257565,-0.555781396667,0.0247181668127,0.728169761147,-0.400330925984 -1469729986895089781,-0.00929028447717,0.00986003689468,0.233809694648,-0.568051896345,0.0270553587714,0.728528536508,-0.381878543668 -1469729986974974882,-0.00924597401172,0.00987173151225,0.233462840319,-0.562204405645,0.0268486264211,0.72905361155,-0.389469111764 -1469729987054114789,-0.00928972661495,0.00985593907535,0.232994034886,-0.549476123512,0.0239043535475,0.728235856625,-0.408872973792 -1469729987129998089,-0.00936155952513,0.00980354472995,0.232367277145,-0.55113535223,0.0228662597402,0.727436916134,-0.40812068158 -1469729987206806198,-0.00927677657455,0.00982931256294,0.231903776526,-0.556453208389,0.0257835937552,0.728970785076,-0.397865087274 -1469729987292127766,-0.00919253285974,0.00983505137265,0.231439933181,-0.568211571414,0.0265966966129,0.728220582414,-0.382260394481 -1469729987380079039,-0.00925074145198,0.00984655320644,0.231073275208,-0.550611794569,0.0235071245241,0.728091555336,-0.407623298925 -1469729987456490036,-0.00931454915553,0.00984783470631,0.230298519135,-0.532669034389,0.0227466727507,0.729056515471,-0.429211935914 -1469729987534441367,-0.00921881292015,0.0098567744717,0.22976513207,-0.553045725763,0.0257720173692,0.729213173794,-0.402149692903 -1469729987613729118,-0.00920513737947,0.00987361278385,0.229228183627,-0.545811287124,0.0236762389699,0.728382273476,-0.413507845443 -1469729987693497623,-0.00920643471181,0.00988293625414,0.228385865688,-0.552878610266,0.0248712096277,0.728682163395,-0.403396789764 -1469729987770991440,-0.00917854439467,0.00990213826299,0.227806553245,-0.552402310243,0.0254520036774,0.729116928143,-0.403227464642 -1469729987851298335,-0.00917349848896,0.00993413105607,0.227296248078,-0.529209950834,0.0225479021518,0.72922011795,-0.433204847183 -1469729987938520133,-0.00912768021226,0.00989898573607,0.226499199867,-0.557583206163,0.0254233966659,0.72844736641,-0.397264462892 -1469729988013551506,-0.00910559669137,0.00992453563958,0.225797757506,-0.558111661261,0.0262355528135,0.72908593437,-0.395293270416 -1469729988092241180,-0.00912860035896,0.00991972722113,0.225611746311,-0.544581034807,0.023885588047,0.728876328096,-0.414246633727 -1469729988169992188,-0.00906477402896,0.00992339383811,0.224977716804,-0.554635146002,0.0259040095208,0.729357854993,-0.399682319437 -1469729988248311201,-0.00910998787731,0.00992592517287,0.224145621061,-0.549070439492,0.0257008058132,0.729670637283,-0.406745475873 -1469729988326764649,-0.0090896030888,0.00993960909545,0.223649293184,-0.537656543193,0.0237561276042,0.729218910525,-0.422611959717 -1469729988403309350,-0.00908576883376,0.00992653891444,0.223034769297,-0.546652586602,0.0252173701674,0.729442706111,-0.410424624389 -1469729988484162975,-0.00909554958344,0.00995030347258,0.222406581044,-0.544032686691,0.025412641444,0.730079396329,-0.412755022408 -1469729988564068139,-0.00903567392379,0.00996773224324,0.221810206771,-0.543717901641,0.0247374030383,0.729684835231,-0.413906928621 -1469729988644195950,-0.00900278799236,0.00996508449316,0.221178337932,-0.541670077561,0.0255680006144,0.730313125874,-0.415430550869 -1469729988723688258,-0.00902399607003,0.00993048027158,0.220410227776,-0.558083843441,0.026317112331,0.729154710326,-0.395200255184 -1469729988796277647,-0.00904754363,0.00996718555689,0.220203623176,-0.538091621294,0.0236055497699,0.729382857504,-0.421782920816 -1469729988870967608,-0.00897909328341,0.00997540261596,0.219661533833,-0.542493988007,0.0255882798449,0.730314888957,-0.414349702399 -1469729988949623679,-0.00905794650316,0.00994917098433,0.218826040626,-0.533115090186,0.0237754957487,0.729894210385,-0.427173814816 -1469729989026023386,-0.00899867899716,0.00992401316762,0.218316629529,-0.539908936652,0.0236942358128,0.728884215802,-0.4203150286 -1469729989115369592,-0.00886089727283,0.0097356820479,0.217850476503,-0.540900272832,0.0253621718532,0.730390377358,-0.416309442304 -1469729989192346399,-0.00878823921084,0.00960463937372,0.217403963208,-0.543600588854,0.0256757852652,0.730179848144,-0.41313017708 -1469729989280198332,-0.0087566236034,0.00947420019656,0.217117354274,-0.539240555043,0.0246417465202,0.729762402042,-0.419594142823 -1469729989356573517,-0.00869340449572,0.00938311871141,0.216538831592,-0.524142343515,0.024894596534,0.731583865367,-0.435247183485 -1469729989432194355,-0.0086826402694,0.00929510593414,0.216233238578,-0.5374539926,0.02552532344,0.730913171659,-0.419830441007 -1469729989511140204,-0.00874692481011,0.00905750319362,0.215830996633,-0.535163485575,0.0237801863398,0.729806466705,-0.424755303205 -1469729989590736467,-0.00873404834419,0.00903301220387,0.215746611357,-0.531361644694,0.0237606226712,0.730312009887,-0.428642745855 -1469729989667653145,-0.00874075293541,0.00900136306882,0.21574357152,-0.53179019653,0.0238998349132,0.730532001855,-0.427727692617 -1469729989742626295,-0.00876074377447,0.00902417581528,0.215772241354,-0.53001874037,0.0234477728019,0.730271626246,-0.430387835222 -1469729989815833086,-0.00874005910009,0.00904787052423,0.215759634972,-0.536937380463,0.0248202161332,0.730720027461,-0.420868682371 -1469729989897539531,-0.00876084435731,0.00910901930183,0.215844854712,-0.543346102723,0.0248969424144,0.72988221907,-0.414037560131 -1469729989977405564,-0.00877523515373,0.00916451122612,0.215876758099,-0.537032856795,0.0247409312937,0.730347441073,-0.421397926383 -1469729990053977979,-0.00875123031437,0.00918783154339,0.215858608484,-0.545856391544,0.025711972855,0.730239740237,-0.410036115534 -1469729990133613446,-0.00874987710267,0.00923446007073,0.2158357054,-0.547487896269,0.025578453971,0.730061329536,-0.408182803713 -1469729990210031367,-0.00875701103359,0.00927034392953,0.21584880352,-0.545111830276,0.0249544197455,0.729896170515,-0.411681854951 -1469729990290745628,-0.00879752170295,0.00933132134378,0.215865328908,-0.535983476141,0.0235077431148,0.729735014774,-0.423858357862 -1469729990371504231,-0.00879541784525,0.00938233733177,0.215887874365,-0.542023749849,0.0237267492452,0.729264832523,-0.416917377924 -1469729990452171882,-0.00877772364765,0.00945217162371,0.215875253081,-0.545978327141,0.0247879297644,0.729548121724,-0.411160264276 -1469729990531683285,-0.00875450856984,0.00954604987055,0.215837612748,-0.54381550399,0.0254265806712,0.730327144873,-0.412602045653 -1469729990611418169,-0.00875753443688,0.00957704242319,0.21585278213,-0.545221091882,0.0251711844069,0.729962324401,-0.411406584047 -1469729990691961984,-0.0087991245091,0.00971279200166,0.215868577361,-0.536228927881,0.02334763108,0.729675768694,-0.423658704157 -1469729990772315143,-0.00879330653697,0.0100293392316,0.215876370668,-0.539766363969,0.0238319382614,0.729699630766,-0.419073692692 -1469729990853585398,-0.00876879971474,0.0103332940489,0.215716049075,-0.544762330725,0.0233628157896,0.728729767153,-0.41429591879 -1469729990930280600,-0.00871424563229,0.0104042878374,0.215485915542,-0.556485946176,0.0241746887884,0.728227384408,-0.399279166409 -1469729991007831865,-0.00863458123058,0.0104266926646,0.21523065865,-0.575530064046,0.0251904426638,0.726833262621,-0.373957210554 -1469729991086036550,-0.00854446552694,0.0103600937873,0.214767858386,-0.562412562055,0.025130653653,0.728115074449,-0.39103580226 -1469729991160553512,-0.0084643336013,0.0101475808769,0.214365303516,-0.578886791929,0.0252861219707,0.726613554143,-0.369165866654 -1469729991233394678,-0.00848261266947,0.00999788194895,0.213949024677,-0.560675800453,0.0234995893788,0.72720990266,-0.395292516447 -1469729991317293943,-0.00845894962549,0.00978120788932,0.213619142771,-0.564044121162,0.0251297984055,0.727796243414,-0.389275417522 -1469729991396115167,-0.00843307003379,0.00970459636301,0.213142007589,-0.543962188053,0.0251232833443,0.730022677007,-0.412965918276 -1469729991472415639,-0.00840150751173,0.00946969818324,0.212703198195,-0.542361584805,0.0241358929955,0.729390227565,-0.416234628461 -1469729991552746904,-0.00836389046162,0.00928089674562,0.212360098958,-0.545875216119,0.0227599297134,0.727871979081,-0.414372557122 -1469729991629245371,-0.00831979606301,0.0092231715098,0.212149471045,-0.548341793209,0.0232879680174,0.728126283859,-0.410622774721 -1469729991705464081,-0.00830723438412,0.00905606243759,0.211502835155,-0.5440048693,0.0234500073785,0.728674839698,-0.415381484087 -1469729991780944074,-0.00829735212028,0.00897372234613,0.210827916861,-0.535393759218,0.0233708657685,0.72951549204,-0.424987614052 -1469729991858418983,-0.00825690478086,0.00878209248185,0.210246369243,-0.545498918478,0.0221388028055,0.72752347722,-0.41551220613 -1469729991938486509,-0.00824203528464,0.0087739052251,0.209087669849,-0.534846076023,0.024537711264,0.730498964019,-0.42392079361 -1469729992012250899,-0.00823384150863,0.00869851745665,0.208891496062,-0.547120849346,0.0241822125193,0.728872695375,-0.410875395644 -1469729992090544201,-0.00824711844325,0.00868816394359,0.208385944366,-0.540790186946,0.0214676314746,0.727491330041,-0.421712555204 -1469729992170124417,-0.00825222767889,0.00867421459407,0.207974761724,-0.543391355075,0.0225133052614,0.72803830255,-0.417347836146 -1469729992247915037,-0.00821151211858,0.00868126191199,0.207381442189,-0.54657367267,0.0237724540258,0.728667226374,-0.41199049016 -1469729992324627290,-0.00816208031029,0.00866340193897,0.206808745861,-0.548153879883,0.0241386064004,0.728800804688,-0.409626706571 -1469729992403072130,-0.00823432207108,0.00867113657296,0.206243216991,-0.539157179363,0.0229783884171,0.728815138893,-0.421438041625 -1469729992484548680,-0.00817637052387,0.00858011376113,0.204011291265,-0.553076954395,0.0216195879358,0.726372202833,-0.407457849214 -1469729992562848056,-0.0082025276497,0.00856699235737,0.202552571893,-0.541872666426,0.0201587147529,0.726240561087,-0.422542645222 -1469729992641058819,-0.00810600351542,0.00856985058635,0.201923951507,-0.540199679747,0.0202989671092,0.726447570271,-0.424318495452 -1469729992716513310,-0.00815577059984,0.00858797412366,0.201527878642,-0.525949084484,0.0207418420266,0.728107179084,-0.439098249014 -1469729992790786484,-0.00816078670323,0.00857446715236,0.201256215572,-0.530396774208,0.0209463532882,0.727856451181,-0.43412613221 -1469729992866819836,-0.00817743223161,0.00860169250518,0.20100787282,-0.539801908735,0.0196568199328,0.726196136513,-0.425284234447 -1469729992950830664,-0.00813128706068,0.00860704388469,0.200733348727,-0.542352589029,0.0198081714679,0.725955005043,-0.422434179689 +1470068791552722133,-0.0365422070026,0.344806224108,1.37471711636,-0.111908821849,0.00646806232392,0.766474581068,-0.632417027237 +1470068791663202646,-0.0365081913769,0.343540608883,1.37314593792,-0.0223313033288,0.00852973920253,0.435400331598,0.899919500669 +1470068791744763006,-0.0365464836359,0.344209522009,1.37232351303,-0.146392433364,0.00867741178704,0.76742707133,-0.624139125652 +1470068791824280442,-0.0364924930036,0.344590306282,1.37385118008,-0.0877233310765,0.00506411044001,0.766819445261,-0.635819872559 +1470068791902129914,-0.0364924930036,0.344590306282,1.37385118008,-0.0877233310765,0.00506411044001,0.766819445261,-0.635819872559 +1470068791976221431,-0.0365450009704,0.344509840012,1.3735281229,-0.126508060252,0.00739893562922,0.766972950399,-0.629041699571 +1470068792057896593,-0.0365085527301,0.34313711524,1.371545434,-0.0175754560703,0.00674272523724,0.434141780911,0.900647851864 +1470068792142242927,-0.0365447103977,0.34451341629,1.37354290485,-0.13105820426,0.00767131947042,0.766930695924,-0.628157787187 +1470068792222554595,-0.0363051742315,0.344332993031,1.37281167507,-0.0857731028131,0.00502459875744,0.767881353006,-0.634803872032 +1470068792300704694,-0.0350148491561,0.338800996542,1.34671807289,-0.363615285005,0.0450103570027,0.781613732808,-0.504814782826 +1470068792374448521,-0.0345574170351,0.338750511408,1.34159052372,-0.167536323397,0.0157973049978,0.780100385245,-0.602598883536 +1470068792445266250,-0.0342542305589,0.337050586939,1.33269834518,-0.250937417099,0.0271372547793,0.775858930528,-0.578218731989 +1470068792515989915,-0.0358034186065,0.332682400942,1.32278013229,-0.264458772373,0.0243788768921,0.774601563081,-0.573985754657 +1470068792589310066,-0.034400742501,0.325053304434,1.29714858532,-0.21930816176,0.0202629021022,0.770438036009,-0.598262966976 +1470068792669192001,-0.0330537594855,0.319443106651,1.27456009388,-0.258213656785,0.0258094188109,0.781318144633,-0.567627992807 +1470068792743684602,-0.0323240160942,0.315426081419,1.26309776306,-0.246766265596,0.0278164668713,0.775083567951,-0.581014730473 +1470068792822946555,-0.0324886068702,0.310808986425,1.25845968723,-0.0309754470968,0.003363138166,-0.424946689605,-0.904682000469 +1470068792903036142,-0.0317412354052,0.309038609266,1.2517029047,-0.356784948984,0.0299798379578,0.761885147397,-0.539756177983 +1470068792983354740,-0.0304404087365,0.303362935781,1.23028671741,-0.218496515214,0.0239759216638,0.774304977793,-0.593410675153 +1470068793056776325,-0.0303709711879,0.30158123374,1.22892522812,-0.261216104106,0.0248111503517,0.766461112834,-0.58624902242 +1470068793133771670,-0.0300028081983,0.296485871077,1.22163772583,-0.36951553765,0.0296106790502,0.757521080575,-0.537348385692 +1470068793214573076,-0.0286539699882,0.287752658129,1.19910550117,-0.227258305793,0.0195191896977,0.761206502446,-0.607072750431 +1470068793300912374,-0.0284412391484,0.284440398216,1.19489037991,-0.198411411056,0.0144325307976,0.762568828791,-0.615559416607 +1470068793376925181,-0.027647247538,0.268193483353,1.14657592773,-0.208665243397,0.0173251408356,0.77375517564,-0.597880911104 +1470068793451809454,-0.027175148949,0.263651043177,1.13917529583,-0.262796580992,0.0310801947322,0.775910831057,-0.572655534125 +1470068793524630149,-0.0272096823901,0.261019736528,1.13998663425,-0.255499726874,0.0264590436354,0.769806234504,-0.584309994691 +1470068793597965230,-0.0264884848148,0.253261864185,1.12565100193,-0.399845083638,0.0377636050199,0.763185899926,-0.506206579749 +1470068793668677629,-0.0256133563817,0.248264998198,1.11298775673,-0.249513281118,0.0251636263851,0.768725701057,-0.588362737593 +1470068793758064742,-0.0256401188672,0.245310217142,1.11341655254,-0.270722208996,0.0203272968538,0.754298216372,-0.597771266738 +1470068793834063890,-0.0245818383992,0.235496252775,1.08714091778,-0.41635051415,0.0433709510844,0.764731304433,-0.489854306901 +1470068793909128918,-0.0244996473193,0.227898642421,1.06334960461,-0.153908376633,0.0155224470827,0.77385023176,-0.614188150361 +1470068793988733685,-0.0244804974645,0.225183129311,1.06295859814,-0.208082278923,0.0184830490144,0.762856136168,-0.611891050439 +1470068794066698903,-0.0243798680604,0.222537860274,1.06108820438,-0.259078357424,0.0206832274078,0.758362275973,-0.597776937661 +1470068794145918659,-0.0232388917357,0.214757174253,1.03913033009,-0.396670249679,0.0391375893128,0.762758271353,-0.509235487378 +1470068794221477795,-0.0233316291124,0.208030730486,1.01547050476,-0.280384188928,0.0305704563436,0.770450008555,-0.571714035262 +1470068794295862581,-0.0234460532665,0.206599384546,1.01715743542,-0.162528066091,0.0115907234869,0.756297202289,-0.633612519346 +1470068794379739341,-0.0237679760903,0.199388459325,0.995396792889,-0.210058259527,0.0176525640754,0.761980565964,-0.612331227098 +1470068794464701934,-0.0236366204917,0.197150155902,0.993043720722,-0.3097283027,0.0258962900022,0.757747703162,-0.573773630471 +1470068794544480921,-0.0234855245799,0.193873032928,0.98825854063,-0.326260913859,0.0174315460503,0.744484867437,-0.582230400655 +1470068794617151191,-0.0229308847338,0.184964716434,0.956431806087,-0.288262382514,0.0237522044158,0.762301677583,-0.5789963592 +1470068794690357656,-0.0228163823485,0.183291256428,0.954920828342,-0.183918253452,0.0130690340149,0.754586438722,-0.629763910441 +1470068794761980379,-0.0231571402401,0.177333429456,0.935888290405,-0.194370480215,0.0134632827822,0.754042270359,-0.627263191132 +1470068794833829362,-0.0230330191553,0.175562232733,0.934187531471,-0.376590826013,0.0274266989778,0.748856503169,-0.544647650879 +1470068794909161505,-0.0227062720805,0.169090598822,0.905407130718,-0.296492018257,0.0247894018148,0.765486053884,-0.570534021752 +1470068794989974231,-0.022130575031,0.166345849633,0.898067116737,-0.376225361227,0.0322373131558,0.753779764791,-0.537802286535 +1470068795066829043,-0.0218344870955,0.163841053843,0.891507148743,-0.472170866583,0.035747846492,0.746656186441,-0.467205847 +1470068795143971871,-0.0216574147344,0.158688440919,0.868726968765,-0.371416498965,0.0323321643988,0.761028990535,-0.530885384058 +1470068795218044211,-0.021379807964,0.1568877846,0.866201519966,-0.328904146856,0.0220729735072,0.747789649086,-0.57632064577 +1470068795292897007,-0.021588049829,0.152786061168,0.848251760006,-0.26345169391,0.0181458536467,0.75485966479,-0.60037556533 +1470068795373617426,-0.0211398731917,0.15075288713,0.841311633587,-0.378783726823,0.0220023266866,0.746760938374,-0.54624800854 +1470068795452095110,-0.0211330149323,0.146801352501,0.822490990162,-0.26961941541,0.0181225384488,0.753980781393,-0.598740282363 +1470068795527754325,-0.0209616608918,0.146212041378,0.820699870586,-0.298182313473,0.0198333311696,0.747112993138,-0.593730681699 +1470068795608119720,-0.0206011049449,0.141643106937,0.796811759472,-0.36201495322,0.0296301843377,0.759586309307,-0.539533005974 +1470068795684314102,-0.0202290788293,0.140267327428,0.792932391167,-0.352837702293,0.0220498804216,0.74438238139,-0.566492920423 +1470068795759219507,-0.0194769669324,0.137739703059,0.781318366528,-0.500292496842,0.0398818749563,0.74702589322,-0.435969228859 +1470068795838536998,-0.0194620434195,0.134686291218,0.765438735485,-0.400902963887,0.028343288474,0.745781357341,-0.531303715955 +1470068795914723688,-0.0191178061068,0.132671028376,0.756837785244,-0.458364133771,0.0350806460982,0.747373265184,-0.479692476104 +1470068795991375999,-0.0188823081553,0.129441127181,0.742069482803,-0.365020801953,0.0284205060161,0.750684741661,-0.549931366279 +1470068796072451432,-0.0188717376441,0.126101687551,0.725405991077,-0.405788458744,0.0297279533799,0.749824889863,-0.52174189987 +1470068796152527260,-0.0185087565333,0.12487308681,0.720821559429,-0.457258932472,0.0297991422883,0.74357880742,-0.486946441561 +1470068796229409352,-0.0186744481325,0.122416548431,0.709064781666,-0.364792619542,0.0209059913154,0.74115491094,-0.563186187903 +1470068796304770035,-0.0186848249286,0.119522430003,0.694205403328,-0.417776773641,0.0241865686406,0.742423809381,-0.523148606581 +1470068796385258064,-0.0187638215721,0.116922877729,0.681154251099,-0.452804439273,0.0256982793507,0.740668466582,-0.495699466234 +1470068796461672660,-0.018825346604,0.115059792995,0.669094562531,-0.405888248754,0.0303458600354,0.750929011279,-0.52003795854 +1470068796536923812,-0.0189272761345,0.112860418856,0.657928884029,-0.456011075013,0.027586435831,0.738382748924,-0.496068346213 +1470068796613111364,-0.0189435854554,0.110509775579,0.645480155945,-0.449889482393,0.0295150648551,0.744237893009,-0.49278623478 +1470068796689847719,-0.0189564358443,0.108149506152,0.633710741997,-0.371904216979,0.0215956857356,0.745190032591,-0.553093748905 +1470068796775839500,-0.0185245070606,0.104794383049,0.617594659328,-0.49405763062,0.0350868542277,0.743039300517,-0.450076180411 +1470068796851937104,-0.0184711012989,0.102707050741,0.607005000114,-0.425865246807,0.0278896528228,0.742184972055,-0.516742127258 +1470068796929686713,-0.0183529984206,0.100406952202,0.594588398933,-0.39207272298,0.0260033703364,0.747611276391,-0.535425236648 +1470068797006596059,-0.0179890617728,0.0975579619408,0.581067979336,-0.445854279911,0.027036592449,0.742263212602,-0.499528084267 +1470068797085136273,-0.0179114621133,0.0955739766359,0.57069003582,-0.328542272712,0.0162258989863,0.739362978712,-0.587485387864 +1470068797160972973,-0.0172256007791,0.092324398458,0.554732322693,-0.453212223579,0.0275019322019,0.740286351623,-0.495800808516 +1470068797240939138,-0.017080007121,0.0902877300978,0.544319093227,-0.428245874945,0.0213013334942,0.736495872118,-0.52318787652 +1470068797317556703,-0.0166516769677,0.0886131823063,0.535636305809,-0.557093448271,0.0289108918581,0.73209389227,-0.390959822905 +1470068797391595870,-0.0164175368845,0.086697191,0.525171458721,-0.550172723365,0.0314282489002,0.734670878319,-0.395703096003 +1470068797463094805,-0.0159957222641,0.084128677845,0.509301781654,-0.456831247165,0.0295682023565,0.742720559653,-0.488668705046 +1470068797536558305,-0.0157536100596,0.0823767408729,0.499352127314,-0.486715507625,0.0300991588143,0.739094369795,-0.46469513427 +1470068797608994567,-0.015545415692,0.0810110345483,0.490094453096,-0.458573678827,0.0252433682677,0.738383775039,-0.49382421387 +1470068797687796302,-0.0152793303132,0.0781949087977,0.473416477442,-0.506989004768,0.0251079854735,0.732904038249,-0.452971752792 +1470068797761365985,-0.0150203760713,0.0768349766731,0.464419454336,-0.543422747808,0.0278339023291,0.730965307146,-0.411833353183 +1470068797838767669,-0.0149856451899,0.0750722661614,0.451534718275,-0.450046004068,0.0267544820219,0.740077257496,-0.499027499094 +1470068797914669283,-0.0147125897929,0.0740685686469,0.443082809448,-0.448161695604,0.0230488005612,0.7372284613,-0.505088153926 +1470068797989224586,-0.0142304683104,0.0715450271964,0.427360057831,-0.539093256684,0.026066427438,0.730517578415,-0.418381488101 +1470068798063004950,-0.0139654483646,0.0700485408306,0.417139083147,-0.578009585184,0.0275314260984,0.728214978048,-0.367219124991 +1470068798142190640,-0.0137740327045,0.0686887279153,0.407282710075,-0.518444991506,0.0225287345965,0.729744720532,-0.445173999415 +1470068798214666827,-0.0135772647336,0.0670900791883,0.395902365446,-0.487316004617,0.0253085162561,0.735865314416,-0.469451626569 +1470068798288353785,-0.0131368758157,0.0651236176491,0.381400287151,-0.557569889133,0.0282811116341,0.731190457749,-0.3920159588 +1470068798363510491,-0.0129208080471,0.0636762455106,0.371956169605,-0.567120675935,0.0221908311581,0.725212583137,-0.389805612067 +1470068798436330389,-0.0126563813537,0.0623531267047,0.361555546522,-0.546078404105,0.024780788411,0.729632345867,-0.410878241042 +1470068798516102305,-0.0125067075714,0.0610754489899,0.351043790579,-0.566031641253,0.0237741618973,0.726972696822,-0.38801245908 +1470068798590550292,-0.0121770836413,0.0594792589545,0.335531771183,-0.478953374885,0.0232053332912,0.734671241409,-0.479920143607 +1470068798664386306,-0.0118321543559,0.0583982393146,0.325883090496,-0.496704134291,0.022318779324,0.73227713224,-0.465356934692 +1470068798739450690,-0.0116837816313,0.056792832911,0.314901977777,-0.512448026141,0.021295326391,0.729649706989,-0.452277386864 +1470068798817291472,-0.0114763490856,0.0556433610618,0.304386138916,-0.466292488159,0.0195488907983,0.732059995758,-0.496263356461 +1470068798889700933,-0.0109510812908,0.0539414435625,0.289716780186,-0.503815519331,0.0209131058469,0.730004918012,-0.461330016542 +1470068798970722927,-0.0110818324611,0.052945908159,0.279903173447,-0.48526503302,0.0201361270106,0.730789705849,-0.479644441168 +1470068799045687885,-0.0108116539195,0.0518517121673,0.27316519618,-0.549030557154,0.0226552437736,0.727505090953,-0.410838812527 +1470068799124981802,-0.0105154681951,0.0515794195235,0.268904626369,-0.540537591197,0.0214309336663,0.727354436888,-0.422274023265 +1470068799202654914,-0.0105563728139,0.0507744848728,0.261046975851,-0.515569613476,0.0232780600622,0.730556125727,-0.447139634502 +1470068799275990797,-0.0103395748883,0.0511960051954,0.261678099632,-0.514467898628,0.023610289493,0.73145335537,-0.446924293846 +1470068799354361195,-0.0102134039626,0.0508858785033,0.263284265995,-0.562549568202,0.0259820256316,0.728237082857,-0.390555589913 +1470068799430998401,-0.0104228174314,0.0485239066184,0.262412250042,-0.527329049899,0.0266423318329,0.732396643494,-0.429894656731 +1470068799512256007,-0.010421092622,0.0472360104322,0.262224256992,-0.537962089382,0.0257369271195,0.730518941922,-0.419852922419 +1470068799589734032,-0.0103893680498,0.0471880845726,0.262113273144,-0.516567240684,0.0252292578584,0.732472011755,-0.442726238657 +1470068799663599741,-0.0103345029056,0.0463289692998,0.261861503124,-0.541275539812,0.0272504408222,0.731341449019,-0.41402643445 +1470068799747353447,-0.0103265997022,0.0442569479346,0.261845469475,-0.543883713571,0.0270745423927,0.731294622436,-0.410689238309 +1470068799821502645,-0.0103227291256,0.0433989353478,0.261812895536,-0.544432568563,0.0265197883141,0.730942875453,-0.410624392773 +1470068799894473035,-0.0102811641991,0.0419302508235,0.261599689722,-0.543482288362,0.0273379392913,0.731266856117,-0.411252263772 +1470068799967227479,-0.0102682169527,0.0408192500472,0.261655300856,-0.532003823674,0.0268689003438,0.732456336654,-0.423978429506 +1470068800044626089,-0.010253562592,0.0396837852895,0.261473059654,-0.538608925728,0.0273016695112,0.731588370752,-0.4170533536 +1470068800121543445,-0.0102297589183,0.0382801406085,0.261679530144,-0.517015802274,0.0257525539594,0.732817553534,-0.441599252032 +1470068800195856695,-0.0101777520031,0.0371824167669,0.261710703373,-0.528737724325,0.0252050146885,0.731290176266,-0.430134634977 +1470068800270776132,-0.010098666884,0.0361955761909,0.261886864901,-0.541187593853,0.0265600756854,0.730686689453,-0.415340237029 +1470068800351665960,-0.0100830122828,0.0352601967752,0.261977493763,-0.543647925537,0.0268860896422,0.730522778622,-0.412383972963 +1470068800429861657,-0.010034554638,0.0338031388819,0.262135058641,-0.545169683981,0.0273456875969,0.731067189917,-0.409369017959 +1470068800504917588,-0.0100112464279,0.0328570120037,0.262115508318,-0.539892206343,0.0267656373459,0.73114387393,-0.41620745044 +1470068800579160781,-0.00999291799963,0.0320243798196,0.262143433094,-0.544953352998,0.0272728047328,0.73095738346,-0.409857707922 +1470068800652079740,-0.00999287236482,0.0311512947083,0.262036800385,-0.534225607134,0.0268290235643,0.731721127778,-0.422454015651 +1470068800734416578,-0.00994546245784,0.0297589749098,0.262070059776,-0.550932479967,0.0281662020825,0.731050349067,-0.401553800514 +1470068800807003105,-0.00997726432979,0.0289987549186,0.262027055025,-0.540846018475,0.0264774113057,0.730627152,-0.415894813326 +1470068800880344059,-0.00995203945786,0.0282795522362,0.262031167746,-0.544479327712,0.0269940651464,0.730894307473,-0.410617940967 +1470068800957108118,-0.00995563156903,0.0271285902709,0.261986523867,-0.540611976102,0.0264311424759,0.730850091619,-0.415810328855 +1470068801032181722,-0.00994534697384,0.0264678299427,0.261947602034,-0.533727220877,0.0264020593172,0.731569325416,-0.423372775541 +1470068801113833679,-0.00990626681596,0.0257412511855,0.261910229921,-0.548876182812,0.0283982088171,0.731450090419,-0.403620171576 +1470068801191794263,-0.00994666386396,0.0250635705888,0.261926501989,-0.529460312038,0.026151804887,0.731705435082,-0.428479891417 +1470068801269602423,-0.00992706883699,0.0241526253521,0.2618509233,-0.526949523019,0.0267218680698,0.732465118938,-0.430238296176 +1470068801351533163,-0.00993715971708,0.0235450677574,0.261839747429,-0.531130259734,0.0256226155692,0.731297016102,-0.427140261515 +1470068801428254251,-0.00991832371801,0.0229771826416,0.261858791113,-0.525124432801,0.0266403643652,0.732682190261,-0.432101179281 +1470068801506495891,-0.00993259903044,0.0222050026059,0.26182281971,-0.52160593373,0.0253632034331,0.732128215134,-0.437346812511 +1470068801584329524,-0.00992636755109,0.0216573867947,0.261820822954,-0.520350672139,0.025820992719,0.732661748937,-0.437921472395 +1470068801659868643,-0.00992503017187,0.0211512893438,0.261822968721,-0.516620290879,0.0255995257887,0.73293372158,-0.44187814961 +1470068801736975366,-0.0098862843588,0.0204451270401,0.261667311192,-0.51805714192,0.0266530290393,0.733587520394,-0.439039592373 +1470068801813630126,-0.00991936121136,0.019979769364,0.261788964272,-0.514245484052,0.0252716790807,0.732824329954,-0.444838651418 +1470068801886082643,-0.00989268347621,0.0195273756981,0.261703014374,-0.525602542555,0.0266251741229,0.732657517273,-0.431562312704 +1470068801958919233,-0.00987026467919,0.0188330970705,0.261627078056,-0.516881704913,0.0269686257438,0.734000970338,-0.439714193419 +1470068802031361407,-0.00991044379771,0.0184701010585,0.261688053608,-0.51489454662,0.0250086811391,0.732660461562,-0.444372388649 +1470068802104793284,-0.00993706099689,0.0181047674268,0.26173684001,-0.496716537759,0.023494356138,0.733309200127,-0.463657538875 +1470068802174795661,-0.00993292964995,0.017608506605,0.261726051569,-0.502816263858,0.0235308833076,0.732624392266,-0.458130551467 +1470068802253849177,-0.00990411546081,0.0173309016973,0.261732041836,-0.510908627073,0.0256851799598,0.733432423748,-0.447648887085 +1470068802332870745,-0.00987875740975,0.0170146413147,0.261688023806,-0.529248420931,0.0272178645624,0.732801973722,-0.426798036663 +1470068802405673223,-0.00986154004931,0.0168612319976,0.261619359255,-0.520434430608,0.0275257955043,0.734061674519,-0.435366273409 +1470068802482892285,-0.00994985550642,0.0166772939265,0.26171836257,-0.488300143435,0.0221653028208,0.732953862975,-0.473128210976 +1470068802560035057,-0.00987862795591,0.0164583530277,0.261612147093,-0.512666979362,0.0263610008928,0.733826808715,-0.444944806369 +1470068802637011990,-0.00991813931614,0.0162192266434,0.261616051197,-0.49842718047,0.0233006968789,0.733086869979,-0.462180770216 +1470068802714468449,-0.00984526984394,0.0160690527409,0.261554419994,-0.524796994322,0.0277690951588,0.733585086935,-0.430894316893 +1470068802792018303,-0.00983560085297,0.0159528460354,0.261542767286,-0.522192865396,0.0277229812343,0.734020120219,-0.433313409386 +1470068802863635269,-0.00991479400545,0.0157435517758,0.261584341526,-0.500731623156,0.0233278200009,0.732726699785,-0.460255622245 +1470068802942042448,-0.00990076456219,0.0156234763563,0.261548429728,-0.506974128075,0.0245422407906,0.732912710158,-0.453005376535 +1470068803015812667,-0.00985445454717,0.0155691280961,0.261490345001,-0.514037813033,0.0263659287327,0.733774576896,-0.44344654117 +1470068803090508930,-0.00986162293702,0.0154321910813,0.261567384005,-0.517307808055,0.026178952737,0.733464662967,-0.440155520625 +1470068803166641069,-0.00990234967321,0.0153577439487,0.261604547501,-0.502513383323,0.024054598211,0.733233732568,-0.457460347254 +1470068803244169931,-0.00990873854607,0.015345309861,0.261632293463,-0.502270801019,0.023825838919,0.73305658435,-0.458022287651 +1470068803315689551,-0.00991615001112,0.0153410015628,0.261617660522,-0.496671893105,0.0233074526558,0.733173009359,-0.463930093439 +1470068803394883473,-0.00990457739681,0.0153251066804,0.261578649282,-0.499974549325,0.0235669457633,0.733128648243,-0.460426361344 +1470068803473589826,-0.00992096681148,0.0153066851199,0.261577934027,-0.494778827801,0.0229036758776,0.732906183451,-0.466388099603 +1470068803546141373,-0.00988658796996,0.0151813132688,0.261509090662,-0.510380795929,0.0247749283004,0.732842915695,-0.449264851719 +1470068803624054131,-0.00987469311804,0.0151674598455,0.261439442635,-0.501103070266,0.0248724003173,0.733853797396,-0.457969082712 +1470068803702377384,-0.00992515869439,0.0151933217421,0.261544674635,-0.496033316113,0.0226740159332,0.732444000351,-0.465792469516 +1470068803776591992,-0.00984335877001,0.0151345049962,0.261451244354,-0.514947460015,0.0267318202394,0.73395565406,-0.44206743952 +1470068803853678030,-0.00983185786754,0.0150226419792,0.2615224123,-0.534608605404,0.0282068302962,0.733029407984,-0.419602074331 +1470068803928519951,-0.0098391091451,0.0150123005733,0.261535704136,-0.530556891769,0.0277530953596,0.733179082463,-0.424485080224 +1470068804001987378,-0.00983199104667,0.0150168072432,0.261474996805,-0.529851303805,0.0279905487275,0.733466803261,-0.424853590725 +1470068804077331494,-0.00983607862145,0.0149681149051,0.261513650417,-0.538757521527,0.0277563792448,0.732237819191,-0.415689418382 +1470068804153609992,-0.00985156465322,0.0149931609631,0.26154050231,-0.533625466773,0.0270940031082,0.732372672597,-0.422066398379 +1470068804235733704,-0.00982831697911,0.0150366397575,0.261492908001,-0.539450485164,0.0285716947198,0.732748574303,-0.413831317294 +1470068804311044167,-0.00983570422977,0.0150790717453,0.261447578669,-0.529913039566,0.0276828638988,0.733127380481,-0.425382267536 +1470068804386569157,-0.0098988218233,0.0151329925284,0.26148173213,-0.511779671013,0.0240962126186,0.732135582641,-0.448863486493 +1470068804457881786,-0.00991587899625,0.0151691660285,0.261456727982,-0.507559888243,0.0229277570395,0.731561428742,-0.454615391051 +1470068804530845314,-0.00993620511144,0.0151700079441,0.261509478092,-0.501918814847,0.0221280173848,0.731247905463,-0.461372251989 +1470068804602498151,-0.0098814740777,0.0151299610734,0.261500239372,-0.522841194056,0.0252804254347,0.731957785714,-0.436160275381 +1470068804682314258,-0.00989916268736,0.0151226138696,0.261559665203,-0.517775709287,0.0246339491569,0.731901361592,-0.442291623615 +1470068804757074903,-0.0098447650671,0.0150670735165,0.26154011488,-0.537559737484,0.0278762864637,0.732326875256,-0.417072882201 +1470068804829939794,-0.00984072778374,0.0149921216071,0.261546730995,-0.53412075312,0.027737930273,0.732788785959,-0.420673535515 +1470068804908274230,-0.00989120360464,0.0148801878095,0.261591821909,-0.517670722249,0.0249073176023,0.732252024153,-0.441818539653 +1470068804986305168,-0.00993866939098,0.0147742861882,0.261542707682,-0.493875373337,0.0220520480966,0.732094099778,-0.468656646017 +1470068805059755083,-0.00983389746398,0.0145841315389,0.261521577835,-0.540061714954,0.0281866944153,0.732329128556,-0.413802974575 +1470068805135063777,-0.00983959063888,0.0144976489246,0.261506676674,-0.54213184355,0.0277110631551,0.731862974614,-0.411948719596 +1470068805209886352,-0.00985737331212,0.0144318845123,0.261514127254,-0.529916259087,0.0267495001287,0.73255488752,-0.426422981754 +1470068805287507104,-0.00994746480137,0.0142621686682,0.26152035594,-0.500340431589,0.022012199493,0.731302617794,-0.463002588328 +1470068805361746604,-0.00994692742825,0.0142179280519,0.261513471603,-0.500868413379,0.0219138843086,0.73134030233,-0.462376444407 +1470068805438471943,-0.00993977021426,0.0142345307395,0.26151239872,-0.506661417276,0.0224496271167,0.731226207982,-0.456178095975 +1470068805514490938,-0.0098988134414,0.0141875287518,0.261516273022,-0.526861595889,0.0250285899548,0.731327816477,-0.43237721183 +1470068805593206278,-0.00985505990684,0.014111741446,0.261490166187,-0.536596630761,0.0271482263264,0.732044754251,-0.418852608249 +1470068805666751402,-0.00984100159258,0.014070848003,0.261507242918,-0.540673342863,0.0279725114861,0.732214107676,-0.413221944527 +1470068805746089077,-0.0099110910669,0.0139696197584,0.261608630419,-0.516886794781,0.0240738569213,0.731643427376,-0.443786419318 +1470068805829419435,-0.00990209449083,0.013966711238,0.261591106653,-0.519136683017,0.0246433772721,0.731865416266,-0.440752561849 +1470068805906340009,-0.00996354874223,0.0138134602457,0.261581242085,-0.501689034042,0.0214768730423,0.730668619339,-0.462569157813 +1470068805983524449,-0.00985661707819,0.0137156331912,0.261489778757,-0.529378751735,0.026782279652,0.732504318415,-0.427174753715 +1470068806060823715,-0.00984362885356,0.0136604346335,0.261534661055,-0.543591150841,0.0275348500472,0.731490016039,-0.410698002424 +1470068806133269415,-0.00985048618168,0.0135932238773,0.261507302523,-0.536315686716,0.0272889910956,0.732218145842,-0.418900205356 +1470068806206806165,-0.00987612176687,0.013527396135,0.261551886797,-0.527722225652,0.0259461001007,0.73208531257,-0.429985055044 +1470068806283728150,-0.00992621574551,0.0134575972334,0.261610835791,-0.515325188461,0.0234936952046,0.731214091729,-0.446333897973 +1470068806354900719,-0.00993740465492,0.0133594088256,0.26150727272,-0.506600733018,0.0223128810952,0.731087213687,-0.456474882799 +1470068806431741417,-0.00992847234011,0.0133077027276,0.261506944895,-0.519840313188,0.0228731463516,0.730337230761,-0.442549881171 +1470068806509745792,-0.0098526161164,0.0132555421442,0.261467427015,-0.545507999479,0.0273607730089,0.731163319229,-0.408745166599 +1470068806584872755,-0.00984180252999,0.0131948646158,0.26145324111,-0.546697545086,0.027651374889,0.731290977072,-0.406903800076 +1470068806661441046,-0.00984947942197,0.013100755401,0.261489987373,-0.544535009313,0.0275903798973,0.731464316426,-0.409487909912 +1470068806737455531,-0.00990646611899,0.0130423968658,0.261594742537,-0.524829263891,0.0246833468814,0.731247135144,-0.434997245387 +1470068806810823340,-0.00990830734372,0.0130013208836,0.261558145285,-0.519167206746,0.0239467059926,0.731217397712,-0.441829247555 +1470068806884144085,-0.0099359145388,0.0129352239892,0.261550992727,-0.513234121437,0.0229129468564,0.73087388482,-0.449320707232 +1470068806960047485,-0.00992136448622,0.0128857512027,0.261444628239,-0.509515685521,0.022758524358,0.731300597519,-0.452852351043 +1470068807033870012,-0.00989564880729,0.0127951549366,0.261537730694,-0.537786103177,0.025052866266,0.730288078047,-0.42052084869 +1470068807107051296,-0.00987893715501,0.0127296857536,0.26154306531,-0.537082963717,0.0257101571841,0.73085804659,-0.420389573653 +1470068807184372305,-0.00988125428557,0.012638406828,0.261561483145,-0.537507574962,0.0258719152243,0.730837082133,-0.419873088255 +1470068807257704776,-0.00989896059036,0.012575590983,0.26150316,-0.517151973321,0.0242000663062,0.7315659308,-0.443598334277 +1470068807331756176,-0.00992695428431,0.0124938581139,0.261531233788,-0.52044579199,0.0234383240519,0.730561989798,-0.441436293963 +1470068807409928320,-0.00992856174707,0.012456339784,0.261505126953,-0.514669212077,0.0228691726811,0.730756453181,-0.447870080733 +1470068807484303305,-0.00992417987436,0.0124352909625,0.26146247983,-0.512577063274,0.0228955728704,0.731094708102,-0.449712213236 +1470068807558361123,-0.00990374665707,0.0124739333987,0.261451929808,-0.525963898521,0.0241671405102,0.730757886622,-0.434477661004 +1470068807632928600,-0.00991629995406,0.0124276094139,0.261437773705,-0.523357379003,0.0233459667033,0.730389901395,-0.438272303052 +1470068807704934352,-0.00993147678673,0.0123872384429,0.261462628841,-0.522749779973,0.0224546153287,0.729705430447,-0.440180011547 +1470068807779075957,-0.0099138719961,0.0123742241412,0.261462599039,-0.528318514759,0.0235074540078,0.730057975379,-0.432830566336 +1470068807852248449,-0.00990913528949,0.0123846223578,0.26146543026,-0.525336471036,0.0240305059892,0.730802164984,-0.435169303416 +1470068807924118165,-0.00986102968454,0.0123410234228,0.26146158576,-0.542689039672,0.0267539876767,0.731039511378,-0.41273970389 +1470068807998213221,-0.00986469630152,0.012316535227,0.261476576328,-0.549724756765,0.0267745673325,0.730249687958,-0.404748326224 +1470068808070028188,-0.00985950417817,0.0123193152249,0.26143553853,-0.546282229262,0.0265997614375,0.730582350049,-0.408800206068 +1470068808147313910,-0.00987779535353,0.0123195564374,0.261497527361,-0.543846565604,0.026204728067,0.730460274246,-0.412276622009 +1470068808220287603,-0.00984906125814,0.0122663695365,0.261460781097,-0.542198617394,0.027035457086,0.731298237271,-0.412907533863 +1470068808306118169,-0.0098545961082,0.0122613795102,0.261465966702,-0.550354414476,0.0271097289792,0.730466957895,-0.403476274996 +1470068808378178121,-0.00987943354994,0.0123102562502,0.261478364468,-0.541466235642,0.0259356900508,0.730540410468,-0.415273842559 +1470068808449846697,-0.00986643135548,0.0123111214489,0.26146286726,-0.544701431053,0.026897582989,0.730956819911,-0.410218232729 +1470068808524627956,-0.00988419167697,0.0121427988634,0.261560499668,-0.533965538672,0.0257166141094,0.731089074953,-0.423943656344 +1470068808596451352,-0.00993068423122,0.0120467338711,0.261554718018,-0.514675106945,0.0232951719264,0.731081318298,-0.447310826264 +1470068808669026056,-0.00993837509304,0.011992671527,0.261562794447,-0.516487443886,0.0226977305219,0.730464970478,-0.44625828871 +1470068808743120212,-0.00995047856122,0.0119227198884,0.261560857296,-0.521466611303,0.0221446250674,0.729645430683,-0.441814140064 +1470068808819632054,-0.00987389776856,0.0118228942156,0.261553108692,-0.544865845863,0.0267046115556,0.730771503253,-0.410342641907 +1470068808894502621,-0.00988264009356,0.0117467679083,0.261610627174,-0.538590584807,0.0263373347092,0.731089397862,-0.418012941297 +1470068808967716139,-0.00992059428245,0.0116710579023,0.261663109064,-0.527910053116,0.0242701025069,0.730586492995,-0.432394859124 +1470068809044712115,-0.00992631819099,0.0116212628782,0.261608242989,-0.524492779401,0.0239696166443,0.73063569524,-0.436467940032 +1470068809122434362,-0.00994744151831,0.0115479202941,0.261576980352,-0.509582637782,0.0222794626102,0.730706674851,-0.453758654071 +1470068809196191838,-0.00989834219217,0.011445524171,0.261535912752,-0.539182711215,0.025416520713,0.73044603574,-0.418431109351 +1470068809269603035,-0.00985939614475,0.0114219272509,0.261501342058,-0.543854954986,0.0273942268046,0.731376113306,-0.410560988357 +1470068809342225480,-0.00985333137214,0.0113437343389,0.261517345905,-0.543955137373,0.0278017152109,0.731643340894,-0.409924255056 +1470068809415781300,-0.00986015237868,0.0113379061222,0.261558264494,-0.551761609701,0.0279635800747,0.730859737093,-0.40077575893 +1470068809491737866,-0.00985264219344,0.0113581623882,0.261532753706,-0.549071855981,0.0280436397284,0.731224568356,-0.403787421638 +1470068809564741593,-0.00985202100128,0.0113260988146,0.26151061058,-0.554491722004,0.0279775702494,0.730567313323,-0.397526837453 +1470068809637532824,-0.00986782368273,0.0113248089328,0.261573046446,-0.543591372981,0.0273918035042,0.731369017996,-0.410922702996 +1470068809713392814,-0.00984373874962,0.0113009279594,0.261471092701,-0.54703445898,0.0281662085198,0.731546388305,-0.405955474337 +1470068809789958051,-0.00990833062679,0.011220747605,0.261588275433,-0.530967956749,0.0250810417166,0.730852443605,-0.428133946247 +1470068809865581488,-0.00991130713373,0.0111928554252,0.261536091566,-0.520716535312,0.024107621821,0.73115274532,-0.440100869613 +1470068809940703328,-0.0099255759269,0.0111432243139,0.2615660429,-0.522763247425,0.0240630411261,0.730828569356,-0.438211318208 +1470068810014654565,-0.00992575194687,0.0111243361607,0.261511206627,-0.512247625054,0.0231525390875,0.731118514429,-0.450035607946 +1470068810092485589,-0.00994619820267,0.0110302483663,0.261521458626,-0.516141572951,0.0223020624497,0.730282526784,-0.446976426399 +1470068810166733809,-0.00991816259921,0.010980210267,0.261532902718,-0.52881863431,0.0241037934524,0.730500875276,-0.431437516182 +1470068810242919910,-0.00986825022846,0.0109209045768,0.261504709721,-0.541389736318,0.0269337156784,0.731358224802,-0.413868186001 +1470068810320218159,-0.00987105537206,0.0108700497076,0.261523962021,-0.53317169836,0.0266812442423,0.731902439571,-0.423479480286 +1470068810396957500,-0.00989338383079,0.0107891447842,0.261602461338,-0.534323232063,0.0257354305605,0.731135884512,-0.42341078124 +1470068810477095260,-0.0099119618535,0.0107422545552,0.26159620285,-0.529418094834,0.0247553610248,0.730720950899,-0.430291232632 +1470068810550417878,-0.00991042517126,0.0107355704531,0.261527836323,-0.517600620221,0.0245315538788,0.731859400399,-0.442571597438 +1470068810627079705,-0.00993082858622,0.0107065336779,0.26159337163,-0.522611279178,0.0237151808562,0.730604706286,-0.438784462152 +1470068810699664930,-0.00987710896879,0.0107998866588,0.261554419994,-0.543596499818,0.0267129876955,0.730845848324,-0.411890285953 +1470068810772188150,-0.00987132824957,0.0108037013561,0.261522650719,-0.537234930552,0.0264226766058,0.731328099814,-0.419332424192 +1470068810848621264,-0.00990580394864,0.0108676832169,0.26169398427,-0.542848891727,0.026274836668,0.730672312075,-0.413210220198 +1470068810923513384,-0.00993384234607,0.0112271336839,0.261761307716,-0.539198914022,0.0249015300665,0.730083105876,-0.419074102554 +1470068810995398967,-0.00992131326348,0.0120432646945,0.261667251587,-0.536601385397,0.0241794950731,0.729993848665,-0.422591157171 +1470068811070444144,-0.00991426594555,0.0129297431558,0.261461675167,-0.534698083593,0.023498127579,0.729317583487,-0.426194392055 +1470068811159832443,-0.00990086141974,0.0131723163649,0.26122495532,-0.544791279801,0.0229243893844,0.728092146076,-0.415401926629 +1470068811235534565,-0.00979971606284,0.0133380396292,0.260899543762,-0.563257238249,0.0263200083311,0.728480219508,-0.389056693179 +1470068811307130947,-0.00983388070017,0.0134140932932,0.260644108057,-0.554202182725,0.0233622408154,0.727427390444,-0.403935066563 +1470068811379841379,-0.00981529522687,0.0134795997292,0.260314583778,-0.569379022362,0.0245727527419,0.726790539489,-0.383378690625 +1470068811460688322,-0.00983902532607,0.0135132130235,0.259818971157,-0.568498705061,0.0255763421476,0.72739007422,-0.383482402454 +1470068811536246450,-0.0098688416183,0.0136176487431,0.259397178888,-0.557272542191,0.0251479224659,0.728301986952,-0.39798380811 +1470068811610579509,-0.00986216124147,0.0138912145048,0.25917494297,-0.553598957318,0.0253686081509,0.728832936383,-0.402103443184 +1470068811684870518,-0.00989083293825,0.0141014270484,0.258990466595,-0.533528724858,0.0220832795052,0.728334220096,-0.429405044631 +1470068811761920494,-0.00985962152481,0.0145901069045,0.258947938681,-0.538427266589,0.0230842728346,0.728805736367,-0.422380626426 +1470068811833917835,-0.0098868990317,0.0149357067421,0.258931785822,-0.526477820463,0.0215034186216,0.728541538739,-0.437705304835 +1470068811905818126,-0.00988393463194,0.01503145881,0.259027034044,-0.530751158017,0.0222918393899,0.728743528839,-0.432133256456 +1470068811977542174,-0.00981466751546,0.0148592730984,0.258884966373,-0.55660591791,0.0255876102388,0.728659102043,-0.398234904749 +1470068812053132057,-0.00981390569359,0.0148065304384,0.258912324905,-0.559823771423,0.0259165299647,0.728656506213,-0.393681818704 +1470068812126651297,-0.00981144420803,0.0148363532498,0.258936822414,-0.565437218063,0.0265667472394,0.728395742711,-0.386024095583 +1470068812201472503,-0.00981819443405,0.0147512629628,0.258896887302,-0.56087645739,0.0255715473753,0.728277946542,-0.392905749629 +1470068812277500258,-0.0098388902843,0.0146344816312,0.258931130171,-0.551714401446,0.0246874027191,0.728573154524,-0.405194903585 +1470068812351116127,-0.00986713077873,0.014469939284,0.258794426918,-0.540189128413,0.0223704888115,0.727952296642,-0.421640511085 +1470068812426281179,-0.00977347698063,0.0143683757633,0.258738726377,-0.567454428052,0.0277718809309,0.728966526876,-0.381879558773 +1470068812502022921,-0.00979763176292,0.0142330415547,0.258842378855,-0.560705615445,0.0265266558408,0.728835126456,-0.392052174821 +1470068812579239667,-0.00989150814712,0.01406371966,0.258848577738,-0.519735978888,0.0209622109718,0.728534442995,-0.445727117562 +1470068812654509559,-0.00977994780988,0.0138708427548,0.258837342262,-0.570033105133,0.027461871471,0.728556934652,-0.378830961825 +1470068812725721768,-0.0098271984607,0.0137248635292,0.258856743574,-0.545178709222,0.0243261653098,0.728907895766,-0.413378388625 +1470068812798026539,-0.00986339244992,0.0135716479272,0.258777052164,-0.533475497858,0.0221175244664,0.728325397675,-0.429484369213 +1470068812869942878,-0.00975228194147,0.0134279262275,0.258722156286,-0.56754100432,0.0282189917244,0.729316669849,-0.381048674059 +1470068812953598594,-0.00986246950924,0.0132160140201,0.258812218904,-0.53047620341,0.0224637498854,0.728719804148,-0.432501820343 +1470068813029668488,-0.00984056666493,0.0130823776126,0.258758604527,-0.54175923098,0.0232379525763,0.728467611307,-0.418678722274 +1470068813111478393,-0.00978033337742,0.0129334200174,0.258759319782,-0.558619046742,0.0267992083572,0.729264183789,-0.394208464257 +1470068813189198189,-0.00983942765743,0.012785342522,0.258802384138,-0.537310864258,0.0233256287233,0.728853005842,-0.423705376493 +1470068813273936581,-0.00984631851315,0.0126677826047,0.258736014366,-0.539722905995,0.02251125365,0.728163106484,-0.421865995974 +1470068813357998215,-0.00979673769325,0.0124399317428,0.258792996407,-0.554903038379,0.0260124425659,0.72906763853,-0.399832901694 +1470068813433965205,-0.00984189473093,0.0123138334602,0.258777499199,-0.530585076097,0.0228099971551,0.729062370969,-0.431772208798 +1470068813506740162,-0.00980436708778,0.0121548296884,0.258702009916,-0.549444943267,0.0249357937653,0.728990690213,-0.407505870006 +1470068813576017417,-0.00977024808526,0.0120407855138,0.25870847702,-0.560532328364,0.0270345432321,0.729236272897,-0.391518965853 +1470068813648594021,-0.00980826374143,0.0119065949693,0.25870770216,-0.546325537853,0.0245650186276,0.728942124092,-0.411786772825 +1470068813721181580,-0.00985000748187,0.0117552438751,0.258713304996,-0.538268817041,0.0220170094069,0.727868043908,-0.42425233359 +1470068813795503359,-0.00973864551634,0.011650278233,0.2586761415,-0.567630590891,0.0283662013327,0.729320616003,-0.380896718259 +1470068813871477778,-0.00978093966842,0.0115304114297,0.258727103472,-0.559942175745,0.0263007666873,0.728742915451,-0.393327843757 +1470068813945545317,-0.00982626248151,0.0114162834361,0.258704394102,-0.533326373257,0.0229556040482,0.728879789272,-0.428684350801 +1470068814023655790,-0.00982833467424,0.011291728355,0.258642584085,-0.544678679043,0.0228524572584,0.727989727406,-0.415732917369 +1470068814095733428,-0.0097719989717,0.0112161291763,0.258617132902,-0.55310584571,0.0263050769717,0.729537120365,-0.401444337831 +1470068814173109701,-0.00978086981922,0.0111074103042,0.258684515953,-0.558371985354,0.0261335291231,0.728784590224,-0.395488034813 +1470068814247833388,-0.0097939055413,0.0110444566235,0.258651226759,-0.542022293187,0.0250667197687,0.729728531323,-0.416028561306 +1470068814325866612,-0.00981879327446,0.0109316976741,0.258651584387,-0.540871850835,0.0235129064741,0.728686562879,-0.41942898956 +1470068814402534975,-0.00984385795891,0.0108686387539,0.258675634861,-0.533547452063,0.022467481276,0.728680168154,-0.428774464283 +1470068814475793169,-0.00980110373348,0.0108100622892,0.258627861738,-0.549729196962,0.0245210350459,0.72859833907,-0.407849223554 +1470068814550052098,-0.00974109396338,0.0107300132513,0.258616119623,-0.560716210238,0.0277648322956,0.729637466611,-0.390455647906 +1470068814633865355,-0.00978125445545,0.0105991484597,0.258621245623,-0.543662979005,0.025038312366,0.729413351442,-0.414439152242 +1470068814711878731,-0.00981512013823,0.010540228337,0.258661687374,-0.536042103857,0.023541408988,0.729103305859,-0.424868255275 +1470068814786463263,-0.00982366129756,0.0105039207265,0.25868049264,-0.533228917433,0.0232462032422,0.729250566419,-0.428159020721 +1470068814863253982,-0.00980827119201,0.0104670841247,0.25860825181,-0.539063544031,0.0237333253359,0.729121995043,-0.420984965419 +1470068814938969363,-0.00977940484881,0.0103037739173,0.258616387844,-0.549814745562,0.0255845988717,0.729246064333,-0.406508734862 +1470068815023399017,-0.00982164870948,0.00997146870941,0.258578121662,-0.539961141516,0.0233586291932,0.728702130458,-0.420582388078 +1470068815100067230,-0.00978262163699,0.0088351611048,0.258615523577,-0.539085887631,0.0254573201651,0.730031782762,-0.419275478373 +1470068815174923695,-0.00978967174888,0.00819947570562,0.258565247059,-0.536487534281,0.0244692717511,0.72982782665,-0.42300558359 +1470068815254049017,-0.00978303235024,0.00767731526867,0.258309453726,-0.525776322289,0.022704041947,0.72948217664,-0.436920518359 +1470068815328171197,-0.00971377361566,0.00722702313215,0.257969617844,-0.534333586592,0.0244218867495,0.730044430644,-0.425354345191 +1470068815400370611,-0.00966475624591,0.00698324711993,0.25750002265,-0.546186720475,0.024916838063,0.729240676051,-0.411421017875 +1470068815477322574,-0.00967009644955,0.00688396114856,0.257164865732,-0.547062706504,0.0249012563212,0.728799230351,-0.411040149409 +1470068815550497001,-0.0097246831283,0.00678155571222,0.256424307823,-0.548095269257,0.0255707873025,0.729363932216,-0.408614690187 +1470068815624888474,-0.00974899716675,0.006778025534,0.255986124277,-0.527209207376,0.0223566000531,0.729082914025,-0.435876976415 +1470068815712756467,-0.00970896333456,0.00673952372745,0.255709260702,-0.532569712239,0.022314289629,0.728671300214,-0.430011290932 +1470068815785918569,-0.00966703984886,0.00672650849447,0.25543692708,-0.53202302007,0.0231895697045,0.72932862335,-0.429527076137 +1470068815866014896,-0.00959998369217,0.00670125521719,0.255075037479,-0.545527888107,0.0247776612156,0.729183918365,-0.412402963132 +1470068815939122334,-0.00961808487773,0.00671913474798,0.254394650459,-0.521799034797,0.0243514415651,0.731185782053,-0.43874836376 +1470068816012173080,-0.00965882930905,0.00669618695974,0.253835767508,-0.525790606156,0.0248663826513,0.731302267608,-0.433731362577 +1470068816083725687,-0.00964025128633,0.00654319720343,0.253588885069,-0.540415369477,0.0253256129779,0.730098877448,-0.417451159909 +1470068816157751965,-0.00967250205576,0.00636693881825,0.253391683102,-0.527209484016,0.022042974668,0.728738481278,-0.436468204037 +1470068816232864344,-0.00962376594543,0.00606551393867,0.253411889076,-0.540872659904,0.0245025705541,0.729298017778,-0.418307053574 +1470068816310063261,-0.0096341194585,0.0059226937592,0.253285855055,-0.533496394546,0.0230597516983,0.729026706085,-0.428217125619 +1470068816385605021,-0.00964853540063,0.00629663933069,0.253232508898,-0.531808689116,0.0219633001839,0.728408796446,-0.431413672576 +1470068816461081399,-0.00961644947529,0.00641448749229,0.253228276968,-0.545489778083,0.0242758129485,0.728684610818,-0.413364639115 +1470068816537214741,-0.00961474236101,0.00642562331632,0.25319865346,-0.543002964751,0.0240740829549,0.728810401422,-0.416417599989 +1470068816610003504,-0.0095183532685,0.00637014675885,0.250477582216,-0.537668218665,0.0225037472621,0.728004844314,-0.424753357435 +1470068816681778126,-0.00955010391772,0.00649123592302,0.250067025423,-0.501729851304,0.0183440550255,0.727910704902,-0.4669867853 +1470068816752044601,-0.00951475929469,0.00653589190915,0.250104397535,-0.526037907619,0.0204344889202,0.727544042761,-0.439938878997 +1470068816825823243,-0.00956451985985,0.00661060400307,0.25052472949,-0.532282020778,0.0206028304924,0.727285359149,-0.432790226438 +1470068816902361122,-0.00955781154335,0.00665424391627,0.250561475754,-0.535299079576,0.0213957010166,0.727533434985,-0.428593304149 +1470068816972387093,-0.00953885447234,0.00672981422395,0.250593096018,-0.539182043548,0.0224388201202,0.72787720523,-0.423053185042 +1470068817043914468,-0.00953064020723,0.00677133072168,0.250575274229,-0.539915590065,0.0228832004828,0.728077731809,-0.421746761914 +1470068817116015292,-0.00951930321753,0.00684034405276,0.250586599112,-0.546997876281,0.0235692051142,0.728006350317,-0.412607040431 +1470068817187717796,-0.00951080117375,0.00695031834766,0.250558584929,-0.552090025448,0.0239850116625,0.727897176405,-0.405939679753 +1470068817259984381,-0.00957811903208,0.00703567964956,0.25053781271,-0.530036855725,0.0201734238098,0.727090039687,-0.435883056259 +1470068817338390290,-0.00956375151873,0.00708046648651,0.250586330891,-0.53938227406,0.0213258123061,0.727114789022,-0.424165127922 +1470068817418287192,-0.0095315054059,0.0071335346438,0.250537186861,-0.545773994335,0.0227263448707,0.727523453362,-0.415119121657 +1470068817490546953,-0.00952160265297,0.00720601063222,0.250545918941,-0.549900173434,0.0234537083869,0.727630115186,-0.409407056967 +1470068817568278766,-0.00950769521296,0.00727695645764,0.250592201948,-0.556179992676,0.0244063057276,0.72786212568,-0.400355934124 +1470068817645823425,-0.00952304899693,0.0073307743296,0.250629812479,-0.552690551997,0.0236268738267,0.727710634825,-0.405477689312 +1470068817722945587,-0.00957106985152,0.00739541091025,0.250590413809,-0.534388462073,0.0207045971786,0.727277016736,-0.430195806797 +1470068817799141957,-0.009570710361,0.00749723194167,0.250582426786,-0.535118026845,0.0207838207399,0.72713216582,-0.429529444358 +1470068817879986955,-0.00954380445182,0.00759518379346,0.250607311726,-0.546393846484,0.0227175102592,0.72742286063,-0.414479988763 +1470068817955151088,-0.00964188110083,0.00788557808846,0.250682651997,-0.513294003353,0.0179505969957,0.726656452052,-0.456264663194 +1470068818034062609,-0.00955258496106,0.00826983619481,0.250707089901,-0.549324054115,0.0233512304773,0.727710829938,-0.410042377805 +1470068818114235643,-0.00954588130116,0.00820862315595,0.250818252563,-0.543141854435,0.0237419605492,0.728528402744,-0.416748859225 +1470068818191453883,-0.0096157733351,0.0083385175094,0.250706493855,-0.522666505024,0.0189244731078,0.726698357976,-0.445388690201 +1470068818268305271,-0.00951833091676,0.00877212174237,0.250318109989,-0.537982796589,0.0216901761846,0.727610543005,-0.425072869681 +1470068818340864084,-0.00945435930043,0.00894217099994,0.250060200691,-0.547387499015,0.0238699700263,0.728232725059,-0.411672501639 +1470068818423471744,-0.00950825214386,0.00905982125551,0.249626860023,-0.511622084499,0.020515416347,0.728954464105,-0.454364775931 +1470068818496841974,-0.00955095328391,0.00915225036442,0.248710498214,-0.526697976139,0.0237002062531,0.730209142354,-0.434536707974 +1470068818573294419,-0.00955657102168,0.00919631216675,0.248423248529,-0.518617208931,0.0211609693161,0.728929404017,-0.446374649748 +1470068818659149292,-0.00953172426671,0.00922621693462,0.248190030456,-0.518024886104,0.0202562777225,0.728226290686,-0.448248112259 +1470068818735603179,-0.00945465266705,0.00922778248787,0.247975975275,-0.546564837796,0.0225934604262,0.727403373128,-0.414295481985 +1470068818813314265,-0.00943581294268,0.00920774322003,0.247599884868,-0.531342843319,0.0225446839994,0.728577763542,-0.431672286057 +1470068818888693018,-0.00945897307247,0.00920835323632,0.247177183628,-0.520271731265,0.022644714881,0.729817848549,-0.442911334777 +1470068818963113836,-0.00951253995299,0.00919500458986,0.246558964252,-0.531611177839,0.0234197799368,0.729590281773,-0.429580132509 +1470068819036933333,-0.00949002522975,0.00923143792897,0.246198937297,-0.529069830402,0.0223061488172,0.729058556634,-0.433660202558 +1470068819110591576,-0.00949521828443,0.0092210303992,0.245998680592,-0.516779985411,0.020148035261,0.728506784429,-0.449233089159 +1470068819184371729,-0.00944828987122,0.00919769238681,0.245798572898,-0.525677771186,0.0212023001592,0.728514947112,-0.438724646199 +1470068819259027237,-0.00939926411957,0.00922984350473,0.245665863156,-0.54175711548,0.0230561779883,0.728424954938,-0.418765716729 +1470068819337871475,-0.00937491282821,0.0092459442094,0.245442301035,-0.535199531994,0.0234887924651,0.729233661563,-0.425708825872 +1470068819411065462,-0.00934784673154,0.00930352788419,0.245142802596,-0.535649656633,0.024744411922,0.730089180091,-0.423599986475 +1470068819493290933,-0.00945568270981,0.00940287578851,0.244592025876,-0.517635351156,0.021000338448,0.728858152286,-0.447636485181 +1470068819570726270,-0.00948298722506,0.0094467997551,0.244296312332,-0.53847197026,0.0222960838183,0.728003816885,-0.423746698501 +1470068819660357330,-0.00946540664881,0.00960953067988,0.243995815516,-0.536317047565,0.0214683932553,0.727582705335,-0.427231248247 +1470068819737269349,-0.00943100638688,0.00970929209143,0.243779435754,-0.530964288005,0.0215909254829,0.728133881826,-0.432933952165 +1470068819824936452,-0.00943371094763,0.00982713047415,0.244051039219,-0.556670141331,0.0238804858904,0.727461634197,-0.400434322848 +1470068819902874315,-0.00952681247145,0.00997678004205,0.244549259543,-0.528892739681,0.0232339838481,0.729735858773,-0.432687217662 +1470068819974114468,-0.00944792665541,0.0101018864661,0.245135322213,-0.53789898823,0.0246535406757,0.729933851718,-0.421014790131 +1470068820046518704,-0.00951124541461,0.0101915029809,0.24434222281,-0.537058359036,0.023004249366,0.72871803607,-0.424274848897 +1470068820117165449,-0.0095112239942,0.0101636918262,0.244196549058,-0.536201306842,0.0211713399599,0.727291793929,-0.42788617574 +1470068820189386440,-0.00940571166575,0.0102160461247,0.241805508733,-0.530192158329,0.0216070903028,0.728116576173,-0.433907432983 +1470068820266758054,-0.00936189107597,0.010265850462,0.240852996707,-0.516323242918,0.0199768837521,0.728116496142,-0.450397159164 +1470068820342892494,-0.009376344271,0.0103051885962,0.240452304482,-0.511662881522,0.0209341594397,0.729185881759,-0.453928195295 +1470068820417102918,-0.00935313757509,0.0103536443785,0.239660128951,-0.542588159696,0.0239994578458,0.72895783688,-0.416704436061 +1470068820491641062,-0.00938720814884,0.0103794373572,0.239408656955,-0.518099037034,0.0198645083734,0.727996982274,-0.448552319056 +1470068820568105890,-0.00933903083205,0.0103701995686,0.239185079932,-0.531601574218,0.0206750102601,0.7272823562,-0.43362735684 +1470068820643011548,-0.00929461419582,0.0104012563825,0.23904876411,-0.54304530266,0.0225137209159,0.72769377182,-0.418397784511 +1470068820717388856,-0.00937346741557,0.0104813557118,0.239513799548,-0.535863997641,0.022214421282,0.72840317845,-0.426362645108 +1470068820793774869,-0.0094159943983,0.010570554994,0.239813357592,-0.527928061858,0.0226843721372,0.729508207117,-0.434275438532 +1470068820869384671,-0.00941677205265,0.0105738788843,0.239762842655,-0.521837033258,0.0217195774347,0.729311535782,-0.441949153695 +1470068820941814636,-0.00936632044613,0.0105631584302,0.239565134048,-0.532213202552,0.0230611163198,0.72941884254,-0.429145015223 +1470068821014876263,-0.00929851271212,0.0105684492737,0.239333465695,-0.544651318085,0.0250611366032,0.729635427568,-0.412745713457 +1470068821088361771,-0.00924267154187,0.0105671035126,0.238889425993,-0.549615248434,0.0269164023306,0.73036690722,-0.404676125823 +1470068821164523785,-0.00922739412636,0.0105442311615,0.238611191511,-0.562748101796,0.0280377539912,0.729721633654,-0.387343253011 +1470068821242266499,-0.00932472012937,0.010562133044,0.238253712654,-0.547608535926,0.0246984295729,0.728983962737,-0.409996659778 +1470068821315787034,-0.00933967530727,0.0106821237132,0.237856805325,-0.556265257255,0.0252544792435,0.728529789701,-0.398968069357 +1470068821389962573,-0.00935753434896,0.0108785899356,0.237486407161,-0.528972483159,0.0215766553453,0.728436931448,-0.434858824112 +1470068821461336026,-0.00925921369344,0.0109406402335,0.237210720778,-0.54946846849,0.0250792046784,0.72909855443,-0.407272308849 +1470068821532938588,-0.00923070684075,0.0110585466027,0.236785843968,-0.542358730096,0.0256193764715,0.730199099397,-0.414728743491 +1470068821606099073,-0.00931299757212,0.0111149474978,0.236393108964,-0.521746813112,0.0218103647548,0.729186504746,-0.442257405018 +1470068821677905304,-0.0092788040638,0.011158191599,0.235656052828,-0.557572552843,0.0259118407694,0.728706070565,-0.396773093274 +1470068821749212321,-0.00932110659778,0.0112000824884,0.235439658165,-0.539608511779,0.0217980270867,0.727496086024,-0.42319846981 +1470068821823398452,-0.00925041362643,0.0112141165882,0.235098540783,-0.548888051668,0.0232971126583,0.727707951125,-0.410634008756 +1470068821901044161,-0.00919674988836,0.0112641584128,0.234708204865,-0.550646444067,0.0257171624103,0.729257289095,-0.405352843206 +1470068821973943029,-0.00924546644092,0.0112905856222,0.2341991961,-0.552095352187,0.0252540815564,0.728942220427,-0.403975485317 +1470068822047293460,-0.00930775143206,0.0113296918571,0.233717724681,-0.527985833548,0.0229900206171,0.72968515609,-0.433891681767 +1470068822123259729,-0.00920538511127,0.0113554894924,0.233321994543,-0.552685973906,0.0254578863975,0.729086860991,-0.40289261522 +1470068822192194320,-0.00917331781238,0.0114032486454,0.233150392771,-0.560202506351,0.0259817817013,0.7285406174,-0.393353108157 +1470068822264103071,-0.00922062620521,0.0115512730554,0.233065664768,-0.548238493075,0.023509706898,0.728080268974,-0.410829612277 +1470068822336413327,-0.00919575337321,0.0115730203688,0.233049914241,-0.553938784476,0.0248702586888,0.728467579793,-0.402328570295 +1470068822412409013,-0.00920272711664,0.0116111170501,0.233047902584,-0.548670149156,0.0243678705893,0.728625649395,-0.409233353177 +1470068822490693322,-0.00917115341872,0.0114215258509,0.233053341508,-0.556126357485,0.0257386497739,0.728750906091,-0.398726865525 +1470068822568689444,-0.0091697415337,0.011316685006,0.232995778322,-0.558604705216,0.0260176284,0.728785632916,-0.395164987794 +1470068822645660981,-0.00917310547084,0.0113295391202,0.233026355505,-0.557290211038,0.0262630490987,0.729024682444,-0.396561326053 +1470068822719787462,-0.00918646156788,0.0113566983491,0.232987359166,-0.551553510486,0.0262893140006,0.729642681227,-0.403384623867 +1470068822795377718,-0.00916401576251,0.011302898638,0.232979014516,-0.564565321833,0.0270560439598,0.728883610858,-0.386345246755 +1470068822872191818,-0.00919738132507,0.0112521769479,0.232992112637,-0.55423095814,0.0253010077611,0.728690812217,-0.40149421445 +1470068822947267250,-0.00921804551035,0.0112179405987,0.232988446951,-0.549283693772,0.0245931343768,0.728746681709,-0.408179954672 +1470068823025562964,-0.00925892777741,0.0111593035981,0.23292350769,-0.527086583072,0.0223797855726,0.729063313883,-0.436056835164 +1470068823101324804,-0.00923675484955,0.0111058298498,0.232885539532,-0.530751760291,0.0234100103742,0.72953155341,-0.430741515229 +1470068823176238261,-0.00922209210694,0.0110418759286,0.232899859548,-0.538312412956,0.0245025094395,0.729585351327,-0.421099261716 +1470068823248452271,-0.00916907191277,0.0109673561528,0.232910990715,-0.556297310945,0.0272963069976,0.729782851453,-0.396491113626 +1470068823326975713,-0.00919895991683,0.010876359418,0.232913777232,-0.548411350476,0.0257583450901,0.729587919809,-0.40777808376 +1470068823400891843,-0.00922002177685,0.0108197117224,0.232868999243,-0.53746332286,0.0244415686583,0.729706717066,-0.421976176306 +1470068823475031403,-0.00926517043263,0.0107459845021,0.23293928802,-0.524307913395,0.0219395322128,0.728967992341,-0.439574265648 +1470068823553971381,-0.00924475863576,0.0106890434399,0.232916280627,-0.528415006319,0.0234569814783,0.729753240425,-0.433229222473 +1470068823630366995,-0.00923029240221,0.01063657552,0.232923030853,-0.537472343534,0.0243734560242,0.729580793987,-0.422186309137 +1470068823704580721,-0.00920823123306,0.0106008350849,0.232876941562,-0.539607609014,0.0258557293616,0.730537790954,-0.417695637447 +1470068823778140516,-0.00918458588421,0.0105241769925,0.232894986868,-0.550772867641,0.0262203672727,0.729643075473,-0.404453610472 +1470068823850796370,-0.00927029829472,0.010337295942,0.232886016369,-0.52273400802,0.0221782162647,0.729269527736,-0.44093450704 +1470068823934819109,-0.00922179315239,0.00998841319233,0.232687413692,-0.531648104352,0.024725745638,0.730424546115,-0.428040784359 +1470068824010087736,-0.00924312416464,0.00953376665711,0.232531368732,-0.537934948702,0.0243031188766,0.729408674533,-0.421898488851 +1470068824085443400,-0.00919905118644,0.00933029968292,0.232451677322,-0.538307015939,0.0256761204901,0.730529097136,-0.419396628105 +1470068824159740133,-0.00928217638284,0.00928443111479,0.23210093379,-0.543973389276,0.0244081196853,0.728949299366,-0.414885664257 +1470068824231784700,-0.00923189241439,0.00908692087978,0.231727004051,-0.550347519153,0.0258914330445,0.729503589777,-0.405304520527 +1470068824304674613,-0.0092092929408,0.00887782871723,0.231388702989,-0.546099328081,0.0245929182095,0.728970021663,-0.412035702047 +1470068824376483414,-0.0091993091628,0.00876979809254,0.23106867075,-0.532922366871,0.0234594321958,0.729471137816,-0.428153319528 +1470068824447675463,-0.0091953985393,0.00875128153712,0.230691328645,-0.510262672446,0.0231742435554,0.731453100411,-0.45174253889 +1470068824524029866,-0.00918651558459,0.00875594094396,0.23014447093,-0.54226794915,0.0261650853303,0.730559726731,-0.414177915048 +1470068824597264306,-0.00920174922794,0.00874137878418,0.229691132903,-0.544026205449,0.0251406264353,0.729652739489,-0.413533936266 +1470068824673544959,-0.0091900350526,0.00874667987227,0.229486882687,-0.543949232728,0.0239393934949,0.728732513435,-0.415325247867 +1470068824746343629,-0.00911741424352,0.00878784246743,0.228892073035,-0.534912779371,0.0247725398,0.730260395785,-0.424233890778 +1470068824819895855,-0.00914065446705,0.0087829940021,0.228658631444,-0.53350288974,0.0247164811466,0.730335631452,-0.425879827688 +1470068824904880827,-0.00916456803679,0.00878561940044,0.22812910378,-0.537447630033,0.0254199066482,0.730571363394,-0.420439479958 +1470068824982636520,-0.00915729720145,0.00878271367401,0.227775126696,-0.549402304303,0.0255920613565,0.72955459003,-0.406512305581 +1470068825056207596,-0.00916907470673,0.00877297669649,0.227554306388,-0.534563876525,0.0230343392063,0.72913988569,-0.426691818796 +1470068825130246312,-0.00910825747997,0.00880985800177,0.227036580443,-0.528786969289,0.0243655676894,0.730453295708,-0.431542168288 +1470068825209024594,-0.00910140015185,0.00879337452352,0.226626694202,-0.537386179033,0.0249387616273,0.729876881809,-0.421750981213 +1470068825290706586,-0.00914288684726,0.00879628863186,0.226122900844,-0.541757614663,0.0249613067313,0.729690990795,-0.416445288211 +1470068825365954357,-0.00913035217673,0.00880363490433,0.225686475635,-0.541352550841,0.0237468935369,0.728953778585,-0.418329881113 +1470068825440191571,-0.00907384138554,0.00883653387427,0.225328490138,-0.541266079415,0.0251493815558,0.729959263401,-0.416602944849 +1470068825513491646,-0.00905662309378,0.00885872263461,0.224968567491,-0.533188215771,0.0256711672196,0.731090887239,-0.424920501192 +1470068825587188736,-0.00911686290056,0.0088502895087,0.224185541272,-0.539198407176,0.0244591307292,0.729846992569,-0.419511854495 +1470068825659763418,-0.00910423789173,0.00883014313877,0.223853871226,-0.541767378653,0.0231598486913,0.728524491671,-0.418573522659 +1470068825742197907,-0.00905037578195,0.00886983890086,0.223515510559,-0.532214381457,0.0242607731864,0.730123043054,-0.427878030583 +1470068825816005020,-0.00903503224254,0.00891272630543,0.223133951426,-0.517638589555,0.0247722800824,0.731779730078,-0.442645514368 +1470068825890396952,-0.00909910537302,0.00891009625047,0.222444668412,-0.525614252042,0.0239548342724,0.730759340766,-0.434909887044 +1470068825969427276,-0.00904482416809,0.00892762187868,0.222033157945,-0.539086606557,0.0248494511657,0.730183777654,-0.419046281762 +1470068826041733160,-0.00897809676826,0.00891248881817,0.221775457263,-0.557106595178,0.026190539247,0.729147018819,-0.396599195928 +1470068826115870645,-0.00899579096586,0.00894689746201,0.221456885338,-0.538160324795,0.0252202633398,0.730228635996,-0.420135147667 +1470068826195986384,-0.00904182624072,0.00901460275054,0.220732226968,-0.514049879077,0.023301306006,0.731150091225,-0.447916638518 +1470068826270456668,-0.00902076158673,0.00898165535182,0.220382302999,-0.548637485364,0.0252889259913,0.729373200898,-0.407887378681 +1470068826343538903,-0.00898229051381,0.00900430884212,0.220044925809,-0.53815900061,0.0247601717433,0.730032393345,-0.420505087513 +1470068826419940297,-0.0089831603691,0.00903146807104,0.219681963325,-0.519377674318,0.0240632409732,0.731154936147,-0.441678900562 +1470068826496254118,-0.00887120794505,0.00890534836799,0.219209015369,-0.532058701479,0.0253134506565,0.730905717427,-0.426672707855 +1470068826570581552,-0.00882809702307,0.00884127803147,0.218953743577,-0.518997541668,0.024546124747,0.731675799588,-0.441236403529 +1470068826644371740,-0.00878744293004,0.00875877775252,0.218622788787,-0.514635074941,0.0244520212522,0.732025994755,-0.445747441159 +1470068826716722117,-0.00871481467038,0.00870518013835,0.218260720372,-0.509906191568,0.0247330444021,0.732891674102,-0.449726301596 +1470068826793123863,-0.00869086105376,0.00852464698255,0.217786476016,-0.516217988805,0.023772606911,0.731315761316,-0.445119207007 +1470068826867971422,-0.00865629315376,0.00846294965595,0.21739898622,-0.532503793664,0.0251703176346,0.731054615718,-0.425870066665 +1470068826942135977,-0.00861545559019,0.00837726239115,0.217008039355,-0.531035863467,0.0252701798347,0.73150640402,-0.426920028343 +1470068827013865271,-0.00859997328371,0.00824631936848,0.216781720519,-0.530405838066,0.024293012709,0.730576644269,-0.429345156403 +1470068827085914584,-0.00854705180973,0.00813030079007,0.216492146254,-0.534265321899,0.0242331999811,0.730277743609,-0.425050273525 +1470068827163418899,-0.00854115653783,0.00804051477462,0.216288387775,-0.529446343767,0.0239413143958,0.730422991677,-0.430808119429 +1470068827234325231,-0.00856424216181,0.00795297045261,0.216141238809,-0.525241691739,0.0230539404656,0.730021260953,-0.436644752224 +1470068827304715425,-0.00852678995579,0.00779099389911,0.216093346477,-0.538396222947,0.0256933265487,0.730817454324,-0.41877823313 +1470068827378160646,-0.00863590370864,0.00744579778984,0.215765193105,-0.524985939713,0.0241145140091,0.731003388899,-0.435249696996 +1470068827451126903,-0.00865653529763,0.0073520662263,0.215557336807,-0.529524452816,0.024087315823,0.730632538412,-0.430348404087 +1470068827528242411,-0.00867890566587,0.00743184005842,0.215448737144,-0.511196179062,0.0215808549932,0.730604770158,-0.452138698889 +1470068827600894399,-0.00862601306289,0.00758447637782,0.215369448066,-0.536973068514,0.0242619315117,0.730083377003,-0.421959174559 +1470068827674855760,-0.00861929170787,0.00784169975668,0.215297952294,-0.553636700408,0.0249205883057,0.728897381947,-0.401962653527 +1470068827754118018,-0.00863902363926,0.00811038631946,0.215017408133,-0.545079583419,0.0241552247123,0.729243999878,-0.412926096899 +1470068827830798545,-0.00862713064998,0.00822364725173,0.214849814773,-0.545356667508,0.02492619842,0.729768753675,-0.411585174656 +1470068827904506442,-0.0086555890739,0.00827350094914,0.214644417167,-0.529066054819,0.0228281277032,0.729991672917,-0.432064976244 +1470068827975295068,-0.008734584786,0.00821890681982,0.21414193511,-0.516409548692,0.0211741381202,0.729861602809,-0.447409068571 +1470068828048075828,-0.00871421769261,0.0081163328141,0.213890701532,-0.519769760988,0.0217635783231,0.730080947354,-0.443111219144 +1470068828120620130,-0.00870795734227,0.00803017430007,0.213464975357,-0.517401431462,0.0208697622186,0.729458349333,-0.446934814413 +1470068828202424050,-0.00874702539295,0.00795817375183,0.213267236948,-0.519841954087,0.0202144087975,0.728643421649,-0.445459857378 +1470068828276273173,-0.00876442156732,0.00790839828551,0.212753355503,-0.526054323965,0.0213888919189,0.729107923678,-0.437276799259 +1470068828350396666,-0.00868599303067,0.0079051759094,0.21236756444,-0.530464600242,0.0233464546314,0.730258478696,-0.429866031734 +1470068828421562232,-0.00865610223264,0.00777699938044,0.212027817965,-0.519412232056,0.0214327343679,0.729718103404,-0.444143063272 +1470068828495727472,-0.0085473889485,0.00771990837529,0.21166241169,-0.534795549624,0.0234561860952,0.729901441926,-0.425073420141 +1470068828580279847,-0.00851552467793,0.00769117893651,0.211515069008,-0.529731369526,0.0229830625339,0.730074634929,-0.431100315948 +1470068828657298309,-0.00852046255022,0.00762041285634,0.211379855871,-0.515051179423,0.0214506674049,0.730081443078,-0.448601424335 +1470068828731476949,-0.00843158271164,0.007501156535,0.210792526603,-0.522846904152,0.022460450181,0.730232382935,-0.439189378184 +1470068828804392411,-0.0084086433053,0.00751670496538,0.210451006889,-0.519920885699,0.0232880975644,0.731050582819,-0.44125387532 +1470068828876416444,-0.00844231247902,0.0074578714557,0.210552275181,-0.512150886904,0.0217721333127,0.730515866578,-0.451191768467 +1470068828948854311,-0.00843613501638,0.00744963204488,0.210440099239,-0.512240412581,0.0221194351349,0.730816483576,-0.450586015809 +1470068829026081277,-0.00843372289091,0.00746559584513,0.210457712412,-0.512115451714,0.0218626714223,0.730589376521,-0.451108579644 +1470068829099988583,-0.00834823586047,0.00753077678382,0.210391968489,-0.532788401268,0.0240449546938,0.730418023366,-0.426670681874 +1470068829172202470,-0.00829147361219,0.00758269522339,0.210220336914,-0.541648383928,0.0246665169829,0.729841292853,-0.416341540535 +1470068829245252199,-0.0083293793723,0.00753594422713,0.209756940603,-0.524944222989,0.0230186814291,0.730065917124,-0.436929582094 +1470068829318315513,-0.00834030658007,0.0075478698127,0.2093282938,-0.512544911215,0.021111630408,0.729933954951,-0.451717206291 +1470068829403279392,-0.00833211187273,0.00752571923658,0.209237501025,-0.521998465721,0.0218290812507,0.729582613741,-0.441305226258 +1470068829474300829,-0.00828540232033,0.0075556426309,0.209126055241,-0.526342829403,0.02280325653,0.729984843774,-0.4353910487 +1470068829547431606,-0.00829292368144,0.00750752864406,0.209048986435,-0.521885416001,0.0218701405273,0.729680452456,-0.441275137325 +1470068829624356628,-0.00830869749188,0.00747084291652,0.209024652839,-0.52043023277,0.0215698945597,0.729614514563,-0.443113724236 +1470068829701013669,-0.00830212142318,0.007470627781,0.208965018392,-0.524996851099,0.0220313299595,0.729404875002,-0.438019925528 +1470068829775535492,-0.00829834770411,0.00749295856804,0.20890621841,-0.524166935528,0.0227875040501,0.730131315804,-0.4377647942 +1470068829853485783,-0.00827984232455,0.00756177864969,0.208892911673,-0.528952642233,0.0239681541036,0.730485119099,-0.431307454885 +1470068829928129591,-0.00825337693095,0.00757713057101,0.20887221396,-0.544914780779,0.0248185779011,0.729566320632,-0.41253473027 +1470068830002110381,-0.00827212352306,0.00761711550876,0.208798527718,-0.523737749439,0.0237240882723,0.730808295715,-0.437098584261 +1470068830073932937,-0.00823742058128,0.00759311299771,0.208763375878,-0.538402358512,0.0238907885567,0.729508453362,-0.421152641028 +1470068830146118230,-0.00827117171139,0.0075466982089,0.208438366652,-0.539889084106,0.0243587674603,0.729776735991,-0.418750931841 +1470068830222843646,-0.00827387999743,0.00754473451525,0.208265811205,-0.531043913107,0.0237836430827,0.730171298672,-0.429274475445 +1470068830292865419,-0.00824968516827,0.00753507576883,0.208232954144,-0.533862852322,0.0245872001931,0.730419358364,-0.425292235321 +1470068830366090866,-0.00827340316027,0.00754545023665,0.208206519485,-0.521324972973,0.0233112000519,0.73076296148,-0.440070851836 +1470068830438175978,-0.00826531648636,0.0075545059517,0.208219870925,-0.537082205086,0.0235397655352,0.72924877419,-0.423302267607 +1470068830507281940,-0.008341120556,0.00761287892237,0.208109796047,-0.512889269496,0.0206613626101,0.72939443015,-0.452218388168 +1470068830580242594,-0.00827985443175,0.00766896922141,0.207932814956,-0.534263442841,0.0228088399722,0.729077398,-0.427186701794 +1470068830649894740,-0.00827854499221,0.00769833754748,0.207653596997,-0.536930509815,0.0227716131804,0.72877067487,-0.424358792431 +1470068830728761369,-0.00826428644359,0.00775281665847,0.207181304693,-0.520304959497,0.0213573078897,0.729300607617,-0.443787379555 +1470068830806698972,-0.00825976766646,0.0077740624547,0.206579893827,-0.537567406078,0.0237192016783,0.729528987968,-0.422192064242 +1470068830879787565,-0.00826638843864,0.00777186732739,0.206153362989,-0.541949953345,0.0235844975572,0.728883204122,-0.417688034655 +1470068830954210965,-0.00826788041741,0.0078154373914,0.205791354179,-0.526438981665,0.0214505379767,0.728611660345,-0.437637888456 +1470068831025600880,-0.00822024513036,0.00783899612725,0.205350190401,-0.532171649747,0.023113834466,0.729378796602,-0.429261758055 +1470068831094612436,-0.00821988191456,0.00785997044295,0.204994559288,-0.533033962851,0.0238527344455,0.729916614196,-0.427232463452 +1470068831166254997,-0.00826511625201,0.00786049757153,0.204682320356,-0.53401000643,0.0224064419735,0.728826581007,-0.427952192667 +1470068831240952022,-0.0082281595096,0.0078932326287,0.204344600439,-0.542346500732,0.022701233772,0.72816468322,-0.418474755799 +1470068831313556669,-0.00819952134043,0.00788755528629,0.20425388217,-0.548263610797,0.023132908381,0.72789740679,-0.41114139516 +1470068831384998838,-0.00815266277641,0.00792279373854,0.203916653991,-0.535155472669,0.0237857168333,0.729681428925,-0.424979848968 +1470068831456257142,-0.00820537749678,0.00788476224989,0.203359678388,-0.536700384969,0.0227652187502,0.72866447695,-0.424832345309 +1470068831528336744,-0.00824664253742,0.00789377372712,0.202995121479,-0.530309204463,0.0214757931136,0.728362269858,-0.433358214205 +1470068831604426026,-0.00818068627268,0.00790690630674,0.202724188566,-0.535357857496,0.0231847319222,0.729210227766,-0.425566535743 +1470068831680042111,-0.00815147068352,0.00789400096983,0.20224006474,-0.537955702436,0.0238891843992,0.729410775268,-0.421892035962 +1470068831755781797,-0.00818191282451,0.00789627153426,0.201811552048,-0.536973263055,0.0233535463638,0.729316415488,-0.423334256513 +1470068831829377689,-0.00819111894816,0.00789357721806,0.201433852315,-0.542210287749,0.022007437064,0.727752390291,-0.419404500451 +1470068831903828344,-0.00814063474536,0.00790229532868,0.201284751296,-0.552247554977,0.0231259251016,0.727645326038,-0.406226672076 +1470068831978152218,-0.00810642912984,0.00795590877533,0.201175764203,-0.541279908306,0.0231454011848,0.728749353626,-0.418813479794 +1470068832069672010,-0.00806616712362,0.00799444038421,0.201073125005,-0.544021895857,0.0238604136336,0.729096611483,-0.414594969354 +1470068832149140476,-0.00801974534988,0.00795744452626,0.199134364724,-0.550217723688,0.021544541489,0.726695768175,-0.410742680748 diff --git a/MobileRobot/docking_data/Pose.txt~ b/MobileRobot/docking_data/Pose.txt~ index f71e0aa5b2ff0a404672d166575f2ef7253d9423..ecd1fb57d6d93bf981c12daee10a470559a167e0 100644 --- a/MobileRobot/docking_data/Pose.txt~ +++ b/MobileRobot/docking_data/Pose.txt~ @@ -1,602 +1,756 @@ %time,field.position.x,field.position.y,field.position.z,field.orientation.x,field.orientation.y,field.orientation.z,field.orientation.w -1469728545664104680,-0.0341554023325,0.151372939348,1.22129714489,-0.16015885773,0.0308020691355,0.831249724173,-0.531436044026 -1469728545787654041,-0.0341571085155,0.151377722621,1.22133457661,-0.159462804983,0.0306152343435,0.831241132231,-0.531669541483 -1469728545869068533,-0.0341548547149,0.151397168636,1.22127962112,-0.161201569567,0.0309189948184,0.830864398287,-0.53171648591 -1469728545959741602,-0.03415678069,0.151351034641,1.22133290768,-0.158777721595,0.030592127769,0.831629815214,-0.531267924207 -1469728546040220513,-0.0341554023325,0.151372939348,1.22129714489,-0.16015885773,0.0308020691355,0.831249724173,-0.531436044026 -1469728546121163270,-0.03415678069,0.151351034641,1.22133290768,-0.158777721595,0.030592127769,0.831629815214,-0.531267924207 -1469728546204712805,-0.034086432308,0.151245817542,1.22004067898,-0.163835992422,0.0313638719342,0.83135326876,-0.530118682605 -1469728546284498224,-0.0341554023325,0.151372939348,1.22129714489,-0.16015885773,0.0308020691355,0.831249724173,-0.531436044026 -1469728546363770265,-0.0339776463807,0.151360750198,1.21831309795,-0.144202571651,0.0242859378014,0.829151667343,-0.539558452901 -1469728546442496138,-0.0337448492646,0.150740370154,1.21415197849,-0.16344023406,0.0295470018575,0.831491393258,-0.530128595257 -1469728546520294556,-0.0344309806824,0.14332999289,1.22630667686,-0.143578193915,0.0293371176062,0.832336087479,-0.53454772775 -1469728546597629019,-0.0337872132659,0.13619685173,1.21480429173,-0.163885965664,0.0312449787842,0.834859020113,-0.524571785455 -1469728546670418007,-0.0334831513464,0.129642173648,1.20992255211,-0.149359373608,0.0268993966686,0.834009924437,-0.530467384403 -1469728546744414833,-0.0333093367517,0.126238271594,1.20507276058,-0.0930159790249,0.0118100734858,0.820416793539,-0.564025562089 -1469728546820290554,-0.0326294861734,0.124873399734,1.19589483738,-0.126637557542,0.0254481531751,0.828929781678,-0.54423408343 -1469728546898553591,-0.0324710123241,0.123563691974,1.19179022312,-0.174808001795,0.0359034433571,0.824013860981,-0.537730659508 -1469728546972909988,-0.0320718511939,0.121890865266,1.18133926392,-0.143078558536,0.0251642226772,0.827809909972,-0.541872716545 -1469728547056436158,-0.0313142687082,0.120028272271,1.17268037796,-0.121208372348,0.0195451119795,0.820508400443,-0.558294262798 -1469728547140663606,-0.0310018956661,0.119379073381,1.16918134689,-0.0640989701969,0.0111823395141,0.821165542832,-0.566968631026 -1469728547221852578,-0.030815474689,0.117583878338,1.16512548923,-0.137153368068,0.0243890035608,0.815346331809,-0.561964847066 -1469728547298207475,-0.030136525631,0.115892440081,1.15123522282,-0.172820113238,0.0314888429692,0.824987939741,-0.537155992716 -1469728547380749464,-0.0296835172921,0.114505641162,1.14291679859,-0.217767388371,0.0406621009184,0.820509569618,-0.526961103192 -1469728547463112132,-0.029388030991,0.112343229353,1.12473011017,-0.0403660210398,0.0105616190582,0.825410335918,-0.562989177434 -1469728547544919763,-0.0292732715607,0.111305214465,1.1144438982,-0.105038888871,0.0216775547086,0.82852487212,-0.549584799394 -1469728547624445932,-0.0286571215838,0.10989896208,1.09894037247,-0.206693654564,0.0406932346246,0.82698581173,-0.521264099106 -1469728547706374743,-0.028488913551,0.109922870994,1.09674406052,-0.174929054759,0.0303727311076,0.823377046923,-0.539006086799 -1469728547789354670,-0.0281212963164,0.109578900039,1.09129989147,-0.162406649442,0.0293938260498,0.824926722476,-0.540607052999 -1469728547870669596,-0.0277276989073,0.109731927514,1.08591139317,-0.139824171654,0.0261636131268,0.822107163831,-0.551275319189 -1469728547954540987,-0.0277450028807,0.110143087804,1.08603990078,-0.0970489593898,0.0148695365767,0.816190187766,-0.569380341914 -1469728548032973300,-0.0270392503589,0.109301738441,1.072889328,-0.187206823845,0.0307247027947,0.816749533841,-0.544912650536 -1469728548114949646,-0.0267432779074,0.109226867557,1.06760942936,-0.122090841864,0.0164957728036,0.812262605219,-0.570132595082 -1469728548196792483,-0.0266003981233,0.107827983797,1.04734253883,-0.123373268627,0.0262596012285,0.820781644169,-0.557141779557 -1469728548280263450,-0.0265960693359,0.108112499118,1.03967154026,-0.12311331486,0.0238810479229,0.822084834172,-0.555382150126 -1469728548363019744,-0.0265299174935,0.108890347183,1.0382078886,-0.0911541112405,0.013040505781,0.812791163164,-0.575231604048 -1469728548445114827,-0.0262343920767,0.108530320227,1.03255915642,-0.157593889922,0.0248618701203,0.812886206883,-0.56014468482 -1469728548529581223,-0.0260158143938,0.108364887536,1.0273360014,-0.162216530782,0.0241533631388,0.809686007854,-0.563481127346 -1469728548611440204,-0.0258204955608,0.106828540564,1.00499629974,-0.180399727487,0.0318997408307,0.815194234632,-0.549451275983 -1469728548689247172,-0.0257270783186,0.106808267534,0.998494148254,-0.17428915496,0.0279243105096,0.813514494551,-0.554109818088 -1469728548768533385,-0.0253646355122,0.107098549604,0.993866443634,-0.172692782949,0.0312453858713,0.813109554699,-0.555025927896 -1469728548861790585,-0.0252907443792,0.107571825385,0.992538928986,-0.131715949948,0.0194318751929,0.808829317726,-0.572772594965 -1469728548945126697,-0.0248150769621,0.107301674783,0.983258008957,-0.159186212465,0.0206712247315,0.803169227521,-0.573717388784 -1469728549024064884,-0.0244729146361,0.106734417379,0.970463454723,-0.188965028307,0.0335942080367,0.809044578892,-0.555527242023 -1469728549102463980,-0.0243559479713,0.106452554464,0.960338532925,-0.0658641903262,0.0139817209271,0.813328174733,-0.577895924971 -1469728549187735045,-0.0242838487029,0.106521248817,0.952534377575,-0.1092532782,0.0145607001529,0.806683332051,-0.58061494039 -1469728549271007011,-0.0235581584275,0.106417611241,0.940876960754,-0.208445670703,0.0322915586999,0.808202596107,-0.549832903025 -1469728549349748451,-0.0232777204365,0.106505058706,0.936982154846,-0.223623004144,0.0365797164907,0.807561990851,-0.544516581283 -1469728549426061027,-0.0231738053262,0.106506511569,0.929731488228,-0.0785439618414,0.0140340236521,0.805233392834,-0.587565379599 -1469728549506588188,-0.0231099352241,0.105798088014,0.919297575951,-0.0746449196488,0.0121341200025,0.805208730546,-0.58814947025 -1469728549585783185,-0.0228513404727,0.104886643589,0.907961308956,-0.19524523782,0.027792821792,0.8050960948,-0.559398904453 -1469728549665445183,-0.0225841589272,0.104990750551,0.904116213322,-0.168492123538,0.020141692658,0.797385516408,-0.579120932747 -1469728549748511590,-0.0221900865436,0.104959845543,0.897943615913,-0.208750434162,0.0330946210758,0.800215141867,-0.561234112487 -1469728549828185032,-0.0223313160241,0.104352384806,0.88358259201,-0.137058095464,0.0232178220397,0.805951613356,-0.575428543032 -1469728549905845063,-0.0221849046648,0.103904619813,0.877004444599,-0.190164297393,0.0276239762029,0.803238531632,-0.563810533103 -1469728549984642530,-0.0220157224685,0.104036211967,0.874425828457,-0.213513127332,0.0297328165134,0.800352888064,-0.559431281434 -1469728550064556126,-0.0218911077827,0.103463515639,0.86389118433,-0.130236846801,0.0184519046438,0.798512450801,-0.58743149121 -1469728550142149003,-0.0219001043588,0.102501176298,0.852794468403,-0.179570623973,0.0241951620751,0.799013390557,-0.573364270641 -1469728550224360516,-0.0216487795115,0.102699749172,0.848851621151,-0.19018731225,0.028022251754,0.795219285461,-0.575038979284 -1469728550305794855,-0.0216422695667,0.102180317044,0.840419828892,-0.136613739525,0.0212379819306,0.795676796618,-0.589732201614 -1469728550385852070,-0.0214938912541,0.100826919079,0.828047931194,-0.218793632155,0.031046451373,0.799156915227,-0.559029238261 -1469728550462993293,-0.0212447885424,0.100751049817,0.824105381966,-0.198813749763,0.0233294067731,0.790919411748,-0.578251948379 -1469728550539073210,-0.0211540143937,0.100126974285,0.817225217819,-0.103429845882,0.0153157354251,0.79262906386,-0.600672008965 -1469728550619320646,-0.0213160142303,0.0992908999324,0.807234764099,-0.12042629259,0.0149375210245,0.791333815538,-0.599220469364 -1469728550694136549,-0.0212067849934,0.0990763902664,0.804767787457,-0.194002127052,0.0258148669563,0.788302284301,-0.583332046016 -1469728550774316975,-0.0211201515049,0.0978795588017,0.792828023434,-0.17633188955,0.0263096192908,0.795207900302,-0.579533660763 -1469728550852729299,-0.0207188054919,0.0967426970601,0.781037569046,-0.269544923835,0.0374347242812,0.79254029882,-0.545732581214 -1469728550932293337,-0.0205601323396,0.0964536294341,0.777322411537,-0.184595020503,0.0265763039393,0.788865502572,-0.585584833587 -1469728551024801206,-0.0205344278365,0.0956719368696,0.768364071846,-0.168590539909,0.0249208092065,0.791561339542,-0.58684480816 -1469728551105999535,-0.0201769918203,0.0947148650885,0.757627189159,-0.251746206523,0.0323459726684,0.79021111288,-0.557802816984 -1469728551183392044,-0.0198902655393,0.0944275856018,0.754029273987,-0.180212975295,0.0235038102106,0.786571039668,-0.590149857236 -1469728551263298725,-0.0196808408946,0.0936816707253,0.742587685585,-0.180460226247,0.024586878689,0.788979948031,-0.586805107122 -1469728551352987752,-0.0194810945541,0.0928086265922,0.733340680599,-0.258429390606,0.0331318893946,0.789317884696,-0.555962053449 -1469728551434631654,-0.0192573722452,0.0929072275758,0.730200350285,-0.19889454146,0.0246036981368,0.781379578431,-0.59100048547 -1469728551512088911,-0.0193074271083,0.0921417921782,0.721105754375,-0.152513728006,0.0200267064684,0.784729142637,-0.600448720952 -1469728551601262622,-0.0190629921854,0.0915390327573,0.713230848312,-0.279685222062,0.0338811783024,0.783898062742,-0.553292029172 -1469728551679549507,-0.0189683418721,0.0909485593438,0.702746808529,-0.184357939069,0.0239988966959,0.784256867282,-0.591926827726 -1469728551760774477,-0.0187495592982,0.0903183296323,0.694805979729,-0.243926010198,0.0286184550261,0.780899933298,-0.574348656963 -1469728551843101922,-0.0188104845583,0.0894269198179,0.685720384121,-0.187663046272,0.0224377722989,0.784120136779,-0.591130052134 -1469728551924142038,-0.0186597350985,0.0890748947859,0.6806448102,-0.26599077308,0.0284918083296,0.778883501143,-0.567254455374 -1469728551999224312,-0.0186669975519,0.0881968140602,0.670199155807,-0.142981575735,0.0173116540781,0.781378716888,-0.607209911339 -1469728552075635151,-0.0185036063194,0.0879110619426,0.665487289429,-0.232871746538,0.0250997927168,0.77884071593,-0.58184868246 -1469728552156835918,-0.0183969289064,0.0864757820964,0.651938796043,-0.270883620661,0.0318420583726,0.782043933727,-0.560370799647 -1469728552239726245,-0.0182633046061,0.0862031802535,0.648669958115,-0.270863667488,0.0317760244725,0.777809044904,-0.566247514404 -1469728552323999881,-0.0182378105819,0.0852081030607,0.638354480267,-0.27614786389,0.0305364562823,0.776400532291,-0.565696115919 -1469728552406141254,-0.0183616690338,0.0844068303704,0.630788683891,-0.18248949345,0.0194230492483,0.777747205375,-0.601190164981 -1469728552486758357,-0.0182073898613,0.0838931128383,0.625621855259,-0.279045261591,0.0302782719323,0.776640448083,-0.563956188577 -1469728552572872258,-0.0180252082646,0.0823789834976,0.613323390484,-0.274330718512,0.0307521966293,0.777151694916,-0.565537091951 -1469728552649111438,-0.0179800223559,0.0818421915174,0.608562290668,-0.198214008656,0.0202378055397,0.775018134994,-0.599707035502 -1469728552726926650,-0.0176819246262,0.0807114616036,0.598965644836,-0.305771841353,0.0329591514262,0.772488679506,-0.555588440672 -1469728552808373678,-0.0177708920091,0.0796422734857,0.591135442257,-0.194796352022,0.0193993198388,0.773786036017,-0.60243938956 -1469728552887780150,-0.0176358893514,0.0784788504243,0.581279575825,-0.234680717574,0.0262663496991,0.775244076357,-0.585859762866 -1469728552966539568,-0.0174070764333,0.0776783525944,0.5758497715,-0.265525497266,0.0246126454661,0.769525043719,-0.580277205371 -1469728553042766496,-0.0172941833735,0.0767218843102,0.568393111229,-0.255224274585,0.0283624083706,0.774374319154,-0.578273773647 -1469728553119611780,-0.0170258656144,0.075581394136,0.560030341148,-0.212231211772,0.020978338597,0.772634412178,-0.597958098179 -1469728553198841151,-0.0169349759817,0.074436224997,0.55226790905,-0.303276441826,0.029836721574,0.769943226682,-0.560643021508 -1469728553273454972,-0.0168727654964,0.0737000033259,0.545992612839,-0.193099294347,0.0196899088436,0.774207525528,-0.602434791018 -1469728553352837400,-0.0167215634137,0.0724551007152,0.537482559681,-0.203673843737,0.0186544531335,0.769037994412,-0.605598497278 -1469728553427729155,-0.0164542607963,0.0713810399175,0.529881834984,-0.338164709132,0.0344415281156,0.769184022194,-0.541123230549 -1469728553503931562,-0.016490874812,0.070664294064,0.52342826128,-0.236213784776,0.0217423173506,0.769200158533,-0.593347651576 -1469728553582911263,-0.016292097047,0.0692931637168,0.512522876263,-0.29718804276,0.0279998157614,0.768184459691,-0.566381420464 -1469728553658546967,-0.016266990453,0.0689319521189,0.507849395275,-0.202829790554,0.0181125937115,0.767667001573,-0.607634252415 -1469728553748200917,-0.0159358158708,0.0682527124882,0.501150012016,-0.327421944898,0.0312498263994,0.766531110673,-0.551587141547 -1469728553825804057,-0.0157709885389,0.0672309026122,0.491743296385,-0.301233813919,0.0252821844927,0.763562380137,-0.57060624965 -1469728553906036366,-0.0157403219491,0.0667457133532,0.485142558813,-0.289587130242,0.02480887232,0.764878481159,-0.574878006983 -1469728553981136493,-0.0155354877934,0.0659176707268,0.477436810732,-0.285114059655,0.0268863376049,0.766986215155,-0.574211845575 -1469728554062301400,-0.0152650624514,0.0650161579251,0.468031406403,-0.29446478732,0.0263540745337,0.766108442969,-0.570678372987 -1469728554141065761,-0.0150867849588,0.0646819919348,0.462418407202,-0.262926055922,0.0241888895112,0.766820746556,-0.585039083646 -1469728554219554561,-0.0148827582598,0.0635524913669,0.452725768089,-0.256950047844,0.020991726087,0.761720738856,-0.594405195423 -1469728554304985472,-0.0146930022165,0.0631626471877,0.446403414011,-0.280909018228,0.0242647854343,0.763518715595,-0.580982370302 -1469728554386022668,-0.0145329870284,0.0627441555262,0.439928144217,-0.279575264702,0.0242524636972,0.764644768916,-0.580144694659 -1469728554461274971,-0.014346756041,0.0615724623203,0.429778248072,-0.305195482033,0.0254069381399,0.761728398487,-0.570946628136 -1469728554540142655,-0.0142206931487,0.0608428418636,0.423120290041,-0.30926341017,0.0268390859201,0.761677370483,-0.568756002071 -1469728554618476607,-0.0139645123854,0.0600725822151,0.414738982916,-0.335021804602,0.0267458042945,0.759322949856,-0.557201678224 -1469728554698842602,-0.0138104772195,0.0591670610011,0.408245563507,-0.358947878861,0.0273250380076,0.755936495651,-0.546781288178 -1469728554775295998,-0.0136719541624,0.0585683099926,0.401545494795,-0.356861294917,0.0302268959096,0.759578608475,-0.542933410744 -1469728554855115572,-0.0135502060875,0.0573086179793,0.391306489706,-0.376328097476,0.0307781418535,0.757366072738,-0.532753696279 -1469728554933257913,-0.0134572908282,0.0567774176598,0.385667294264,-0.342945114763,0.0249769967838,0.755782445205,-0.557277034707 -1469728555009002049,-0.0131975132972,0.0560351796448,0.379217177629,-0.37776980253,0.0284822741806,0.754220910773,-0.536311060959 -1469728555089952800,-0.0130063928664,0.0553126558661,0.369309067726,-0.345269797666,0.0265405399098,0.757849828981,-0.552944846503 -1469728555168825942,-0.0127784442157,0.0545968972147,0.363243430853,-0.377927631635,0.0272740719653,0.753118070494,-0.537810377494 -1469728555242903032,-0.0126332920045,0.0536581687629,0.353358626366,-0.357118430436,0.0239643501871,0.751086232565,-0.554762658994 -1469728555322023406,-0.0124671617523,0.0533013045788,0.347098231316,-0.300664069566,0.0218130613332,0.756280874948,-0.580658717161 -1469728555403406025,-0.0122932586819,0.052490785718,0.340362757444,-0.376600599011,0.0266944997048,0.753006685946,-0.538925155686 -1469728555479774115,-0.0119994562119,0.0510446876287,0.327992856503,-0.368559704309,0.0241466572582,0.749589883754,-0.54926832193 -1469728555560238068,-0.0118641266599,0.0506319031119,0.321935236454,-0.326686284244,0.0226379070269,0.752618200272,-0.571252519882 -1469728555635215169,-0.0116323782131,0.0498632155359,0.314920663834,-0.360411270636,0.0250837695191,0.751397327199,-0.552156297785 -1469728555709783070,-0.0115396622568,0.0487123914063,0.307605057955,-0.364305598794,0.024537988527,0.750948269846,-0.550232690616 -1469728555793924872,-0.0113866468892,0.0480641983449,0.302312791348,-0.340927515825,0.0226573959365,0.750740387674,-0.565370623288 -1469728555871214929,-0.0111927464604,0.0473816953599,0.296009063721,-0.352133346431,0.0235895803946,0.75085790555,-0.558263417843 -1469728555948996841,-0.0111456131563,0.0462342649698,0.286963611841,-0.360551910742,0.0228399653372,0.748056650449,-0.556679354173 -1469728556028836925,-0.0111067248508,0.0460006594658,0.283310323954,-0.336507707142,0.0221245427803,0.751096985439,-0.567561790561 -1469728556104114245,-0.0109964003786,0.0459594093263,0.280847281218,-0.355780029085,0.023492662755,0.750516940846,-0.55641080795 -1469728556182108756,-0.0109587861225,0.0459470078349,0.278706222773,-0.345536576887,0.0225817546135,0.750605741075,-0.562748220661 -1469728556258078997,-0.0107729192823,0.045955400914,0.277868509293,-0.38176237565,0.0260375195095,0.75008168282,-0.539404305891 -1469728556332131748,-0.0106988502666,0.0454715974629,0.277119785547,-0.370805263753,0.0248923619117,0.749462717224,-0.547895484725 -1469728556411791136,-0.0106563102454,0.0445647090673,0.275941967964,-0.379172234291,0.0255536788015,0.749087625697,-0.542626165302 -1469728556487496725,-0.0106594376266,0.044073600322,0.275673806667,-0.383039587083,0.0256501286338,0.74895842932,-0.540077787712 -1469728556562091430,-0.0106629692018,0.0436041280627,0.275408893824,-0.386127505143,0.0258823054966,0.74907587746,-0.537699717168 -1469728556653318671,-0.0106426719576,0.042706746608,0.275079518557,-0.409107510147,0.0269544249394,0.747361669006,-0.522833663624 -1469728556727426677,-0.0106616346166,0.042258925736,0.274994462729,-0.395943195549,0.0249713292674,0.746607059177,-0.534025577851 -1469728556801298262,-0.0106379305944,0.0418072640896,0.274861305952,-0.408414738672,0.0259842272291,0.746213523837,-0.525059613771 -1469728556878748455,-0.0106297107413,0.0413575358689,0.274845808744,-0.41616585384,0.0263550081323,0.74559761531,-0.519803416388 -1469728556953806301,-0.0106112007052,0.0408705547452,0.274837017059,-0.41325987673,0.0266259305483,0.746334504542,-0.521049077763 -1469728557027859258,-0.010631384328,0.0403836034238,0.274949461222,-0.398787177258,0.025493684287,0.746999215987,-0.531329493469 -1469728557109702509,-0.0106164189056,0.0399445071816,0.274900019169,-0.413723119755,0.0263033995382,0.745716415087,-0.521582533856 -1469728557184801336,-0.0105906687677,0.0394989177585,0.274803221226,-0.425086113039,0.0270933567394,0.745305163051,-0.512921008003 -1469728557271722119,-0.0105887753889,0.0390441343188,0.274752855301,-0.427994134186,0.0272093871033,0.744795680955,-0.51123386428 -1469728557351279919,-0.0105809923261,0.0385589376092,0.274886339903,-0.426294884222,0.0269387801697,0.744748985609,-0.512733773261 -1469728557433011550,-0.0106004662812,0.0381275415421,0.274815052748,-0.428759031375,0.0265314440193,0.743883109019,-0.511956732164 -1469728557507962760,-0.0105722509325,0.0376741066575,0.274760276079,-0.436534406362,0.027066004241,0.743605547684,-0.505723178162 -1469728557583783548,-0.010571484454,0.0372361727059,0.274717897177,-0.435865449346,0.0258666570016,0.742283540607,-0.50829850626 -1469728557660730823,-0.0105735138059,0.0367180556059,0.274813115597,-0.430824848168,0.0270978709669,0.744295723794,-0.509587608887 -1469728557738834084,-0.0105735911056,0.0362801142037,0.274827212095,-0.431529233731,0.0260213236388,0.743079815906,-0.510820710568 -1469728557816892305,-0.0105448300019,0.0356562882662,0.274818569422,-0.456626541238,0.0275672891407,0.742093971083,-0.489927325721 -1469728557896492072,-0.0105718560517,0.0352881103754,0.274727165699,-0.430268605147,0.025767856716,0.743280184564,-0.51160483991 -1469728557972918091,-0.0105762407184,0.0348565205932,0.274879217148,-0.428769789813,0.0250265792608,0.742284346597,-0.514338494059 -1469728558047988723,-0.0105291977525,0.0341484360397,0.274723142385,-0.46867453886,0.0269275677593,0.739830412356,-0.481944025456 -1469728558126001233,-0.010550852865,0.0338472910225,0.274803370237,-0.447904373658,0.0256665379673,0.741040280993,-0.499582028132 -1469728558210785749,-0.0105427075177,0.0334332883358,0.274816006422,-0.451575902738,0.0260757417311,0.740881348785,-0.496481708406 -1469728558286868518,-0.0105264438316,0.0327852629125,0.274820685387,-0.47115171774,0.0257661050762,0.738568519332,-0.481527474762 -1469728558368916250,-0.0105312364176,0.0324565991759,0.274935781956,-0.4612203414,0.025995089022,0.739726358503,-0.489290268205 -1469728558456624639,-0.0104860495776,0.0320405699313,0.274760425091,-0.470656185329,0.0276713616903,0.740214418526,-0.47937424374 -1469728558537646463,-0.0104996440932,0.0314593277872,0.274793952703,-0.473725797976,0.025864554564,0.738197472907,-0.479561658333 -1469728558615826648,-0.0105053707957,0.0311456527561,0.274825721979,-0.467962978474,0.0267538637319,0.739335961501,-0.483401714502 -1469728558694894628,-0.0105142258108,0.0307308379561,0.274780482054,-0.467985264418,0.0256611939064,0.737900572159,-0.485627471445 -1469728558772775528,-0.010514578782,0.0302347540855,0.274746596813,-0.465470927708,0.0251452269452,0.737955277974,-0.487982111077 -1469728558850781783,-0.0104766553268,0.0297208987176,0.274701923132,-0.473753456922,0.0266370815337,0.738637924565,-0.478813266667 -1469728558926709603,-0.0104092620313,0.0291879363358,0.272839426994,-0.423983667884,0.0225133186241,0.739892181689,-0.521814679104 -1469728559014991242,-0.0103725837544,0.0288247317076,0.271451205015,-0.481787953653,0.0259598371837,0.737476092474,-0.472583820711 -1469728559087804426,-0.0103623634204,0.028361607343,0.271422147751,-0.453961035134,0.0247093621621,0.739482632263,-0.496461743323 -1469728559165753345,-0.0103797120973,0.0279786195606,0.271954774857,-0.44817632984,0.0256225682775,0.740498535219,-0.500143360151 -1469728559246464757,-0.0103888502344,0.0276520252228,0.272072196007,-0.420388035084,0.0237960627535,0.741079018023,-0.522981392022 -1469728559323255099,-0.0103759979829,0.0271166078746,0.272198557854,-0.427922592132,0.0238426238076,0.740512732699,-0.517643388004 -1469728559404818769,-0.0104051558301,0.0268031992018,0.272203862667,-0.405676813862,0.0219493709708,0.740266949776,-0.535676573017 -1469728559485875699,-0.0103347906843,0.026485575363,0.272299617529,-0.440921559853,0.0250072748014,0.740445614111,-0.506658767621 -1469728559562461820,-0.0103244744241,0.0259932130575,0.272354155779,-0.442941907982,0.0247626194582,0.739906922057,-0.505694597086 -1469728559644060371,-0.0103588420898,0.02569238469,0.272356182337,-0.428705609193,0.022967482573,0.739541776715,-0.518422564983 -1469728559735772466,-0.0103491554037,0.0252555198967,0.272367060184,-0.428569480183,0.0229666211843,0.73949398442,-0.518603299232 -1469728559813264343,-0.0103618213907,0.0250520482659,0.272982060909,-0.455264105879,0.0245167150489,0.738519220594,-0.496712074943 -1469728559889572316,-0.0103436773643,0.0247575622052,0.273548126221,-0.494074483686,0.0273777473535,0.73689370844,-0.460574126479 -1469728559966786071,-0.0104317786172,0.0245629735291,0.274722784758,-0.46709087084,0.0252511387735,0.737949183045,-0.486435506118 -1469728560042468279,-0.0105118490756,0.0243948511779,0.274766802788,-0.431440933945,0.0213608810683,0.737900200821,-0.518561208445 -1469728560121922009,-0.0104436390102,0.0241085253656,0.274652481079,-0.483573811525,0.026558411789,0.737367144127,-0.470893527596 -1469728560206772018,-0.0104898642749,0.0239944830537,0.274668216705,-0.466177541981,0.0237933566767,0.736877161347,-0.48900350164 -1469728560291519616,-0.010478053242,0.0237242989242,0.274560660124,-0.472105366641,0.0242449366403,0.736335327421,-0.484085727354 -1469728560367226852,-0.0104581033811,0.0236222557724,0.274539470673,-0.496501468372,0.0268839775969,0.736283702317,-0.458966069939 -1469728560442137775,-0.0104621546343,0.0235871840268,0.27457728982,-0.496490070655,0.0268335303606,0.736301981331,-0.458952027643 -1469728560520592229,-0.0105011835694,0.0234238803387,0.274605065584,-0.472749188235,0.0234732666429,0.735831681076,-0.484261239314 -1469728560599432096,-0.0105243455619,0.0233770571649,0.274543970823,-0.463837577354,0.0222308107319,0.735479347551,-0.493386888978 -1469728560675837770,-0.0105048827827,0.023241167888,0.274522662163,-0.482527305586,0.023744912471,0.734846103048,-0.47603023363 -1469728560754785717,-0.0104622645304,0.0231581665576,0.274526357651,-0.501302188344,0.026699662326,0.73567228622,-0.454719178484 -1469728560831143401,-0.0104585699737,0.0231137704104,0.274586290121,-0.503234435956,0.0268454563706,0.735559271163,-0.452754881307 -1469728560918108482,-0.0105004608631,0.0229502823204,0.274581938982,-0.487205166877,0.024232592333,0.735132108117,-0.470770316027 -1469728560996393419,-0.0105138532817,0.0227691009641,0.274536818266,-0.486181046572,0.0235200739871,0.734223523646,-0.473276466135 -1469728561071887044,-0.0104557843879,0.0226776488125,0.274527132511,-0.509559464516,0.0272644641936,0.735153950946,-0.446267262437 -1469728561147032957,-0.0104778110981,0.0224861223251,0.274568468332,-0.505085414027,0.0257968742285,0.734503546146,-0.452468547543 -1469728561220638254,-0.0105333141983,0.0223230812699,0.274511426687,-0.471311375621,0.0218037237118,0.73412454258,-0.488314796851 -1469728561296178238,-0.0104931183159,0.0222279448062,0.274519979954,-0.495645212007,0.0245473966439,0.734284897792,-0.463205071223 -1469728561372629341,-0.0104508958757,0.0220745336264,0.274530142546,-0.499054418555,0.0261609753201,0.735425219119,-0.457613415203 -1469728561452576397,-0.0105142733082,0.0219085514545,0.274598479271,-0.479248085158,0.0226965445961,0.734158716371,-0.480434302389 -1469728561530920249,-0.0104841161519,0.0217759069055,0.274606585503,-0.492815990876,0.0243501549097,0.734373175167,-0.466085301944 -1469728561609471772,-0.0103990864009,0.021655805409,0.274653822184,-0.513591081697,0.0277239039748,0.735034888496,-0.441791012407 -1469728561683635021,-0.0104889050126,0.0214145313948,0.27469176054,-0.477738242113,0.0223752482093,0.734007337323,-0.482181240869 -1469728561757146576,-0.0104291951284,0.0212793666869,0.274620234966,-0.510313284792,0.0268005319634,0.73450481071,-0.446502817343 -1469728561834773986,-0.0104730725288,0.0209737438709,0.274734884501,-0.48037052561,0.0228223890001,0.734031468276,-0.479500886617 -1469728561911447400,-0.0104680452496,0.0208397042006,0.27469420433,-0.483138148677,0.0229734808854,0.734065618194,-0.476652301635 -1469728561988029509,-0.0103798452765,0.0206587892026,0.274760693312,-0.522896835403,0.0274644523841,0.733832147092,-0.432799010252 -1469728562066667871,-0.0104650780559,0.0204534623772,0.274719029665,-0.470385163034,0.0221369883343,0.734378201346,-0.488811220751 -1469728562146385703,-0.0103516597301,0.0202404521406,0.274849146605,-0.519852848142,0.0272070727029,0.733876190214,-0.436392631594 -1469728562222223284,-0.010376246646,0.020078536123,0.274854034185,-0.513970049523,0.0256240166161,0.733192181722,-0.444530564334 -1469728562296387767,-0.0103960316628,0.0199237279594,0.274915397167,-0.482592528401,0.0226307887333,0.733630815546,-0.477889239692 -1469728562383340989,-0.010327517055,0.0197755116969,0.274889498949,-0.525017513403,0.0273181229794,0.733419823943,-0.430935833535 -1469728562462965507,-0.0103645706549,0.0195366907865,0.2749158144,-0.508604650144,0.024713248432,0.732800718101,-0.451346510737 -1469728562540840291,-0.0103959925473,0.0194750502706,0.274933904409,-0.486045757591,0.0223350587746,0.73300813722,-0.475352224614 -1469728562620863705,-0.0103222923353,0.0192892830819,0.274859338999,-0.518434801802,0.0259783164528,0.733019110773,-0.43958328744 -1469728562699767559,-0.0103214560077,0.019126707688,0.274968147278,-0.523531838868,0.0258310674739,0.732246920864,-0.434812162353 -1469728562775540553,-0.0103618390858,0.0190401282161,0.274934768677,-0.498461232819,0.0236592995503,0.732894587955,-0.46243070818 -1469728562848768236,-0.0103636160493,0.0189093407243,0.275020420551,-0.516002928521,0.0233509038187,0.731182750548,-0.445609131807 -1469728562929036326,-0.0102684041485,0.0187493283302,0.274910539389,-0.546369227478,0.0286496950385,0.732119832386,-0.405783702564 -1469728563011133775,-0.0103408610448,0.0185846015811,0.274966478348,-0.517908186476,0.0249882612636,0.732182108134,-0.441651511612 -1469728563087762592,-0.0103663671762,0.0184433665127,0.27501514554,-0.505711659163,0.0222692614568,0.731301216482,-0.457119599835 -1469728563165596584,-0.0103183751926,0.0183489378542,0.275088578463,-0.528935866666,0.0247407386427,0.731106315967,-0.430230519091 -1469728563242855878,-0.0103292251006,0.0181481260806,0.274948388338,-0.513578491381,0.0248554614725,0.732228404977,-0.446610459092 -1469728563315980539,-0.0103354398161,0.0180042963475,0.274938106537,-0.517462396295,0.0239770837544,0.731529050552,-0.443309165339 -1469728563392112781,-0.0102998334914,0.0178693514317,0.275020122528,-0.53944899323,0.0260002817877,0.730915566387,-0.41723039662 -1469728563470778822,-0.0102764498442,0.0176835097373,0.274940371513,-0.547607368781,0.0277560543095,0.731144025598,-0.405936183332 -1469728563550184809,-0.0103052128106,0.0175479725003,0.275019407272,-0.517974224858,0.0242950021641,0.731771247398,-0.442293224834 -1469728563630758245,-0.01033452712,0.017402946949,0.275033771992,-0.521585284047,0.0230122238917,0.73037238146,-0.440426399547 -1469728563712564976,-0.0102881425992,0.0172657854855,0.274937957525,-0.529352669385,0.0259702689653,0.731773742932,-0.428507276135 -1469728563794808850,-0.0102913742885,0.017076684162,0.275016903877,-0.53119027137,0.0249677032279,0.730996431486,-0.427618669555 -1469728563868526689,-0.0103185111657,0.0169830210507,0.275044828653,-0.529661557025,0.0237846502831,0.730277272709,-0.430799292462 -1469728563948307634,-0.0103035578504,0.0169064830989,0.274859309196,-0.532588506877,0.0251558106346,0.731019369495,-0.425825491202 -1469728564027711678,-0.0102836908773,0.016632290557,0.275147259235,-0.544683778964,0.0251918468763,0.729687309998,-0.412603176688 -1469728564107425851,-0.0102953696623,0.0165793672204,0.27504837513,-0.536768646371,0.0248146183857,0.730332837755,-0.421755380623 -1469728564183349146,-0.0102914385498,0.0164309367537,0.274989664555,-0.540593455477,0.0251644207742,0.730210304311,-0.417035225492 -1469728564263926175,-0.0102685196325,0.0162835270166,0.275020003319,-0.54734925715,0.0263626916105,0.730198273065,-0.408073867334 -1469728564337387387,-0.0102608250454,0.0162035040557,0.275067955256,-0.537136170687,0.025972150717,0.730985515685,-0.420083750442 -1469728564418791490,-0.0102854724973,0.0160003565252,0.275091618299,-0.550595988509,0.0247414916251,0.729011765702,-0.405923344361 -1469728564492556448,-0.0102370921522,0.0158977713436,0.274918287992,-0.557924633093,0.0268038640904,0.729510892614,-0.394734739055 -1469728564567434109,-0.0102341873571,0.0157701708376,0.275052666664,-0.560806213989,0.0271153435384,0.729284942756,-0.391030204415 -1469728564649403900,-0.010266372934,0.0156036112458,0.275144934654,-0.549289392899,0.0252753355607,0.729425299249,-0.406916518559 -1469728564730717026,-0.0103228436783,0.0154936630279,0.275069802999,-0.527422255269,0.0221354798669,0.72905833938,-0.435671576946 -1469728564808528171,-0.0102214673534,0.0153408329934,0.275002300739,-0.566773797896,0.0275752160377,0.728933317635,-0.382966431846 -1469728564887284503,-0.0102338325232,0.0151576586068,0.275114387274,-0.5551761274,0.0267589756624,0.729947331038,-0.397794317075 -1469728564963572082,-0.0102683082223,0.015039736405,0.275112688541,-0.561075364589,0.0248825216781,0.728010817232,-0.393160966221 -1469728565042737549,-0.01024346333,0.0149220405146,0.275138169527,-0.560550977468,0.0265575431741,0.728978040152,-0.392005504472 -1469728565120255153,-0.0102349026129,0.0147074433044,0.275087803602,-0.551390408846,0.0264038884096,0.72995128792,-0.403041646699 -1469728565198427093,-0.0102939382195,0.0145321339369,0.275014281273,-0.522204261149,0.0224280450305,0.729820900424,-0.440637204215 -1469728565273644975,-0.0102333202958,0.0143580902368,0.275079190731,-0.545167124457,0.0259448480397,0.729993333827,-0.411375016061 -1469728565351497296,-0.0102440537885,0.0141191128641,0.275109231472,-0.544179332351,0.0247105245626,0.729479421562,-0.41366413639 -1469728565428306173,-0.0102127334103,0.0139391729608,0.275055110455,-0.543807844482,0.0270745989109,0.730929319744,-0.411439331994 -1469728565511327121,-0.0102437501773,0.0136781893671,0.27517464757,-0.53882026577,0.0248019791079,0.730083980844,-0.419565208213 -1469728565596706173,-0.0102203059942,0.0134872449562,0.275114864111,-0.54367738523,0.0270984329105,0.731032228454,-0.411427340713 -1469728565679205267,-0.0102243497968,0.0132962232456,0.275209307671,-0.548470937154,0.0266780528179,0.730355273353,-0.406262338003 -1469728565760877090,-0.010250562802,0.0131337959319,0.275065869093,-0.530930294052,0.0235288278428,0.729933253328,-0.429833529176 -1469728565851981221,-0.0102297645062,0.0128540582955,0.275206506252,-0.543927325829,0.0261563693894,0.730413842362,-0.412255415297 -1469728565934777846,-0.0102528613061,0.0127264037728,0.275172829628,-0.527521021267,0.0240747951801,0.730652909679,-0.432768184985 -1469728566014235125,-0.0101991035044,0.0124435257167,0.275100111961,-0.541580051839,0.0271744131025,0.731358550781,-0.413602791241 -1469728566095931922,-0.0102318096906,0.0123098632321,0.275205492973,-0.538543826547,0.0260565552461,0.731051953623,-0.418156243432 -1469728566175272158,-0.0102307545021,0.0120984148234,0.27524471283,-0.53471777364,0.0263486787474,0.731475544278,-0.42228684304 -1469728566254199282,-0.0102713722736,0.0118722245097,0.275372684002,-0.52291590764,0.0248098592323,0.731601934352,-0.436694440168 -1469728566329252883,-0.0102757988498,0.0117993960157,0.275284141302,-0.515524396089,0.0235806217299,0.731498281924,-0.445633049557 -1469728566408226603,-0.0102987540886,0.0116575760767,0.275426089764,-0.525505436757,0.0231930880804,0.730063460656,-0.436249309476 -1469728566488165962,-0.0102417431772,0.0114839226007,0.275304675102,-0.528693727172,0.0265353311654,0.732301492837,-0.428384573295 -1469728566566364610,-0.0102503160015,0.0113810189068,0.275307118893,-0.53158975024,0.0255864179324,0.731408726274,-0.426378878214 -1469728566645944457,-0.0102757839486,0.0112834647298,0.275252848864,-0.522796093205,0.0236928463167,0.730859265073,-0.438141105832 -1469728566727005624,-0.0102377450094,0.0112347342074,0.275250166655,-0.54077925288,0.0262010381401,0.730869884551,-0.41557251727 -1469728566812554068,-0.0102275107056,0.011067292653,0.275232344866,-0.532624755191,0.0263454609123,0.731658484678,-0.424608818381 -1469728566889650535,-0.0102408081293,0.0110078696162,0.275289833546,-0.533356394958,0.0260532613078,0.731369566748,-0.424206011707 -1469728566967736564,-0.0102415774018,0.0109479138628,0.275317728519,-0.536405028415,0.0264838232983,0.731522243742,-0.42005173432 -1469728567046548036,-0.0102409077808,0.0108736306429,0.275291621685,-0.541833836098,0.0257136292878,0.730424232166,-0.415012462938 -1469728567126268860,-0.0103146219626,0.0107277417555,0.27526640892,-0.505887511947,0.0213507564943,0.730403292681,-0.458402661962 -1469728567202428183,-0.0102513059974,0.0105826593935,0.275212109089,-0.521870261123,0.0248085007857,0.731560163488,-0.438013351442 -1469728567277753795,-0.0102126915008,0.0104238186032,0.27515733242,-0.536202858803,0.0263900527247,0.731513880862,-0.420330229029 -1469728567358639082,-0.0102785751224,0.0102922832593,0.27515566349,-0.517453613708,0.0227609651386,0.730490953868,-0.445091746096 -1469728567436700013,-0.010263685137,0.0102839851752,0.27507776022,-0.518041952858,0.0229639620773,0.730684720507,-0.444077730519 -1469728567514070469,-0.0102411685511,0.0103416508064,0.27510496974,-0.523911828407,0.0242950908098,0.731203611441,-0.436196541978 -1469728567589946302,-0.0102192275226,0.0103400200605,0.275072991848,-0.536435221962,0.0254246334673,0.730765456428,-0.421393745022 -1469728567669652509,-0.0102752642706,0.0102554736659,0.275020182133,-0.506904123495,0.0220148875722,0.730926929778,-0.45640922168 -1469728567744832305,-0.0102305719629,0.00989540014416,0.275152206421,-0.532800776975,0.0255275350851,0.73122207217,-0.425189320397 -1469728567824005964,-0.0102789131925,0.00984461326152,0.275237113237,-0.521826156847,0.023347667219,0.730701460178,-0.439576756165 -1469728567899805776,-0.0102363852784,0.00990973226726,0.275206059217,-0.541885515649,0.0261878116435,0.730819780685,-0.414218221004 -1469728567980368620,-0.0102351643145,0.00996007118374,0.275228589773,-0.546602706817,0.0269516406238,0.730868274762,-0.407836554167 -1469728568054698648,-0.0102415308356,0.0100260274485,0.275192379951,-0.552039395689,0.0270414014497,0.730250614327,-0.401566069894 -1469728568134047363,-0.0102872429416,0.0101175215095,0.27520558238,-0.533351617454,0.0242383029915,0.730062227625,-0.426565001638 -1469728568210618866,-0.0103003093973,0.0102672642097,0.275186389685,-0.532999724649,0.0234176778504,0.7296221348,-0.42780187739 -1469728568284842299,-0.0102609321475,0.0103235980496,0.275202214718,-0.561736342049,0.0262627288542,0.72885605622,-0.390552685826 -1469728568364557691,-0.0102447196841,0.0104259354994,0.275219559669,-0.555925521723,0.0273208497842,0.730152401779,-0.396330487902 -1469728568447912725,-0.0103098526597,0.0105886189267,0.27515438199,-0.517345648012,0.0232953373204,0.730902599457,-0.444513439447 -1469728568536061045,-0.0103521784768,0.0106911826879,0.275217860937,-0.509970153476,0.0204821980252,0.729382236375,-0.45553537227 -1469728568615641242,-0.0102910138667,0.0107794813812,0.275193095207,-0.542362912268,0.0246276643519,0.729619145539,-0.415802659932 -1469728568692823219,-0.0102354828268,0.0109692718834,0.275119900703,-0.548201683584,0.026228738878,0.730126977175,-0.407064570522 -1469728568771250220,-0.010215042159,0.0112469848245,0.274904429913,-0.562339462803,0.0265932938532,0.728988067749,-0.389414332525 -1469728568847355446,-0.0103046894073,0.0114629697055,0.27460193634,-0.51288636226,0.0195117535946,0.728633559378,-0.453497527035 -1469728568921414585,-0.0103838033974,0.0118651269004,0.273416608572,-0.497171257645,0.020456414499,0.730560518384,-0.467636188352 -1469728568994192298,-0.0102776400745,0.0119749009609,0.273201227188,-0.537989117981,0.0257689975544,0.730879063718,-0.419189052717 -1469728569070717502,-0.0102566815913,0.012013765052,0.272990554571,-0.541277279211,0.0256965781146,0.730421096172,-0.415744651379 -1469728569147659531,-0.010248712264,0.0119958482683,0.272978544235,-0.54971268287,0.0258647762911,0.729551829645,-0.406080173734 -1469728569221781858,-0.0102242091671,0.0120226405561,0.272817403078,-0.543244912227,0.025934358114,0.730437517382,-0.413126382127 -1469728569301391614,-0.0102811912075,0.0121321175247,0.272641867399,-0.534471820794,0.0216544060607,0.727902432091,-0.428986024051 -1469728569378237016,-0.0102908760309,0.0121227400377,0.272661596537,-0.532167005793,0.0212211384099,0.727745052341,-0.432128545716 -1469728569457750106,-0.0102945426479,0.0121179372072,0.272742033005,-0.54240964082,0.0222878752604,0.727722382361,-0.419183929049 -1469728569548797458,-0.0102900918573,0.0118622528389,0.272878110409,-0.550253138534,0.0258545661201,0.729453997288,-0.40552421726 -1469728569626638823,-0.010286773555,0.0115604065359,0.27312874794,-0.537589092467,0.0260777858505,0.731140009984,-0.419228103239 -1469728569706545311,-0.0102969668806,0.0115781808272,0.273186922073,-0.530581626584,0.0256970671884,0.731571258932,-0.427347974576 -1469728569784115156,-0.0103113697842,0.011500639841,0.27324834466,-0.535749989951,0.0254345260969,0.730812503345,-0.422182564899 -1469728569859639346,-0.0102999117225,0.0115346321836,0.273213148117,-0.530292248917,0.025885440736,0.731829938434,-0.427252871153 -1469728569937214790,-0.0103409523144,0.0116583649069,0.273291021585,-0.527219888261,0.0241479770575,0.730617599223,-0.43319047581 -1469728570014368094,-0.0103312768042,0.0119340084493,0.273315757513,-0.536825728456,0.0250049903542,0.730467728242,-0.4214377602 -1469728570094702977,-0.0103157209232,0.0119588850066,0.273310601711,-0.536084192351,0.0251819385496,0.730725413871,-0.421924137973 -1469728570172267395,-0.0103100528941,0.0120018012822,0.27334934473,-0.541934058197,0.0259249456021,0.730525480777,-0.414690120087 -1469728570255523174,-0.0103238327429,0.0119602596387,0.273341655731,-0.542272640514,0.0258807988847,0.730579303617,-0.414155102256 -1469728570336484498,-0.0103813912719,0.0118647571653,0.273343116045,-0.521951506144,0.0225466690678,0.72989536221,-0.440807251724 -1469728570419400750,-0.0103929443285,0.0117832990363,0.273313134909,-0.512980261195,0.0221502675393,0.73027432933,-0.450621816154 -1469728570497082785,-0.0103372996673,0.011712201871,0.273301780224,-0.530632701164,0.0253095647007,0.731055171378,-0.428190026498 -1469728570574841542,-0.0103245340288,0.0116234766319,0.273362696171,-0.533893689184,0.026150664211,0.731496718972,-0.423303935186 -1469728570652854434,-0.0103459563106,0.0116319404915,0.273438602686,-0.534256606203,0.0257892133277,0.731247315885,-0.423299135619 -1469728570729776756,-0.0103599606082,0.0116444053128,0.273363441229,-0.53378431123,0.0241555298047,0.729903815653,-0.426299471452 -1469728570805675659,-0.0103607345372,0.0117495171726,0.273316770792,-0.534724479176,0.0235456022233,0.729349631619,-0.426103802898 -1469728570884770102,-0.0103690940887,0.0118819717318,0.27328556776,-0.519695470836,0.0230536130991,0.730539359154,-0.442376980915 -1469728570961283338,-0.0103468541056,0.0119072543457,0.273317307234,-0.535840039431,0.0243492654789,0.729997778557,-0.423539618826 -1469728571040519125,-0.0103310672566,0.0119185717776,0.273286163807,-0.544765827349,0.025618269183,0.73008693102,-0.411760817453 -1469728571122155227,-0.0103498622775,0.0119079379365,0.273320764303,-0.530789315297,0.0241275285768,0.730376383335,-0.429221276031 -1469728571206442116,-0.0103541528806,0.0118891233578,0.273343294859,-0.536267807317,0.0237360269905,0.729396142622,-0.424069224286 -1469728571284673505,-0.0103921089321,0.0118046877906,0.273280918598,-0.52319750318,0.0224514239365,0.72966512269,-0.439714810939 -1469728571361593535,-0.0103590376675,0.0116405589506,0.273418158293,-0.529253962707,0.0250910124104,0.731174596738,-0.429702679931 -1469728571438203436,-0.0103483498096,0.0116791334003,0.273334473372,-0.531788120714,0.0251571842353,0.731019178289,-0.426824872427 -1469728571519006500,-0.0103654619306,0.0117162680253,0.273326843977,-0.52995686521,0.0241579755533,0.730296291573,-0.430382898996 -1469728571595327404,-0.0103978496045,0.0117578990757,0.273342907429,-0.523110001778,0.0221844161302,0.72942680065,-0.440227577753 -1469728571674255158,-0.0104068210348,0.0117576224729,0.273348033428,-0.52409095124,0.0220738330041,0.729235938895,-0.439381799975 -1469728571751632410,-0.0104152848944,0.0118179256096,0.273349553347,-0.516159753235,0.0213390516746,0.729455969706,-0.448350022053 -1469728571826244139,-0.0104060284793,0.0117540294304,0.273305892944,-0.516457297442,0.0219466477226,0.729816610395,-0.447390120325 -1469728571907644299,-0.0103652905673,0.0116791091859,0.273381888866,-0.53068537122,0.0245108811374,0.730531368053,-0.429064300274 -1469728571987556380,-0.0103807700798,0.0117267714813,0.273322939873,-0.526910545054,0.0233706144455,0.729981387776,-0.434679497321 -1469728572065479563,-0.0104271918535,0.0117656225339,0.273382693529,-0.518922927348,0.0215865041788,0.729409426883,-0.445213326714 -1469728572145909911,-0.0104357684031,0.0117749609053,0.273351579905,-0.513618947897,0.0207168082995,0.729077926282,-0.451897961517 -1469728572221104757,-0.010331149213,0.0115482164547,0.273411780596,-0.556310325664,0.0267575552398,0.729517245085,-0.396998040198 -1469728572301450487,-0.010342198424,0.0114688212052,0.273381918669,-0.542252930244,0.0252071327114,0.730060869615,-0.415135504094 -1469728572377843784,-0.0103413853794,0.0114941857755,0.273406416178,-0.546278882554,0.0257784141495,0.730043863971,-0.409818023662 -1469728572456854397,-0.0104163754731,0.0112742949277,0.273257881403,-0.509451377771,0.0198301275649,0.728668756703,-0.45728317565 -1469728572533090432,-0.0103783402592,0.0112167708576,0.273288905621,-0.524675459263,0.0221067546893,0.729147888412,-0.438828338497 -1469728572615159594,-0.0103659294546,0.011179311201,0.27332136035,-0.534753070496,0.022531510013,0.728477177113,-0.42761254317 -1469728572694727607,-0.0103405416012,0.011172734201,0.273282706738,-0.527529193068,0.0233890078773,0.729841937208,-0.434162010618 -1469728572782750214,-0.0103198271245,0.0111417938024,0.273275375366,-0.538240344392,0.0245358859961,0.729777015764,-0.420857255169 -1469728572865833137,-0.0104060359299,0.0113032385707,0.273238360882,-0.48945767394,0.0185149675109,0.72932326313,-0.477677672973 -1469728572940457073,-0.0102869616821,0.0115291597322,0.273267298937,-0.544512147412,0.0260684358667,0.730356570263,-0.411589890846 -1469728573021936519,-0.010284374468,0.0119655039161,0.273248821497,-0.552137292235,0.0262264600421,0.729756501506,-0.402382941769 -1469728573098056841,-0.0102998549119,0.0124128330499,0.27324655652,-0.550445080463,0.0258275694338,0.729620143358,-0.404966167052 -1469728573179197196,-0.0103254653513,0.0125398216769,0.273232132196,-0.549198823839,0.0240875847521,0.728350784356,-0.409030041784 -1469728573260790930,-0.010345810093,0.0127631286159,0.273207336664,-0.539285648758,0.0230658401045,0.728613866643,-0.421616875136 -1469728573343550439,-0.010391802527,0.0127487387508,0.27329275012,-0.52733034885,0.0215046201672,0.728371721569,-0.436960970467 -1469728573419885678,-0.0103583782911,0.0122860316187,0.273261398077,-0.54311195284,0.0236747999028,0.728476055635,-0.416883133382 -1469728573495850373,-0.0103039061651,0.0117040742189,0.273121803999,-0.547402503292,0.0244372736165,0.728476307659,-0.41118802053 -1469728573574225910,-0.0102909551933,0.0116092693061,0.273251771927,-0.535393735151,0.0251611180729,0.73046395807,-0.423252728827 -1469728573651922881,-0.0103112468496,0.0116390660405,0.27321049571,-0.529844119745,0.023825104472,0.729973218772,-0.431087778814 -1469728573736048110,-0.0103094009683,0.0118678007275,0.273296862841,-0.561253295356,0.0247619037724,0.727634137383,-0.393611672448 -1469728573814188025,-0.0103264758363,0.0123418029398,0.273321270943,-0.552101863467,0.0244500483354,0.728506022608,-0.404802053499 -1469728573891005757,-0.010308271274,0.0130394278094,0.273222059011,-0.548962655657,0.0251459962906,0.729042645427,-0.408049632658 -1469728573970858127,-0.0103876618668,0.0131428558379,0.273191452026,-0.508927937182,0.019520188926,0.728524709873,-0.458108135797 -1469728574053428628,-0.0103313410655,0.0130646713078,0.273255765438,-0.552208837429,0.0241022741616,0.727827786031,-0.405895545832 -1469728574128427772,-0.0103133916855,0.0130256386474,0.273233234882,-0.554393504302,0.0243386339104,0.727753365273,-0.403026689713 -1469728574210317319,-0.0103179560974,0.0129848578945,0.273302912712,-0.551254449393,0.0241881217999,0.728013804845,-0.406853003852 -1469728574287938137,-0.0103310840204,0.0128278434277,0.273329377174,-0.553741000465,0.0241208684523,0.727873946507,-0.403718473823 -1469728574366775636,-0.0103210425004,0.0128437839448,0.273289144039,-0.552155656102,0.0249861296807,0.728805166401,-0.404156967261 -1469728574442848202,-0.0103054931387,0.0128684425727,0.273265689611,-0.55324999863,0.0253186249703,0.728899525856,-0.402466007822 -1469728574522504561,-0.010311236605,0.012822679244,0.273221611977,-0.553910064201,0.0247198854291,0.728329646722,-0.402626990833 -1469728574598978822,-0.0103584108874,0.0127444071695,0.273257881403,-0.54362982824,0.0221107332226,0.727256017543,-0.418421331042 -1469728574679194397,-0.0103776780888,0.0126941800117,0.273194521666,-0.529561574559,0.0201731073582,0.726888505597,-0.436795930523 -1469728574757723523,-0.0104074412957,0.0126702049747,0.273203790188,-0.509683500543,0.0185164685739,0.727320332521,-0.459222172339 -1469728574835251022,-0.0103436633945,0.0126142390072,0.273214071989,-0.540610958115,0.0228524339858,0.728050852235,-0.420903213088 -1469728574912263711,-0.0102908741683,0.0124687235802,0.273278832436,-0.56149788988,0.0254887820135,0.728038292352,-0.392467433707 -1469728574989425299,-0.0102661466226,0.0123931681737,0.273170977831,-0.562185783211,0.0260707047378,0.728428409821,-0.390716668797 -1469728575065661876,-0.0103442426771,0.0122673483565,0.273279219866,-0.552993376207,0.0222061799227,0.72649622142,-0.40731861203 -1469728575147823507,-0.0103054773062,0.0121504859999,0.273156642914,-0.553182804435,0.0237644752204,0.727521953898,-0.405136817868 -1469728575223233481,-0.0102886874229,0.0120457839221,0.273214131594,-0.558637762644,0.0257217157283,0.72848378972,-0.395693835691 -1469728575301925593,-0.0102723659948,0.0119184963405,0.273217260838,-0.564243748668,0.0254092853005,0.727604580509,-0.38932625744 -1469728575376744999,-0.0103619443253,0.0117545211688,0.273161709309,-0.531878018592,0.0206117900697,0.727069497894,-0.43364832835 -1469728575455486643,-0.0103231808171,0.0116525022313,0.273236006498,-0.548095365036,0.023921979366,0.728140789196,-0.410889523884 -1469728575532731584,-0.0102938087657,0.0115365739912,0.273278981447,-0.560085387972,0.0248823909762,0.727652865222,-0.395229721218 -1469728575617758999,-0.010306533426,0.0114323403686,0.273294866085,-0.557954738793,0.0246166918433,0.727759080525,-0.398054328772 -1469728575697393366,-0.0103348717093,0.0113658448681,0.273218512535,-0.537979700514,0.0230511312627,0.728638005624,-0.423241236108 -1469728575772743063,-0.0103717101738,0.0113083813339,0.273218035698,-0.523226905971,0.0206493233816,0.728024528244,-0.442478809195 -1469728575852103553,-0.0104173747823,0.0112394858152,0.273161381483,-0.48868552481,0.0173784107621,0.728078603005,-0.480401911451 -1469728575929973665,-0.0103571070358,0.0111738462001,0.273205518723,-0.525612701179,0.0209492758594,0.727982258371,-0.439697905041 -1469728576013537576,-0.0103043606505,0.0111048230901,0.273198157549,-0.550455344484,0.0238385730652,0.727952943774,-0.40806267633 -1469728576093571749,-0.0102522168308,0.0110280551016,0.273118883371,-0.557179713839,0.0262205952884,0.729022971051,-0.396722515809 -1469728576171979043,-0.0102567775175,0.0109738726169,0.273063331842,-0.548842793836,0.0256882501013,0.729529440197,-0.407306392469 -1469728576248146132,-0.0103270886466,0.0108484849334,0.273115068674,-0.534780637187,0.0221218266832,0.728176034186,-0.42811208592 -1469728576329635964,-0.0102812312543,0.0107331778854,0.273071318865,-0.552364832587,0.024846536695,0.728312138772,-0.404768044506 -1469728576407767035,-0.0102897984907,0.0106212748215,0.273254662752,-0.558219521698,0.0255825450656,0.728451064175,-0.396352805068 -1469728576487466849,-0.0102767357603,0.0104977795854,0.2731949687,-0.563326366853,0.02566799575,0.727961915759,-0.389969239309 -1469728576574210670,-0.0103161977604,0.0104138283059,0.273214161396,-0.55431927524,0.0235124766475,0.727240349528,-0.404102435724 -1469728576651057735,-0.0103566246107,0.0103692878038,0.273187249899,-0.533249942653,0.0220212447857,0.7282783035,-0.429849131777 -1469728576740593917,-0.0103930858895,0.0102300746366,0.273193985224,-0.515691771705,0.018933905142,0.727179984196,-0.452672922116 -1469728576822996978,-0.0103263640776,0.00995549466461,0.273180514574,-0.552015461917,0.0245115562963,0.728185166972,-0.405492880351 -1469728576900978893,-0.0103468801826,0.00946777127683,0.27321985364,-0.536299539414,0.0227110732905,0.728316989101,-0.42593588081 -1469728576981906873,-0.0103364596143,0.00924667157233,0.272986382246,-0.528607627405,0.0201390518228,0.727220851789,-0.437399391361 -1469728577060927389,-0.0102687506005,0.00922278966755,0.272550702095,-0.528385657384,0.0208549951515,0.727848286239,-0.436589668301 -1469728577137931987,-0.0101519776508,0.00921638403088,0.272036999464,-0.555866611404,0.0240563972966,0.727778632908,-0.400963666133 -1469728577216186479,-0.0100483549759,0.009193232283,0.271505892277,-0.595530873535,0.0277022618336,0.726008736705,-0.342763588475 -1469728577295426891,-0.0100525263697,0.00915211718529,0.271138072014,-0.615046933227,0.0261571411939,0.723086228127,-0.313335890994 -1469728577373701870,-0.0101275956258,0.00919979345053,0.27059456706,-0.584505506994,0.0217662020506,0.723606325737,-0.366433391075 -1469728577451466673,-0.0101687395945,0.00924863480031,0.269731104374,-0.536931862028,0.0213440414177,0.727306464188,-0.426935492301 -1469728577533666887,-0.0101549616084,0.00922442879528,0.269666165113,-0.54672828355,0.0218875016395,0.726880962574,-0.415033959436 -1469728577609604130,-0.0101631321013,0.00923085585237,0.269688040018,-0.544666610378,0.0217819207022,0.726967510021,-0.417590793534 -1469728577688490730,-0.0101419696584,0.00928770005703,0.269739180803,-0.553486175156,0.0233098318124,0.727181530732,-0.405359996812 -1469728577773961492,-0.0101189948618,0.00930746085942,0.269679605961,-0.561712900408,0.0245255000492,0.727214600972,-0.393746163785 -1469728577849713565,-0.0101134702563,0.00944971572608,0.269697338343,-0.564763425008,0.0247171432285,0.727135824693,-0.389493041083 -1469728577941012383,-0.0101322922856,0.00950269401073,0.269612938166,-0.549959420053,0.0229577093283,0.727418765696,-0.40973103274 -1469728578016353049,-0.0101497555152,0.0096487114206,0.269497215748,-0.527227759744,0.0205980254081,0.727839586861,-0.43801386565 -1469728578094792409,-0.0100628454238,0.00937405228615,0.269344270229,-0.550974830838,0.0247849009896,0.72847179963,-0.406375788661 -1469728578169994705,-0.0100280344486,0.00917035713792,0.269064486027,-0.559268593771,0.0254579878877,0.728407486266,-0.394959573659 -1469728578246840345,-0.0100131221116,0.00927007663995,0.269015878439,-0.579411170441,0.0268606476904,0.727259288972,-0.366953849658 -1469728578326747720,-0.0100757777691,0.0097042247653,0.269025802612,-0.606511882706,0.0259520083225,0.723892167534,-0.327795605804 -1469728578400033145,-0.0100875431672,0.00997473858297,0.268567681313,-0.606474476219,0.0269199786159,0.724458886065,-0.326532305977 -1469728578480996235,-0.0102721238509,0.0101871481165,0.26758441329,-0.50639331951,0.0181894551281,0.727642460499,-0.462354192538 -1469728578561984846,-0.0101083172485,0.0102450903505,0.267153352499,-0.547587189906,0.0242477236924,0.728764252717,-0.410442421429 -1469728578644032891,-0.0100590772927,0.0102089429274,0.266892820597,-0.570436575811,0.0255434536716,0.72721413603,-0.380932074405 -1469728578731285342,-0.0100191412494,0.00991544686258,0.26615434885,-0.619097290712,0.0255989141558,0.722363207232,-0.307009180751 -1469728578808179010,-0.0101011861116,0.0100187342614,0.26535397768,-0.569222335825,0.0253276898736,0.727276248886,-0.382640429555 -1469728578889891490,-0.0101311262697,0.0100640775636,0.26491728425,-0.527886030655,0.022669113996,0.729391547889,-0.434523209711 -1469728578971563697,-0.0101725151762,0.0100470902398,0.264782518148,-0.519831928575,0.0196983396322,0.727850687589,-0.446788672669 -1469728579047815738,-0.0100780809298,0.0102137196809,0.264601022005,-0.556227390412,0.0244612120911,0.727988182486,-0.400057427652 -1469728579127138097,-0.010034237057,0.0102746766061,0.264440208673,-0.56038868259,0.0258255342832,0.728466037122,-0.393236314401 -1469728579210863107,-0.0100199962035,0.0102614695206,0.264394253492,-0.56186156904,0.0257112666472,0.728251273298,-0.391536193657 -1469728579288390804,-0.009994328022,0.0102390078828,0.264250516891,-0.561074348853,0.0259718284182,0.728497545648,-0.392189195636 -1469728579368864365,-0.00997028220445,0.010169277899,0.264100313187,-0.569053363713,0.0257670886089,0.727481855702,-0.382471536216 -1469728579448730101,-0.00997099932283,0.00990727450699,0.263885289431,-0.563382936419,0.0246481450024,0.727276154658,-0.391230789644 -1469728579524945543,-0.0100207673386,0.00939920172095,0.263719469309,-0.572508200256,0.0209147419553,0.724106393511,-0.384014146987 -1469728579603596658,-0.00989782251418,0.00918198842555,0.263454347849,-0.589195078717,0.0260850669921,0.725644370279,-0.354413566865 -1469728579682417588,-0.00986685045063,0.00899469666183,0.263304501772,-0.598353982088,0.0259919864366,0.724686476601,-0.340773296185 -1469728579761587073,-0.00984269473702,0.00896537303925,0.263047456741,-0.598424588905,0.0264162948283,0.72495269798,-0.340049667627 -1469728579835908555,-0.0100171295926,0.00910836365074,0.262107342482,-0.525946563684,0.0215445501544,0.728746408983,-0.438000817238 -1469728579911209824,-0.00994775537401,0.0091889584437,0.261573761702,-0.537282508967,0.0227526075551,0.728574053919,-0.4242518973 -1469728579986566434,-0.0098586762324,0.00923201814294,0.261212736368,-0.552903732905,0.0253072499265,0.728890075752,-0.402959380969 -1469728580065295724,-0.00982439797372,0.00927997007966,0.260698020458,-0.576207633858,0.0247399290172,0.726282721825,-0.37401351122 -1469728580140683430,-0.00981328636408,0.0092658707872,0.259877741337,-0.58046910496,0.0241865961833,0.72534904942,-0.369241632617 -1469728580219696339,-0.00988479889929,0.00932989642024,0.259223818779,-0.542568064342,0.0241772790148,0.728964455382,-0.416708744239 -1469728580298246385,-0.0098384488374,0.00933172833174,0.258977949619,-0.553696954285,0.0252606337868,0.728704974976,-0.402207213561 -1469728580379108503,-0.00977708864957,0.00933710113168,0.258706778288,-0.569532478635,0.0272057631079,0.728348090224,-0.380002186442 -1469728580452485937,-0.0098273307085,0.00942751951516,0.258525967598,-0.554489103673,0.0237009709285,0.727618248681,-0.403177110054 -1469728580532669755,-0.00982406176627,0.00938494224101,0.258519947529,-0.549202839926,0.0237500696614,0.728078338173,-0.409529129967 -1469728580607888940,-0.00981776136905,0.00912674330175,0.258643060923,-0.554475993229,0.0247519013175,0.728260105713,-0.401971310843 -1469728580687860774,-0.00980771053582,0.00868212431669,0.258593678474,-0.550969209243,0.0246780585067,0.728623827219,-0.406117276538 -1469728580762321489,-0.00981423538178,0.00870388653129,0.258643507957,-0.555956018824,0.0249050969536,0.728253923921,-0.399923572165 -1469728580837877977,-0.00979381520301,0.00880852527916,0.258430629969,-0.558689158007,0.0246504850795,0.727794142873,-0.396956501283 -1469728580919714086,-0.00980082526803,0.00863653607666,0.257728427649,-0.549198107064,0.0249538422942,0.728986615816,-0.407844650464 -1469728581000814490,-0.0098668737337,0.00839696358889,0.25684222579,-0.535364693283,0.0238565929329,0.729607521875,-0.424839230984 -1469728581077791471,-0.00978989806026,0.00833581574261,0.25650241971,-0.559588588584,0.0247819765246,0.727744225801,-0.39577115481 -1469728581162777301,-0.0097301537171,0.00819216202945,0.255915015936,-0.558459660852,0.0245899503387,0.727699947944,-0.397455566454 -1469728581239306871,-0.00971491914243,0.00807531550527,0.255462855101,-0.56953371667,0.0248424526946,0.726924141288,-0.382877906038 -1469728581317371483,-0.0097911413759,0.00803363416344,0.254383027554,-0.526584422615,0.0231058087697,0.729694026569,-0.435570424902 -1469728581400940539,-0.00973967276514,0.00802395492792,0.253854393959,-0.539038396164,0.0243452957014,0.729496472,-0.420332976791 -1469728581481038169,-0.00969937443733,0.00799482315779,0.253487169743,-0.551368676664,0.0232202670062,0.727453205535,-0.407756343116 -1469728581557391148,-0.00966538488865,0.00794452428818,0.252841293812,-0.5628033407,0.0235342747493,0.726691614074,-0.393214744945 -1469728581635611278,-0.00971749704331,0.0079361917451,0.252141952515,-0.542626220431,0.0237266502984,0.728721095212,-0.417084399564 -1469728581710101982,-0.00965534709394,0.00794722791761,0.251416772604,-0.545280783422,0.0259653579616,0.730100754342,-0.411032305209 -1469728581785651086,-0.00962906889617,0.00795968156308,0.251066535711,-0.551768283779,0.0248802728581,0.728630582679,-0.405006428372 -1469728581864126301,-0.00962514057755,0.00793600454926,0.250655680895,-0.555336507642,0.0227968369093,0.727040224944,-0.403105667065 -1469728581943037926,-0.009640741162,0.00786726549268,0.250185370445,-0.564575111796,0.023011018702,0.726163398489,-0.39167863722 -1469728582021737090,-0.00965642835945,0.00789386406541,0.249776095152,-0.551581102043,0.0237989675442,0.727930670408,-0.406581893463 -1469728582096504352,-0.00964485108852,0.00788964796811,0.249214246869,-0.549610674125,0.0243892406167,0.728506556418,-0.408180681913 -1469728582177184669,-0.00956606585532,0.00794136710465,0.248826518655,-0.556642679995,0.0262910883435,0.729215376525,-0.39711791715 -1469728582253260949,-0.00959057081491,0.00798086263239,0.248445436358,-0.534981787813,0.0223493077108,0.728535072859,-0.427237220718 -1469728582333045455,-0.00955205131322,0.00798789970577,0.247924670577,-0.545333539197,0.0241955647973,0.728873293292,-0.413242819656 -1469728582408825588,-0.00958522967994,0.0080578904599,0.246805116534,-0.547867963951,0.024759790735,0.728956089164,-0.409695822423 -1469728582499027116,-0.00958647020161,0.00805374700576,0.246530070901,-0.54114982525,0.021957871041,0.727533672129,-0.421152554843 -1469728582572809702,-0.00949732586741,0.00806131772697,0.246150404215,-0.556911688752,0.0245899803947,0.727919896257,-0.399220901794 -1469728582648407730,-0.00944664981216,0.00811358913779,0.245152115822,-0.559295496295,0.0273278774432,0.729651670476,-0.392492260701 -1469728582724103586,-0.00957427732646,0.00812026672065,0.244505867362,-0.527458103809,0.0222876006635,0.729220543493,-0.43534883775 -1469728582804389825,-0.00950179062784,0.00810640957206,0.24420273304,-0.548472992334,0.0240076074149,0.728446431242,-0.409837538883 -1469728582885390547,-0.00942414719611,0.00808793306351,0.243491619825,-0.563319116928,0.0254598617548,0.727742909353,-0.390401877339 -1469728582970845888,-0.00949926674366,0.00812314450741,0.242729514837,-0.549841573053,0.0236748453288,0.728034126364,-0.408754274706 -1469728583048801430,-0.00952819362283,0.00816728640348,0.242297068238,-0.524693167134,0.0222655410552,0.729448531651,-0.438299173758 -1469728583128376404,-0.00940789934248,0.00816347822547,0.241882637143,-0.555086486915,0.0261206396492,0.729285027896,-0.399174212989 -1469728583206259751,-0.00936726108193,0.00816227961332,0.241488456726,-0.554072537019,0.0266759299284,0.729613537629,-0.399945126476 -1469728583285532682,-0.00938378740102,0.00813381001353,0.240959525108,-0.558981145592,0.0255483293863,0.728317676381,-0.395525882856 -1469728583365339029,-0.00949776452035,0.00814500171691,0.240262880921,-0.5424808904,0.0225306406719,0.727811700152,-0.418923600319 -1469728583441280531,-0.00943350419402,0.00815867446363,0.239962875843,-0.546821497096,0.0240017424586,0.728491864203,-0.411958457204 -1469728583519539850,-0.00932565517724,0.00820932351053,0.239389628172,-0.557030496868,0.0269784838063,0.729555315236,-0.395901792092 -1469728583594190120,-0.00944137852639,0.00824410840869,0.238714322448,-0.520086030624,0.0219549968657,0.729667425179,-0.443411713304 -1469728583672999193,-0.00945888739079,0.0082208076492,0.23829138279,-0.534995882666,0.0227695339741,0.7289034567,-0.426568522823 -1469728583748259265,-0.00933317560703,0.00820008385926,0.237756669521,-0.56829084143,0.0261478173336,0.727714577993,-0.383136143129 -1469728583827980881,-0.00930189527571,0.00824212376028,0.237267419696,-0.563024666127,0.0251039392176,0.727669930846,-0.390985280172 -1469728583903539470,-0.00935637764633,0.00828373245895,0.236768990755,-0.531605018615,0.0229215790531,0.729318977347,-0.430075033777 -1469728583980289901,-0.00933550298214,0.00832112133503,0.235929936171,-0.544268175327,0.0257587286137,0.730203501987,-0.412203210701 -1469728584057583382,-0.00928944628686,0.00832100026309,0.235554665327,-0.552627685183,0.0259261894045,0.729330942601,-0.402500745885 -1469728584133933174,-0.00931174214929,0.00834158342332,0.235178112984,-0.535130964065,0.0229118789007,0.728811801783,-0.426548068436 -1469728584212485392,-0.00930019747466,0.00833447650075,0.23465038836,-0.546774418582,0.0242600346377,0.728724266844,-0.411594617089 -1469728584290943529,-0.00930517725646,0.00829494744539,0.234258159995,-0.560437857283,0.0259821903541,0.728528552417,-0.393040051677 -1469728584367390014,-0.00930340401828,0.00828630104661,0.233931720257,-0.550066764294,0.0258780348113,0.729636951907,-0.405446421301 -1469728584445172467,-0.0092877401039,0.00835126079619,0.233535915613,-0.543372268634,0.0240274970418,0.729036386746,-0.415542060285 -1469728584519523736,-0.00925250351429,0.00829658750445,0.233342826366,-0.548589072468,0.0250046348018,0.729129504361,-0.408405391342 -1469728584593719866,-0.00923759676516,0.00825989991426,0.233263537288,-0.555500972134,0.0247823188051,0.728210422253,-0.400642094088 -1469728584674052819,-0.00923163630068,0.00840580463409,0.232339411974,-0.557360486045,0.0252859902412,0.728376677926,-0.397715127129 -1469728584749661666,-0.0093334056437,0.00844469666481,0.231803372502,-0.528781175687,0.0210465193187,0.727934716432,-0.435957063111 -1469728584826474438,-0.0092759905383,0.00846441742033,0.231586799026,-0.540865326513,0.0226962308437,0.728077835131,-0.420538043074 -1469728584903313445,-0.00914416369051,0.00853558722883,0.231156930327,-0.558430337555,0.0266673565605,0.72927136345,-0.394471404089 -1469728584974945045,-0.00922333076596,0.00863620080054,0.230218783021,-0.526025503473,0.0232811244885,0.729911731778,-0.435871566808 -1469728585050237910,-0.00919161550701,0.00866048131138,0.229716300964,-0.551655840132,0.0257106949706,0.729309866528,-0.403883538656 -1469728585129148483,-0.0091803977266,0.00866913888603,0.229364022613,-0.554622841484,0.0238649485123,0.727693177434,-0.402848119586 -1469728585203667055,-0.0091133499518,0.00874528940767,0.228580459952,-0.542641841415,0.0254116619896,0.729943918628,-0.41482038889 -1469728585283916462,-0.00918121915311,0.00874854717404,0.227909773588,-0.543490689344,0.0249109959207,0.729574848861,-0.414388528784 -1469728585360241076,-0.00917561165988,0.00874661002308,0.227525144815,-0.53618601379,0.0227344819284,0.728743713927,-0.425347271485 -1469728585439678392,-0.00914373807609,0.00873181410134,0.227228879929,-0.540218996485,0.0224932403125,0.727852735886,-0.421767572058 -1469728585514971849,-0.0090768923983,0.00874516833574,0.226655587554,-0.544048415024,0.0251811601324,0.729426897801,-0.413900509844 -1469728585588402943,-0.00910425465554,0.00874295365065,0.226308658719,-0.5477896221,0.0256668824517,0.729548794581,-0.408688509002 -1469728585667567564,-0.00911948271096,0.00873120035976,0.226041391492,-0.547365376,0.0255948438288,0.729586092626,-0.409194553448 -1469728585743078083,-0.00916706770658,0.00878043286502,0.225692972541,-0.528801264534,0.0215394789381,0.728526491387,-0.43491887154 -1469728585822572917,-0.00905565172434,0.00890139117837,0.225260406733,-0.547850468622,0.0256388618428,0.729553651328,-0.408600027689 -1469728585899061028,-0.00912354048342,0.00898001715541,0.224467545748,-0.528807134475,0.0233839956217,0.729879877065,-0.432540828514 -1469728585972575812,-0.00908026192337,0.00897470209748,0.223963171244,-0.544928476998,0.0248652318681,0.729373962593,-0.412853845679 -1469728586050236195,-0.00905583426356,0.00903412047774,0.223693192005,-0.553558745836,0.024361019062,0.728104341338,-0.403538503471 -1469728586135693301,-0.00905104074627,0.00911961030215,0.223335668445,-0.536645485467,0.0236339919592,0.729269755437,-0.423814441893 -1469728586213654081,-0.00903737917542,0.00916353520006,0.222550064325,-0.540881193488,0.0253131485343,0.730160684828,-0.416739910944 -1469728586290753601,-0.00905814860016,0.00916605442762,0.222130775452,-0.547437052265,0.0249574355752,0.72924505968,-0.409745583441 -1469728586368172776,-0.00902217999101,0.00918159168214,0.221971109509,-0.547610321307,0.0249284516682,0.72926457732,-0.40948099414 -1469728586446632696,-0.00898765120655,0.00919833034277,0.221676170826,-0.555261292639,0.024392319733,0.727981894591,-0.401412845812 -1469728586532565043,-0.00900367740542,0.00928974803537,0.221053138375,-0.527286473375,0.0238167231645,0.730161713005,-0.43389585335 -1469728586606398617,-0.00906088482589,0.00926890410483,0.220530360937,-0.532164461902,0.0229358454674,0.729069778848,-0.429804827861 -1469728586692297469,-0.0089941136539,0.009327349253,0.220106691122,-0.551007694139,0.0251989690099,0.72898400234,-0.405386059569 -1469728586772995856,-0.00898028630763,0.00934158172458,0.219891086221,-0.53329661367,0.0244607956721,0.730161277245,-0.426451521905 -1469728586850454588,-0.00895119365305,0.00935390684754,0.219661220908,-0.533746586191,0.0249856406594,0.730571733932,-0.425153197178 -1469728586929600320,-0.00898552872241,0.00942207500339,0.219211742282,-0.521139662013,0.0234564525616,0.730459300937,-0.440786180801 -1469728587010772334,-0.00898728892207,0.00938960816711,0.218621447682,-0.556120754342,0.0253384049966,0.728556888564,-0.399114685207 -1469728587088062585,-0.00895266793668,0.00947267748415,0.218124866486,-0.537871934605,0.0251653984935,0.730283849605,-0.420411683578 -1469728587169454808,-0.00892057176679,0.00942946225405,0.217983454466,-0.540530172282,0.0254512014397,0.730173996015,-0.417163402927 -1469728587243489899,-0.00885518919677,0.00929091218859,0.2175706774,-0.525350395221,0.0245059924867,0.73093989688,-0.434894568513 -1469728587330353010,-0.00877898186445,0.00916625652462,0.217219486833,-0.53428727023,0.0251506921407,0.73057678524,-0.42445508175 -1469728587408130252,-0.00879469979554,0.00904893130064,0.21709227562,-0.5237922405,0.0240783219594,0.730627364763,-0.437316335234 -1469728587483031621,-0.00879428815097,0.00899114925414,0.217093169689,-0.527123244477,0.0240611727299,0.730275086567,-0.433889897369 -1469728587555936982,-0.0087869791314,0.00894211232662,0.217097580433,-0.527983574169,0.0243801652471,0.730530229035,-0.432393960892 -1469728587633492377,-0.00881274230778,0.00893196091056,0.217045679688,-0.512114579977,0.0226433947666,0.730717190121,-0.450863972513 -1469728587715618586,-0.00875582825392,0.00900805648416,0.216952234507,-0.525276601581,0.0249263256717,0.731233332631,-0.434466320179 -1469728587794570421,-0.0087519986555,0.00897637475282,0.21694251895,-0.532642907813,0.0251209329134,0.730654726243,-0.42638496984 -1469728587872256123,-0.00877663679421,0.00890913978219,0.21698538959,-0.527334877497,0.0245470296165,0.730671057952,-0.432937842401 -1469728587949499870,-0.0087490901351,0.00887455418706,0.216965049505,-0.530883554351,0.0263480987939,0.731752064294,-0.42662318949 -1469728588033072614,-0.00880361441523,0.00886703841388,0.216997519135,-0.522453459152,0.0243069482484,0.731038126765,-0.438217768357 -1469728588109318500,-0.00882274843752,0.00888943113387,0.216933995485,-0.525286573779,0.0242217302744,0.730664099326,-0.435450682794 -1469728588186934695,-0.00884157605469,0.00891191232949,0.216927796602,-0.522905483049,0.0237576917445,0.730596834846,-0.438444629107 -1469728588263642052,-0.00884656235576,0.00897064805031,0.216974854469,-0.522673205035,0.0240994940945,0.730754506426,-0.438440174323 -1469728588341047230,-0.00883710943162,0.00903155840933,0.216943949461,-0.534575237732,0.0248455425093,0.730211361304,-0.42473919297 -1469728588422925891,-0.00884066149592,0.00910627283156,0.21701207757,-0.536067114068,0.024273020396,0.729763581463,-0.42366022337 -1469728588503702357,-0.00883676577359,0.00917526520789,0.21696934104,-0.537399606472,0.024745245955,0.730044093143,-0.421455760233 -1469728588591351997,-0.00887285172939,0.00925871729851,0.216928318143,-0.525668605979,0.0233809581434,0.730216197655,-0.435786819633 -1469728588669211704,-0.00885107647628,0.00933273695409,0.216940611601,-0.531318497764,0.0240330532134,0.729995211584,-0.429220290005 -1469728588750341631,-0.00884451717138,0.00942623429,0.216993629932,-0.53739518763,0.0243748784571,0.729664632659,-0.422139552115 -1469728588827471173,-0.00885113887489,0.00956136826426,0.217036858201,-0.531977918589,0.0240339123711,0.730043349931,-0.428320642056 -1469728588904977828,-0.00887085590512,0.00964423641562,0.216980159283,-0.531401581394,0.02341966516,0.729659204623,-0.429722379781 -1469728588982502973,-0.00884583126754,0.00977883115411,0.217012494802,-0.542583640273,0.0251134665368,0.729803848303,-0.415160993 -1469728589057645874,-0.00885150581598,0.00985690951347,0.216989323497,-0.537511695196,0.0247884296534,0.730144808103,-0.421135691295 -1469728589135246770,-0.00888022873551,0.0099690053612,0.216943323612,-0.534282989637,0.0239004268091,0.7297576797,-0.425939180519 -1469728589211270033,-0.00886135455221,0.0100615220144,0.216979935765,-0.528401529119,0.0236882971803,0.730084566314,-0.432674490388 -1469728589290346689,-0.00884343590587,0.0101236896589,0.216979965568,-0.549782805697,0.0247437391136,0.728848556363,-0.407316088342 -1469728589366969485,-0.0088549759239,0.0102359214798,0.21707212925,-0.546005889121,0.024652953889,0.72921018367,-0.411730869551 -1469728589452782067,-0.00885739922523,0.0103033762425,0.21705237031,-0.546807063525,0.0240767323693,0.728678198751,-0.411643570219 -1469728589530737558,-0.00887817237526,0.0103909987956,0.217042729259,-0.545648931212,0.023219610092,0.72815622537,-0.414145632634 -1469728589608828894,-0.00883779209107,0.0104631464928,0.217051535845,-0.545659038018,0.024547376197,0.72907725316,-0.412431811911 -1469728589686635928,-0.00883351545781,0.0105752339587,0.217055678368,-0.549798840566,0.0253717204281,0.729395527467,-0.406275368716 -1469728589763152356,-0.00882030557841,0.0106487683952,0.217087715864,-0.544456645177,0.0249251388942,0.729531717605,-0.41319386731 -1469728589844191361,-0.0088615519926,0.0107137532905,0.217043071985,-0.545976286151,0.0234855629982,0.728328841628,-0.413394994823 -1469728589921480882,-0.00879970937967,0.0109664173797,0.21714246273,-0.553411318687,0.0248100571091,0.728722272766,-0.402596848709 -1469728590000790974,-0.008838548325,0.0113026453182,0.217126816511,-0.564604827735,0.0249227370722,0.727718570345,-0.388620545068 -1469728590076086690,-0.00894238241017,0.0117780314758,0.216948196292,-0.532919827792,0.020967901884,0.727980555357,-0.430814478934 -1469728590155532186,-0.00869833957404,0.0119748441502,0.216922193766,-0.577161367086,0.0244778702322,0.726089150462,-0.37293449263 -1469728590232449257,-0.00857189949602,0.0119109787047,0.216554239392,-0.566661826339,0.024269085229,0.726777315912,-0.387427566324 -1469728590311833030,-0.00847768317908,0.0115397442132,0.216124668717,-0.578254250062,0.0261335273576,0.726875740426,-0.369581816399 -1469728590393354150,-0.00853609014302,0.0113422162831,0.215793997049,-0.551885339257,0.0231652152578,0.727523463538,-0.406934337599 -1469728590470444055,-0.00846796762198,0.0110021885484,0.215140983462,-0.557767374271,0.0241769302093,0.727672483954,-0.398501930159 -1469728590553190010,-0.00842937454581,0.010664710775,0.214499399066,-0.554176043016,0.0242317819124,0.728065444793,-0.402768472191 -1469728590631100242,-0.00834356527776,0.010361761786,0.21409907937,-0.556816359738,0.0251864803865,0.728609504002,-0.398056997692 -1469728590710100855,-0.00832233112305,0.0101850749925,0.213847652078,-0.545103581821,0.0240369087301,0.728924079009,-0.413465837943 -1469728590784742643,-0.00828424561769,0.0100143514574,0.21363504231,-0.564185545154,0.024896673083,0.727788639077,-0.389099631379 -1469728590869364942,-0.00831568147987,0.0098351482302,0.213458105922,-0.559424831424,0.0226064250754,0.72652367599,-0.398366860767 -1469728590946085481,-0.00832482427359,0.00957305915654,0.212961390615,-0.557622173543,0.0243150666292,0.727787121033,-0.398487384451 -1469728591023121349,-0.00836251210421,0.009341574274,0.212506681681,-0.54536812807,0.0232780348049,0.728314338149,-0.414234188385 -1469728591100574403,-0.00834592245519,0.00921579729766,0.21241748333,-0.554677842222,0.0237382313478,0.727630542988,-0.402893013876 -1469728591181242081,-0.00834041461349,0.00913401227444,0.212379455566,-0.557379899404,0.0242900721726,0.727827522101,-0.398753982056 -1469728591261989482,-0.00835295859724,0.00906290486455,0.212339371443,-0.561035621644,0.0246847267877,0.727778725078,-0.393659526537 -1469728591341331528,-0.00846661347896,0.00897407159209,0.211994349957,-0.553971031043,0.023607993483,0.72761422642,-0.403901345529 -1469728591417852324,-0.00847831554711,0.00906978268176,0.211671575904,-0.554228300792,0.0240326655486,0.728019087915,-0.402792290418 -1469728591494185110,-0.00847404263914,0.00907286815345,0.211326509714,-0.543604948991,0.0223066149149,0.727628618301,-0.417795007381 -1469728591574666741,-0.00838540960103,0.00897049158812,0.210834860802,-0.557717494725,0.0238887177638,0.727663418609,-0.398605662853 -1469728591646850527,-0.00847534276545,0.00880105700344,0.20992103219,-0.546517319519,0.0232106382813,0.728167076441,-0.412980380314 -1469728591724026930,-0.00838892813772,0.00862809736282,0.209397792816,-0.56283784051,0.023877583206,0.726950632878,-0.392665511179 -1469728591809219054,-0.00839742552489,0.00861055776477,0.208986833692,-0.555886676666,0.0239923674827,0.727762197396,-0.40096951636 -1469728591885842306,-0.00841443054378,0.00857760105282,0.208256676793,-0.547016198467,0.0241885910817,0.728988251616,-0.410809347121 -1469728591965000779,-0.00841921102256,0.00856219697744,0.207744434476,-0.541887173126,0.0218114150961,0.727526507644,-0.42022343396 -1469728592044547959,-0.00843787379563,0.00855127722025,0.206918671727,-0.548845455506,0.0229792502204,0.727716725851,-0.410693300344 -1469728592121925609,-0.00837844610214,0.00857616122812,0.206402897835,-0.549512832387,0.0228236802881,0.727676714748,-0.409879647546 -1469728592197360452,-0.00835802964866,0.00857737567276,0.205708071589,-0.552320042078,0.0237459025732,0.728019837247,-0.405420546845 -1469728592277106798,-0.00836242455989,0.00855928193778,0.205057919025,-0.558457652174,0.0241732827877,0.727647030916,-0.397580811316 -1469728592354873789,-0.00830973125994,0.00850266031921,0.202741920948,-0.561934714777,0.0219433119674,0.725701277636,-0.396365390803 -1469728592432562911,-0.00825268402696,0.00851629581302,0.201267704368,-0.566730466635,0.0217897388406,0.725045723572,-0.390705111559 -1469728592516999761,-0.00833315774798,0.0085761398077,0.200954273343,-0.532015625084,0.0182816736693,0.725467462799,-0.436259229696 -1469728592597126476,-0.00828531663865,0.00868728850037,0.201734468341,-0.557268194247,0.0230187981634,0.726925544022,-0.400626444535 -1469728592680687571,-0.00829812604934,0.00877223070711,0.201894313097,-0.561398491488,0.023848712307,0.727128272289,-0.394395040935 -1469728592756563423,-0.00825340300798,0.008789408952,0.201864972711,-0.548211015843,0.0227752220968,0.727586260082,-0.411781744989 -1469728592832488828,-0.00815506279469,0.00877379253507,0.201428800821,-0.559427448637,0.0239377168332,0.72716645653,-0.397110639396 -1469728592907547529,-0.00812493916601,0.00881723780185,0.201107442379,-0.546752209365,0.0223207098972,0.727464453367,-0.413955645634 -1469728592986833922,-0.0080883372575,0.00883337575942,0.200947567821,-0.548073775761,0.0222336056802,0.727174121651,-0.412720970999 -1469728593063286872,-0.00804268475622,0.00885926000774,0.200790151954,-0.546379797658,0.0223526181411,0.72740939211,-0.414541980314 +1470066232369575288,-0.0293740592897,0.139159142971,1.37535524368,-0.207689416184,0.0160827970141,0.757552007675,-0.618644813858 +1470066232482029988,-0.0293740592897,0.139159142971,1.37535524368,-0.207689416184,0.0160827970141,0.757552007675,-0.618644813858 +1470066232557062035,-0.0293740592897,0.139159142971,1.37535524368,-0.207689416184,0.0160827970141,0.757552007675,-0.618644813858 +1470066232627354872,-0.0293740592897,0.139159142971,1.37535524368,-0.207689416184,0.0160827970141,0.757552007675,-0.618644813858 +1470066232701141778,-0.0293740592897,0.139159142971,1.37535524368,-0.207689416184,0.0160827970141,0.757552007675,-0.618644813858 +1470066232772186781,-0.0293740592897,0.139159142971,1.37535524368,-0.207689416184,0.0160827970141,0.757552007675,-0.618644813858 +1470066232845251238,-0.0293740592897,0.139159142971,1.37535524368,-0.207689416184,0.0160827970141,0.757552007675,-0.618644813858 +1470066232915452844,-0.0293740592897,0.139159142971,1.37535524368,-0.207689416184,0.0160827970141,0.757552007675,-0.618644813858 +1470066232988105078,-0.0289194844663,0.13815176487,1.36503136158,-0.291861567078,0.026107782223,0.767347733827,-0.570361871762 +1470066233057426881,-0.0281448289752,0.138221397996,1.34703171253,-0.337568216733,0.0439575678031,0.785493776884,-0.516831653212 +1470066233134936728,-0.0289318971336,0.14088563621,1.3634237051,-0.54727894742,0.0495491698379,0.744602923952,-0.378942105236 +1470066233205150612,-0.0287128984928,0.140508383512,1.35765099525,-0.509415788006,0.0407023494934,0.745745836266,-0.427436569993 +1470066233281410738,-0.0282002147287,0.13964535296,1.33984839916,-0.408438091612,0.048485664045,0.772913393452,-0.483148374647 +1470066233358813388,-0.0284064803272,0.136837244034,1.30557644367,-0.373010567828,0.0573330737969,0.791449134425,-0.48081628774 +1470066233444247774,-0.0281480979174,0.137732282281,1.30587470531,-0.159157591491,0.0146394602389,0.783643469518,-0.600297809389 +1470066233519214935,-0.0278172418475,0.137732729316,1.29747354984,-0.0886597254431,0.0119586463366,-0.546822915448,-0.83245488947 +1470066233597083041,-0.0277159623802,0.13940115273,1.29873526096,-0.177746147719,0.021223557119,0.782112959537,-0.596871163752 +1470066233671761564,-0.0277841724455,0.140282794833,1.29927325249,-0.0570076075376,0.00342420937679,0.75714972039,-0.650740123541 +1470066233748610692,-0.0277431607246,0.140338420868,1.29908645153,-0.205727184515,0.0147538882676,0.754313517432,-0.623273427761 +1470066233828856331,-0.0274794176221,0.139844045043,1.29311668873,-0.395133765822,0.0335512742068,0.754959075777,-0.522283843334 +1470066233902226662,-0.0270852707326,0.138790681958,1.28250658512,-0.40635022251,0.0407931724694,0.763646562202,-0.500059338263 +1470066233977000402,-0.0268810726702,0.132990628481,1.2401753664,-0.265602976674,0.0253062258145,0.776753324905,-0.570498839583 +1470066234059423701,-0.0265055615455,0.132273733616,1.23445463181,-0.147234783646,0.0143580452607,0.780745026352,-0.607085635514 +1470066234138780238,-0.0262256860733,0.130137056112,1.22912847996,-0.317755650948,0.0354583360723,0.772157922556,-0.54913222026 +1470066234220280813,-0.0261751487851,0.130117252469,1.22872841358,-0.294558901819,0.0327443478151,0.771679794007,-0.562737200269 +1470066234298039571,-0.0262326095253,0.130030572414,1.22663259506,-0.265507250964,0.0285602615313,0.77015110996,-0.579273233435 +1470066234377951249,-0.0266551114619,0.127723634243,1.20086944103,-0.0135229367192,0.00118205413298,0.782183789674,-0.622899873256 +1470066234456276543,-0.0265345517546,0.127766996622,1.19757652283,-0.282553198226,0.0315149336771,0.772644113179,-0.567619215229 +1470066234536313881,-0.0265870504081,0.129597082734,1.19865393639,-0.204764657476,0.0234362215899,0.777432940815,-0.594239178363 +1470066234612163473,-0.0266325101256,0.130438864231,1.19935941696,-0.189945548723,0.0144079542928,0.757496702117,-0.624429215889 +1470066234692384185,-0.0266201607883,0.130601719022,1.19916808605,-0.246577637098,0.0166768431293,0.75062410825,-0.612768145305 +1470066234769673062,-0.0264597479254,0.130064859986,1.19387185574,-0.350694709664,0.027595605352,0.754061570535,-0.554655614792 +1470066234851498806,-0.0264824032784,0.128877177835,1.18248283863,-0.372546924072,0.0367000873395,0.759322608465,-0.532250945728 +1470066234935559493,-0.026095373556,0.124850086868,1.14949131012,-0.465108130972,0.0563725027224,0.766608603685,-0.439098868362 +1470066235016144023,-0.0256614722311,0.124133504927,1.14339637756,-0.459343742709,0.0467294752759,0.760705475455,-0.456231149514 +1470066235091796730,-0.025372043252,0.124193780124,1.14098370075,-0.0623596703103,0.00338395158428,0.752131100814,-0.656047732698 +1470066235169257648,-0.0253486894071,0.124234654009,1.14101207256,-0.157128612999,0.00979081793234,0.750490255661,-0.641855992431 +1470066235246794913,-0.0252611339092,0.124224074185,1.13982462883,-0.377037510513,0.0259917886384,0.746291791557,-0.547919432439 +1470066235329075638,-0.0257034767419,0.122165970504,1.11394166946,-0.132760024515,0.00845583851145,0.752595583286,-0.644905545568 +1470066235407889448,-0.0256525408477,0.122123353183,1.11293447018,-0.145252668053,0.00864561226963,0.751702840542,-0.643249372587 +1470066235482837770,-0.0255036074668,0.121986918151,1.11060082912,-0.36574982488,0.0261717323199,0.749716877368,-0.550878126102 +1470066235558656355,-0.0245271474123,0.120173759758,1.0903904438,-0.475317995548,0.049988368937,0.761110912706,-0.438502160358 +1470066235645205046,-0.0241679530591,0.11994317919,1.08719956875,-0.387351070422,0.0362030414332,0.760748579522,-0.51952871604 +1470066235723705596,-0.0238877236843,0.118512973189,1.08183825016,-0.493045939787,0.0467247553405,0.749737485422,-0.438880623234 +1470066235804265083,-0.0241076983511,0.118106611073,1.08298122883,-0.397483330663,0.0291665249131,0.747558485474,-0.531330995205 +1470066235881708399,-0.0243223812431,0.115096472204,1.05963253975,-0.333170797831,0.0343984074255,0.764981498956,-0.550106603573 +1470066235956614954,-0.0242912825197,0.114497661591,1.05923748016,-0.29875521491,0.0205487749098,0.752911264701,-0.586044108323 +1470066236040242278,-0.023436833173,0.112974703312,1.04309618473,-0.406008299548,0.0410847075064,0.76627796095,-0.496273507322 +1470066236116848633,-0.0231168121099,0.113184511662,1.03967130184,-0.064739440235,0.00326079731782,0.748780465926,-0.659640800684 +1470066236193331709,-0.0230821985751,0.113230019808,1.03966379166,-0.198024269852,0.011557037788,0.7466482394,-0.634956085118 +1470066236268821067,-0.0229760929942,0.112943939865,1.0366948843,-0.37382469697,0.025540871539,0.74644857745,-0.549924795803 +1470066236349507174,-0.023127105087,0.110241621733,1.0108679533,-0.420631896636,0.0443793954567,0.761215380232,-0.491579517158 +1470066236430119893,-0.0231477469206,0.109495192766,1.01184475422,-0.436651304619,0.0328679785292,0.748113768658,-0.498579104362 +1470066236518023145,-0.0235007945448,0.108468227088,1.0133638382,-0.195519477052,0.023730778178,-0.598748636707,-0.776343386847 +1470066236591486848,-0.0231372714043,0.106555879116,0.98254597187,-0.45262637857,0.0473151988848,0.760432983109,-0.46328426649 +1470066236671343623,-0.0223624929786,0.104812972248,0.973611593246,-0.322235211348,0.0299473124867,0.761363307161,-0.561777128007 +1470066236755625845,-0.0224424861372,0.103514716029,0.974678695202,-0.24830172512,0.0170518647939,0.751304470208,-0.611225883168 +1470066236839347169,-0.0224722661078,0.1020090729,0.974820256233,-0.198376732319,0.0110763974311,0.745150670198,-0.636611705986 +1470066236914010457,-0.0223796535283,0.101624287665,0.973284423351,-0.337546910282,0.0197831144095,0.741670314163,-0.579306358357 +1470066236986661908,-0.0220878068358,0.0996105223894,0.960388362408,-0.565342546027,0.0349502971158,0.735813785873,-0.371139266182 +1470066237059413469,-0.0220154132694,0.0969320759177,0.940613925457,-0.445228729032,0.0310739173318,0.747650787046,-0.491756129738 +1470066237138073903,-0.0218805335462,0.0966227948666,0.938906013966,-0.438062250537,0.0264085853978,0.744321562641,-0.503378051428 +1470066237216676538,-0.0216520112008,0.0962443724275,0.93600922823,-0.26333239305,0.0133371322052,0.743871605687,-0.614111721048 +1470066237298113222,-0.0219127181917,0.0933107510209,0.921134591103,-0.01404998244,0.00226761173886,-0.595044565599,-0.803566687265 +1470066237373620878,-0.0219292119145,0.0935903862119,0.917035758495,-0.101388908274,0.00490153491194,0.746560353101,-0.657528633151 +1470066237453865956,-0.0217887982726,0.092379681766,0.914246976376,-0.508403340087,0.00960564784732,0.717607413532,-0.4758921888 +1470066237529597224,-0.0215268228203,0.0905766040087,0.894267380238,-0.452667649541,0.034116225373,0.752600787706,-0.476990709102 +1470066237607366884,-0.0213551186025,0.0899505317211,0.884637236595,-0.477617980055,0.0459646940732,0.75653028384,-0.44433122967 +1470066237685440059,-0.0213319603354,0.0902709960938,0.884343922138,-0.435429451032,0.0259943739434,0.744323150634,-0.505676312603 +1470066237769625700,-0.0213583782315,0.089017957449,0.870076239109,-0.415591907802,0.0354841181666,0.758093080398,-0.501317389466 +1470066237851137573,-0.0214318074286,0.0891019776464,0.866718828678,-0.248920699467,0.0147706241905,0.746184615952,-0.617275329941 +1470066237935310493,-0.0214900933206,0.0881731435657,0.865774869919,-0.638710144047,0.00391476252944,0.70488691861,0.308493854879 +1470066238015058890,-0.0216840449721,0.0865627750754,0.854792535305,-0.0850329891814,0.0123687072103,-0.600203905757,-0.795218006176 +1470066238092543722,-0.0213011261076,0.0863140299916,0.843681097031,-0.43358505919,0.0336136061554,0.750915622264,-0.496990794853 +1470066238171824393,-0.0210260301828,0.086254671216,0.83854752779,-0.461738195666,0.0241400096715,0.739160098245,-0.489752435173 +1470066238254585269,-0.0209157206118,0.0842736214399,0.826204240322,-0.594866061017,0.0322836417958,0.730026769457,-0.334892597409 +1470066238328827583,-0.0210174899548,0.0837960839272,0.820774137974,-0.147659875018,0.00680327737084,0.741956174479,-0.65395054238 +1470066238408294775,-0.020799331367,0.0826244801283,0.817291378975,-0.599817797457,0.0176164018014,0.718771896047,-0.351105730078 +1470066238484638672,-0.0207746680826,0.0810866877437,0.800715327263,-0.348183711152,0.0219861145708,0.752367681481,-0.558773286689 +1470066238557821070,-0.0205183923244,0.079808473587,0.795053839684,-0.386905188613,0.0197354083975,0.741626141084,-0.547636335116 +1470066238632514812,-0.0203567314893,0.0787070989609,0.792467772961,-0.649776073965,0.0127114101878,0.713149517823,-0.262768413211 +1470066238713747182,-0.0199944358319,0.0763722136617,0.776467323303,-0.662302630988,0.049737580024,0.72456224795,-0.184094940087 +1470066238793094244,-0.0200963765383,0.0757947787642,0.772799432278,-0.459252245353,0.0351612679604,0.748850956799,-0.476522092745 +1470066238866650612,-0.0199902486056,0.0742894932628,0.765623033047,-0.535458265405,0.0378311917499,0.742520498855,-0.400645174338 +1470066238946117900,-0.0201124232262,0.0726758092642,0.756040036678,-0.347706928067,0.0169235909993,0.741441488141,-0.573653208747 +1470066239031824178,-0.019853150472,0.0715296491981,0.752369523048,-0.47601899819,0.0076511202361,0.716682957159,-0.509620361288 +1470066239108970865,-0.0190568696707,0.0696258917451,0.740372776985,-0.654305542335,0.0562893181422,0.72809024979,-0.196469738366 +1470066239190196661,-0.0192198362201,0.0675456374884,0.736126899719,-0.0771498370583,0.0100239081233,-0.615795130523,-0.784055980866 +1470066239267253024,-0.0189292114228,0.0665705800056,0.72529643774,-0.458641955683,0.0183576449756,0.731327062353,-0.504451465681 +1470066239343628446,-0.0183532200754,0.0649241432548,0.717550814152,-0.607528588573,0.0514091472909,0.736172126693,-0.293797061799 +1470066239422447746,-0.0186397209764,0.0629472285509,0.713154435158,-0.09973180363,0.012829783416,-0.617823089915,-0.779861265592 +1470066239499477448,-0.0182082727551,0.0618618130684,0.702398002148,-0.521615430629,0.0408822140454,0.743715410899,-0.41609298804 +1470066239577583340,-0.0182816460729,0.0606092438102,0.698711812496,-0.522029416743,0.0313490541534,0.739055501187,-0.424616875576 +1470066239656349294,-0.0181594174355,0.0579865500331,0.687464594841,-0.531707403891,0.0368036714977,0.739494249026,-0.411194579329 +1470066239732422046,-0.0184083487839,0.0563128627837,0.68402248621,-0.0645974018021,0.00747675494817,-0.630350832152,-0.773581994504 +1470066239805706087,-0.0182495228946,0.0554011501372,0.676160335541,-0.579037847007,0.0359190282631,0.731007605828,-0.359239300972 +1470066239877622798,-0.0183972064406,0.0533207207918,0.665163397789,-0.473393598624,0.0185745781967,0.732269177548,-0.489219109848 +1470066239952014856,-0.0182354152203,0.0528331547976,0.661335170269,-0.408938636283,0.0191004524508,0.737742548548,-0.536787012262 +1470066240027494449,-0.0183899942786,0.0514889284968,0.651128530502,-0.330343498408,0.014672964341,0.738619325285,-0.587451589063 +1470066240102298749,-0.0179630573839,0.0504411011934,0.645656406879,-0.498787943382,0.0191416272441,0.728217587257,-0.469620411878 +1470066240178199386,-0.0180184021592,0.0491662472486,0.634588479996,-0.442416910155,0.0222414957463,0.737859226021,-0.509250779137 +1470066240253947005,-0.0178008582443,0.0490043982863,0.632750809193,-0.432263785427,0.023267671169,0.739207895855,-0.515924725122 +1470066240333316971,-0.0175657104701,0.0477116666734,0.622318565845,-0.540546798315,0.035696237235,0.738187480031,-0.402012663736 +1470066240408090843,-0.0171877704561,0.0466350503266,0.613984882832,-0.577024690868,0.0436557282599,0.737240065023,-0.348731659078 +1470066240484601667,-0.0173192508519,0.045564673841,0.605678915977,-0.607277145262,0.0356937834659,0.727321543899,-0.317716531589 +1470066240563081591,-0.0171370916069,0.0454648658633,0.60274630785,-0.552321797195,0.0303513051031,0.732413410222,-0.396976104003 +1470066240646483919,-0.0173167381436,0.0444398149848,0.593653321266,-0.36812167735,0.0166669215509,0.737974623745,-0.565333617522 +1470066240727064045,-0.0166937708855,0.0432857125998,0.582526385784,-0.632474447494,0.0515769353012,0.731562527852,-0.249263236068 +1470066240804063793,-0.0169620122761,0.0433790758252,0.579777657986,-0.457931864849,0.0203736970722,0.733795101796,-0.501426034629 +1470066240885559990,-0.0168464742601,0.0423810146749,0.569839179516,-0.562447274621,0.0373146275203,0.735541075456,-0.37581911628 +1470066240960724068,-0.016656531021,0.0421612747014,0.563073158264,-0.525849344074,0.0286902329209,0.735640249574,-0.426019672174 +1470066241040765376,-0.0166403446347,0.0416088476777,0.556568205357,-0.549213680115,0.0150737097456,0.721203152371,-0.421904171418 +1470066241120009387,-0.0162741560489,0.0409679561853,0.545558810234,-0.585621990658,0.0374972558597,0.732822531642,-0.344400895728 +1470066241195613314,-0.0163949355483,0.0403796434402,0.540023803711,-0.560585273326,0.022584467943,0.726424681864,-0.396914694509 +1470066241276004621,-0.0159672629088,0.0396747477353,0.533602535725,-0.598826513891,0.0342043728208,0.728950745573,-0.329951023138 +1470066241354953756,-0.015911700204,0.0386734120548,0.523279726505,-0.414841452407,0.011662296131,0.725523768018,-0.548986176743 +1470066241435556363,-0.0156771801412,0.0379541926086,0.517813444138,-0.632671226248,0.0275189213842,0.722428959485,-0.277608045529 +1470066241509537647,-0.0153836775571,0.0374628975987,0.511885285378,-0.564999031303,0.0306037566584,0.730830377301,-0.381741357884 +1470066241590131801,-0.0152352591977,0.0361831896007,0.501331031322,-0.569104491443,0.0263346600604,0.727406794931,-0.382499566257 +1470066241667295720,-0.0152926994488,0.0353369191289,0.494220018387,-0.414078296183,0.0155870867055,0.731161866232,-0.541939602471 +1470066241747834137,-0.0149018000811,0.0345106348395,0.48873141408,-0.582336062656,0.0276475746024,0.727967261941,-0.3608101818 +1470066241828028378,-0.0145767200738,0.0332200862467,0.478278011084,-0.636140799305,0.0416336681646,0.727570760724,-0.253440938434 +1470066241908481740,-0.0144782131538,0.0325111858547,0.472607314587,-0.667825646268,0.0363189916551,0.71962619283,-0.186622559264 +1470066241989330269,-0.0145175624639,0.0319222100079,0.466244965792,-0.444818294627,0.0167458642603,0.731654894393,-0.516272579463 +1470066242068391426,-0.0140317957848,0.030816949904,0.456204682589,-0.54568341481,0.0352161724218,0.736934075023,-0.397388476269 +1470066242147670514,-0.0141328852624,0.0300499387085,0.449903041124,-0.506095830238,0.0188268931736,0.728364563167,-0.461516653905 +1470066242225458652,-0.0138319497928,0.0289824418724,0.441304683685,-0.453470098768,0.0206781118931,0.734422764444,-0.504539877788 +1470066242305457551,-0.0136344842613,0.0283468086272,0.434134662151,-0.541683483011,0.0263289900992,0.730447467184,-0.415129240355 +1470066242383832822,-0.0135241290554,0.02767592296,0.427407622337,-0.46652001909,0.0229267376326,0.735930712387,-0.490142247776 +1470066242458894574,-0.0133387455717,0.0267562530935,0.419196397066,-0.5074401036,0.016429281332,0.725071876785,-0.465301400673 +1470066242530201891,-0.0131759326905,0.0262652840465,0.412033766508,-0.559398947965,0.021946380993,0.726274699414,-0.398893763261 +1470066242607426017,-0.0130500458181,0.0253773014992,0.401470899582,-0.492243582341,0.0228032661246,0.732753629904,-0.46930628012 +1470066242685617703,-0.0128148654476,0.0248152650893,0.395113736391,-0.519870891618,0.0306008951904,0.735927718463,-0.432675668902 +1470066242761458437,-0.0127867739648,0.0243506655097,0.389509886503,-0.442492961079,0.0202609772971,0.734758835033,-0.51373040258 +1470066242838111551,-0.0126177761704,0.0239142589271,0.383288651705,-0.420741527389,0.0171945956936,0.733591994595,-0.533407628812 +1470066242916528264,-0.0125016896054,0.0234322175384,0.373152583838,-0.431557948118,0.0155924684551,0.73133159917,-0.527890807269 +1470066242992670777,-0.0123004736379,0.0231753159314,0.367411613464,-0.432164286827,0.0168728701404,0.732952421099,-0.525100070319 +1470066243066570405,-0.0121123977005,0.0230366941541,0.36098960042,-0.516192457438,0.0160198171602,0.724980003411,-0.455733153278 +1470066243138663849,-0.0117601882666,0.0228651128709,0.351394921541,-0.525435373065,0.0236627657999,0.730017049683,-0.436386124228 +1470066243215312666,-0.0117315696552,0.0227598436177,0.345244556665,-0.564494334893,0.0179149544546,0.723193599261,-0.397512538505 +1470066243290835485,-0.0116667719558,0.0228188745677,0.338595092297,-0.430692393232,0.0141706893123,0.729276723759,-0.531468450767 +1470066243367770843,-0.0114154778421,0.0227215401828,0.329436153173,-0.508132864535,0.0159499382879,0.725555818003,-0.463805289329 +1470066243440585403,-0.0113458968699,0.0226626973599,0.322365373373,-0.435067771727,0.0151284329108,0.729688040534,-0.527297381013 +1470066243513365825,-0.0111211808398,0.0226997453719,0.316895514727,-0.615933228226,0.026855107979,0.723473321337,-0.310630672756 +1470066243585924944,-0.0111596826464,0.0228106118739,0.311715304852,-0.525454155302,0.021521141873,0.728400787482,-0.439166328314 +1470066243663831175,-0.0112222954631,0.0229563694447,0.309221386909,-0.538988907806,0.0243408153763,0.729553529435,-0.420297667919 +1470066243740670309,-0.0108992559835,0.0231879539788,0.310093462467,-0.592378323376,0.0276756544229,0.726441559693,-0.347281788318 +1470066243819049491,-0.0109656490386,0.0232954472303,0.306905537844,-0.493200905408,0.0168320670457,0.727355560742,-0.476889333788 +1470066243894269576,-0.0108085973188,0.0238576922566,0.306263178587,-0.615149001006,0.0278916554552,0.72406052574,-0.310725147327 +1470066243968545626,-0.010899361223,0.0244365017861,0.306698560715,-0.594071789465,0.0250244681934,0.724527173289,-0.348586947718 +1470066244043572696,-0.0108451629058,0.024348763749,0.305812746286,-0.629565439393,0.0286130621584,0.722811357291,-0.283500250382 +1470066244116868802,-0.0108416564763,0.0242007821798,0.305646300316,-0.631733307741,0.0289455496409,0.722760697148,-0.278733129901 +1470066244192152723,-0.0108616007492,0.0240818709135,0.305545002222,-0.631576800467,0.0274292616539,0.722119874012,-0.280893695682 +1470066244268166824,-0.0109267253429,0.0238933917135,0.305642068386,-0.625221709756,0.022992659858,0.720782902117,-0.298397652902 +1470066244342804773,-0.010877629742,0.0236053112894,0.305333435535,-0.617754309084,0.0272727698716,0.723399784258,-0.307129552091 +1470066244421550042,-0.0108492234722,0.0232430454344,0.305395871401,-0.615579686421,0.0286881888939,0.724549539522,-0.308652883127 +1470066244495781519,-0.0108877196908,0.0227954760194,0.305391073227,-0.607825096314,0.0270676047875,0.724622937016,-0.323631883802 +1470066244568280442,-0.0109196137637,0.0222294833511,0.305146843195,-0.58541393965,0.0260766277532,0.726347624032,-0.359206984636 +1470066244641786811,-0.0109315514565,0.0217535570264,0.305280089378,-0.587808502843,0.0261734784767,0.726210615217,-0.355547824287 +1470066244721672420,-0.0109768742695,0.0212170779705,0.304803609848,-0.535011936012,0.025894197523,0.731185731134,-0.422444251287 +1470066244798522939,-0.0109957400709,0.0206353422254,0.304768264294,-0.531648596512,0.0251860882078,0.730874984916,-0.427243709388 +1470066244876418901,-0.0109724514186,0.0196343120188,0.304720431566,-0.53238348582,0.0263798795669,0.731798729023,-0.424667571378 +1470066244952837874,-0.0109959952533,0.0189660936594,0.304628580809,-0.521293953629,0.0252130430338,0.731681255993,-0.43847400835 +1470066245025261616,-0.0110037680715,0.018355384469,0.304633051157,-0.520940842231,0.0244220240861,0.731274606481,-0.439615347266 +1470066245108100423,-0.0110735557973,0.0177577622235,0.304778397083,-0.479829307943,0.0195874510882,0.731073943557,-0.484676238381 +1470066245181065498,-0.0109490919858,0.0168827585876,0.304572969675,-0.538082529139,0.0274563587916,0.732049892883,-0.41691281406 +1470066245261188581,-0.0109498649836,0.016350062564,0.304519891739,-0.530103730967,0.0270202843285,0.732456304731,-0.426342233785 +1470066245337886112,-0.0109687242657,0.0159571804106,0.30457675457,-0.521323081139,0.0253579271733,0.732222271923,-0.437526873576 +1470066245411375504,-0.0109169995412,0.0154183544219,0.304459393024,-0.533709679361,0.027397590961,0.7327528078,-0.421279803488 +1470066245488752707,-0.0110633522272,0.0150862848386,0.304593801498,-0.453354308124,0.0180022317511,0.732156314545,-0.508028465767 +1470066245568195475,-0.0109167397022,0.0147570734844,0.304337829351,-0.517801284762,0.0270045578849,0.733776192636,-0.439004649717 +1470066245645631247,-0.0108910631388,0.0143548632041,0.30466362834,-0.551481044757,0.0269333402421,0.730458799844,-0.401961682486 +1470066245724828344,-0.0109041370451,0.0141562400386,0.304606288671,-0.536269922771,0.0263128846438,0.731480495938,-0.420307608896 +1470066245804331865,-0.0110299540684,0.0139612443745,0.304775029421,-0.477770452877,0.0170616214525,0.72951777144,-0.489129958788 +1470066245883517012,-0.0107424249873,0.0136855682358,0.304934561253,-0.614683381794,0.0320217630438,0.726267192828,-0.306063574211 +1470066245958472101,-0.0108677921817,0.013528522104,0.305058896542,-0.58185895658,0.0255187418429,0.726507266209,-0.364658937376 +1470066246038469724,-0.0109854200855,0.013420028612,0.305094242096,-0.528294602972,0.0179241596979,0.726280684792,-0.439431341473 +1470066246116626224,-0.0107960021123,0.0132521605119,0.304801940918,-0.590335371202,0.0302161160487,0.728335599872,-0.346581000342 +1470066246192193988,-0.0107916630805,0.0131134195253,0.304834634066,-0.594933020759,0.0301520653195,0.727577855055,-0.340258752424 +1470066246276706162,-0.0108374860138,0.0130676766858,0.304944425821,-0.579985628941,0.0274565006447,0.727749266831,-0.365025773639 +1470066246356801024,-0.0109010897577,0.0129770739004,0.305170893669,-0.565337614631,0.0225304378461,0.726261003591,-0.390423764027 +1470066246433207685,-0.010879823938,0.0127739133313,0.305276453495,-0.59026514574,0.019596269303,0.722374571419,-0.359691565819 +1470066246511614246,-0.0108120348305,0.012758327648,0.305229604244,-0.606560700211,0.0231996023055,0.722932640307,-0.330021655337 +1470066246590472713,-0.0109101021662,0.012842502445,0.305401235819,-0.575205197577,0.0182585332733,0.722803672662,-0.382570852823 +1470066246666588474,-0.0108073810115,0.012723730877,0.305144786835,-0.610619357346,0.0259242459983,0.72373140406,-0.320444673354 +1470066246741162829,-0.0108398590237,0.0124023966491,0.305296868086,-0.596659482936,0.023654029802,0.724080437486,-0.345174547653 +1470066246813193425,-0.0106981415302,0.0120584666729,0.305017411709,-0.614108589159,0.0315357568834,0.725991819884,-0.307915595936 +1470066246886227559,-0.0107377357781,0.011990702711,0.305117368698,-0.604311562807,0.0290857941052,0.726006834279,-0.326918381586 +1470066246962168615,-0.0108456201851,0.0118775712326,0.305315047503,-0.58913141241,0.0229112875563,0.72433973885,-0.357395011908 +1470066247039048099,-0.0107784643769,0.0116903577,0.305091023445,-0.606637878974,0.0269997746352,0.724777928441,-0.32551259639 +1470066247118904850,-0.0107230711728,0.0115727186203,0.30497393012,-0.60548747188,0.0311469659732,0.726825691499,-0.32270606143 +1470066247197171236,-0.010774645023,0.0114751122892,0.30513638258,-0.600739664222,0.0286147424893,0.726149493582,-0.333166572922 +1470066247273254731,-0.0109216654673,0.0113191558048,0.305382341146,-0.565530590721,0.0189828675397,0.724070363719,-0.394381680715 +1470066247354996443,-0.0107277799398,0.0110595049337,0.304929882288,-0.604707233477,0.03099305196,0.72681672163,-0.324200625647 +1470066247434771403,-0.0108119770885,0.0108425701037,0.305172294378,-0.601504957373,0.0256280077168,0.724653874073,-0.335278621847 +1470066247516252894,-0.0107347518206,0.0106155658141,0.304985702038,-0.616532098081,0.0299480313289,0.725090816215,-0.305343406178 +1470066247592380658,-0.0108556309715,0.0102042509243,0.305369615555,-0.573175767507,0.0187111550339,0.723287773082,-0.384674186202 +1470066247666232421,-0.0107164187357,0.00992962997407,0.30514216423,-0.597912366937,0.0296662494596,0.727034418028,-0.336216701116 +1470066247754178612,-0.0108364745975,0.00961349718273,0.305165141821,-0.586345732233,0.0207818167833,0.723391247678,-0.363966895702 +1470066247831562073,-0.0108467163518,0.00920661073178,0.305408984423,-0.581431628142,0.0208796103432,0.724036179678,-0.370503595374 +1470066247910536341,-0.0108710387722,0.00911957491189,0.305165529251,-0.579476281692,0.019519209986,0.723376798943,-0.374902982316 +1470066247987097119,-0.0108083337545,0.00878817867488,0.305332481861,-0.579959653243,0.0243099482008,0.725986214911,-0.368781565141 +1470066248064756722,-0.0107050864026,0.0085010426119,0.305014550686,-0.599117404325,0.030572639482,0.727285291608,-0.333436282011 +1470066248146202868,-0.0108473999426,0.00817460566759,0.305415660143,-0.562224468544,0.0198660640419,0.725045267361,-0.397263573397 +1470066248228457551,-0.0106667531654,0.00789170246571,0.305059492588,-0.595987865581,0.0319002140899,0.728396869616,-0.336480074827 +1470066248310139405,-0.0108345868066,0.00759102171287,0.305351942778,-0.556898440469,0.0191675623527,0.724960094148,-0.404882197002 +1470066248385127965,-0.0108295781538,0.00709933787584,0.305407822132,-0.522035468965,0.0173719773369,0.726198365084,-0.447004606347 +1470066248460390959,-0.0106977950782,0.00602356437594,0.305160820484,-0.560939368573,0.0247442417606,0.728196387599,-0.39302006103 +1470066248540161542,-0.0105254789814,0.00528990197927,0.304805517197,-0.582289062786,0.0331642470888,0.730738491871,-0.35476870856 +1470066248620906578,-0.0104866735637,0.00475723249838,0.304623812437,-0.590401839483,0.0336052934218,0.729894517765,-0.34285615807 +1470066248697900902,-0.0107383681461,0.00463728792965,0.305555403233,-0.467475908674,0.0191046378372,0.732341764768,-0.494749256896 +1470066248776543467,-0.0106853237376,0.00450062844902,0.306288540363,-0.534572000937,0.030400770284,0.734790575892,-0.416402904121 +1470066248855537734,-0.0107515864074,0.00445089163259,0.306416124105,-0.503907090647,0.0258941456774,0.734754401675,-0.45336862092 +1470066248937889759,-0.0106711732224,0.00445021642372,0.30612462759,-0.528702580886,0.0292260811546,0.734702947883,-0.424064848245 +1470066249013208772,-0.0106314821169,0.00446081347764,0.305943369865,-0.536074163842,0.0306497587853,0.734819913065,-0.414396885258 +1470066249095762180,-0.0106157045811,0.00447616586462,0.305893868208,-0.543611799481,0.0316616528492,0.734604462359,-0.404771583843 +1470066249178471132,-0.0107122240588,0.00436003273353,0.306075334549,-0.496336130644,0.0247993779536,0.734647237708,-0.461875386223 +1470066249253810634,-0.0107742212713,0.00428127497435,0.306029766798,-0.457508615907,0.0201706657107,0.734148380814,-0.50130346654 +1470066249332602854,-0.0107646426186,0.00464481441304,0.30571809411,-0.479652802934,0.0197536981997,0.731818227948,-0.483720023659 +1470066249407873727,-0.0108039453626,0.00517723849043,0.305797994137,-0.462460386683,0.0184026432058,0.731950765863,-0.50003980824 +1470066249482269794,-0.0106059536338,0.00555452564731,0.305689126253,-0.554298115922,0.0326558874572,0.733934079425,-0.39118788166 +1470066249557432790,-0.0106306457892,0.00563328061253,0.305691987276,-0.543937034839,0.0306908358621,0.733897133283,-0.405691474503 +1470066249631361865,-0.0108417086303,0.00574663281441,0.306055903435,-0.461277400598,0.0178266069672,0.731279118407,-0.502131678709 +1470066249704299436,-0.0106270238757,0.00601126812398,0.30582511425,-0.546136598504,0.0312797025068,0.734100970544,-0.402308539595 +1470066249780968173,-0.0106437234208,0.00613993406296,0.30577558279,-0.555918551622,0.0310019998133,0.732638447511,-0.391451587299 +1470066249856800025,-0.0108534069732,0.00631139101461,0.306108742952,-0.443351107517,0.0171313169863,0.732020516636,-0.517003168912 +1470066249934339610,-0.0106384707615,0.00661858450621,0.305866658688,-0.555632555964,0.0322023873932,0.73345282058,-0.390233813223 +1470066250014516155,-0.0106685589999,0.00702056568116,0.305950284004,-0.54972524971,0.0301463807228,0.732850460722,-0.399779373881 +1470066250089862367,-0.0108507825062,0.00728344218805,0.305979043245,-0.468511669268,0.0178151192223,0.730587123995,-0.496408996231 +1470066250160689092,-0.0106649203226,0.00755259906873,0.305908590555,-0.547388720618,0.0300116203161,0.733057214358,-0.402606522134 +1470066250234505538,-0.0108397044241,0.00787442084402,0.306104153395,-0.514482117362,0.0204749999016,0.729107473251,-0.450878273754 +1470066250306786875,-0.0106703368947,0.00818510632962,0.305734336376,-0.581395283912,0.0318273747686,0.730178961673,-0.357498567816 +1470066250382860752,-0.0108744483441,0.00830103643239,0.30593457818,-0.505467568499,0.0184472406213,0.728283834479,-0.462347156307 +1470066250459934779,-0.0108525073156,0.00836601573974,0.306032538414,-0.517815861015,0.0203556301607,0.728646362075,-0.44780225707 +1470066250533245134,-0.01069977507,0.00853581540287,0.305857300758,-0.587087660897,0.0315773429693,0.729400890528,-0.349721733282 +1470066250606803886,-0.0109330965206,0.00881323218346,0.306159555912,-0.508483927383,0.0169016114222,0.726430409377,-0.462014384469 +1470066250679300444,-0.0107115898281,0.00913485884666,0.306114047766,-0.589070986095,0.0312799740132,0.728847389191,-0.347560670727 +1470066250754947090,-0.0107778357342,0.0092741297558,0.30600976944,-0.581689514455,0.0275096133392,0.72755974211,-0.362680784724 +1470066250833552948,-0.0107756964862,0.00971591193229,0.306049674749,-0.609591605717,0.0307947183909,0.726095929385,-0.316598264192 +1470066250905523168,-0.0108385384083,0.0100070945919,0.306295067072,-0.58930606918,0.026217926405,0.726144286776,-0.353193221829 +1470066250986759010,-0.0107392957434,0.010213281028,0.306043535471,-0.61319053673,0.0328452763628,0.726700627911,-0.307936277302 +1470066251063374614,-0.0107375932857,0.0101981181651,0.305979311466,-0.616970440439,0.0332234720748,0.726446429498,-0.300864191284 +1470066251136040473,-0.0107718976215,0.0102817155421,0.306024372578,-0.603130688988,0.0297807176487,0.726403938615,-0.328152097085 +1470066251212970945,-0.0108948824927,0.0103887282312,0.306104689837,-0.512020953162,0.0181657511776,0.727294767965,-0.456669321828 +1470066251288710740,-0.0108496770263,0.0104414578527,0.305998295546,-0.545990364377,0.020804251221,0.726586282591,-0.416574217984 +1470066251361547858,-0.0108893187717,0.010809446685,0.305706590414,-0.572404584388,0.0194263322614,0.723704143057,-0.385003795707 +1470066251434177525,-0.010818740353,0.0111773358658,0.304558128119,-0.559080588808,0.0301811331082,0.731822640611,-0.388527498528 +1470066251506167992,-0.0109556270763,0.0114735327661,0.30439504981,-0.496154775793,0.02312236241,0.733129505467,-0.464561000331 +1470066251581354627,-0.0108808362857,0.0115785058588,0.304213285446,-0.525526538028,0.0277527056157,0.7335090904,-0.430134931689 +1470066251658726981,-0.0108642540872,0.0116541162133,0.304059624672,-0.533380053916,0.0275439522198,0.732538512114,-0.422059684228 +1470066251744608230,-0.0108950175345,0.01198727265,0.30418908596,-0.526913299843,0.0260335771304,0.732370882189,-0.430485212558 +1470066251824926879,-0.0108820684254,0.0120516847819,0.304200947285,-0.524702181084,0.0270450588098,0.733249721099,-0.431626033121 +1470066251903550811,-0.0109287397936,0.0119317118078,0.304180562496,-0.494035354968,0.0224441708952,0.732802046991,-0.467361195607 +1470066251977685409,-0.0109511101618,0.0117423338816,0.304040938616,-0.477481593251,0.0195597323067,0.731406947397,-0.486490105017 +1470066252052927888,-0.010823706165,0.0115508595482,0.30395630002,-0.529327185118,0.0285414824006,0.733808896096,-0.42487953456 +1470066252133685463,-0.0108360107988,0.0111360708252,0.303865790367,-0.521836613228,0.0274554913753,0.733715448997,-0.434274550246 +1470066252210414765,-0.0109935225919,0.0106590623036,0.30380949378,-0.433942531476,0.0152601229229,0.730408991664,-0.527222640752 +1470066252285688932,-0.0109597267583,0.0106401722878,0.303682506084,-0.434878277287,0.0152216860777,0.73022685041,-0.526704785584 +1470066252358082652,-0.0109063815325,0.0105933304876,0.303519636393,-0.467425401189,0.0172334368625,0.729873636764,-0.498498723503 +1470066252437321133,-0.010913788341,0.0105503806844,0.303465873003,-0.466097946619,0.0153265937043,0.72788047569,-0.502700519984 +1470066252518503967,-0.0108139365911,0.0105125820264,0.303405076265,-0.528342461665,0.0218311772123,0.728608942946,-0.435323616593 +1470066252598140463,-0.0107303597033,0.0104439621791,0.303418666124,-0.563863794645,0.0280159861659,0.729474496638,-0.386186074792 +1470066252677634943,-0.0107535561547,0.0104778241366,0.303437829018,-0.553823992207,0.0266795463616,0.729662509561,-0.400199712148 +1470066252753530990,-0.0109126185998,0.0105797545984,0.303502559662,-0.472272460495,0.0169884245652,0.729364801785,-0.494668679427 +1470066252826854821,-0.0107123795897,0.0109016140923,0.303380012512,-0.575488976544,0.0306454882267,0.729949977314,-0.367486493014 +1470066252899229511,-0.0109361838549,0.0110949445516,0.303573191166,-0.474601786516,0.0162783514717,0.728290365648,-0.494045850922 +1470066252980371029,-0.0109210787341,0.0115627814084,0.303475737572,-0.488783697753,0.0159503639139,0.726799454196,-0.482284808057 +1470066253056039569,-0.0107573159039,0.0117674367502,0.303292870522,-0.586762624207,0.0288960811194,0.727669415376,-0.354078891287 +1470066253137341032,-0.0108793005347,0.0119594857097,0.303285896778,-0.569397963548,0.0206402206681,0.724432006261,-0.388018309753 +1470066253208605781,-0.0107252541929,0.0124231502414,0.303188353777,-0.594184169849,0.0301414598827,0.727551432979,-0.341621979778 +1470066253280996448,-0.0108711952344,0.0126228034496,0.303354859352,-0.573011500586,0.0222904764469,0.72510390884,-0.381294212179 +1470066253355099377,-0.0109204435721,0.0130284419283,0.303326934576,-0.558718443803,0.0180582223357,0.723645487577,-0.404777481425 +1470066253433683146,-0.0109246727079,0.0135685075074,0.303406596184,-0.550381704057,0.0174668986251,0.723760248963,-0.415867754596 +1470066253510259353,-0.0108545487747,0.0141591522843,0.303299725056,-0.573453965893,0.0209932800283,0.724067677088,-0.382669348383 +1470066253586201413,-0.0107511365786,0.01424239669,0.303002417088,-0.598864863044,0.0268354991004,0.724961760518,-0.339221428547 +1470066253662296433,-0.0107367895544,0.0142944576219,0.302939414978,-0.623243109381,0.0292106173592,0.72340447543,-0.29563614693 +1470066253735809262,-0.0107408715412,0.0142605537549,0.302905797958,-0.616945982565,0.0282780633361,0.723685118597,-0.307990023949 +1470066253809651086,-0.0107474047691,0.0138307614252,0.302832573652,-0.620682867383,0.0287071659823,0.723528439806,-0.300724580889 +1470066253882078087,-0.0107594970614,0.0135886371136,0.302745431662,-0.640479723194,0.0288615621582,0.721322942044,-0.262003716936 +1470066253956359727,-0.010908221826,0.0133832423016,0.302817165852,-0.6055935811,0.017801725319,0.719786322782,-0.338891077842 +1470066254034816902,-0.0107617434114,0.0131909353659,0.302722394466,-0.631084351497,0.0291370374282,0.722468293111,-0.28093262501 +1470066254109627434,-0.0107771707699,0.0130922896788,0.302761882544,-0.627425197863,0.0278292874635,0.722473271742,-0.289128904581 +1470066254182044489,-0.010898610577,0.0129184415564,0.302907496691,-0.621218831145,0.0204947644541,0.719796521718,-0.30912796021 +1470066254256852982,-0.0107954945415,0.0127616226673,0.302756935358,-0.624405703387,0.0272931621048,0.722402891889,-0.295815250911 +1470066254335510531,-0.0107671199366,0.0125804273412,0.30274951458,-0.629084919485,0.0285205759578,0.722562759141,-0.285204838538 +1470066254407947303,-0.010783540085,0.0120505429804,0.302817672491,-0.627288622852,0.0278978824125,0.722564598112,-0.289190410203 +1470066254484104464,-0.0108205368742,0.0118451984599,0.302937924862,-0.613235197887,0.024182813521,0.722324976394,-0.318754469899 +1470066254560189993,-0.0107260048389,0.0117372302338,0.302928239107,-0.607604560228,0.0299061157002,0.72557751019,-0.321651363032 +1470066254635634830,-0.0108138723299,0.0115350382403,0.303111821413,-0.596938780222,0.0242937021132,0.723915243852,-0.344993664324 +1470066254707726966,-0.0107359457761,0.0112078944221,0.30302760005,-0.584487417147,0.0279685758387,0.726954500515,-0.359345755705 +1470066254786835560,-0.0108529571444,0.0109943784773,0.303218781948,-0.551131088351,0.0199040004813,0.725229756086,-0.412189465059 +1470066254865340743,-0.0107097420841,0.0107248257846,0.302977055311,-0.60098361092,0.0303102358795,0.726559645904,-0.331679167192 +1470066254938042444,-0.0107210017741,0.01028305199,0.302982389927,-0.598977505791,0.0289591968402,0.726183809806,-0.336220741256 +1470066255015978593,-0.0108277471736,0.0099615463987,0.303180754185,-0.567036088536,0.0214626006429,0.724907738052,-0.390535788865 +1470066255090694946,-0.0107240770012,0.00966895278543,0.302973270416,-0.584989530991,0.0288053714954,0.727416826012,-0.357522391522 +1470066255165294875,-0.0108027057722,0.00946837477386,0.303137809038,-0.55578053237,0.022394266059,0.72656358739,-0.403375569619 +1470066255239599188,-0.0107322447002,0.00906322803348,0.303078740835,-0.573801835984,0.0273244022636,0.727782050567,-0.374617293961 +1470066255318158687,-0.0108488732949,0.0088472366333,0.303130805492,-0.534823523315,0.018657345225,0.725648621334,-0.432492521016 +1470066255394229971,-0.0107231074944,0.00861794874072,0.303032636642,-0.568828213213,0.0279317158359,0.728557374682,-0.380602725817 +1470066255470461156,-0.0108632445335,0.00838966947049,0.303186953068,-0.500874632928,0.0174522664278,0.727188766003,-0.469059185056 +1470066255550659358,-0.0107413390651,0.00822398718446,0.302951872349,-0.577563343635,0.0263945503347,0.726852149351,-0.370688366133 +1470066255624764678,-0.0107510564849,0.00799471046776,0.303111761808,-0.555100218468,0.0252751859181,0.72847169141,-0.400691785851 +1470066255703308054,-0.0108231566846,0.00733259692788,0.303113281727,-0.505128866351,0.0191573626687,0.728370296132,-0.462552197646 +1470066255776856434,-0.0107671236619,0.00592984445393,0.303160786629,-0.51706613534,0.0226981269377,0.73026470069,-0.445915769674 +1470066255849455791,-0.010654383339,0.00545671628788,0.302800893784,-0.543705147425,0.0279581934893,0.731613214813,-0.410298861796 +1470066255922654591,-0.0105864666402,0.00506855128333,0.302348911762,-0.55492992555,0.0305092634773,0.732153661287,-0.393793066007 +1470066255994476999,-0.010752433911,0.00458571547642,0.302146971226,-0.50494297663,0.0184159504079,0.728114365901,-0.463187773253 +1470066256078403927,-0.0107185859233,0.00444844644517,0.301488995552,-0.553040915254,0.0213893207653,0.726653090013,-0.40701784947 +1470066256150993151,-0.0106977559626,0.00442339293659,0.300399512053,-0.514892500922,0.0281764020584,0.735245454422,-0.439893083162 +1470066256227969309,-0.0106558660045,0.00430360529572,0.300077468157,-0.519285848693,0.0299648208749,0.73597776058,-0.433337112176 +1470066256306610448,-0.0106894839555,0.00407964223996,0.300014317036,-0.502687784153,0.0262183786615,0.735123229453,-0.454105082335 +1470066256381300864,-0.0107375299558,0.00380584574305,0.29975861311,-0.476634985561,0.0208998759609,0.732927171734,-0.484974274223 +1470066256461223727,-0.0105611952022,0.00367158907466,0.299584418535,-0.550625442907,0.0314310352786,0.733441869289,-0.397349639511 +1470066256539151765,-0.010642144829,0.00371809140779,0.299611181021,-0.530658334788,0.0263478987778,0.732188391161,-0.426154525728 +1470066256613927781,-0.0105442721397,0.00366345606744,0.299511313438,-0.543676574391,0.0320909943028,0.734805909793,-0.404284832113 +1470066256690653456,-0.0107864057645,0.00388563540764,0.299934566021,-0.438815722408,0.0172669042257,0.732651548529,-0.519965695238 +1470066256767076568,-0.0105870477855,0.00416260492057,0.299753367901,-0.540057128242,0.030502749581,0.73401070678,-0.410653336568 +1470066256843082456,-0.0107231922448,0.004281910602,0.299658834934,-0.489109958658,0.0209874769668,0.731852002368,-0.474050230231 +1470066256916275946,-0.0107856197283,0.00438528461382,0.299846708775,-0.438034659689,0.0174756936052,0.732993772397,-0.520134950442 +1470066256995163066,-0.0107152611017,0.0047783437185,0.299657195807,-0.500271102449,0.0217671284921,0.731473700838,-0.462818799482 +1470066257073550754,-0.0106891868636,0.00499126408249,0.299820542336,-0.50334826758,0.0240572932117,0.733192171065,-0.456608156362 +1470066257148205657,-0.0106292068958,0.00522119645029,0.299623906612,-0.549734890484,0.0282290416397,0.731402670935,-0.402547890743 +1470066257228279076,-0.0107215326279,0.0054899007082,0.29984870553,-0.490777786278,0.0225943767971,0.73332221734,-0.469962960444 +1470066257309231897,-0.0105777746066,0.00573116913438,0.299605578184,-0.553490283927,0.0314830344153,0.733289070294,-0.393629855994 +1470066257389038945,-0.0105784665793,0.00616759154946,0.29960000515,-0.555210473042,0.0316381899863,0.733135953928,-0.391474173626 +1470066257468872112,-0.0107782036066,0.00633828435093,0.299677938223,-0.471554997857,0.0182041929762,0.730897649249,-0.493044742063 +1470066257548305331,-0.0106724826619,0.00658127944916,0.299854815006,-0.527099272784,0.026693314828,0.732922168584,-0.42927720458 +1470066257622804287,-0.0106761343777,0.00709976628423,0.299895018339,-0.537624280679,0.0273482516697,0.732160077654,-0.417317417136 +1470066257696576031,-0.0106121907011,0.00726731307805,0.299690544605,-0.555449117131,0.0312753284297,0.732868561848,-0.391665422477 +1470066257774746168,-0.0108380140737,0.00743854604661,0.299938619137,-0.455681734312,0.0171826405913,0.731010421045,-0.507624544521 +1470066257861270889,-0.0107632875443,0.00805610045791,0.299979507923,-0.498366334552,0.0219650335538,0.731858396099,-0.464254048927 +1470066257936380756,-0.0106435669586,0.00820312649012,0.299820005894,-0.550109129924,0.0298486944598,0.732543420798,-0.399836388113 +1470066258014213607,-0.010835070163,0.00842501688749,0.299876660109,-0.469722562004,0.0174890566798,0.73026574757,-0.495748712118 +1470066258094635849,-0.0106737380847,0.00866494327784,0.299859315157,-0.547457273294,0.0287743927072,0.732168396956,-0.404217771431 +1470066258168249346,-0.010663093999,0.00881155207753,0.299835711718,-0.559087242348,0.0306654391508,0.731999778496,-0.388146120124 +1470066258244984731,-0.0106999641284,0.00912638474256,0.299852818251,-0.562775563949,0.0286770407811,0.73038566675,-0.386002681028 +1470066258330421426,-0.0107828881592,0.00954385846853,0.29992172122,-0.547793388951,0.0241786838658,0.729045482269,-0.409671184063 +1470066258409629471,-0.0108695458621,0.00989132933319,0.299825638533,-0.532742631883,0.0184978960869,0.726098629837,-0.434308526008 +1470066258486180624,-0.0108397565782,0.0104065081105,0.299883544445,-0.518925185461,0.019509177195,0.727961612368,-0.447669448163 +1470066258562760498,-0.0106578804553,0.0108185419813,0.299751758575,-0.57824357187,0.0313242334631,0.730340919656,-0.362291740266 +1470066258641609880,-0.0107514942065,0.0111222798005,0.299888134003,-0.536939116552,0.0242167780083,0.729961933851,-0.422215001992 +1470066258715105032,-0.0108196148649,0.0114449672401,0.299674600363,-0.523942191169,0.0188887792258,0.72726869758,-0.442953762657 +1470066258788358734,-0.0107971075922,0.0118239764124,0.299441218376,-0.572893814115,0.0213521690816,0.724971001358,-0.381777172986 +1470066258862171980,-0.0106918076053,0.0122133642435,0.299216002226,-0.616584103003,0.0305132760412,0.725320319803,-0.304636533578 +1470066258941067366,-0.0107787884772,0.0129153979942,0.299237281084,-0.595737075761,0.0232030855145,0.723899561609,-0.347171971921 +1470066259015818035,-0.0108047481626,0.0131907416508,0.298813939095,-0.610499726527,0.0206913173484,0.720960837696,-0.327226869016 +1470066259090536423,-0.0107787754387,0.0134409768507,0.297810614109,-0.563764577563,0.0259541336218,0.728181129771,-0.388906320697 +1470066259161161450,-0.0107568204403,0.0135415010154,0.297510653734,-0.56563622702,0.0266013977126,0.728314872163,-0.385882717038 +1470066259237937632,-0.0108815338463,0.0136352051049,0.297294855118,-0.475355561575,0.0159130221032,0.727934412712,-0.493857627861 +1470066259317094842,-0.0107984533533,0.0137056047097,0.29718247056,-0.513438560106,0.0205258314025,0.72888307836,-0.452425677125 +1470066259393536145,-0.0106658572331,0.0139397317544,0.296984821558,-0.567073764587,0.0277080686555,0.729045759733,-0.382298167226 +1470066259474122620,-0.0108062913641,0.0140875810757,0.296980917454,-0.499305155365,0.0176183307884,0.727874115251,-0.469662888244 +1470066259548071132,-0.0106859561056,0.0141463559121,0.296679526567,-0.544316984872,0.0239762540699,0.728969683617,-0.414424130073 +1470066259628288928,-0.0107142347842,0.0139945801347,0.296671181917,-0.530871152527,0.0215620268575,0.728266966395,-0.432825743309 +1470066259706232219,-0.0106151131913,0.0139020336792,0.296516925097,-0.55856100134,0.0273432591366,0.729711657855,-0.393424516716 +1470066259781689498,-0.0107494592667,0.0140218660235,0.296643078327,-0.520248353366,0.0192811097484,0.727547128585,-0.446816590241 +1470066259855265589,-0.0106692388654,0.0139428125694,0.296604275703,-0.555445049421,0.0250295896759,0.728455732735,-0.400258119418 +1470066259933796158,-0.010621140711,0.0137617541477,0.296588599682,-0.56776302244,0.0284954281968,0.729414539372,-0.380509645967 +1470066260011298792,-0.0107016861439,0.013610673137,0.296730428934,-0.548007135157,0.0233916752066,0.728169842797,-0.410986239902 +1470066260084437424,-0.0107323378325,0.0135475518182,0.296648979187,-0.531924058415,0.0211796001521,0.727871364759,-0.432216955915 +1470066260157953332,-0.0107907885686,0.0134509960189,0.296679526567,-0.508486472756,0.0175490377987,0.726792017421,-0.46141835866 +1470066260231169369,-0.0107700899243,0.0133948745206,0.296632349491,-0.528775052759,0.0194643972119,0.726584007168,-0.438285022957 +1470066260306946636,-0.010642289184,0.0133009310812,0.296622097492,-0.571405304689,0.0279746421191,0.728571650834,-0.376691845906 +1470066260383092942,-0.0106411986053,0.0132009563968,0.296660453081,-0.576626909298,0.0278399643208,0.728047274595,-0.369693805486 +1470066260457070361,-0.0106389811262,0.0131371580064,0.296588480473,-0.571826268886,0.0272046163217,0.72828034816,-0.376672751266 +1470066260529679682,-0.0107059869915,0.0130574228242,0.296661883593,-0.551685899513,0.0230712904435,0.727571439468,-0.407124286067 +1470066260602808270,-0.0107288137078,0.0128968115896,0.296608000994,-0.537934948924,0.0219294171242,0.727735396366,-0.424907383164 +1470066260680174085,-0.0106284841895,0.0127788232639,0.296581029892,-0.575838933984,0.0285870563691,0.728536480558,-0.369901201421 +1470066260757711841,-0.0106362272054,0.0126626379788,0.296590209007,-0.569801144949,0.0273777884649,0.72860809698,-0.379087526739 +1470066260831585354,-0.0107029723004,0.012550518848,0.296684473753,-0.554790643984,0.0233953841556,0.727483483742,-0.403023297379 +1470066260914003114,-0.0107831144705,0.0124553395435,0.29664477706,-0.511340351951,0.0180999134786,0.727168638273,-0.457634361811 +1470066260999662026,-0.0107685998082,0.0123647656292,0.296628624201,-0.519215352372,0.019292383518,0.727161933,-0.448640997898 +1470066261078854142,-0.0106276227161,0.0122848069295,0.296529769897,-0.565133095561,0.0276695140603,0.729123914888,-0.385015972437 +1470066261153839552,-0.0106108952314,0.0121698267758,0.296508342028,-0.571712118988,0.0283682370997,0.729004547335,-0.37535698487 +1470066261226556493,-0.0106731522828,0.0120336096734,0.296540230513,-0.560914164742,0.0246779325565,0.727767715712,-0.393853337429 +1470066261306031338,-0.0107714012265,0.0119445174932,0.296582818031,-0.511618419602,0.0183684076254,0.727282298994,-0.457131985203 +1470066261384708048,-0.0106312232092,0.0117799919099,0.296514332294,-0.571417108616,0.027640319337,0.728394091158,-0.377041839447 +1470066261459308768,-0.0106082484126,0.0116896377876,0.296516358852,-0.575715178482,0.0287699070162,0.728757892908,-0.369643421746 +1470066261547737141,-0.0106284180656,0.0116013567895,0.296533972025,-0.567391730182,0.0271407918054,0.72876243726,-0.382407259318 +1470066261630652629,-0.0107754785568,0.0114590516314,0.296619027853,-0.493230340332,0.0177592854507,0.728258618328,-0.475444869557 +1470066261710899755,-0.010811412707,0.0113918622956,0.296558111906,-0.468596875752,0.01510098419,0.727419346705,-0.501048922113 +1470066261787265269,-0.0107227042317,0.0113280788064,0.296542525291,-0.543570525045,0.0218049543147,0.727135912784,-0.41872305001 +1470066261862565194,-0.0105966553092,0.0112351411954,0.296489864588,-0.575257201245,0.0297169340702,0.729389839348,-0.369034576293 +1470066261936934108,-0.0106140403077,0.0111297694966,0.296550750732,-0.577442665526,0.0286005144251,0.72850718987,-0.367449660377 +1470066262014523846,-0.0106169646606,0.0111329527572,0.29657804966,-0.577992002039,0.0285790893318,0.728367277052,-0.366864540329 +1470066262090309710,-0.0106055280194,0.0111153423786,0.296496629715,-0.578675542339,0.0286402908139,0.728357440377,-0.365800204331 +1470066262163389691,-0.0106298867613,0.0110900858417,0.296500325203,-0.558103372387,0.0268304519972,0.729549370751,-0.394409011322 +1470066262234602315,-0.0107426401228,0.0109520424157,0.296578168869,-0.523292472123,0.0201959293243,0.727827236129,-0.44274668537 +1470066262307755341,-0.0107415486127,0.0108309239149,0.296557307243,-0.525605692508,0.0204830266778,0.727599849787,-0.440360716017 +1470066262384090844,-0.0106409573928,0.0107827512547,0.296530693769,-0.560411663314,0.0270666914749,0.729178710747,-0.391796592159 +1470066262463563715,-0.010620078072,0.0107337962836,0.296510726213,-0.57702938942,0.0294059275287,0.728964825489,-0.367127577786 +1470066262543680105,-0.0106173232198,0.0106913382187,0.296600013971,-0.58128896281,0.0297772739764,0.728662606321,-0.360925562713 +1470066262620975890,-0.0106250112876,0.0106652975082,0.29652133584,-0.574379676299,0.0288705072069,0.728944460818,-0.371341425525 +1470066262699139578,-0.0106082893908,0.0107413409278,0.296469211578,-0.575803157638,0.0291228494235,0.728865812062,-0.369265773262 +1470066262773782644,-0.0106279961765,0.0107832103968,0.296455264091,-0.567384879906,0.0274834382992,0.72874189024,-0.3824321065 +1470066262847021123,-0.0106363147497,0.0107655711472,0.296534657478,-0.570216778212,0.0273221170554,0.728274439083,-0.379107727623 +1470066262920640748,-0.0106344865635,0.0105740856379,0.296504080296,-0.554671063423,0.0264243385055,0.729560519646,-0.399228272935 +1470066262997309798,-0.0106167392805,0.0101894857362,0.2966388762,-0.573584025954,0.0295418623514,0.729388051849,-0.371647296988 +1470066263072725119,-0.010664684698,0.00934206880629,0.296925038099,-0.555019917958,0.0281985657432,0.730386996975,-0.397105233168 +1470066263146945685,-0.0108506688848,0.00904878135771,0.297253251076,-0.467165949999,0.016842499584,0.729508401767,-0.499289292015 +1470066263224072477,-0.0107239848003,0.00871891062707,0.297144383192,-0.529764073247,0.0253237725488,0.730980635259,-0.429390316749 +1470066263307681730,-0.010828724131,0.00846543349326,0.297030508518,-0.476659348862,0.0166781445426,0.728664757924,-0.491493006254 +1470066263386313433,-0.0105771068484,0.00817561801523,0.296487957239,-0.56553721982,0.030095469645,0.730756316451,-0.381126123051 +1470066263464444461,-0.0105766961351,0.00806445721537,0.29633936286,-0.553276865551,0.0283118402156,0.73107014122,-0.398270760121 +1470066263543713601,-0.0105513222516,0.00798132456839,0.296078532934,-0.563295925057,0.0281431661679,0.729709765931,-0.3865608885 +1470066263618390071,-0.010527539067,0.00786429643631,0.295561611652,-0.585449890984,0.0281306986773,0.727284560156,-0.357091385358 +1470066263697271222,-0.010459125042,0.0078369025141,0.295205384493,-0.610321021523,0.030521826918,0.725720210122,-0.316080441326 +1470066263769803377,-0.0104987174273,0.0077776638791,0.294828861952,-0.629999024027,0.0298279126229,0.72291002333,-0.28215709015 +1470066263842467811,-0.010577856563,0.00774140097201,0.293775349855,-0.555133736749,0.0282237636554,0.730470414851,-0.396790784312 +1470066263929352143,-0.0106547940522,0.00755630107597,0.293611943722,-0.498011254955,0.0210224346186,0.730531523089,-0.466761760382 +1470066264009097743,-0.0105761066079,0.00752761261538,0.293324768543,-0.533444095171,0.0247600426289,0.730508886327,-0.425653737929 +1470066264088836231,-0.0104901865125,0.00752009358257,0.293007910252,-0.559464204636,0.0279896288653,0.730072573584,-0.391421028699 +1470066264163498575,-0.0104194739833,0.00759007269517,0.292670965195,-0.569716567313,0.0309446063637,0.730847948184,-0.374602110114 +1470066264238286489,-0.0106118340045,0.00769898341969,0.292530179024,-0.500014386592,0.0173442333113,0.727581305147,-0.46937217128 +1470066264310928679,-0.0104475328699,0.00779016269371,0.29208791256,-0.590108177204,0.0278305052295,0.726727930825,-0.350520066094 +1470066264391626980,-0.0103843137622,0.00777426781133,0.291758924723,-0.606911577037,0.030057578179,0.725983634428,-0.322028946207 +1470066264479052429,-0.0105159720406,0.00788435898721,0.291138768196,-0.574379857647,0.0248957149759,0.726628871061,-0.376136233625 +1470066264559597342,-0.0106830000877,0.0080099478364,0.290606558323,-0.458958410022,0.0168688402618,0.730195614536,-0.50585273016 +1470066264637206053,-0.0106654474512,0.00798327103257,0.290503650904,-0.458561867441,0.0162068380731,0.729167956132,-0.507712954216 +1470066264711663687,-0.0106165362522,0.00791298877448,0.290232688189,-0.479638320909,0.0170910852746,0.728326735597,-0.489075804078 +1470066264786625835,-0.0103896418586,0.00763909472153,0.289705872536,-0.567988888756,0.0291749893411,0.72976921825,-0.379439494967 +1470066264861219420,-0.0103739583865,0.00753039540723,0.289454609156,-0.559672969593,0.0285081210875,0.730195553369,-0.390855354291 +1470066264933157329,-0.0103198019788,0.00749459909275,0.289052605629,-0.580607227298,0.0298753423078,0.728842125408,-0.361651583381 +1470066265006975739,-0.0104833748192,0.00754141900688,0.288925409317,-0.542513017782,0.0189273046627,0.725547345447,-0.422968594803 +1470066265085901722,-0.010478137061,0.00753122661263,0.28877800703,-0.553140153635,0.0189842845696,0.724840603388,-0.410221485366 +1470066265165360782,-0.0105001032352,0.00748486723751,0.28853598237,-0.562331718374,0.0188757094987,0.724154271492,-0.398782318041 +1470066265241315710,-0.0104052117094,0.00714887538925,0.288089185953,-0.568359309497,0.0262926507832,0.728201393867,-0.382098314303 +1470066265319218992,-0.0105930287391,0.00705358013511,0.287504851818,-0.474624872294,0.0193324590236,0.731627894973,-0.488956143151 +1470066265397346770,-0.0106056593359,0.00694751320407,0.287248194218,-0.450328793034,0.0164987930007,0.730728067792,-0.512804308617 +1470066265473166692,-0.0105453757569,0.00696582347155,0.287119537592,-0.479649896002,0.0193727265521,0.731305104909,-0.484513692547 +1470066265551236764,-0.0104717006907,0.0075118006207,0.287047356367,-0.52147826636,0.0235337992052,0.730916371195,-0.439622379241 +1470066265628290327,-0.010515502654,0.00823854655027,0.286741405725,-0.506923310513,0.018690047451,0.728181868876,-0.460901947517 +1470066265701159893,-0.0104380231351,0.00888423994184,0.286762595177,-0.538589407061,0.0231609940199,0.728792396926,-0.422192682481 +1470066265773527555,-0.0105058345944,0.00964825227857,0.286510080099,-0.511291022762,0.0170694276597,0.726381604597,-0.458977002895 +1470066265847363811,-0.0103381434456,0.00976758915931,0.286220729351,-0.609152773975,0.0273483865749,0.724055832018,-0.322378838995 +1470066265924915882,-0.010438839905,0.0100089805201,0.28600525856,-0.631418402833,0.0226179144821,0.719696028518,-0.287813927813 +1470066265998803630,-0.0104396110401,0.0100297555327,0.285305291414,-0.6056406368,0.0246842011328,0.72323459129,-0.330940833433 +1470066266085941231,-0.0105131315067,0.0100448457524,0.28486558795,-0.540776490798,0.0222451458246,0.727681994005,-0.421360719679 +1470066266158361909,-0.0105195278302,0.00998645368963,0.284522354603,-0.530617416843,0.0218448339632,0.728241787846,-0.433164932337 +1470066266233707664,-0.0104655344039,0.00995935872197,0.284298986197,-0.540200853528,0.0233288134166,0.728715637065,-0.420252691376 +1470066266311477816,-0.0103809852153,0.00994079187512,0.283952385187,-0.561206863629,0.0262331572351,0.728717591279,-0.391572917651 +1470066266397371856,-0.0103271165863,0.0100197289139,0.28374055028,-0.560574362335,0.0281830206965,0.730126976238,-0.389713613063 +1470066266477782709,-0.0105308908969,0.0101862847805,0.283792316914,-0.475603987301,0.0155864343571,0.72769496032,-0.493981735545 +1470066266554247986,-0.0104620726779,0.0102939503267,0.283859908581,-0.511303689513,0.0198415616066,0.728707330878,-0.455148849772 +1470066266628846248,-0.0104486141354,0.0103165265173,0.283867508173,-0.520247700554,0.0209235098614,0.728889218074,-0.444550384746 +1470066266708044713,-0.0103771919385,0.0103385383263,0.283709257841,-0.555142510021,0.024683833988,0.728381193946,-0.400834552171 +1470066266790396736,-0.0104630207643,0.0102039687335,0.283651351929,-0.535516092579,0.0197618124095,0.726491806282,-0.430164667034 +1470066266866815184,-0.010480853729,0.0100550660864,0.28353753686,-0.552215606091,0.019029624264,0.724770348955,-0.411586854826 +1470066266953000631,-0.0103716235608,0.00969705171883,0.283310323954,-0.585805713905,0.0246773447877,0.725121605372,-0.361138964435 +1470066267033456143,-0.0103507349268,0.00940332189202,0.282964348793,-0.610987105846,0.0257004221739,0.72349129226,-0.320303910083 +1470066267114320238,-0.0103077348322,0.0092165376991,0.282631158829,-0.625348819192,0.0283368125801,0.72289404785,-0.292506538338 +1470066267189009335,-0.0103231491521,0.0091868173331,0.282250732183,-0.608118550141,0.0281592606279,0.724795980265,-0.322598313708 +1470066267264700492,-0.0103894565254,0.00921633001417,0.281688779593,-0.564974093692,0.0261332640125,0.727991053933,-0.38749238878 +1470066267341722094,-0.0103726638481,0.00921737961471,0.281476736069,-0.562375091504,0.0268048244476,0.728785027221,-0.389728292455 +1470066267418597790,-0.0103791868314,0.00921991188079,0.281238168478,-0.553101531512,0.0238162744501,0.727756495738,-0.404823373611 +1470066267491452030,-0.0104452772066,0.00929134339094,0.281127482653,-0.51880154047,0.0188287698132,0.72704819697,-0.449323222543 +1470066267571090077,-0.0103071853518,0.00936847645789,0.280823290348,-0.563408229689,0.0258874316714,0.728199268268,-0.389392903497 +1470066267650410487,-0.0102444412187,0.00942598190159,0.280479818583,-0.581952299083,0.0281389836531,0.727653202547,-0.362022839079 +1470066267729010217,-0.0102381398901,0.00937414634973,0.280268281698,-0.603465462536,0.0285823110551,0.725594285649,-0.329431965137 +1470066267803531610,-0.0102073661983,0.00931179430336,0.28000447154,-0.612311562241,0.0294557356605,0.72513026409,-0.313676601747 +1470066267891684867,-0.0102460393682,0.00923566427082,0.279627293348,-0.607913342678,0.0279209805668,0.724869146453,-0.322841303366 +1470066267973676543,-0.0103019876406,0.00926233269274,0.278980344534,-0.56195278946,0.0268006127287,0.72910265297,-0.389743647808 +1470066268052829345,-0.0103460168466,0.00924784038216,0.278596371412,-0.530723701692,0.0261581497575,0.731740051036,-0.426854309306 +1470066268128781303,-0.0102943023667,0.0091378511861,0.27842566371,-0.549986009928,0.0268054828296,0.730256648159,-0.404378637904 +1470066268205461272,-0.0102516710758,0.00907284859568,0.278160810471,-0.570248425091,0.0275378260643,0.728509608242,-0.37859233024 +1470066268285168776,-0.0102250287309,0.00900300312787,0.277825176716,-0.581185428792,0.0262343516581,0.726433328192,-0.365827658667 +1470066268362330210,-0.0102910809219,0.00901169236749,0.277645736933,-0.555012152164,0.0210627772145,0.725669654735,-0.406105186575 +1470066268439672414,-0.0103544825688,0.00901476852596,0.277517139912,-0.545446277797,0.0171276259666,0.723825047902,-0.422223048277 +1470066268519576160,-0.0101825781167,0.00919424090534,0.277168095112,-0.625954223598,0.0286952115507,0.723085965312,-0.290696717496 +1470066268596996210,-0.0102068586275,0.00907718390226,0.276866257191,-0.617812326042,0.027073056339,0.723318298827,-0.307222424301 +1470066268674667221,-0.0103057250381,0.00897854194045,0.276344805956,-0.563788829263,0.0228118785483,0.726196073678,-0.392760788228 +1470066268750352508,-0.0104028731585,0.00893181376159,0.275841057301,-0.501151453609,0.0197089109761,0.729475080105,-0.465107392845 +1470066268829352464,-0.0104173161089,0.00881430972368,0.275489449501,-0.452984341982,0.0156087189128,0.729593508518,-0.512108256271 +1470066268906047346,-0.0103768035769,0.00871226750314,0.275212436914,-0.469116409693,0.0162009143363,0.728715325275,-0.498639448139 +1470066268978240072,-0.01033799164,0.00863154511899,0.274930179119,-0.489425069147,0.0165264461466,0.727570607882,-0.480448736927 +1470066269050238336,-0.0102850459516,0.00856660399586,0.274664193392,-0.52696455089,0.0178666981745,0.725956503542,-0.44156120546 +1470066269127284465,-0.0102512957528,0.00847791228443,0.27436247468,-0.577504993602,0.0194017222201,0.722858903314,-0.378928174513 +1470066269204382976,-0.0102424621582,0.00849046651274,0.273632526398,-0.575159471236,0.0227532600937,0.725103848633,-0.378018889079 +1470066269278363667,-0.0102854212746,0.00850071478635,0.273025482893,-0.534593104807,0.0225513195952,0.728428385972,-0.427894539329 +1470066269352219746,-0.0102900341153,0.00843160413206,0.272896915674,-0.532875966172,0.0217188354948,0.727948141669,-0.430886295792 +1470066269429157989,-0.0102903777733,0.00841917376965,0.272845804691,-0.525132585898,0.0212373145173,0.728384939299,-0.439590859667 +1470066269506595404,-0.0103100435808,0.00832503568381,0.272775292397,-0.516962243293,0.0196837155871,0.728036234695,-0.449806437617 +1470066269580432885,-0.0102062905207,0.00811526365578,0.272798657417,-0.556630878553,0.0265148832032,0.729242222539,-0.397070279517 +1470066269660439088,-0.0101927500218,0.00812357198447,0.27279394865,-0.560408607097,0.0270433614526,0.729318119143,-0.391543012685 +1470066269733738757,-0.010240460746,0.00853772833943,0.272944569588,-0.548815692068,0.0248825520509,0.728950887713,-0.408427224908 +1470066269815386865,-0.0102983014658,0.00934803579003,0.272879689932,-0.519774116155,0.02022950133,0.72822669402,-0.446219136263 +1470066269888502174,-0.0101950941607,0.00999776832759,0.272623181343,-0.564982832079,0.0252329138861,0.727679773596,-0.388123494023 +1470066269963037737,-0.0102082397789,0.0106433043256,0.272382378578,-0.558149953431,0.0228917005405,0.726727627942,-0.399764373497 +1470066270042933424,-0.0101889679208,0.010957733728,0.271927833557,-0.571719737181,0.0223497508592,0.725228219763,-0.382989634342 +1470066270118893552,-0.010101750493,0.011116951704,0.271713644266,-0.61157172156,0.0272246242618,0.724047747264,-0.317795073757 +1470066270193815106,-0.0101354960352,0.0112618356943,0.271195650101,-0.624118700685,0.0254276103025,0.721859361461,-0.297906606777 +1470066270271600073,-0.0102154780179,0.0114486608654,0.270408183336,-0.564487900319,0.0249408701771,0.727400105353,-0.389384707096 +1470066270345090917,-0.0102879954502,0.0115268472582,0.269999712706,-0.521909129476,0.0180295202793,0.725940535748,-0.447544562614 +1470066270431126958,-0.0102242110297,0.0115085570142,0.269852042198,-0.553923550625,0.0202735532313,0.72501079708,-0.408799495131 +1470066270510397043,-0.0101283099502,0.011535785161,0.269548922777,-0.570025716459,0.0239129448607,0.726145898782,-0.383680840446 +1470066270586013486,-0.0101332189515,0.0116137554869,0.26919478178,-0.590216276284,0.0230003722753,0.723795907564,-0.356700454552 +1470066270661922953,-0.0101769454777,0.0116496961564,0.26884996891,-0.58425346001,0.019112546053,0.722179093178,-0.369783669766 +1470066270738668585,-0.0101161552593,0.0116677824408,0.268601566553,-0.60873146863,0.0229509305178,0.72217321717,-0.327696655904 +1470066270816311294,-0.0102059068158,0.0121183525771,0.268048733473,-0.576000940091,0.0219844994571,0.724575996019,-0.377795215416 +1470066270890260443,-0.0101538971066,0.0123561471701,0.267763495445,-0.560688060155,0.0257888812926,0.728550023255,-0.392655951714 +1470066270967435854,-0.0101380096748,0.0124582629651,0.267849385738,-0.583110357081,0.0251942129443,0.725901191235,-0.363888751768 +1470066271040990511,-0.010152422823,0.0120554054156,0.267726242542,-0.573471855864,0.0271684133053,0.727926262152,-0.374853657737 +1470066271114428890,-0.0102145234123,0.011345313862,0.267737060785,-0.547775559117,0.024103030283,0.728247090847,-0.411116960777 +1470066271188142323,-0.0101941823959,0.0110084591433,0.267724961042,-0.548397668181,0.025019602171,0.729074475444,-0.40875961921 +1470066271265159015,-0.0102089894935,0.0108421565965,0.267728209496,-0.551860217967,0.02408159648,0.727974346507,-0.406108024255 +1470066271341803119,-0.0101761501282,0.010940826498,0.267644137144,-0.552084133342,0.0249153967149,0.728582228251,-0.404660684271 +1470066271413473632,-0.0101776877418,0.01088230405,0.267663866282,-0.552859236767,0.0250407684853,0.728615078853,-0.403534002412 +1470066271489240405,-0.0101818563417,0.0108796758577,0.267634242773,-0.543283276517,0.0243355444692,0.729029888815,-0.415651878315 +1470066271567284780,-0.0101871583611,0.0108257746324,0.267632633448,-0.549872620329,0.0242910375016,0.728377166343,-0.408064640051 +1470066271644538787,-0.0102024460211,0.0107534117997,0.267582088709,-0.542824206719,0.0231383324796,0.728394322718,-0.417430483796 +1470066271716929051,-0.010252260603,0.0106826899573,0.267609417439,-0.519528729881,0.0199458838887,0.728006521857,-0.446876453484 +1470066271792709537,-0.0101899318397,0.0105009153485,0.267626225948,-0.543312894627,0.0242984544177,0.728980472355,-0.415702002124 +1470066271875900077,-0.0102124577388,0.0102847628295,0.267605364323,-0.540107112184,0.0226676473562,0.728255894942,-0.42120521912 +1470066271952147533,-0.0101607991382,0.0100223142654,0.267525106668,-0.546559365397,0.0248063929958,0.729131794481,-0.411125685454 +1470066272025840615,-0.0102393869311,0.0101521490142,0.267433851957,-0.519388976281,0.0190898823409,0.727463911956,-0.447958619196 +1470066272105360704,-0.0101778227836,0.0101724807173,0.267236858606,-0.530468962875,0.0211295250115,0.727906308197,-0.433945421782 +1470066272180654921,-0.010052244179,0.00986351072788,0.266873657703,-0.563128488403,0.0248943225389,0.727557377762,-0.39105861494 +1470066272254466033,-0.0100105078891,0.00970284920186,0.266635805368,-0.572018075839,0.0250663752911,0.726532717658,-0.379891047426 +1470066272338664436,-0.00998905673623,0.00957908853889,0.26633900404,-0.595791143287,0.0256714651683,0.724699101794,-0.345231952919 +1470066272416467674,-0.00994858704507,0.00945948809385,0.265861421824,-0.615043832558,0.0269557618425,0.72351733436,-0.312277341184 +1470066272490898572,-0.00994875188917,0.00942808482796,0.265363574028,-0.606641564767,0.027035148694,0.724527352173,-0.32606016099 +1470066272564314719,-0.0100600998849,0.00941573362797,0.264649122953,-0.539552951783,0.0247073170125,0.729703082865,-0.419291749938 +1470066272640893977,-0.00991717074066,0.00912905950099,0.26276704669,-0.589265630417,0.0192310484018,0.721637956605,-0.362815163925 +1470066272719046059,-0.0099649624899,0.0091780712828,0.260712236166,-0.507972018012,0.0156827088262,0.725321060357,-0.464357449561 +1470066272791902243,-0.00995696149766,0.00920009147376,0.260643333197,-0.52057494974,0.015615176434,0.724417801561,-0.45163783804 +1470066272865806995,-0.0098017314449,0.00924015324563,0.260261714458,-0.597701702695,0.023183055526,0.723082722336,-0.345494713695 +1470066272951659633,-0.00979279540479,0.00935241859406,0.260421782732,-0.610232451407,0.0252177319407,0.723037550729,-0.322795789133 +1470066273028873588,-0.00979882199317,0.00933994911611,0.260219544172,-0.625177883262,0.0243800101359,0.721074200951,-0.29767469847 +1470066273103210255,-0.00982685480267,0.00933939684182,0.260010540485,-0.629840030155,0.0233368283774,0.720170356567,-0.290019975824 +1470066273182852334,-0.0100240753964,0.00947155617177,0.259115070105,-0.483957163013,0.0158473253928,0.727029369618,-0.486788067191 +1470066273261499669,-0.00999101996422,0.00947735644877,0.259071707726,-0.509824987943,0.0175733246319,0.726563447406,-0.460299051514 +1470066273336004106,-0.00991678144783,0.00955810770392,0.258995145559,-0.535547746827,0.0213607573297,0.727485126861,-0.42836633751 +1470066273414383573,-0.00991920754313,0.00952523294836,0.258934855461,-0.534645988182,0.0209466996988,0.727204539073,-0.429986582867 +1470066273489695715,-0.00996800046414,0.00942841731012,0.258875072002,-0.509262732486,0.0176068172576,0.726638823151,-0.460800922283 +1470066273569014603,-0.00990439672023,0.00933069176972,0.258882850409,-0.542135520595,0.0215920105225,0.727084517329,-0.420679173541 +1470066273645139859,-0.00990749616176,0.00920505262911,0.259001940489,-0.556888268715,0.0231807363356,0.726696535428,-0.401559777651 +1470066273724836672,-0.00991912186146,0.00911522749811,0.259056389332,-0.552916026331,0.0224738307483,0.726678813228,-0.407083157553 +1470066273800534812,-0.00995674356818,0.00904414337128,0.259083926678,-0.543873385757,0.0204396861993,0.726130979397,-0.420140167389 +1470066273874821084,-0.0100043704733,0.00898490473628,0.259067475796,-0.5252765223,0.0179961773756,0.725829366675,-0.443770710155 +1470066273957454232,-0.00991267152131,0.00870518572628,0.259033560753,-0.568002656845,0.0238490557509,0.726122881206,-0.386716647879 +1470066274035778389,-0.00993196107447,0.00860501732677,0.259006798267,-0.557739258183,0.0220464596725,0.726013972026,-0.401677216084 +1470066274121880107,-0.00999505072832,0.00900792982429,0.259082466364,-0.515502617074,0.017612662842,0.726344356104,-0.454280444499 +1470066274198284316,-0.0100208185613,0.00979952700436,0.258943617344,-0.497823133508,0.0151636280524,0.725729867432,-0.474613897443 +1470066274277318716,-0.00987100880593,0.010491640307,0.258900105953,-0.563130832435,0.0239321127501,0.726769044119,-0.392578241948 +1470066274353119036,-0.00999998953193,0.0111541356891,0.258880674839,-0.503457528816,0.015842687464,0.725717658126,-0.468629284847 +1470066274428154624,-0.00983964186162,0.0117480484769,0.258712023497,-0.567463937306,0.0235263396394,0.726193909765,-0.387393335798 +1470066274507437521,-0.00997854489833,0.0123055018485,0.258348047733,-0.476089313621,0.0128632986803,0.724757320973,-0.49789589946 +1470066274579428904,-0.00979160424322,0.0125596262515,0.258105576038,-0.59875738379,0.0230471865809,0.723094675518,-0.343645911927 +1470066274658463242,-0.00979740265757,0.0126170804724,0.257789671421,-0.617653988319,0.0208865839915,0.720250660191,-0.315129001867 +1470066274738038113,-0.0097445929423,0.0126094650477,0.257438510656,-0.640446882179,0.0237186235598,0.719278030549,-0.268149832692 +1470066274817904660,-0.00977227371186,0.0125898253173,0.25684222579,-0.627224086795,0.0231821216463,0.720223773841,-0.295516919608 +1470066274895376354,-0.00981433875859,0.0126764168963,0.256380796432,-0.571248269971,0.0227410474346,0.725086286672,-0.38393767163 +1470066274975301561,-0.00982424430549,0.0127167738974,0.256281197071,-0.570869386893,0.0217353943579,0.724540252845,-0.385586744777 +1470066275050882626,-0.00980947725475,0.0126973856241,0.256276786327,-0.580804860684,0.023144299327,0.724490456548,-0.370464078672 +1470066275130118691,-0.00982052180916,0.0126531608403,0.25639629364,-0.586062230593,0.0236840583436,0.724386270059,-0.362263245449 +1470066275205359235,-0.00988057535142,0.0126886758953,0.256693512201,-0.557238753783,0.0227010207833,0.726596698256,-0.401281538352 +1470066275287849802,-0.00985673628747,0.0128482840955,0.25877431035,-0.597826118379,0.0252154771761,0.724353804563,-0.342461206138 +1470066275363654008,-0.00989594031125,0.0128795299679,0.25910782814,-0.579520064746,0.0242389891967,0.725421595684,-0.370583964137 +1470066275441094617,-0.00988677144051,0.0128659950569,0.259123653173,-0.585130673724,0.0257633308093,0.725766450951,-0.360862029212 +1470066275520978249,-0.00993515457958,0.0125899873674,0.259040892124,-0.568198983132,0.0218904951237,0.724989544752,-0.388665514024 +1470066275598376656,-0.00987864937633,0.0124116167426,0.25908023119,-0.57164373937,0.0246896156925,0.726559065574,-0.38042841948 +1470066275674141501,-0.00991635303944,0.0123092122376,0.25917878747,-0.57216590784,0.0234532859661,0.725566976165,-0.381613260227 +1470066275749063071,-0.00999997649342,0.0121307736263,0.259112775326,-0.536910463014,0.0183505327744,0.725160746889,-0.430734609505 +1470066275827205297,-0.0098732104525,0.0120330359787,0.259123325348,-0.586735448893,0.0260930465455,0.72579020198,-0.358174885557 +1470066275907201598,-0.00992114841938,0.0118970377371,0.259214520454,-0.571759913726,0.023769266692,0.725819606647,-0.38172178563 +1470066275985930336,-0.00995983742177,0.0116801783442,0.259142935276,-0.56589806258,0.0214534686057,0.724833981923,-0.392319805902 +1470066276064109102,-0.00985672883689,0.0116152120754,0.259099274874,-0.580858279999,0.0266800711738,0.726789911177,-0.365606697656 +1470066276142745607,-0.00988049246371,0.0115112857893,0.259150207043,-0.580373075196,0.02545151833,0.726085083494,-0.367858349546 +1470066276215822087,-0.00992304552346,0.0113447355106,0.259103059769,-0.567854611591,0.0228700461438,0.725646492937,-0.387885638265 +1470066276295239143,-0.00994896423072,0.0112880961969,0.259075462818,-0.552890146277,0.0209148901907,0.725667957105,-0.409000085023 +1470066276367870978,-0.00992668606341,0.0111855035648,0.259093284607,-0.568804481365,0.0225562694222,0.725390402319,-0.386990233615 +1470066276445455687,-0.0099064335227,0.0110303238034,0.259101867676,-0.570980159515,0.0239075537655,0.725939969124,-0.382650294057 +1470066276520532382,-0.00989020057023,0.0109707508236,0.259096235037,-0.573538859556,0.0244075615489,0.726054547626,-0.3785528251 +1470066276601116218,-0.00995113234967,0.0108880531043,0.25911539793,-0.551074566428,0.0214037873289,0.726054358143,-0.410735643871 +1470066276680298958,-0.00995349977165,0.0108165228739,0.259031891823,-0.549004676669,0.0203933987764,0.7256749097,-0.414214799004 +1470066276754156168,-0.00987549498677,0.010736906901,0.259089678526,-0.582256792851,0.0255932960279,0.725923618465,-0.365180654652 +1470066276835085919,-0.00987041648477,0.0106248818338,0.259127527475,-0.582106217367,0.0260976991589,0.726324372414,-0.36458766825 +1470066276909299477,-0.0098933968693,0.010552637279,0.259109795094,-0.568589421568,0.0242020302317,0.726446400252,-0.38522196066 +1470066276981018774,-0.00991685595363,0.0104671930894,0.259092867374,-0.565917360663,0.0229686307156,0.725870680889,-0.390284175351 +1470066277068204730,-0.00988671835512,0.0102891828865,0.259125590324,-0.580175854651,0.0251799886294,0.725874283872,-0.368603404578 +1470066277144953243,-0.00994808133692,0.0099643971771,0.259107470512,-0.550462405352,0.0211009395868,0.725906506016,-0.411832047279 +1470066277219875765,-0.00993205048144,0.00878237374127,0.259200274944,-0.543651341244,0.0228262745545,0.727573735427,-0.41780215398 +1470066277293736408,-0.00984125863761,0.00809653569013,0.25909870863,-0.57184317084,0.0270226893959,0.72786275217,-0.377466523317 +1470066277367058673,-0.0098423268646,0.00751375081018,0.258854687214,-0.554432521478,0.0248983719179,0.728200034527,-0.402131023321 +1470066277444361797,-0.00988505408168,0.00710807414725,0.258448034525,-0.515981535527,0.0192565222203,0.727505146099,-0.451805825269 +1470066277520869719,-0.00972756650299,0.00694379024208,0.25825765729,-0.566456425205,0.0263210393879,0.728182862335,-0.384946801819 +1470066277594492725,-0.00969209056348,0.00680974358693,0.257959663868,-0.574323963497,0.0263335542178,0.727407259072,-0.374616081241 +1470066277668003670,-0.00965958274901,0.00665142107755,0.257498264313,-0.604475782593,0.0257819136773,0.72385801717,-0.331623117656 +1470066277745342148,-0.00967432651669,0.00658316165209,0.257136613131,-0.616249509357,0.0254858742801,0.722473363086,-0.312440797688 +1470066277823398943,-0.00976956356317,0.00667775049806,0.256286710501,-0.556162244413,0.0238227631992,0.727449117914,-0.401165570169 +1470066277897082617,-0.00979601871222,0.00667887181044,0.255976945162,-0.545633710546,0.0206222529142,0.726174191624,-0.417767423359 +1470066277978534507,-0.00971778202802,0.0066551794298,0.255568832159,-0.544154806681,0.021978976896,0.727277182597,-0.417708475631 +1470066278049655528,-0.00966274552047,0.00661840848625,0.255324959755,-0.573983156375,0.0240065154587,0.725947847418,-0.378109436859 +1470066278127566891,-0.00966325029731,0.00657587265596,0.255205065012,-0.582679826857,0.0241948096759,0.725201173244,-0.366035638817 +1470066278202184767,-0.00956795737147,0.00631439499557,0.25503051281,-0.603154183915,0.0288878021949,0.725771061626,-0.329585939349 +1470066278275625426,-0.00965033937246,0.00609344476834,0.255062937737,-0.57085709474,0.0230249431997,0.725728024838,-0.38328952939 +1470066278349997852,-0.00960381422192,0.00615376513451,0.255034685135,-0.574878088609,0.0248612588821,0.726473469227,-0.375677254506 +1470066278420476503,-0.00961746647954,0.00616963906214,0.255094140768,-0.574721539224,0.0248009818456,0.726430910596,-0.376002919912 +1470066278505853053,-0.00962154380977,0.00620675645769,0.255251973867,-0.559714932982,0.0246588874162,0.727889532832,-0.395332721973 +1470066278586340341,-0.00965935457498,0.00640720594674,0.2553383708,-0.564383063203,0.0234766101139,0.726626223638,-0.391068968175 +1470066278665425172,-0.00962373893708,0.00648025469854,0.255235791206,-0.562732437317,0.0246365288129,0.727461280691,-0.39182308576 +1470066278746281928,-0.00966827943921,0.00646524317563,0.255318373442,-0.551637892326,0.0224708090767,0.727128141633,-0.408013926399 +1470066278822700156,-0.00969679746777,0.00654939329252,0.255280047655,-0.543862340639,0.0212609171544,0.72688484819,-0.418808005306 +1470066278900571177,-0.00968297664076,0.00656957179308,0.255278199911,-0.555631268476,0.0221060627295,0.726384682769,-0.403918937562 +1470066278980332132,-0.0096561126411,0.00660579930991,0.25529229641,-0.567921967493,0.0239528797456,0.726499787978,-0.386120391146 +1470066279052970517,-0.00961893610656,0.00670581450686,0.25534042716,-0.573670320211,0.025912694918,0.727201674195,-0.376043376487 +1470066279125489723,-0.00962521042675,0.00672601163387,0.255373477936,-0.586908896892,0.0265152236829,0.726238486838,-0.356948945785 +1470066279201121964,-0.00967367272824,0.00682730367407,0.2554050982,-0.574188408066,0.0240081681189,0.725985170412,-0.377725842706 +1470066279281519943,-0.00968266651034,0.00690920371562,0.255296438932,-0.567317318662,0.023101081335,0.726077169686,-0.387852218825 +1470066279355951820,-0.00971992872655,0.00696712499484,0.255300372839,-0.552615380736,0.0208792558386,0.725851387014,-0.409047749804 +1470066279429993738,-0.00968816503882,0.00703321909532,0.255287617445,-0.552665614655,0.0226152531441,0.727171536747,-0.406535145895 +1470066279508303490,-0.00965377502143,0.00705636665225,0.255309790373,-0.585489162345,0.02522270765,0.725656543821,-0.360539645816 +1470066279583317150,-0.0096587529406,0.00711638014764,0.255402863026,-0.593750455367,0.0257369541726,0.725070488494,-0.347952285027 +1470066279656001002,-0.00965094566345,0.00718364259228,0.255427569151,-0.587998721136,0.0263008290824,0.7260099178,-0.35563375766 +1470066279728724719,-0.00963212363422,0.00725156022236,0.255351603031,-0.588290593705,0.026896547101,0.726412841154,-0.354281155749 +1470066279807719874,-0.00969136226922,0.00734448106959,0.255317002535,-0.584014585328,0.0237560078936,0.724927439307,-0.364476095174 +1470066279882325482,-0.00974638294429,0.00737115042284,0.255353868008,-0.562664533228,0.0203483437197,0.724639413623,-0.397356625942 +1470066279955973962,-0.00970274303108,0.00741961086169,0.25529178977,-0.571964787095,0.0226010061857,0.725303570286,-0.382465956357 +1470066280030830119,-0.00969210267067,0.00748150283471,0.255395531654,-0.589155703523,0.0245254303895,0.724947965829,-0.35601194799 +1470066280110999995,-0.00975577905774,0.00781848561019,0.255360841751,-0.589188155584,0.0222769021191,0.723611657591,-0.358813636795 +1470066280185680759,-0.00977291353047,0.00823587551713,0.255270272493,-0.609301142801,0.0228974492007,0.722136810906,-0.326720447074 +1470066280264734523,-0.00982342474163,0.00865738000721,0.25480851531,-0.578561226576,0.0224207695365,0.724687230201,-0.373620977169 +1470066280342264300,-0.00981551222503,0.00877101998776,0.254662871361,-0.563580029114,0.0237874640892,0.726905436188,-0.391688899735 +1470066280424366403,-0.00978895463049,0.00920486729592,0.254156827927,-0.555149669187,0.0247504115232,0.728319952534,-0.400931800524 +1470066280497535059,-0.00983173213899,0.00935774669051,0.253811538219,-0.538394045466,0.0203306371499,0.726638953823,-0.426279659128 +1470066280570704474,-0.00972960237414,0.0094554098323,0.253634780645,-0.573558107247,0.0246418983435,0.72645594847,-0.377737513876 +1470066280649926371,-0.00973131880164,0.00954492483288,0.253139257431,-0.61582454815,0.0224042169203,0.721088857042,-0.316684444219 +1470066280727662333,-0.00971621554345,0.00961248669773,0.252762287855,-0.607003616664,0.0244324646601,0.722959865249,-0.329057285691 +1470066280800463798,-0.00975814927369,0.00974513124675,0.251910984516,-0.562820311648,0.0249159323376,0.727574853638,-0.391468166607 +1470066280885889298,-0.0098245581612,0.00978981237859,0.251648753881,-0.540535424764,0.0196807952191,0.725950541237,-0.424770446892 +1470066280961554873,-0.00973258074373,0.00982002262026,0.251347005367,-0.551052586698,0.0223538543923,0.727017506049,-0.409007209943 +1470066281034144477,-0.00965460762382,0.00980496685952,0.251062631607,-0.586691869657,0.025523324638,0.725770274383,-0.358327669599 +1470066281110530343,-0.00959087256342,0.00982054695487,0.250424921513,-0.615917228913,0.0279911717124,0.723912392099,-0.309537251393 +1470066281180445269,-0.00979222916067,0.00989299174398,0.249704122543,-0.546907609276,0.0205582180181,0.726045216766,-0.416326518251 +1470066281254841262,-0.0097263706848,0.00992293097079,0.249459326267,-0.56551875839,0.0231046134025,0.725979605458,-0.39065115283 +1470066281328707476,-0.00963781401515,0.010027455166,0.249159514904,-0.587082280384,0.026112895506,0.725796848577,-0.357591173471 +1470066281408326177,-0.00970273930579,0.0100627848879,0.248883590102,-0.568764223483,0.0210152296256,0.724591636789,-0.388629100949 +1470066281487692537,-0.00966521073133,0.0100347772241,0.248634159565,-0.595140165498,0.0226808720363,0.723266805342,-0.349540970051 +1470066281561547941,-0.00963938422501,0.0100226150826,0.248362869024,-0.597580457827,0.0236408023102,0.723588652925,-0.344613073239 +1470066281635808293,-0.00964544247836,0.0100353788584,0.248023867607,-0.586764311957,0.0241320492776,0.72485958842,-0.360144225953 +1470066281712883558,-0.00966270081699,0.0100542251021,0.247206702828,-0.552918383852,0.0249175561614,0.728637654263,-0.403419812333 +1470066281788851213,-0.0095790643245,0.0100300032645,0.24686384201,-0.573267419821,0.0268741628616,0.727798763199,-0.375434688099 +1470066281862423338,-0.00955158472061,0.00998064316809,0.246590957046,-0.5906565879,0.0262688216881,0.725544034646,-0.352165583166 +1470066281936832647,-0.00959642231464,0.00990396458656,0.246150299907,-0.608913184587,0.0229619740265,0.722008139351,-0.327722028701 +1470066282008456284,-0.00962098222226,0.00992097053677,0.245777487755,-0.590613867923,0.0227226847678,0.723686900198,-0.356281081586 +1470066282083151607,-0.00965545512736,0.00997210107744,0.245236456394,-0.562116409401,0.0238040959815,0.726951972811,-0.393699551084 +1470066282158050870,-0.00964141078293,0.00998381152749,0.245027109981,-0.559370298527,0.0247447214413,0.727800101511,-0.395979267296 +1470066282235120239,-0.00955674890429,0.0100127877668,0.244591340423,-0.574133787197,0.0262967068837,0.727294992812,-0.375127806269 +1470066282308705816,-0.00953814480454,0.0100234057754,0.244357466698,-0.571868035238,0.0254546944913,0.727093101736,-0.379017981379 +1470066282381588303,-0.00957471877337,0.00999121647328,0.244113788009,-0.580648993982,0.022551084774,0.724575924526,-0.370577824431 +1470066282460124014,-0.00954059697688,0.00995531119406,0.243834301829,-0.599831512482,0.023318477928,0.723203182514,-0.34151948996 +1470066282535627430,-0.00956256128848,0.00995103083551,0.243462085724,-0.592432402345,0.0238179253926,0.724099393791,-0.352330275442 +1470066282607656652,-0.0095321778208,0.00994993932545,0.2425827384,-0.577166878098,0.0261645375169,0.726889126921,-0.3712492545 +1470066282684796872,-0.00948041863739,0.00992918014526,0.242312699556,-0.586160779105,0.0276181869988,0.726845051476,-0.35685998365 +1470066282760410827,-0.00949229486287,0.00992891192436,0.242058634758,-0.580474530635,0.0251876187035,0.725958669556,-0.367965913156 +1470066282835930243,-0.00951475929469,0.0099043706432,0.241501539946,-0.579017320072,0.0227480523769,0.724934857147,-0.372412301171 +1470066282909192988,-0.0095545668155,0.00990127865225,0.240937978029,-0.563980045185,0.0227597750541,0.726115738265,-0.392637792267 +1470066282981106606,-0.00952879618853,0.00991628784686,0.240512222052,-0.564832050542,0.0240329722219,0.726755799912,-0.390145073301 +1470066283053836271,-0.00948125962168,0.0099105136469,0.240272536874,-0.577171544671,0.0254770949232,0.726396167048,-0.372253319871 +1470066283129695301,-0.00946224387735,0.00989374052733,0.239833787084,-0.595354805202,0.0241106626603,0.723958495499,-0.347642673823 +1470066283206354347,-0.00946692563593,0.00989057682455,0.239508211613,-0.594853470461,0.0229765163924,0.723502152182,-0.34952262325 +1470066283284503088,-0.00951569341123,0.00992990192026,0.23886077106,-0.562332121966,0.0235254573616,0.726793897285,-0.39370009948 +1470066283356025645,-0.00945777725428,0.00996883772314,0.23836606741,-0.566446481189,0.0264288928794,0.72820532134,-0.384911558078 +1470066283433337729,-0.00941819790751,0.00996565818787,0.238072648644,-0.574510160953,0.0262566311282,0.727201331916,-0.374735756424 +1470066283507264737,-0.0094421710819,0.00998255051672,0.23771956563,-0.56046664102,0.0220206053766,0.725853411206,-0.398157082926 +1470066283580093951,-0.00936768390238,0.00996870268136,0.237279579043,-0.598661142413,0.0255074229263,0.72435466161,-0.34097585273 +1470066283652946374,-0.00938565749675,0.00996979977936,0.236800611019,-0.602338675154,0.0264384711646,0.724514763385,-0.334017193111 +1470066283726594098,-0.00943418219686,0.0100381756201,0.236213997006,-0.565336674401,0.0246150775801,0.727231461142,-0.388488023571 +1470066283799575813,-0.00943143386394,0.0100587354973,0.235850572586,-0.55277576863,0.0221835389053,0.726792900982,-0.407085886883 +1470066283877623275,-0.00933170039207,0.0100508620963,0.235535368323,-0.590351829189,0.0263382733323,0.725801561144,-0.35214074881 +1470066283951712055,-0.00929433293641,0.0100469524041,0.235141471028,-0.597162154243,0.0276078705838,0.725711046716,-0.340556373741 +1470066284032982759,-0.00938418880105,0.0100603280589,0.23444904387,-0.580231829998,0.0262235571794,0.726584191518,-0.367040544275 +1470066284105781500,-0.00945181958377,0.0100650889799,0.234092637897,-0.550771480027,0.0208471940902,0.725775898546,-0.411661895708 +1470066284177568844,-0.00935328472406,0.0101044075564,0.233806908131,-0.570302397373,0.0244607219702,0.726527070639,-0.382511783165 +1470066284253141788,-0.0092809535563,0.0101096834987,0.233611524105,-0.58508760237,0.0267720388937,0.726471288538,-0.359437369254 +1470066284326751652,-0.00926119554788,0.0100960209966,0.233350023627,-0.599671089683,0.0274610749983,0.725332731401,-0.336946438349 +1470066284403820911,-0.00933850556612,0.0101081449538,0.232760086656,-0.578788526607,0.0244255014605,0.725870682806,-0.370835527139 +1470066284476116585,-0.00942200049758,0.0101151233539,0.232403114438,-0.555814630558,0.0224340880741,0.726677162858,-0.40312170511 +1470066284549574029,-0.0094182882458,0.0101203713566,0.23221167922,-0.553202328288,0.0220035693423,0.726575882753,-0.406903567833 +1470066284626006822,-0.00934980064631,0.0100627718493,0.231950253248,-0.568382370966,0.02320405137,0.725945868984,-0.386530267482 +1470066284696821667,-0.00923742447048,0.0100033162162,0.231437325478,-0.604716245206,0.0265707077794,0.724282874057,-0.330191730088 +1470066284778617878,-0.00922919902951,0.0100147388875,0.231047436595,-0.594448199078,0.0267383036359,0.725502496909,-0.345778149556 +1470066284852360498,-0.00932348705828,0.0100585771725,0.230334743857,-0.561418203267,0.0249710446582,0.727865903464,-0.39293418602 +1470066284924605415,-0.00937736872584,0.0100548220798,0.230177462101,-0.546721145086,0.0218538728875,0.727107262327,-0.414648558212 +1470066284998241214,-0.00922480691224,0.0100369406864,0.229656428099,-0.57661122277,0.0255323612634,0.726651178537,-0.372619995484 +1470066285071028256,-0.00919535849243,0.0100336940959,0.229373082519,-0.588192074782,0.0264624721111,0.726035509429,-0.355249573934 +1470066285149694468,-0.00918556377292,0.00999362487346,0.229071721435,-0.595432443616,0.0264676093537,0.725126336541,-0.344893413678 +1470066285228096714,-0.00930103939027,0.0100180618465,0.228417932987,-0.564230735981,0.0233515310395,0.726392701763,-0.391729530923 +1470066285302426602,-0.00928731262684,0.010050679557,0.227997437119,-0.547206378379,0.0225581812418,0.727503691257,-0.413273138648 +1470066285377737870,-0.00919780973345,0.0100478930399,0.227721780539,-0.56817418793,0.025104321561,0.727201616018,-0.384350978754 +1470066285453155136,-0.00913540180773,0.0100437328219,0.227298408747,-0.582558324052,0.0263210763817,0.72658313727,-0.363331728108 +1470066285531582834,-0.00917850993574,0.0100577631965,0.226968333125,-0.577871427532,0.0250799014967,0.726339431042,-0.371303976139 +1470066285608006539,-0.00921856425703,0.0100755477324,0.226191863418,-0.569341624612,0.0242278994339,0.726565553852,-0.383882298795 +1470066285681375685,-0.00915573071688,0.0100962715223,0.225886836648,-0.572023778652,0.0254454461604,0.727012568496,-0.378938057173 +1470066285758022593,-0.00912586692721,0.0100991409272,0.225634679198,-0.578294191594,0.0256548568655,0.726660230513,-0.369976439355 +1470066285836316688,-0.00917719397694,0.0101138297468,0.225156635046,-0.554951202835,0.023501798443,0.727524367499,-0.402722140734 +1470066285910800092,-0.00918843410909,0.0101318983361,0.224392101169,-0.55987456433,0.0246770005841,0.727835019916,-0.395205897783 +1470066285992593602,-0.00913497619331,0.0101210167632,0.224168166518,-0.577061382516,0.0258732762067,0.72676436156,-0.371677679116 +1470066286069405533,-0.00911484565586,0.0101241208613,0.223839119077,-0.57735451094,0.0248047769836,0.726086634045,-0.372618694643 +1470066286145513251,-0.00909414049238,0.0101306373253,0.223469227552,-0.579380738084,0.0253684644493,0.726317836303,-0.368967209947 +1470066286218491925,-0.00902712997049,0.0100925117731,0.221333533525,-0.561839875038,0.0210302942024,0.725002639268,-0.397825155813 +1470066286295724097,-0.00901836156845,0.0100432774052,0.219610020518,-0.582005409546,0.0208534705725,0.723054554439,-0.371519780537 +1470066286373430195,-0.0091377357021,0.0100990599021,0.21844355762,-0.522835374227,0.0170473053395,0.725126849093,-0.447820961504 +1470066286446453817,-0.00909497775137,0.0101312790066,0.218869775534,-0.567262150083,0.0230728647925,0.725776546241,-0.388496719316 +1470066286525573319,-0.0090799825266,0.0101455086842,0.218738883734,-0.561535439532,0.0225515580072,0.725966528982,-0.396411372414 +1470066286601658185,-0.00909227039665,0.0101619977504,0.218464776874,-0.546357817107,0.0197399906992,0.725453049181,-0.41811642145 +1470066286674690319,-0.00897365435958,0.0101664410904,0.218090832233,-0.586513372739,0.0235481229251,0.724429281577,-0.361455067055 +1470066286747462393,-0.00898529216647,0.0102002881467,0.217592939734,-0.578481450949,0.0234416725148,0.725116716605,-0.372847752035 +1470066286826261525,-0.00910827331245,0.0102306576446,0.217023923993,-0.547848237148,0.0198378840559,0.725391760385,-0.416263812234 +1470066286900759678,-0.00897529255599,0.0102265123278,0.216619193554,-0.579080655672,0.0231704408895,0.724738107813,-0.372670632034 +1470066286973925378,-0.00895481929183,0.0102327084169,0.2163374722,-0.583652992011,0.0230579631205,0.7242686353,-0.366404775043 +1470066287047369994,-0.00903151556849,0.0102718304843,0.215909257531,-0.547051172664,0.0195073579255,0.725120424189,-0.417797615955 +1470066287124156292,-0.00905743520707,0.0102906757966,0.215305656195,-0.550125145015,0.021239080282,0.726138756892,-0.411866157908 +1470066287201020635,-0.00895439833403,0.0103062912822,0.21494166553,-0.574956649865,0.0234292321706,0.725389503273,-0.377737991732 +1470066287276089165,-0.00893211178482,0.0103170806542,0.214680284262,-0.576251629665,0.0222303705142,0.724512584927,-0.377520044789 +1470066287348155696,-0.00888000056148,0.0101665286347,0.214396938682,-0.592808962926,0.0229212860476,0.72336854318,-0.35325642083 +1470066287419730681,-0.00884843431413,0.0101259695366,0.214004397392,-0.573594500778,0.0224827915781,0.72487908858,-0.380833532792 +1470066287495052225,-0.0087717724964,0.0100379567593,0.213455423713,-0.571624086999,0.0226881976527,0.725381067505,-0.382823008393 +1470066287571267631,-0.00877982284874,0.00998756941408,0.213225275278,-0.575571677823,0.0233677965794,0.725443507459,-0.376700022905 +1470066287649291948,-0.0087430011481,0.00991147011518,0.21388220787,-0.582497417055,0.0234049133878,0.724932178269,-0.366909125075 +1470066287726922203,-0.00874185562134,0.00989283621311,0.214250594378,-0.562343774007,0.0249052871624,0.72789948846,-0.391550177125 +1470066287805554545,-0.00869575794786,0.00982562080026,0.214111804962,-0.557987930058,0.0250656348986,0.728507055805,-0.396608942788 +1470066287877028893,-0.00866279471666,0.00963284354657,0.213755726814,-0.546769621577,0.023301453334,0.728337261859,-0.412340704008 +1470066287948670161,-0.00860811024904,0.00948218349367,0.213442444801,-0.553988196283,0.0227063278906,0.726932579445,-0.405154940726 +1470066288030661339,-0.0085003580898,0.00938119832426,0.213187769055,-0.564234674968,0.0254160471178,0.727977204635,-0.388641796061 +1470066288102974137,-0.00843896809965,0.00922986865044,0.212713390589,-0.56000950364,0.0247865364089,0.727996852028,-0.394709471488 +1470066288175420247,-0.00841104518622,0.00915743131191,0.212374597788,-0.560980708703,0.0248547939814,0.727911511492,-0.393481530847 +1470066288250794566,-0.0084140682593,0.00908231176436,0.211928039789,-0.562295570484,0.024943552963,0.72786131875,-0.391687900309 +1470066288327334593,-0.00841271039099,0.00898443814367,0.211377844214,-0.556184315678,0.0252505139635,0.728525029535,-0.39908983936 +1470066288403309798,-0.00835982523859,0.00891039147973,0.211168780923,-0.550915411421,0.0252156404061,0.729310872857,-0.404922253859 +1470066288476848101,-0.00830921437591,0.00877235922962,0.210734680295,-0.553436574807,0.0248432355778,0.728643666566,-0.402702344773 +1470066288548786771,-0.00840417481959,0.00872618146241,0.209789916873,-0.542325288486,0.0226953989997,0.728251025813,-0.418352296199 +1470066288625349476,-0.00834864191711,0.00870398711413,0.209464088082,-0.550675098312,0.0239147972434,0.728372156403,-0.407012309825 +1470066288701055891,-0.00827375147492,0.00868189893663,0.209063157439,-0.555089148536,0.0246715144042,0.728400768185,-0.40087363902 +1470066288774556536,-0.00830243807286,0.00870460364968,0.208452105522,-0.542621643647,0.023243136661,0.728523937128,-0.417461832359 +1470066288847382973,-0.00835139863193,0.00868992041796,0.207996279001,-0.545926206626,0.0227000701944,0.72789334483,-0.414271121713 +1470066288924413594,-0.00830695684999,0.00869278796017,0.207791879773,-0.55386645334,0.0235549493901,0.727688631047,-0.403913818121 +1470066289000645269,-0.00823308806866,0.00867597945035,0.207256242633,-0.56565919364,0.0247931240979,0.72743504637,-0.387625116524 +1470066289076224026,-0.00829587876797,0.00870009232312,0.206775799394,-0.542458514471,0.0225764491555,0.728088048224,-0.418469662048 +1470066289148440752,-0.00832011085004,0.00869291182607,0.206267476082,-0.538892778127,0.0228826466173,0.728731030616,-0.421926585064 +1470066289226196305,-0.00825532246381,0.00869341939688,0.206036046147,-0.555081871768,0.024137436429,0.727956450949,-0.401722423222 +1470066289301435769,-0.00819315668195,0.00867479573935,0.205553233624,-0.578065809488,0.0255521000266,0.72660944337,-0.37043990996 +1470066289375053878,-0.00832375697792,0.00869084242731,0.204971849918,-0.550111399928,0.0223809868279,0.72725639932,-0.409847128507 +1470066289447301260,-0.00826772674918,0.00869889929891,0.20464463532,-0.549908767323,0.0235420385199,0.7281269373,-0.408506160567 +1470066289521986264,-0.0082540679723,0.00866975169629,0.204417452216,-0.54603913518,0.0229066178944,0.727804575802,-0.414266881552 +1470066289590591830,-0.00828352756798,0.00870424602181,0.203732654452,-0.541007534253,0.0215179637363,0.727322136704,-0.42172305436 +1470066289662847654,-0.00827975198627,0.00869950745255,0.203347831964,-0.551207261653,0.0228990682907,0.727412670799,-0.408064938133 +1470066289735574637,-0.00822318438441,0.00865160766989,0.203027009964,-0.564429386256,0.0239785194536,0.726908823603,-0.390445976678 +1470066289813586198,-0.0082056960091,0.00864240434021,0.202726364136,-0.550912177259,0.0235935480899,0.727868420949,-0.407610940998 +1470066289892436793,-0.00819433107972,0.00863299425691,0.202312216163,-0.554293479764,0.0243798887852,0.728078533538,-0.402574227087 +1470066289965795166,-0.00825352966785,0.00864455290139,0.20183108747,-0.53940832741,0.0218119214516,0.7278341283,-0.42287158581 +1470066290037419401,-0.00819406379014,0.0086580934003,0.201474204659,-0.548900949775,0.0227020542431,0.727551692843,-0.410926877085 +1470066290109898895,-0.00813625566661,0.00865116436034,0.201319828629,-0.559345770923,0.0238017033967,0.727312750618,-0.396965930847 +1470066290183694837,-0.00806321296841,0.00867626350373,0.201139092445,-0.564782747031,0.0255873305889,0.727995912644,-0.387798515137 +1470066290260085290,-0.00805560592562,0.00869268923998,0.200935721397,-0.561837776954,0.0238320965861,0.727206586189,-0.39362536067 diff --git a/MobileRobot/docking_data/Pose2.txt b/MobileRobot/docking_data/Pose2.txt index 5b0d60b372e1b0b853dd253ab24f463596376f16..be7a724a1e2078ea70099d02abcdf02ff3be26a2 100644 --- a/MobileRobot/docking_data/Pose2.txt +++ b/MobileRobot/docking_data/Pose2.txt @@ -1,540 +1,497 @@ %time,field.position.x,field.position.y,field.position.z,field.orientation.x,field.orientation.y,field.orientation.z,field.orientation.w -1469733891295229054,-0.0262244250625,-0.0784310102463,1.12546265125,-0.0976259718543,0.0182482511282,0.841243815793,-0.531455561021 -1469733891414587641,-0.0262125954032,-0.0785312876105,1.12684452534,-0.0880341708204,0.0163552042929,0.840612052816,-0.534185238209 -1469733891494910276,-0.0262669045478,-0.0784791111946,1.12612223625,-0.100830291684,0.0188166569995,0.840845489812,-0.531467824013 -1469733891572916647,-0.0263029765338,-0.0785244703293,1.12674403191,-0.098493530414,0.0183254206714,0.840480811042,-0.532499023185 -1469733891651787157,-0.0262976456434,-0.078575193882,1.12744355202,-0.0930289599233,0.0172537118472,0.840173180098,-0.534000889031 -1469733891730965928,-0.0262637417763,-0.0784770846367,1.12609481812,-0.097403382696,0.0181658572657,0.840890304461,-0.532058341287 -1469733891807794437,-0.0262191183865,-0.0785337984562,1.12688338757,-0.0842478695354,0.0156521599887,0.840713097227,-0.534657642344 -1469733891890366092,-0.0262421350926,-0.0786788761616,1.12887358665,-0.083010642531,0.0153028888711,0.839543428418,-0.536695338735 -1469733891966894590,-0.0259523708373,-0.0787277519703,1.12889695168,-0.0528241022091,0.0109638944153,0.840910871263,-0.538477774692 -1469733892052147098,-0.0254834946245,-0.07975564152,1.12519550323,-0.0608010516558,0.0206650007972,0.847033977578,-0.52764536451 -1469733892130134118,-0.0257268920541,-0.0805289000273,1.1144849062,-0.0410696555662,0.00792933371475,0.590036284979,0.806292497464 -1469733892210184831,-0.0257381275296,-0.0805611908436,1.11438536644,-0.0187361004428,0.00486753981177,0.59115190792,0.806327903125 -1469733892286451748,-0.0255496166646,-0.0789301097393,1.11201012135,-0.142374076324,0.0336622404742,0.839283620241,-0.523640602658 -1469733892364387338,-0.0253495182842,-0.0773210003972,1.10540056229,-0.184442502653,0.0461479681842,0.837649485017,-0.512049478564 -1469733892442664752,-0.0255518201739,-0.0755709856749,1.09826564789,-0.00936283047229,0.00171020840485,0.840854363443,-0.541177745359 -1469733892518776800,-0.0255859550089,-0.0736772567034,1.08389103413,-0.0797621776443,0.0138076555579,0.83111779061,-0.550173210723 -1469733892599144646,-0.0251223258674,-0.0715509280562,1.06986856461,-0.228041882851,0.0571133186603,0.841464831938,-0.48648936793 -1469733892683802558,-0.0251166857779,-0.0709241703153,1.07217597961,-0.159057426453,0.0316018337876,0.836209373638,-0.523885428917 -1469733892763600417,-0.0248188022524,-0.0694485455751,1.06502318382,-0.149114679814,0.0293725748783,0.82898206679,-0.538229316416 -1469733892844214003,-0.0246534403414,-0.0676822438836,1.05789446831,-0.0924374523297,0.0230317522752,0.835809578655,-0.540691412936 -1469733892921285768,-0.0246358048171,-0.0669708922505,1.05237925053,0.0149023074512,-0.00196463697098,0.833561156282,-0.552222654527 -1469733893000249826,-0.0242803748697,-0.0656821429729,1.0422552824,-0.0999656349411,0.0215756337019,0.827662920559,-0.551829188965 -1469733893077938406,-0.0239036269486,-0.0640199705958,1.02749359608,-0.154660825775,0.0359412402385,0.840344396097,-0.518275556213 -1469733893154237395,-0.0237773396075,-0.0623991042376,1.02218747139,-0.110025040443,0.0197504235121,0.836660304094,-0.536193945135 -1469733893232500096,-0.0233689770103,-0.0614202953875,1.01674973965,-0.129175642213,0.0254215526437,0.8246469362,-0.550113468964 -1469733893307610144,-0.0231737941504,-0.06062322855,1.01258003712,-0.195479271726,0.0401989664866,0.822409613671,-0.532742268607 -1469733893381802348,-0.0231388173997,-0.058685079217,1.00362718105,-0.0627365487197,0.0118649349668,0.832831093709,-0.549832445499 -1469733893464650184,-0.0228994693607,-0.0573768280447,0.989356935024,-0.140679863916,0.0314927003794,0.834746027651,-0.53142869233 -1469733893542390853,-0.022713990882,-0.0561860799789,0.978073954582,-0.17102233109,0.0337310454396,0.830876191329,-0.528448988574 -1469733893620942564,-0.0225519705564,-0.0556691065431,0.974918723106,-0.0401265987691,0.00290354783009,-0.600193809934,-0.798842172145 -1469733893701178034,-0.0225235652179,-0.0553783737123,0.974335670471,-0.0445069827361,0.00326373072646,-0.600109843077,-0.798671805432 -1469733893777169716,-0.0222982466221,-0.0534660965204,0.970996558666,-0.0803737287991,0.0126939415461,0.821406670793,-0.56450864364 -1469733893865140646,-0.0218901541084,-0.0522133633494,0.961936235428,-0.157278327447,0.0252443844344,0.812324817503,-0.561029981052 -1469733893942655560,-0.021699776873,-0.0501549839973,0.950056672096,-0.142888390872,0.0307345933232,0.828339118363,-0.540825847679 -1469733894016400069,-0.0215302929282,-0.0486837215722,0.937179088593,-0.184116811151,0.0358157201783,0.82080970719,-0.539527254754 -1469733894095127264,-0.0211491230875,-0.0472347997129,0.92924028635,-0.174747671382,0.0373097981447,0.830756205426,-0.52717678008 -1469733894171694560,-0.0211023706943,-0.0463506393135,0.92863702774,-0.138883437194,0.0228224385231,0.820846180382,-0.553535974735 -1469733894247952180,-0.0208968184888,-0.0446893759072,0.91912996769,-0.142639956966,0.0277353464808,0.821937147343,-0.55073035058 -1469733894327472491,-0.0210821237415,-0.0429836586118,0.909201562405,-0.0749501909487,0.0118726072749,0.822794494543,-0.563250148534 -1469733894402575772,-0.0208648964763,-0.0423066243529,0.901143670082,-0.218739108197,0.0416289974645,0.820819302793,-0.525999906157 -1469733894479995095,-0.0207602083683,-0.0405568256974,0.900053799152,-0.191421179743,0.0354414469619,0.817009526185,-0.542768154837 -1469733894555076965,-0.0207751616836,-0.038945324719,0.888828635216,-0.124165242035,0.0272860929352,0.816452825051,-0.563243505305 -1469733894638516678,-0.0207240600139,-0.0370411016047,0.877786338329,-0.149871213099,0.0241969799105,0.815990626275,-0.557774527456 -1469733894714860658,-0.0205723885447,-0.0353708639741,0.875296473503,-0.137582876806,0.0209403142325,0.81713759609,-0.559391280148 -1469733894795926495,-0.0204954985529,-0.0342343300581,0.867089450359,-0.101601921502,0.0161243854504,0.811493702013,-0.575234756716 -1469733894873023928,-0.0204375125468,-0.0328410640359,0.860584914684,-0.14884142959,0.0295552173159,0.821507180933,-0.549635033129 -1469733894949151764,-0.0204697754234,-0.0316566415131,0.852991521358,-0.188737350621,0.0279521586023,0.804609237977,-0.56231740456 -1469733895024941439,-0.0204753801227,-0.0300742331892,0.851474940777,-0.0642486762527,0.00848793112237,0.804047313039,-0.591022826141 -1469733895103591826,-0.0204486791044,-0.028532454744,0.839174211025,-0.0587317692914,0.0121390547454,0.809995564663,-0.583361301298 -1469733895179187707,-0.020482795313,-0.0272238906473,0.832490622997,-0.102592811761,0.0140370781893,0.807411660792,-0.580830513514 -1469733895258180646,-0.0205228868872,-0.025462448597,0.820893466473,-0.0914454013068,0.0169034982155,0.818474254235,-0.566967287841 -1469733895348435829,-0.020325275138,-0.0240221489221,0.811077952385,-0.275585622284,0.0469187356734,0.805804049473,-0.522045046798 -1469733895428274462,-0.0205516871065,-0.0223367642611,0.806427657604,-0.137075696301,0.021967536697,0.807224865862,-0.573686061142 -1469733895505020639,-0.0204727407545,-0.0210191663355,0.799697875977,-0.181420398587,0.0344493178063,0.818051921107,-0.544693434743 -1469733895585897157,-0.0203737206757,-0.0193141885102,0.794186651707,-0.203978709132,0.033547561748,0.809100764546,-0.550111988719 -1469733895661531693,-0.0201075300574,-0.017200127244,0.787762880325,-0.155721323408,0.0276012374147,0.810663028223,-0.563750384303 -1469733895740165343,-0.0200521573424,-0.0152232469991,0.777934372425,-0.134892650339,0.0235405334226,0.813708700994,-0.564914122763 -1469733895814077789,-0.0198732614517,-0.0131858913228,0.77003133297,-0.154180646233,0.0224683864819,0.807895237076,-0.568356213871 -1469733895887950913,-0.0196299497038,-0.0111809596419,0.763576865196,-0.0516861454978,0.00701160303806,0.79905780694,-0.598987479798 -1469733895970336501,-0.0192605033517,-0.00833327230066,0.753744721413,-0.100380269007,0.0161248479803,0.811037570254,-0.576091876794 -1469733896047931426,-0.0190117508173,-0.0061859455891,0.744505405426,-0.222263677042,0.0342467967166,0.80080176297,-0.555105891885 -1469733896125051869,-0.0187761485577,-0.00358719285578,0.739840745926,-0.192884544479,0.0304910854196,0.80270835509,-0.563493693736 -1469733896200046657,-0.0186496675014,-0.001537716249,0.729528129101,-0.178158106172,0.0272765101656,0.799948295662,-0.57236212791 -1469733896275722732,-0.0186071861535,-0.000204421652597,0.72579395771,-0.182687738982,0.0277789124292,0.802302673811,-0.567594874576 -1469733896354713571,-0.01845340617,0.00204560067505,0.718523621559,-0.221706595124,0.0355003310527,0.80178193593,-0.553833584563 -1469733896431236145,-0.0185332223773,0.00426008878276,0.710101902485,-0.0397521595697,0.00484873108732,0.801400590393,-0.596785848805 -1469733896509695830,-0.0183363482356,0.00645089056343,0.700640559196,-0.183947679303,0.0300429966884,0.803560634026,-0.56528840168 -1469733896584830599,-0.0184080563486,0.00867850333452,0.692239940166,-0.231457113733,0.0333536550215,0.798004522826,-0.555431291654 -1469733896659932077,-0.0185233429074,0.0112773980945,0.686399161816,-0.113805704258,0.0160175256363,0.799446943718,-0.589640809926 -1469733896738559582,-0.018286511302,0.0137746473774,0.677761077881,-0.177296989142,0.0257823595802,0.799802642395,-0.572902069113 -1469733896828612012,-0.0182513240725,0.0150700872764,0.675440728664,-0.137326138826,0.0174036774038,0.79749778014,-0.5872273276 -1469733896906595687,-0.0181488301605,0.0176066998392,0.66632527113,-0.146268583111,0.0214932593951,0.800025712185,-0.581465735222 -1469733896985194909,-0.0179776828736,0.0199165549129,0.65804463625,-0.237771855415,0.0354002310738,0.79544768837,-0.556304182512 -1469733897061354956,-0.0178619548678,0.0223000030965,0.648968100548,-0.192452384616,0.0293138579673,0.797027435004,-0.571708006973 -1469733897135200004,-0.0178654529154,0.024929407984,0.642724573612,-0.165647512071,0.0229294724896,0.796358611702,-0.581247023737 -1469733897209463635,-0.0178353395313,0.0272723697126,0.633945763111,-0.225169649785,0.0294477304075,0.793102468521,-0.565172482004 -1469733897287083700,-0.0177554469556,0.0296207889915,0.625143706799,-0.115801579584,0.0153859851911,0.795191034973,-0.594999565987 -1469733897363371532,-0.0176783800125,0.0319382064044,0.617297053337,-0.168851801742,0.0214949958529,0.791316617066,-0.587235085597 -1469733897438365843,-0.0176255553961,0.0330378226936,0.6129758358,-0.158192243918,0.0203700101397,0.791390447654,-0.590136794323 -1469733897517843754,-0.0173945277929,0.0357356444001,0.605149269104,-0.224417603679,0.0301800080074,0.791167074539,-0.568137805855 -1469733897594417627,-0.0173552073538,0.0382182411849,0.597375452518,-0.188314780768,0.0238350465888,0.789985130266,-0.58300336865 -1469733897677205137,-0.0173440668732,0.0403508506715,0.589840948582,-0.1659094485,0.0202422371745,0.786426773065,-0.59464042693 -1469733897759407517,-0.0171753745526,0.0425086021423,0.580747246742,-0.172037533884,0.0206302446137,0.785146105803,-0.594578062566 -1469733897836591339,-0.0170211195946,0.044527284801,0.572733938694,-0.235749960629,0.0286813146078,0.784657152749,-0.572636438672 -1469733897916434952,-0.016839640215,0.0453789420426,0.567927956581,-0.254257683881,0.0334474071964,0.788208326605,-0.559430009036 -1469733897989157971,-0.01676049456,0.0470544062555,0.560510516167,-0.226636371826,0.0262468375799,0.782693781821,-0.579083329394 -1469733898068511056,-0.016612669453,0.0486604608595,0.55217987299,-0.195461819618,0.0230754793894,0.785150701065,-0.58719722065 -1469733898148947058,-0.0165076814592,0.0502948723733,0.544478297234,-0.185292875768,0.0221534607561,0.785388429595,-0.590204023219 -1469733898225552697,-0.0162418130785,0.0515886358917,0.535994708538,-0.273613995028,0.0328729084018,0.78266275341,-0.558116267495 -1469733898303905924,-0.0161450244486,0.0528510585427,0.528386890888,-0.219159881092,0.0232917706057,0.778901631163,-0.587144521318 -1469733898393787902,-0.0160122159868,0.0542366802692,0.520238816738,-0.189245515192,0.0212797554999,0.782458525005,-0.59286757681 -1469733898470025724,-0.0159162729979,0.0550065338612,0.511595666409,-0.195885119253,0.0209911592916,0.778775602582,-0.595564397954 -1469733898549069376,-0.0157067086548,0.0559705458581,0.503762841225,-0.221443747612,0.0261349159143,0.779383568869,-0.58552616115 -1469733898626466980,-0.015779780224,0.0564321316779,0.500373840332,-0.225619384114,0.0218324648659,0.774073488814,-0.591125596557 -1469733898705544060,-0.0155387427658,0.0572608970106,0.491425007582,-0.244501625655,0.0265823842435,0.776657777043,-0.579926744736 -1469733898786736816,-0.0153892468661,0.0580768659711,0.483195275068,-0.236972194098,0.0255620756367,0.779318883226,-0.579528116454 -1469733898873721462,-0.0152990045026,0.0586817935109,0.475593537092,-0.206639470462,0.0209642585865,0.776533306332,-0.594858515335 -1469733898950049281,-0.0151505256072,0.0591618865728,0.467483401299,-0.222452286919,0.0227360647009,0.776001842343,-0.589761979181 -1469733899029822934,-0.0149343693629,0.0593862608075,0.458763659,-0.267673490939,0.0281591903609,0.775113316795,-0.571626896125 -1469733899112775301,-0.0147799607366,0.059733916074,0.450703859329,-0.260343914841,0.0263057408635,0.773123677933,-0.577761916902 -1469733899188599158,-0.014588156715,0.0600936822593,0.442576915026,-0.285462881831,0.0288313704877,0.772345366077,-0.566711858594 -1469733899269723122,-0.0143807502463,0.0603500008583,0.435043305159,-0.313754658509,0.0300856781342,0.767936468522,-0.557607789176 -1469733899349450754,-0.0143020031974,0.0604706220329,0.426589995623,-0.273065434206,0.0252523968383,0.76928419044,-0.577061018815 -1469733899427273631,-0.0141826858744,0.0607332028449,0.418807983398,-0.232247618509,0.0213470226879,0.770651247304,-0.593044689166 -1469733899507754018,-0.013971443288,0.0607395544648,0.410737395287,-0.258109627286,0.0244544938602,0.768859287491,-0.58449704368 -1469733899594667072,-0.0138115501031,0.0606620945036,0.402385294437,-0.280500374816,0.0239811639261,0.766105799917,-0.577777073653 -1469733899677877078,-0.0136046539992,0.0607889555395,0.39453342557,-0.272644429998,0.0250845087927,0.767543385912,-0.579579962518 -1469733899760361432,-0.0135704344139,0.0606882311404,0.390523523092,-0.271689277548,0.0230933468735,0.765334106869,-0.583022588463 -1469733899840741500,-0.0133052999154,0.0603669956326,0.382128953934,-0.274249990864,0.0236735739037,0.764243977478,-0.583230355262 -1469733899920277035,-0.013051870279,0.0602163039148,0.374208688736,-0.286100364729,0.0257762845802,0.765461333912,-0.575804750536 -1469733899996560517,-0.0129059134051,0.0599767155945,0.366207629442,-0.274094380234,0.0234326640745,0.765153817833,-0.582119245545 -1469733900075591145,-0.0127174034715,0.0595482364297,0.357871115208,-0.289731026609,0.0240116314491,0.763701275932,-0.576402407104 -1469733900163334610,-0.0124707780778,0.0591729097068,0.350351810455,-0.269144448207,0.0213868067527,0.761484860165,-0.58927470524 -1469733900254630653,-0.0122521594167,0.0586891882122,0.34190043807,-0.292628763607,0.0235791066579,0.761706460625,-0.577594754374 -1469733900335977824,-0.0120466351509,0.0582154504955,0.333798855543,-0.305348956272,0.0246113614037,0.761443663659,-0.571279128681 -1469733900412278527,-0.0118788937107,0.0577837266028,0.325866937637,-0.302186735977,0.0234879546943,0.760105900678,-0.574778663782 -1469733900489883168,-0.0117237698287,0.0573416166008,0.317724496126,-0.309313689115,0.0241742910416,0.759952241814,-0.571150799299 -1469733900568234371,-0.0116053661332,0.0567625761032,0.309756994247,-0.304644366543,0.0237056510853,0.75846056057,-0.575645229373 -1469733900648383222,-0.0114667098969,0.0561471432447,0.301374047995,-0.309533749455,0.0240445344242,0.758334579289,-0.573183551898 -1469733900723375204,-0.0112722106278,0.0555982775986,0.293416976929,-0.331789236471,0.0245388144163,0.75608886895,-0.563598590665 -1469733900808105077,-0.0110810501501,0.0551144815981,0.285469889641,-0.312690735811,0.02308239186,0.756817773561,-0.573514223491 -1469733900890306642,-0.0109697859734,0.054145604372,0.275505393744,-0.320853769831,0.0224189621174,0.754590213338,-0.571964910163 -1469733900963768424,-0.0108224563301,0.0538704879582,0.270161300898,-0.323994760011,0.0223465637268,0.753954275378,-0.571035005245 -1469733901042740448,-0.0107680000365,0.054092142731,0.267740607262,-0.343914615541,0.0250208913777,0.754497853493,-0.558417121234 -1469733901120366031,-0.0108015043661,0.0541997589171,0.267950803041,-0.345684042478,0.0243323036356,0.753650219518,-0.558499622557 -1469733901201969591,-0.0107971606776,0.0550699494779,0.268243998289,-0.325029057085,0.0231979284201,0.755285333217,-0.568649306335 -1469733901277177369,-0.0106709282845,0.0547571219504,0.267080545425,-0.362205885006,0.0269643755763,0.753769717055,-0.547641336066 -1469733901357895040,-0.010694893077,0.0540652647614,0.266376554966,-0.339633151566,0.0248660446276,0.754639186287,-0.560848197556 -1469733901433648654,-0.0107076847926,0.0536507330835,0.265988826752,-0.33074330004,0.0232284256768,0.753669802365,-0.567495496653 -1469733901515984739,-0.0106457807124,0.0530964657664,0.265678822994,-0.350800823901,0.0257225859393,0.753624365675,-0.555272407008 -1469733901597611355,-0.0106615703553,0.0524064190686,0.265496730804,-0.347389318041,0.0239558321272,0.751841667563,-0.559893638768 -1469733901674873038,-0.0106305750087,0.051928319037,0.265315830708,-0.360033969527,0.0248297612613,0.751384134843,-0.552431810859 -1469733901754830124,-0.0106285857037,0.0514332652092,0.26531291008,-0.355016879543,0.0245586577693,0.751868736616,-0.555025486323 -1469733901832688336,-0.0105983931571,0.051056817174,0.265211880207,-0.374219247512,0.025907008242,0.750702324538,-0.543815043602 -1469733901914179950,-0.0106055522338,0.0505752116442,0.265220463276,-0.364454329266,0.0248300507302,0.750745342414,-0.550397984465 -1469733901993689614,-0.0106059005484,0.0500978454947,0.265258848667,-0.357675157889,0.0244263526117,0.751284124072,-0.554115511102 -1469733902072237744,-0.0105518307537,0.0493627600372,0.265021055937,-0.379960899869,0.0258347814605,0.749543038036,-0.541430986156 -1469733902149586223,-0.0105762518942,0.0488247387111,0.265003651381,-0.370188605913,0.02440981668,0.748974167361,-0.549001141646 -1469733902223877842,-0.010521040298,0.0483425147831,0.265018165112,-0.375168950602,0.0255236458422,0.750112873611,-0.543992168005 -1469733902301924029,-0.01051729545,0.0478298179805,0.265009909868,-0.374884254084,0.0255462523015,0.749868104198,-0.544524573678 -1469733902380972172,-0.0105000594631,0.0470800474286,0.264864563942,-0.389385951049,0.0251974126636,0.747240370595,-0.537936334592 -1469733902459137192,-0.0104725928977,0.0466257184744,0.264892041683,-0.397070612402,0.0257859461122,0.74718620382,-0.532337102381 -1469733902542431356,-0.0104964422062,0.0461662746966,0.264942198992,-0.383339105328,0.0247335623269,0.747438921321,-0.542009631017 -1469733902621104674,-0.0104692121968,0.0457696504891,0.264850199223,-0.400055002091,0.0251154682902,0.745638188416,-0.532305270057 -1469733902701756810,-0.0104515980929,0.0452928990126,0.264872908592,-0.397429051407,0.0257443737006,0.746881547648,-0.532499136246 -1469733902781288506,-0.0104342866689,0.0448194332421,0.264851570129,-0.396562581926,0.0261084765707,0.747588739483,-0.532134891419 -1469733902871246538,-0.010460308753,0.0443737097085,0.264985144138,-0.380005751724,0.0243956779778,0.74763954849,-0.544091522711 -1469733902950344991,-0.01040683873,0.0438270904124,0.26500171423,-0.408407091847,0.0257532133989,0.745926015219,-0.525485298698 -1469733903027502414,-0.0103729469702,0.0431298352778,0.264713525772,-0.422787695674,0.0263734395201,0.744522682913,-0.515985446212 -1469733903100409105,-0.0103903692216,0.042687933892,0.264820218086,-0.427630548491,0.0259144746008,0.743244913476,-0.51385557562 -1469733903177892355,-0.0103756878525,0.0422315523028,0.264872342348,-0.42502943932,0.0259530162078,0.743477230268,-0.515672400594 -1469733903253526967,-0.0103565482423,0.0417622961104,0.264766097069,-0.423817378301,0.0265022274032,0.744490510734,-0.515179911506 -1469733903326710914,-0.0103688212112,0.0413166955113,0.264880716801,-0.411735650499,0.0253563214363,0.744624913295,-0.524751893348 -1469733903404892029,-0.0103413891047,0.0408084020019,0.264877974987,-0.421253810561,0.0264030588214,0.744848659221,-0.5167674336 -1469733903481967420,-0.0103532653302,0.0404546447098,0.264743149281,-0.415277277492,0.0248660458924,0.74336249465,-0.523773485496 -1469733903562009806,-0.0103517752141,0.0400028675795,0.26472273469,-0.405753127095,0.0241308784371,0.743702565881,-0.530743435249 -1469733903638442486,-0.0103509733453,0.0395350754261,0.264827787876,-0.408345832244,0.0246936019139,0.744075911221,-0.528199721369 -1469733903717028610,-0.0103057734668,0.038940295577,0.264643996954,-0.425805874211,0.0253523728396,0.743304820818,-0.515310157116 -1469733903797688650,-0.0103067252785,0.0383733771741,0.264517068863,-0.425877851147,0.0249124981289,0.742726607326,-0.516105231624 -1469733903883704644,-0.0102839544415,0.0378511697054,0.264494806528,-0.437797583947,0.0263218664301,0.74237925687,-0.5064715923 -1469733903962515339,-0.010263286531,0.0373572781682,0.264484703541,-0.438246315868,0.026911804103,0.742564873949,-0.505779921908 -1469733904039385118,-0.0103035690263,0.0372175648808,0.264618754387,-0.414184550705,0.0239011033088,0.742922575388,-0.525305570308 -1469733904117028420,-0.0103031145409,0.0366861484945,0.264540702105,-0.41850252911,0.0234687500189,0.741955699635,-0.523265315763 -1469733904191109873,-0.0102755045518,0.036228787154,0.26460698247,-0.427526745267,0.0241932373422,0.741651610102,-0.516322049289 -1469733904277438106,-0.0102913212031,0.0357395745814,0.264521360397,-0.421517365072,0.0238051975682,0.741761036161,-0.521101706719 -1469733904354910498,-0.0102744577453,0.0353114083409,0.264566957951,-0.433311221586,0.0242714402611,0.740761630988,-0.512761629308 -1469733904430613915,-0.0102241523564,0.0347237288952,0.263599842787,-0.446956482563,0.0236254136297,0.737996660665,-0.505007595363 -1469733904504235600,-0.0102015770972,0.0343421064317,0.262117505074,-0.424848410843,0.0231963750261,0.739896214274,-0.521075184682 -1469733904577931534,-0.0101975891739,0.0339206382632,0.261711895466,-0.426555054229,0.0233069867875,0.739743767175,-0.519891074173 -1469733904656599945,-0.0101977754384,0.0335390865803,0.263211578131,-0.491063100962,0.0267985565918,0.736902400158,-0.463803536942 -1469733904734112481,-0.0102730607614,0.0332859195769,0.264062255621,-0.461543313874,0.0255628260269,0.738784225694,-0.490430605906 -1469733904814067514,-0.0102528166026,0.033083088696,0.26433417201,-0.449176574591,0.0251630190032,0.739745413422,-0.50038380333 -1469733904890266618,-0.0102639487013,0.032817363739,0.264533698559,-0.429783829189,0.0229511634786,0.739597153566,-0.517450630205 -1469733904980222102,-0.0102393068373,0.0324185676873,0.264521956444,-0.43129302073,0.0234454745338,0.739410754273,-0.516438163247 -1469733905059334926,-0.0101963402703,0.0320766791701,0.264450132847,-0.450922457887,0.0249817079364,0.738837353851,-0.500164188839 -1469733905137332753,-0.0102015500888,0.0317751765251,0.264588594437,-0.460223846671,0.0240722359395,0.73735278835,-0.493888047967 -1469733905213937308,-0.0101868221536,0.0315047092736,0.264560937881,-0.453282430073,0.0243088657996,0.738097372169,-0.499155673941 -1469733905289440917,-0.0102004474029,0.0313557423651,0.264588296413,-0.45641059403,0.0235441481999,0.737142581858,-0.497750797844 -1469733905363522647,-0.0101750707254,0.0309121832252,0.264577269554,-0.465378417773,0.0240501647762,0.736781072618,-0.489896079672 -1469733905450366797,-0.0101660545915,0.0307480078191,0.264473080635,-0.457924206919,0.0239477923576,0.736827020109,-0.49680767546 -1469733905525751973,-0.0101665277034,0.030493253842,0.264636069536,-0.464372213133,0.0235084111534,0.736229362758,-0.49170329233 -1469733905605362045,-0.0101596815512,0.0302029065788,0.264675229788,-0.465306596015,0.0238430011741,0.736077288514,-0.491031066567 -1469733905682750059,-0.0101292803884,0.029922015965,0.264558285475,-0.474479899937,0.0240770310651,0.7356700812,-0.482782200126 -1469733905762176762,-0.0101087819785,0.0296640321612,0.26468411088,-0.489197886727,0.0254742033688,0.735497163307,-0.46806026893 -1469733905840947835,-0.0101521862671,0.0293455570936,0.264584600925,-0.460117576086,0.0227217074513,0.735380063859,-0.496982597145 -1469733905915260007,-0.0100913438946,0.0291040018201,0.264621794224,-0.49088425057,0.02501655884,0.734962055905,-0.467159074305 -1469733905992057639,-0.0100992778316,0.0287942923605,0.264663040638,-0.49414034041,0.0246617181331,0.734299088613,-0.464781639161 -1469733906070743045,-0.0100779049098,0.0286626704037,0.264746278524,-0.504887156827,0.0251305917012,0.733808480837,-0.453852978049 -1469733906147826348,-0.0100976042449,0.0283593274653,0.2646279037,-0.496817801762,0.0242076499159,0.733476689005,-0.463247243083 -1469733906223535922,-0.0100657958537,0.0280909631401,0.264673382044,-0.508730295935,0.0252646322094,0.733111235884,-0.450669613106 -1469733906302838621,-0.0100625967607,0.0277936216444,0.264755696058,-0.513471103264,0.02549825873,0.733190146615,-0.445117370837 -1469733906375520164,-0.0100684380159,0.02748519741,0.264665156603,-0.507890916792,0.0244352419814,0.732662839008,-0.452387997107 -1469733906452663467,-0.0100420704111,0.0272338986397,0.264717012644,-0.518602849238,0.0257188962149,0.732712739342,-0.439910973659 -1469733906533523635,-0.0100879659876,0.0269291736186,0.264743953943,-0.497595494893,0.0227063818204,0.732450801254,-0.464110943018 -1469733906611588917,-0.0100383441895,0.0267846155912,0.264692723751,-0.520501503288,0.0259145075976,0.732567162425,-0.437894937065 -1469733906686870389,-0.0100315269083,0.0264741349965,0.26459428668,-0.51766839987,0.0257195251517,0.732957920402,-0.440602565497 -1469733906759619143,-0.0100408131257,0.0261012855917,0.264648377895,-0.517447736173,0.0252740574121,0.732590537654,-0.441497640414 -1469733906831181873,-0.0100148431957,0.0257405359298,0.264607876539,-0.525218689989,0.026370605985,0.732530079306,-0.432261034258 -1469733906905462327,-0.00999036245048,0.0253217611462,0.264562308788,-0.527354927989,0.0273120941424,0.733015991339,-0.428763787977 -1469733906982680689,-0.0100317038596,0.0249788276851,0.26463842392,-0.520361976879,0.0258063285864,0.732549541656,-0.438096582323 -1469733907058163296,-0.0100519647822,0.0247763283551,0.26467615366,-0.519298341932,0.0249167210733,0.731913196292,-0.440467322478 -1469733907139832342,-0.00999476015568,0.0243643037975,0.264519810677,-0.525218272424,0.0268174967502,0.732726369626,-0.431901210273 -1469733907213680386,-0.0100108785555,0.0239740870893,0.264571279287,-0.522673122616,0.0261826748982,0.732566514139,-0.435285626677 -1469733907288324134,-0.0100293522701,0.0235550384969,0.264584332705,-0.517033216219,0.0250336163821,0.732243410467,-0.442571530044 -1469733907364886968,-0.0100634181872,0.0232032723725,0.264638960361,-0.494240199849,0.0226789357689,0.732580191823,-0.467481072638 -1469733907441860303,-0.0100066550076,0.0229673814029,0.264569669962,-0.522818732407,0.0260698675416,0.732477457454,-0.43526739985 -1469733907518129672,-0.00999662838876,0.0225553940982,0.264591783285,-0.525242694939,0.0270581443673,0.7329976299,-0.431395923483 -1469733907596473876,-0.00999679416418,0.0222162082791,0.264606386423,-0.520234347212,0.0264604387667,0.733190663939,-0.437135584772 -1469733907669729055,-0.0100409351289,0.0218311529607,0.264698237181,-0.500915103965,0.0239523667428,0.73316424316,-0.459326175283 -1469733907745856775,-0.010042800568,0.0215130019933,0.264677196741,-0.497041274893,0.0235190630328,0.733305891853,-0.463313386059 -1469733907824659285,-0.0100264558569,0.0211126301438,0.264654755592,-0.505009110591,0.0247513994495,0.733507131975,-0.454225113558 -1469733907897146039,-0.0100018596277,0.0209318213165,0.264605462551,-0.521727386849,0.0258849305828,0.732722365758,-0.436174780218 -1469733907982482360,-0.0100284563377,0.0206380300224,0.264694064856,-0.514661671044,0.0250221160353,0.732595778896,-0.444747886798 -1469733908056800408,-0.00997391156852,0.0202770605683,0.264551430941,-0.524948236319,0.0273730733249,0.733363466171,-0.43111261931 -1469733908137114277,-0.00999126862735,0.0199382919818,0.264613777399,-0.526105039807,0.0267639102972,0.732876452221,-0.430568561295 -1469733908212782562,-0.0100207300857,0.0196825265884,0.264717549086,-0.513560592766,0.024737741591,0.732574374618,-0.446069890659 -1469733908295018191,-0.00999036990106,0.0193617194891,0.264528930187,-0.514009509595,0.0261654022148,0.733644743915,-0.443705967392 -1469733908370167325,-0.0100538069382,0.0191166549921,0.264693021774,-0.501778262636,0.0229907382811,0.732392061226,-0.459664953801 -1469733908447478564,-0.00998102221638,0.0189828518778,0.264567285776,-0.520462078553,0.0263914269981,0.733111841329,-0.437000852943 -1469733908526366508,-0.0100062806159,0.0187769792974,0.264633387327,-0.509057544432,0.0248290447826,0.733088836449,-0.45036062535 -1469733908603538016,-0.00998305622488,0.0185169894248,0.264597088099,-0.524721908265,0.0265123421221,0.732660198695,-0.432635005461 -1469733908684423061,-0.0100286118686,0.0183219313622,0.264702916145,-0.509337520146,0.024457564634,0.732794509333,-0.450543366608 -1469733908761469931,-0.0100049972534,0.0181354079396,0.264594316483,-0.513009045062,0.025129471328,0.732813263815,-0.446290207972 -1469733908842338241,-0.0100205168128,0.0179517772049,0.264685600996,-0.509432178847,0.0248101317764,0.732877422402,-0.450282129614 -1469733908918931448,-0.0100446548313,0.0177690181881,0.264692574739,-0.501357357984,0.0229619143857,0.732375905306,-0.460151152786 -1469733908994830333,-0.0100064240396,0.0176833793521,0.26454782486,-0.515870582472,0.0250427539388,0.73248100512,-0.44353351593 -1469733909073030647,-0.00995537638664,0.017533864826,0.264512389898,-0.525636550856,0.0279392021349,0.733717380224,-0.429632893695 -1469733909153983435,-0.0100354300812,0.0173598341644,0.264662712812,-0.513685899489,0.0240479521728,0.732037819669,-0.446843510903 -1469733909230453117,-0.00998645834625,0.0171621479094,0.264478385448,-0.515331567395,0.0256905744745,0.733075913055,-0.443140018198 -1469733909309041362,-0.00998874288052,0.0169785022736,0.264584213495,-0.527828483764,0.026642224521,0.73255126707,-0.429017394419 -1469733909388112246,-0.0100430687889,0.016823599115,0.264613091946,-0.506671513072,0.0232499870907,0.732017109446,-0.454856425061 -1469733909469855187,-0.0100297154859,0.0167039074004,0.264566093683,-0.505431541808,0.0238961539646,0.732467476698,-0.455477031201 -1469733909542312486,-0.0100113777444,0.0165807157755,0.264613300562,-0.521608940873,0.0257954954033,0.73249877696,-0.436696973851 -1469733909617160519,-0.0100257294253,0.016417901963,0.264647513628,-0.517360790715,0.0245719624269,0.732090947612,-0.442466807024 -1469733909693220545,-0.0100415823981,0.0163687672466,0.264620810747,-0.517022963533,0.0236296206472,0.731292004078,-0.444230684418 -1469733909769241597,-0.0100537883118,0.0163364280015,0.264607965946,-0.509422142309,0.0230768840866,0.731603623191,-0.452451850343 -1469733909857109617,-0.010055041872,0.016243185848,0.264577656984,-0.508631601473,0.0232782169104,0.731680123108,-0.453206593122 -1469733909932646576,-0.0100069986656,0.0161751601845,0.264543920755,-0.524921190215,0.0258304160489,0.73209170788,-0.433396198556 -1469733910008373773,-0.0100133465603,0.0160976666957,0.264613747597,-0.526732369678,0.0257393597779,0.731916121739,-0.431496566418 -1469733910084177701,-0.0100208874792,0.0159549135715,0.264612078667,-0.521874644555,0.0245159159805,0.731535579208,-0.438065658991 -1469733910154478584,-0.0100727165118,0.015834633261,0.264614284039,-0.506933407356,0.0222542984327,0.731046249846,-0.456173922199 -1469733910235487230,-0.010026961565,0.0157477390021,0.26458349824,-0.521911313335,0.0249469386014,0.731590961789,-0.437905122026 -1469733910311847900,-0.0100214099512,0.015683054924,0.264575183392,-0.528486971585,0.0252640231225,0.731283404074,-0.430450732288 -1469733910392325089,-0.0100125521421,0.0155759640038,0.26460185647,-0.527684540579,0.0256002656334,0.731823453876,-0.430497484767 -1469733910467728823,-0.0100125307217,0.0155168389902,0.264594912529,-0.529975503171,0.025393966474,0.731452670822,-0.428320093916 -1469733910543986832,-0.0100460425019,0.0154577521607,0.264621257782,-0.511345623494,0.0235333862681,0.731843847136,-0.449862664013 -1469733910622878211,-0.0100784702227,0.0153748784214,0.264631658792,-0.510449261471,0.0224278051809,0.730717470444,-0.452758791639 -1469733910695867217,-0.0100543117151,0.015367012471,0.264570534229,-0.512240315081,0.023269041653,0.731311423296,-0.449724374994 -1469733910775358522,-0.0100798849016,0.0153183145449,0.264573127031,-0.504068992549,0.0219997970919,0.730946355775,-0.459508307495 -1469733910853295090,-0.0100364731625,0.0152601739392,0.264594525099,-0.526213843477,0.0247791914289,0.731094630089,-0.433573090102 -1469733910932491015,-0.0100216437131,0.0151930497959,0.264633536339,-0.533409943502,0.0258266656804,0.731314127424,-0.424248114365 -1469733911007090158,-0.00998514425009,0.0151426075026,0.264571934938,-0.54198747343,0.0275722891914,0.731777935513,-0.412298921426 -1469733911079673938,-0.0100151700899,0.0150882676244,0.264676243067,-0.539751643272,0.0263659197048,0.731090500834,-0.416508921216 -1469733911158737907,-0.0100490804762,0.0150071997195,0.26469746232,-0.528431514899,0.0242268692072,0.73062490301,-0.431694850527 -1469733911234049653,-0.0100523354486,0.0149814849719,0.264650076628,-0.519734974083,0.0236818095555,0.731048256657,-0.441455745291 -1469733911311015982,-0.0100750168785,0.0149108842015,0.264633238316,-0.510917998006,0.022481139415,0.730723707563,-0.45221705064 -1469733911387990080,-0.0100278472528,0.0147463139147,0.264614731073,-0.530751374122,0.0254694116125,0.73128507971,-0.427640526766 -1469733911462143770,-0.0100207934156,0.0146361077204,0.264630973339,-0.539484246303,0.0257387885749,0.730616789604,-0.417724035102 -1469733911538282782,-0.0100638931617,0.0145451556891,0.264677226543,-0.526409688319,0.0239233023581,0.730518190112,-0.434354336416 -1469733911617036118,-0.0100778900087,0.0144940046594,0.264685034752,-0.523556394516,0.0230463141526,0.729931929678,-0.438813111931 -1469733911693167741,-0.0100687807426,0.0145091162995,0.264685481787,-0.522964287751,0.0235112718666,0.730472796787,-0.438594421974 -1469733911776077574,-0.0100756660104,0.0144963907078,0.26467487216,-0.526841991533,0.0237790866184,0.730281794864,-0.434235617019 -1469733911852574020,-0.010069264099,0.0144405551255,0.26460069418,-0.52007085756,0.0231876112556,0.730514398981,-0.441969852685 -1469733911932052777,-0.0100858770311,0.0143702635542,0.264584422112,-0.516272731429,0.022004879724,0.729858372496,-0.447532130856 -1469733912019383759,-0.0100417146459,0.0143130747601,0.264648288488,-0.539244110035,0.0253950964197,0.730291252121,-0.418623417818 -1469733912099224226,-0.0100325969979,0.0142666306347,0.264614850283,-0.543591302388,0.0259784466521,0.730339476539,-0.412841210742 -1469733912173291822,-0.0100171966478,0.0141796311364,0.264656871557,-0.543797757867,0.0266938162391,0.730876226033,-0.411571841764 -1469733912257024659,-0.0100468862802,0.0141041837633,0.264707505703,-0.536637320316,0.0252067019319,0.730463686686,-0.421672634937 -1469733912336540332,-0.0100596472621,0.014088393189,0.264721423388,-0.531358089925,0.0243262199001,0.730315145031,-0.42861008415 -1469733912412755420,-0.0100575238466,0.0140547612682,0.264583349228,-0.522536420787,0.0237458882791,0.730582699489,-0.43890857926 -1469733912493015303,-0.0100684948266,0.0140049187467,0.264617830515,-0.519734109416,0.0232811470016,0.730557783588,-0.442289236296 -1469733912574032730,-0.0100930528715,0.0139772044495,0.264635175467,-0.512426905698,0.0223138522452,0.730321733522,-0.451166182089 -1469733912653512601,-0.0100903687999,0.0139066269621,0.26460725069,-0.518299028341,0.0221354628386,0.729818064102,-0.445243452299 -1469733912733321182,-0.010100344196,0.013888688758,0.264602214098,-0.51432494757,0.0212571554145,0.729413025175,-0.450527047307 -1469733912809654367,-0.0100414343178,0.0137972570956,0.264618128538,-0.544869796205,0.0254430746967,0.7298342355,-0.412081962509 -1469733912898207866,-0.0100902672857,0.0138312811032,0.264660269022,-0.532520104922,0.0226675165409,0.728954590286,-0.429573889859 -1469733912974495826,-0.0100957732648,0.0139682544395,0.264680981636,-0.518236472701,0.0221423792419,0.729624180572,-0.445633513697 -1469733913050303873,-0.0100971665233,0.0139679946005,0.264669775963,-0.511233982874,0.0217017060662,0.729857231466,-0.453296009672 -1469733913129141317,-0.0100876241922,0.0139062264934,0.264641821384,-0.516735509458,0.0220239347018,0.72978110424,-0.447122913145 -1469733913214169099,-0.0100776189938,0.0139063792303,0.264581292868,-0.512167096724,0.0214577367137,0.72973876335,-0.452444215161 -1469733913291466249,-0.0100461198017,0.0137781146914,0.264665544033,-0.534682225358,0.0236424380565,0.729467481936,-0.425949698681 -1469733913379199194,-0.0100254826248,0.0137042906135,0.264651894569,-0.546387291651,0.0253629446832,0.729628188698,-0.41043922183 -1469733913455513116,-0.0100586907938,0.0135680306703,0.264623224735,-0.522857048543,0.0231717565274,0.730063294733,-0.439421394758 -1469733913534888570,-0.0100658787414,0.0135385589674,0.264613717794,-0.526350589006,0.0230287934825,0.729564008117,-0.436074638318 -1469733913613244095,-0.0100507987663,0.0135481860489,0.264526367188,-0.51941465499,0.0230785002676,0.730269292946,-0.443150717914 -1469733913693025908,-0.0100626964122,0.0135465189815,0.264586001635,-0.522143024982,0.0231019768086,0.730020124773,-0.440344839367 -1469733913776586958,-0.010077859275,0.0135176395997,0.264643281698,-0.520480746792,0.0222980371125,0.729398669137,-0.44337362486 -1469733913856788369,-0.0100780623034,0.0134990485385,0.264610230923,-0.524217148147,0.0224428315171,0.72922541089,-0.439230009238 -1469733913934393246,-0.0100660379976,0.0134470779449,0.264574021101,-0.532964938872,0.0233545075784,0.729328399263,-0.428349188091 -1469733914009227238,-0.0100490208715,0.0133992116898,0.264546662569,-0.531952181117,0.0236734835654,0.729744765725,-0.428881125813 -1469733914090538798,-0.010026987642,0.013394462876,0.26451793313,-0.548387187036,0.0254744087081,0.729429725613,-0.408111287504 -1469733914167635939,-0.0100237848237,0.0133685553446,0.264552265406,-0.552009883315,0.0257827196967,0.72924794211,-0.403506851263 -1469733914247546539,-0.0100522795692,0.0133653674275,0.264576911926,-0.542751370098,0.0242976968871,0.729100904547,-0.416224030027 -1469733914324755381,-0.0100464392453,0.0133631853387,0.264516353607,-0.541159874409,0.0239271053076,0.729076580826,-0.418354901073 -1469733914401405815,-0.0100542996079,0.0133784664795,0.264548152685,-0.543227794312,0.0241029097836,0.728982794372,-0.415820512645 -1469733914480140615,-0.0100350352004,0.0133719770238,0.264548242092,-0.548325106129,0.0249137795636,0.729031828888,-0.408939450342 -1469733914556620540,-0.0100353322923,0.0133800152689,0.264510005713,-0.546885678501,0.0245373758284,0.728870324743,-0.411171523269 -1469733914638364924,-0.0100653888658,0.0133952461183,0.264578133821,-0.534921381402,0.0230894511111,0.728998708793,-0.426481975639 -1469733914716267265,-0.010036748834,0.0133196618408,0.264572918415,-0.551640232437,0.0253446434327,0.729028546108,-0.404435510267 -1469733914795953166,-0.0100195528939,0.0133141186088,0.264589399099,-0.549940574908,0.0253711604349,0.729269950677,-0.406309004734 -1469733914872305982,-0.010049383156,0.0133606297895,0.264610916376,-0.538638219169,0.0241380164712,0.729485974328,-0.420875799102 -1469733914952148916,-0.0100265154615,0.0133339026943,0.264630079269,-0.549344455954,0.0253743844111,0.729265165737,-0.407122988017 -1469733915028014895,-0.00997513812035,0.0132708577439,0.264712691307,-0.560611518585,0.0268179514345,0.729138623345,-0.391602337401 -1469733915104810279,-0.00999499671161,0.0131781725213,0.264748245478,-0.546647831988,0.0252793231111,0.729499906072,-0.410325469166 -1469733915179143162,-0.0100493021309,0.0130861420184,0.264771044254,-0.537221223016,0.0233976014981,0.728782287871,-0.423936654078 -1469733915253244022,-0.0100064463913,0.0129313040525,0.26473197341,-0.555052875508,0.0252180094988,0.728528757007,-0.400657219579 -1469733915329466198,-0.00998750329018,0.0128003526479,0.264809310436,-0.546507851471,0.0254610668472,0.729649705919,-0.410234334264 -1469733915408975557,-0.010012364015,0.012674247846,0.264809608459,-0.542525944606,0.0241272772044,0.728939946978,-0.416809342054 -1469733915483479209,-0.0100233759731,0.01260234043,0.264860987663,-0.532908221731,0.0228005180985,0.728821748708,-0.429310868948 -1469733915564153930,-0.0100155612454,0.0124481264502,0.264789372683,-0.549024719856,0.0233422444075,0.727852709399,-0.410191942916 -1469733915645683159,-0.0100094862282,0.0122854886577,0.264779418707,-0.544166137053,0.0248314691725,0.729283455979,-0.414019630281 -1469733915721318393,-0.0100031914189,0.0121783223003,0.264822721481,-0.53949688787,0.0236330403849,0.728736291207,-0.421103318984 -1469733915805926886,-0.0100249489769,0.0120554910973,0.264787614346,-0.548608279517,0.0232028549811,0.72773102114,-0.410972193751 -1469733915882237057,-0.00994608830661,0.0119011523202,0.264743953943,-0.573439503057,0.0281956632265,0.728628019163,-0.373461310712 -1469733915962138959,-0.00996646471322,0.0117881093174,0.264919221401,-0.551231132825,0.0254562151688,0.729084440268,-0.404885290265 -1469733916037999775,-0.0100262025371,0.011694772169,0.264809280634,-0.529478566271,0.0230639570157,0.729306207338,-0.432704238117 -1469733916118238302,-0.0100138066337,0.0116479191929,0.264787733555,-0.542035572663,0.0232758518289,0.728287817553,-0.418631732545 -1469733916195975473,-0.00995408929884,0.0115271564573,0.264933347702,-0.577036671325,0.0261724310462,0.726977071699,-0.371278899243 -1469733916273079132,-0.00997672323138,0.0114332865924,0.26484555006,-0.558306515064,0.0261108248533,0.728857296288,-0.395447975984 -1469733916353387997,-0.00999250821769,0.0113194677979,0.264928728342,-0.557424787022,0.0243965225944,0.727698497074,-0.398920184818 -1469733916430515897,-0.00998607650399,0.0112435780466,0.26486748457,-0.549547740577,0.0241089041538,0.728255416139,-0.408729850184 -1469733916510080887,-0.0100205829367,0.0111714499071,0.264755368233,-0.540629082203,0.0228572463898,0.728223301319,-0.420581223047 -1469733916587300309,-0.0100580900908,0.0111126163974,0.264763981104,-0.527124257665,0.0211047252248,0.728218786736,-0.437483721067 -1469733916665652465,-0.0100393481553,0.0110477311537,0.264823317528,-0.533537310262,0.0219785320843,0.728320238694,-0.429423465351 -1469733916742204028,-0.00999308563769,0.0109339486808,0.26499080658,-0.543293726303,0.0240658577554,0.728865886322,-0.415941439635 -1469733916816481779,-0.00997965410352,0.0108941299841,0.264971375465,-0.558960379336,0.0254113904756,0.728315718045,-0.395567655927 -1469733916891171479,-0.0099961804226,0.0108428085223,0.265020042658,-0.541796229896,0.0242785167959,0.729027781659,-0.417595369301 -1469733916977182820,-0.0100119728595,0.0107577759773,0.265139937401,-0.548980500532,0.0236082238204,0.727923384345,-0.410110483074 -1469733917054344561,-0.010029386729,0.0107079567388,0.265128105879,-0.539186783643,0.0220340454436,0.727754862463,-0.423278836404 -1469733917137344957,-0.0100001534447,0.0106320315972,0.265211254358,-0.568297404028,0.0243660856008,0.72663323332,-0.385290148697 -1469733917217995439,-0.00995365064591,0.0105702895671,0.265104651451,-0.580571692575,0.0276381022115,0.727494667409,-0.364587649239 -1469733917295332295,-0.00993379671127,0.0105331111699,0.265131920576,-0.575575021648,0.0281879268782,0.728322189581,-0.370763568055 -1469733917376177496,-0.00993333011866,0.0104041965678,0.265302211046,-0.563143898895,0.0253159684238,0.727713364732,-0.390718965076 -1469733917452839580,-0.00999056175351,0.0099845668301,0.265108704567,-0.556449337747,0.0254522629119,0.728516978754,-0.398722119403 -1469733917531245920,-0.0100820073858,0.00986634939909,0.265051662922,-0.510335979596,0.0215113208428,0.729874492612,-0.454288098061 -1469733917607347533,-0.0099497102201,0.00975316762924,0.265224218369,-0.556808811117,0.0263621039774,0.729207981626,-0.396893823169 -1469733917686006730,-0.0099868029356,0.00886939466,0.264883637428,-0.54807050368,0.0247513782454,0.728823171686,-0.409661905338 -1469733917762739906,-0.010075526312,0.00827392283827,0.264422416687,-0.512149975888,0.0216818434363,0.729983852312,-0.452057380458 -1469733917841973647,-0.00999865867198,0.0081394687295,0.264254003763,-0.538844748683,0.024798726582,0.729673453815,-0.420247558915 -1469733917921382048,-0.00995669420809,0.00811913516372,0.264026463032,-0.548856182602,0.0251135860842,0.728982536455,-0.408302167712 -1469733918000446078,-0.00994489435107,0.00818557105958,0.263672292233,-0.539431990842,0.0229974199217,0.728341726801,-0.421903513772 -1469733918075437250,-0.009870714508,0.00819719489664,0.263423681259,-0.558965679141,0.0251867293613,0.727986207269,-0.39618061567 -1469733918151591614,-0.00989725440741,0.00819457229227,0.262517958879,-0.543613254952,0.0241610970647,0.728717831753,-0.415777815802 -1469733918229220999,-0.00996375549585,0.00816053338349,0.261687487364,-0.524512470816,0.0231595933632,0.729895756953,-0.437724211321 -1469733918308258126,-0.0099178776145,0.00807663053274,0.261394709349,-0.528623867099,0.0232278996579,0.729569276092,-0.433296599564 -1469733918384830452,-0.00987813435495,0.00795866362751,0.261271119118,-0.54749116628,0.0250511956092,0.729164086414,-0.409811658603 -1469733918464428269,-0.00982176698744,0.00787570513785,0.260989159346,-0.547811030001,0.0260684488954,0.729977663682,-0.407867775029 -1469733918542071149,-0.0098072309047,0.00779355876148,0.260779976845,-0.546802334107,0.0253811865332,0.729458254574,-0.410187344538 -1469733918634014584,-0.00979914702475,0.00778959179297,0.260379523039,-0.547412987019,0.0231121482727,0.727649513571,-0.412711807009 -1469733918710949373,-0.00982473231852,0.00781713426113,0.260198652744,-0.539328846944,0.0213070187976,0.727053630077,-0.424338808967 -1469733918789033756,-0.00985997822136,0.00786647200584,0.259817570448,-0.516562971791,0.0201673084768,0.728120887322,-0.450106597695 -1469733918864808191,-0.00987331010401,0.00790652539581,0.259107887745,-0.534795227631,0.0234809237988,0.72911830799,-0.426414356787 -1469733918941645156,-0.00983541179448,0.00794687867165,0.258888781071,-0.534906546258,0.0246713004095,0.730069981999,-0.424575240787 -1469733919019407991,-0.00978934857994,0.00803861115128,0.258410364389,-0.535020653184,0.0235777877494,0.729376467502,-0.425684104994 -1469733919095169953,-0.00972473807633,0.00811079330742,0.25802898407,-0.543070380154,0.0242577859986,0.729027114477,-0.415939404692 -1469733919173163870,-0.00966765265912,0.00813610292971,0.25779107213,-0.552389716556,0.0253494623657,0.728848677717,-0.403735818068 -1469733919251025010,-0.00963620841503,0.00814560241997,0.257381290197,-0.554103832488,0.0246640888835,0.728080573574,-0.402814230044 -1469733919328815794,-0.0097888270393,0.00819886103272,0.256604462862,-0.509953885895,0.0196411995807,0.728211838725,-0.457459042406 -1469733919413253751,-0.0097735542804,0.00823789928108,0.256173729897,-0.526604461015,0.0222784987984,0.728918672127,-0.436885545143 -1469733919493122166,-0.00973665621132,0.00821590144187,0.256060153246,-0.541243099901,0.0235036003349,0.728541972576,-0.419201719672 -1469733919574986957,-0.00979523360729,0.00804866664112,0.256031572819,-0.509699502195,0.0193601280376,0.728232273541,-0.457721922873 -1469733919650134301,-0.00976427365094,0.00811198912561,0.255942672491,-0.517994777024,0.0207691310068,0.728755435488,-0.447398669444 -1469733919728763534,-0.00970037374645,0.00823681429029,0.255855351686,-0.545109081567,0.0243774913398,0.728885872708,-0.413505999564 -1469733919811520098,-0.0096843354404,0.00835680123419,0.255852013826,-0.54741521613,0.0251046490517,0.729153256725,-0.409929098691 -1469733919891379812,-0.00970270764083,0.00829173903912,0.255815863609,-0.546438589499,0.0243237595084,0.728579862955,-0.412291894083 -1469733919968275408,-0.00967261660844,0.00849277339876,0.25548350811,-0.540473401648,0.0233767079827,0.728709674051,-0.419909802909 -1469733920048607983,-0.00959994550794,0.0085061872378,0.25523647666,-0.558389661046,0.0260635175177,0.728895257987,-0.395263687145 -1469733920127201602,-0.00956990011036,0.00849490985274,0.255017757416,-0.575238038937,0.0268633962039,0.727647718177,-0.37270411151 -1469733920210212917,-0.00957845430821,0.00861334148794,0.254964023829,-0.563742042906,0.026968443101,0.728872160005,-0.387573201481 -1469733920292676058,-0.00956877227873,0.00864254869521,0.255022913218,-0.576096935839,0.027285892929,0.727660886387,-0.371318508811 -1469733920368108537,-0.00963110849261,0.00881264451891,0.254802972078,-0.534056675352,0.0234681159851,0.729422792732,-0.42681975644 -1469733920443062254,-0.00963161420077,0.00884608644992,0.254683375359,-0.541638346275,0.0241254529324,0.728987246008,-0.417879718966 -1469733920521653099,-0.00974094681442,0.00909676216543,0.25437194109,-0.512452458249,0.0197428103239,0.728327790073,-0.454468183355 -1469733920597750881,-0.00970958638936,0.00938893761486,0.253812372684,-0.532118723422,0.0226869061473,0.728847916169,-0.430250721754 -1469733920677601533,-0.00966850295663,0.00954723544419,0.253602236509,-0.551717801285,0.0235528826562,0.72762599794,-0.406955939366 -1469733920752987310,-0.00958947464824,0.00985337980092,0.252817302942,-0.564491515594,0.0233277324673,0.726385508675,-0.391368417872 -1469733920832813364,-0.00963115878403,0.0100060282275,0.251997768879,-0.549427676049,0.0229667296933,0.727649617882,-0.410033890935 -1469733920910252191,-0.00965484976768,0.0100754601881,0.251391977072,-0.541526242495,0.0241174412668,0.729092733075,-0.417841434391 -1469733920987349737,-0.00959868449718,0.0101213259622,0.251071572304,-0.55172074317,0.0245300390201,0.728393568569,-0.405518566787 -1469733921066973714,-0.00959303602576,0.0101541448385,0.250792145729,-0.548681549001,0.0225141914666,0.727112021225,-0.41200701154 -1469733921148001620,-0.00957547314465,0.0101443678141,0.25061377883,-0.549948869187,0.022343859703,0.726885558733,-0.410724211264 -1469733921227927964,-0.00955186784267,0.0101983305067,0.250597655773,-0.558183065813,0.0233763339951,0.726792638375,-0.399571861937 -1469733921308486055,-0.00951235368848,0.0102487402037,0.250478953123,-0.578948547726,0.0252321843019,0.726081308865,-0.37011869566 -1469733921387495127,-0.00950802117586,0.010322987102,0.250310003757,-0.5709692591,0.024839218201,0.726529534654,-0.381486505236 -1469733921465518628,-0.00955449230969,0.0104437461123,0.250121712685,-0.575013779297,0.0232279129571,0.72542487155,-0.377595515619 -1469733921547593921,-0.00961600616574,0.0106095960364,0.249309077859,-0.549367018592,0.0235147000724,0.727877740713,-0.409679060166 -1469733921626138254,-0.00961020961404,0.0107343476266,0.248861134052,-0.530634424454,0.0222233431692,0.728773479173,-0.432229622604 -1469733921702859842,-0.00951753184199,0.0109807765111,0.248123779893,-0.543209905754,0.0219210731238,0.727190992325,-0.419089161785 -1469733921780790689,-0.00943252164871,0.0110525656492,0.247648119926,-0.575675419131,0.0249407983968,0.726297400348,-0.374790414274 -1469733921870029728,-0.00957158766687,0.0110897440463,0.246916219592,-0.540814633288,0.0207652043689,0.726644708997,-0.423173493493 -1469733921949089006,-0.00955693889409,0.0111338989809,0.246499791741,-0.535186451001,0.0220879675767,0.728053464943,-0.427815072827 -1469733922027244688,-0.00943276192993,0.0111599871889,0.24607360363,-0.565806308717,0.02594605321,0.727863624587,-0.386528869998 -1469733922105738887,-0.00942422635853,0.0112051460892,0.245277762413,-0.560865527292,0.0223961501976,0.726098269859,-0.39712664889 -1469733922184384417,-0.00946077611297,0.0112447589636,0.244473516941,-0.558534375856,0.0248184338767,0.727745289282,-0.397253307418 -1469733922260219291,-0.00943128485233,0.0112827066332,0.244135677814,-0.570780319045,0.0251309098295,0.726730747768,-0.38136686407 -1469733922351487705,-0.00945431366563,0.0112872393802,0.243836730719,-0.549049565485,0.0217558111152,0.726647242361,-0.412377308412 -1469733922431833248,-0.00936714280397,0.0113533036783,0.243401378393,-0.566519039904,0.0242897713113,0.726729081315,-0.387725452875 -1469733922510050498,-0.00935325119644,0.011484044604,0.243231028318,-0.572741138975,0.0246121881862,0.726360379679,-0.379160159762 -1469733922588431640,-0.00939979590476,0.0115763125941,0.243307933211,-0.57118695514,0.0223875627414,0.725261646085,-0.383718391572 -1469733922668068503,-0.00933238584548,0.0116962268949,0.243231460452,-0.575412770853,0.0243129147859,0.726051852678,-0.375709638601 -1469733922744644768,-0.00931258220226,0.0117553193122,0.243225902319,-0.579185573334,0.0257022165778,0.726524401055,-0.368843818406 -1469733922822925656,-0.00939187034965,0.0111797275022,0.243301734328,-0.546471572623,0.0215034649865,0.726553943244,-0.415963686955 -1469733922900496528,-0.00928838830441,0.0110433530062,0.243205890059,-0.575532135625,0.0267507539994,0.727491003014,-0.37256408651 -1469733922979271454,-0.00929953530431,0.0109693957493,0.243249028921,-0.569633735396,0.0262148650336,0.727744707438,-0.381074571634 -1469733923057624478,-0.00933489855379,0.0109389899299,0.243296697736,-0.569442850095,0.0251346456984,0.727144031998,-0.382576328058 -1469733923133329059,-0.00931353773922,0.0109047889709,0.243263557553,-0.568095614487,0.0256369265103,0.72758657245,-0.383702880351 -1469733923217463514,-0.00937418080866,0.01083596237,0.243304014206,-0.555310235729,0.0229190989838,0.727010020389,-0.403189393771 -1469733923294636515,-0.00938499905169,0.0107070747763,0.243234619498,-0.56013378287,0.0225092688853,0.726248610167,-0.397877411186 -1469733923369827017,-0.00934844557196,0.0106440521777,0.243191868067,-0.572461927385,0.0240642048537,0.726042191413,-0.380224922943 -1469733923457452759,-0.00931360665709,0.010577628389,0.243242919445,-0.579383642065,0.0263120735915,0.7267475014,-0.368049370738 -1469733923535053742,-0.00931847561151,0.010510277003,0.243227213621,-0.581866247436,0.0263825794589,0.726573600443,-0.364453608481 -1469733923609220131,-0.00936957634985,0.0104140108451,0.243231013417,-0.57666913961,0.0245094614846,0.725991110935,-0.37388353342 -1469733923695508079,-0.00937565974891,0.0102393552661,0.243101283908,-0.568321171281,0.0235799403601,0.726203010865,-0.386114257307 -1469733923772706255,-0.00946698989719,0.00952895637602,0.242410957813,-0.543933085509,0.0240330409233,0.728698264457,-0.415401072231 -1469733923851596321,-0.00943544879556,0.0092052295804,0.242037206888,-0.552553437825,0.0254115069309,0.728801202046,-0.403593559859 -1469733923929810977,-0.00943045318127,0.00890414603055,0.241756036878,-0.539733346021,0.0226428494338,0.728160771255,-0.421849626961 -1469733924009728860,-0.00940008927137,0.00872110389173,0.241408392787,-0.550551903802,0.0221800450811,0.726759233703,-0.410148342733 -1469733924087592321,-0.009422021918,0.00854310952127,0.240806087852,-0.545022971199,0.0224265071456,0.72727246938,-0.416559441046 -1469733924163263953,-0.0094324760139,0.00836513470858,0.239964038134,-0.549624531695,0.023792252756,0.727994786018,-0.409109269509 -1469733924243610055,-0.00939775444567,0.0083220815286,0.239609658718,-0.541559124451,0.0232372301962,0.728374919351,-0.419098702834 -1469733924325469999,-0.00934123527259,0.0082898363471,0.239307999611,-0.539844778199,0.0235255082512,0.728874915958,-0.42042302839 -1469733924403706184,-0.00935647170991,0.00823354441673,0.238938868046,-0.541995069601,0.0222494178169,0.727623006801,-0.419894115117 -1469733924481315500,-0.00939488876611,0.00817495025694,0.238297849894,-0.536864102136,0.0223833580575,0.728257449884,-0.425343399864 -1469733924559181840,-0.00936182122678,0.00801155716181,0.237493380904,-0.53289324649,0.0214551885826,0.727817936316,-0.431098033288 -1469733924640186808,-0.00928633939475,0.00796347763389,0.237112894654,-0.547794976211,0.0232059759249,0.727929373343,-0.411704960066 -1469733924719430072,-0.00923065654933,0.00793870165944,0.23657785356,-0.547758003675,0.0251727077317,0.729347283602,-0.409121062888 -1469733924794405724,-0.00929721351713,0.0078846886754,0.235903739929,-0.545268496357,0.0241846253112,0.728696494284,-0.413640894977 -1469733924875555869,-0.00927614886314,0.00785684771836,0.235544681549,-0.549997881244,0.0245151811174,0.728419779038,-0.407806280024 -1469733924951775302,-0.0092264926061,0.00779429869726,0.235327988863,-0.566216578819,0.0256414444062,0.727620034238,-0.386407023713 -1469733925032200107,-0.00922012701631,0.00764239020646,0.235087200999,-0.564060274076,0.0250110998279,0.727286996246,-0.390210298669 -1469733925112818675,-0.00926022976637,0.00760674010962,0.235136881471,-0.549465564694,0.0224761965206,0.727025056195,-0.411116749197 -1469733925189802992,-0.0092153660953,0.0077268932946,0.235037431121,-0.568461056782,0.0245354424537,0.726691652163,-0.384927631722 -1469733925263998245,-0.00925026834011,0.00793697685003,0.235052362084,-0.546992205784,0.022475115482,0.727307036368,-0.413906838365 -1469733925345737226,-0.00920178741217,0.00802395958453,0.234909459949,-0.570082511839,0.0253594295835,0.72693929247,-0.381997505346 -1469733925428138424,-0.00932221952826,0.00818000547588,0.234279260039,-0.539957657222,0.0220512391192,0.727799953546,-0.422216412375 -1469733925507778821,-0.00933194812387,0.00858770962805,0.233821198344,-0.548208632281,0.0228652663425,0.727606536323,-0.411744099397 -1469733925585040185,-0.00928645487875,0.00884657166898,0.233474642038,-0.551464698122,0.0231430143255,0.727542175947,-0.407472047915 -1469733925665388924,-0.00920688174665,0.00891898944974,0.232940003276,-0.568018495431,0.0256122609761,0.727443172708,-0.384090394851 -1469733925745825301,-0.00933702103794,0.00892673991621,0.232213661075,-0.549702115484,0.0213591356461,0.72634810887,-0.412055574283 -1469733925826435858,-0.00923937186599,0.00903950817883,0.231676533818,-0.573739660682,0.0254453957717,0.726745827441,-0.376849885089 -1469733925903613418,-0.00918408762664,0.00911918282509,0.230901628733,-0.575899996511,0.0244342250617,0.726049015662,-0.374959983892 -1469733925981687502,-0.00926161650568,0.00915806181729,0.230115607381,-0.55300911824,0.0233503198311,0.727420409729,-0.405580109493 -1469733926060395729,-0.00930424965918,0.00916826538742,0.229731217027,-0.540730507922,0.0206097730219,0.726572425025,-0.423412642999 -1469733926137095595,-0.00920001324266,0.00917389802635,0.229371935129,-0.567395069768,0.0232010967159,0.725848613372,-0.388160191648 -1469733926217766010,-0.00915222149342,0.00920191965997,0.228686615825,-0.563604271028,0.02534897115,0.727777371921,-0.389933009965 -1469733926302279447,-0.00919535104185,0.00922446884215,0.227672711015,-0.554543621798,0.0231666559041,0.727232221042,-0.403829139929 -1469733926379976526,-0.00911508966237,0.00921350996941,0.227222383022,-0.564347478944,0.0242574807217,0.726942448724,-0.390484537314 -1469733926458364474,-0.00915399752557,0.00921875890344,0.226649299264,-0.557052542333,0.0231429443419,0.726802438999,-0.401142223995 -1469733926534674502,-0.0092385886237,0.00922803673893,0.225975200534,-0.529342521781,0.02065902779,0.727647699144,-0.435773479156 -1469733926617886075,-0.00912938732654,0.00921008735895,0.225607514381,-0.556566829943,0.023302518496,0.727077533215,-0.401308630773 -1469733926701685272,-0.00915164779872,0.00918847322464,0.224449113011,-0.554027245915,0.0226068511247,0.726888822416,-0.405185612915 -1469733926778184935,-0.00916338060051,0.00915696751326,0.223928019404,-0.540975998935,0.0206960802849,0.726522229819,-0.423180919247 -1469733926857416852,-0.00906846858561,0.00917231012136,0.223534762859,-0.544821390929,0.0228224799718,0.72784198436,-0.415806243577 -1469733926937072554,-0.00902839470655,0.00913256127387,0.22320087254,-0.564031819195,0.024474998555,0.727186929249,-0.390471831647 -1469733927021477687,-0.00910534709692,0.00913588143885,0.222419425845,-0.547594017563,0.0234784856045,0.728203590556,-0.411471850002 -1469733927102167667,-0.00902528595179,0.00907284393907,0.221569448709,-0.544133433008,0.022016231378,0.727292622011,-0.417707474924 -1469733927182795726,-0.00898823980242,0.00907774269581,0.22100238502,-0.557012120705,0.0244782778737,0.727888470943,-0.399144942556 -1469733927261990424,-0.00902345962822,0.009063010104,0.220322713256,-0.547489948672,0.0234766922648,0.72819070986,-0.411633199701 -1469733927338608923,-0.00903892051429,0.00907967612147,0.219992816448,-0.524939320153,0.0209408952921,0.728480012044,-0.43967836098 -1469733927413210056,-0.00898849964142,0.00904213171452,0.219727486372,-0.535594801308,0.0213948636108,0.727579722091,-0.428145088288 -1469733927491662059,-0.00896330270916,0.00902637559921,0.218738660216,-0.549584659424,0.0247262194841,0.728818781273,-0.407637707112 -1469733927567514995,-0.00898924469948,0.00902479048818,0.218377009034,-0.542914756297,0.0232574124983,0.728426508549,-0.417249903297 -1469733927642506313,-0.00898398365825,0.00900973193347,0.217933267355,-0.520283190224,0.02051146162,0.728403074917,-0.445324199167 -1469733927722525273,-0.00895448122174,0.00901272706687,0.217386603355,-0.522774754209,0.0221511812862,0.729192812615,-0.441014425569 -1469733927800391800,-0.00898007396609,0.00899251177907,0.21679623425,-0.534516581241,0.0224795194051,0.728547439291,-0.427791215768 -1469733927878825870,-0.00893088430166,0.00895031634718,0.216243162751,-0.531821566999,0.0211862177666,0.727941742952,-0.432224228751 -1469733927958470128,-0.00885998830199,0.00883572455496,0.215530663729,-0.518420634626,0.0207105149132,0.728676701686,-0.447036222902 -1469733928035799267,-0.00880596693605,0.00879044644535,0.215150654316,-0.524456762443,0.0212198558736,0.728647619484,-0.439963031022 -1469733928119246776,-0.00882760062814,0.00868221744895,0.214657709002,-0.531524701623,0.0209189642079,0.727629766514,-0.433126784422 -1469733928195014447,-0.00879235100001,0.00863649509847,0.214293956757,-0.533835145649,0.0215069165272,0.728076184282,-0.42949104728 -1469733928274391962,-0.00874674599618,0.00861124414951,0.214022085071,-0.527087287286,0.0221034262443,0.72920214638,-0.435837882526 -1469733928349246594,-0.00874926056713,0.00853673182428,0.21398229897,-0.525923127676,0.0210891572252,0.728550454348,-0.438376945896 -1469733928430031982,-0.00873831752688,0.00851964112371,0.213901460171,-0.524777005257,0.020985663934,0.72851601658,-0.439810311668 -1469733928505390397,-0.00868897140026,0.00855458155274,0.213817089796,-0.532858327192,0.022504139258,0.729077129654,-0.428954666456 -1469733928583942603,-0.00869800336659,0.00852959044278,0.213809654117,-0.532943338867,0.0220174168936,0.728714811027,-0.429489644927 -1469733928661625870,-0.0087273856625,0.00849679205567,0.213845267892,-0.521786528119,0.0211045950425,0.728965003472,-0.442609804292 -1469733928739722869,-0.00868383143097,0.00834933109581,0.213835924864,-0.540808514116,0.0237190958576,0.729022113888,-0.418915639496 -1469733928816612980,-0.00869900919497,0.00834321975708,0.213890701532,-0.53275352688,0.0232297562747,0.729600793799,-0.428155041672 -1469733928897936794,-0.00871087051928,0.00834970455617,0.213891670108,-0.538361339868,0.0232049917008,0.728887463143,-0.422317016195 -1469733928978371556,-0.00873666722327,0.008375544101,0.213931456208,-0.533643533396,0.0222641229035,0.728661856151,-0.428696614737 -1469733929057144184,-0.00874380301684,0.00841507129371,0.213904097676,-0.532085048655,0.021683165173,0.728433293408,-0.431045564181 -1469733929135641765,-0.00877701491117,0.00845205783844,0.213947743177,-0.520816313529,0.0201911756897,0.728302744669,-0.444879529866 -1469733929212733828,-0.00877605378628,0.00848705694079,0.213938057423,-0.521487493945,0.0202330661663,0.72832559208,-0.444053204711 -1469733929289884744,-0.0087239863351,0.0086089046672,0.213949754834,-0.537672052092,0.023124060741,0.729140880082,-0.422761894224 -1469733929366262246,-0.00870926026255,0.00864550936967,0.213926941156,-0.550419582193,0.0239018206807,0.728301787022,-0.407484347585 -1469733929446102811,-0.00870297476649,0.00871101953089,0.213922768831,-0.545796518726,0.0240012175986,0.728879042654,-0.41263233378 -1469733929522189649,-0.0087798377499,0.00876570586115,0.213942959905,-0.526635358373,0.0207089933572,0.728152337379,-0.43820144965 -1469733929597912401,-0.00878289435059,0.0088210022077,0.213944450021,-0.521308920654,0.0200622505548,0.728192859522,-0.444488104104 -1469733929676247745,-0.00876784045249,0.00888034235686,0.213978871703,-0.530978914116,0.0209041972015,0.728091317202,-0.433021294071 -1469733929752992592,-0.00870294403285,0.00898199994117,0.213926926255,-0.548068240429,0.0236659771998,0.728463395057,-0.41036838014 -1469733929832590753,-0.00871799699962,0.00905005633831,0.213906824589,-0.537486031609,0.0230179965839,0.728943311332,-0.423344524616 -1469733929908610083,-0.00871723052114,0.00909287575632,0.213924884796,-0.548077340665,0.0232327716552,0.728048593249,-0.411116422488 -1469733929989134907,-0.00879775639623,0.00919784326106,0.213976427913,-0.516630916313,0.0192703447491,0.727900415785,-0.450424394126 -1469733930065284868,-0.00873525999486,0.00932016782463,0.213969185948,-0.536762457507,0.0222489318928,0.728478573154,-0.425100009053 -1469733930141397092,-0.00873265042901,0.00945760309696,0.21400116384,-0.5418218508,0.0229064344064,0.728408050063,-0.418719583805 -1469733930228515278,-0.00871447101235,0.00974593311548,0.214001953602,-0.55725547251,0.0239788268244,0.727571750106,-0.399412947548 -1469733930305164369,-0.00869258586317,0.0098292408511,0.213897973299,-0.545730763508,0.0235115611625,0.728472579691,-0.413464437275 -1469733930391911790,-0.00869586318731,0.00982115138322,0.213864922523,-0.552352991385,0.0231971820842,0.727519574313,-0.406304482675 -1469733930469836759,-0.00870798062533,0.009845177643,0.213812842965,-0.53781826135,0.0218081819721,0.727934541994,-0.424720170854 -1469733930556100087,-0.00869200378656,0.00984027609229,0.213663011789,-0.536760868272,0.0211777652301,0.727518494412,-0.426797508006 -1469733930632480697,-0.0087048523128,0.00985943432897,0.213675558567,-0.531197428754,0.0200571340993,0.727127287961,-0.434410992218 -1469733930718233039,-0.00867004692554,0.00986958295107,0.21353533864,-0.529562761615,0.0198914174559,0.727091775552,-0.436468971345 -1469733930796390876,-0.00863692630082,0.00988930184394,0.213480994105,-0.533945294343,0.020605341356,0.727349213088,-0.430628569392 -1469733930878169786,-0.00860156491399,0.00989815033972,0.213399723172,-0.54314910345,0.0217267995913,0.727345598105,-0.418909749849 -1469733930958717232,-0.00854727253318,0.00991038233042,0.213155522943,-0.534572494365,0.0219291618862,0.728303930141,-0.428164390705 -1469733931036515795,-0.0084473900497,0.00984781049192,0.212832465768,-0.54706773431,0.0222617143125,0.727234873961,-0.413945344518 -1469733931114650725,-0.00840805377811,0.00978295132518,0.212649822235,-0.554157865845,0.0227045931036,0.726883556653,-0.405010933484 -1469733931189969302,-0.00839640758932,0.00967532582581,0.212440982461,-0.545913186176,0.0214865566846,0.726642892314,-0.416541988388 -1469733931271428506,-0.00836863555014,0.00963161513209,0.212302297354,-0.541341160639,0.0216638674782,0.727395999553,-0.421159689996 -1469733931350458189,-0.0083608077839,0.00960369501263,0.212242305279,-0.538215027311,0.0213408309957,0.727499127313,-0.424987262242 -1469733931430304567,-0.0083569874987,0.00959533639252,0.212243884802,-0.547749440554,0.0217982476846,0.726923643056,-0.413615043171 -1469733931514909566,-0.00837570615113,0.00956792198122,0.212276145816,-0.542843448504,0.0208990262317,0.726725899002,-0.420420847293 -1469733931597104874,-0.0083696488291,0.00953916087747,0.212244927883,-0.54262486611,0.0208312584652,0.726725431183,-0.420707096471 -1469733931687828507,-0.00835585221648,0.00952683575451,0.212200090289,-0.537298685605,0.0209832791577,0.727388061168,-0.42635247497 -1469733931769479294,-0.00833189021796,0.00952106155455,0.212123036385,-0.539643204019,0.0214819708954,0.727504198236,-0.423156447229 -1469733931851286497,-0.00826278049499,0.00921819638461,0.211627557874,-0.550275854269,0.023275097324,0.727769482261,-0.408664085457 -1469733931927766635,-0.00834093056619,0.00907366536558,0.210926547647,-0.54157326721,0.022938454263,0.72835491678,-0.419131648486 -1469733932007017372,-0.00832440052181,0.00892053730786,0.210668504238,-0.549972513042,0.0225463770203,0.727241746336,-0.410050409301 -1469733932088057187,-0.00828458927572,0.00881790369749,0.210344046354,-0.560122801924,0.0227905688737,0.726385437586,-0.397627002099 -1469733932165313138,-0.00828993879259,0.00874141138047,0.209069281816,-0.546553689525,0.0231412310906,0.728106721611,-0.413042552088 -1469733932243894156,-0.00829408038408,0.00871282443404,0.208894222975,-0.544186341284,0.0216996605098,0.727197112593,-0.417821385438 -1469733932323022808,-0.00829685572535,0.00872250553221,0.208655253053,-0.535959597323,0.0202064572371,0.726814762948,-0.429044647426 -1469733932410993485,-0.0082591176033,0.00870442204177,0.20820094645,-0.562014361173,0.0226858829726,0.726239430393,-0.395223352411 -1469733932486272805,-0.00829586014152,0.00873580668122,0.207639351487,-0.544140213617,0.0222210484168,0.727598026975,-0.417155563397 -1469733932564776872,-0.00826676748693,0.00874543190002,0.207258686423,-0.54472899783,0.0215870201642,0.727220464624,-0.417078787899 -1469733932643327894,-0.00826609041542,0.0087505672127,0.207081481814,-0.535000415607,0.0208786249785,0.727505686915,-0.429038592467 -1469733932722001937,-0.00824164506048,0.00875574257225,0.206671446562,-0.545808928285,0.0226719792232,0.72784984663,-0.41450355357 -1469733932798840755,-0.00828089658171,0.00873491261154,0.20608702302,-0.545667427606,0.0215602318724,0.726862683825,-0.416476714493 -1469733932875830747,-0.0082317199558,0.00875631067902,0.20562069118,-0.55017338914,0.0217619650827,0.726748567671,-0.410697185461 -1469733932953158373,-0.00827006716281,0.00876321922988,0.2046161443,-0.535997987195,0.0207679388939,0.727231027295,-0.428263801151 -1469733933030455496,-0.00824586302042,0.00874526798725,0.204082772136,-0.54333087871,0.0202281712743,0.726031891605,-0.421022647491 -1469733933109467357,-0.00820347387344,0.00876866467297,0.203536480665,-0.549064373756,0.0225973623973,0.72738413096,-0.411010947191 -1469733933197267755,-0.00828241277486,0.00877816323191,0.203077316284,-0.536090799835,0.0203671383713,0.726995080499,-0.428567365693 -1469733933280240211,-0.00823809485883,0.00875242426991,0.202760845423,-0.541369642014,0.0208578202892,0.726842836093,-0.422117701191 -1469733933359596394,-0.00822571758181,0.00870688538998,0.202427297831,-0.541178561941,0.0204656814084,0.726489972371,-0.422988463228 -1469733933438765689,-0.00818869378418,0.00867413170636,0.201354637742,-0.544966527577,0.0218147536005,0.727181267271,-0.416824909137 -1469733933517776836,-0.00818198174238,0.0087062837556,0.201083466411,-0.535066987549,0.0203401342707,0.727106445635,-0.42965778765 -1469733933597641408,-0.00811607670039,0.00871388521045,0.200856015086,-0.546854812159,0.0215284170711,0.727013986607,-0.414652872841 -1469733933677390924,-0.00806213356555,0.00872080400586,0.200619012117,-0.550968534423,0.0222638264984,0.727040103296,-0.409085179766 +1470074967815092875,-0.0362075269222,0.195074677467,1.37116539478,-0.113492264327,0.0148897439683,0.805743392361,-0.581098431532 +1470074967930168767,-0.0362075269222,0.195074677467,1.37116539478,-0.113492264327,0.0148897439683,0.805743392361,-0.581098431532 +1470074968019140982,-0.0362075269222,0.195074677467,1.37116539478,-0.113492264327,0.0148897439683,0.805743392361,-0.581098431532 +1470074968105510106,-0.0362075269222,0.195074677467,1.37116539478,-0.113492264327,0.0148897439683,0.805743392361,-0.581098431532 +1470074968184912318,-0.0362075269222,0.195074677467,1.37116539478,-0.113492264327,0.0148897439683,0.805743392361,-0.581098431532 +1470074968260704340,-0.0362202376127,0.195071667433,1.3713593483,-0.0990097446529,0.012365649291,0.806250801877,-0.583098452797 +1470074968337026862,-0.036194421351,0.195072993636,1.37093818188,-0.127223776623,0.0172757104396,0.805240370681,-0.578881340101 +1470074968411256286,-0.036194421351,0.195072993636,1.37093818188,-0.127223776623,0.0172757104396,0.805240370681,-0.578881340101 +1470074968490768465,-0.0352190025151,0.192717269063,1.35171556473,-0.224665354661,0.0335131682477,0.809520523856,-0.541367589928 +1470074968568621278,-0.0351836420596,0.19474697113,1.35172998905,-0.170088631708,0.0234093912144,0.813353218414,-0.555858255189 +1470074968642163960,-0.0343007966876,0.193660244346,1.33682858944,-0.039936344331,0.00409500736785,0.802721993652,-0.595000605229 +1470074968712776911,-0.0337767601013,0.192343264818,1.32716155052,-0.128919054316,0.0157991599421,0.806359089892,-0.576988112639 +1470074968786321068,-0.0343488156796,0.185658320785,1.30444681644,-0.0973935595396,0.0103806969608,0.799413986531,-0.592742788931 +1470074968856685474,-0.0336907021701,0.183188393712,1.28573489189,-0.175708518399,0.0239579923699,0.807340499712,-0.562808891799 +1470074968930527090,-0.03209169209,0.185457319021,1.29602217674,-0.211493033222,0.0326417215418,0.794744785916,-0.567966495643 +1470074969007912441,-0.0319995991886,0.180500864983,1.28162741661,-0.157186928576,0.0254951539319,0.803841236348,-0.573133085206 +1470074969081934599,-0.0312012545764,0.172759994864,1.24044764042,-0.254489952639,0.0437129007782,0.812969360358,-0.5219241951 +1470074969154785641,-0.0304991751909,0.170172572136,1.23225927353,-0.0854078816553,0.0141858956481,0.813813560579,-0.574640533494 +1470074969226848748,-0.0302896909416,0.16941793263,1.24417817593,-0.163770755396,0.0292988775995,0.80024245979,-0.576136026471 +1470074969298672099,-0.0302096568048,0.164133891463,1.22571587563,-0.151341231836,0.0199391600633,0.8002604104,-0.579897867722 +1470074969376007380,-0.0290327239782,0.157667845488,1.20407307148,-0.223479852721,0.0315358680239,0.802836867953,-0.551828966176 +1470074969459982043,-0.0285695493221,0.154360517859,1.19720935822,-0.199769268201,0.0345823440876,0.805902418104,-0.556253173882 +1470074969541715409,-0.0286251027137,0.151626378298,1.19856762886,-0.197028978795,0.0266171360971,0.78959461884,-0.580526870592 +1470074969612586564,-0.0282067265362,0.148147702217,1.18989992142,-0.240319959852,0.0352601244162,0.798225578661,-0.551215897896 +1470074969684630386,-0.0275112614036,0.143605530262,1.17686009407,-0.284290717616,0.0354357530141,0.789595811639,-0.542643114328 +1470074969759927091,-0.0270104240626,0.139106780291,1.16427671909,-0.101507985449,0.0148048681469,0.787826446451,-0.607294356175 +1470074969829270915,-0.0269467514008,0.135885730386,1.1564180851,0.0064013249704,-3.71487563976e-05,0.789909806849,-0.613189627035 +1470074969906763242,-0.0259382538497,0.128268703818,1.11742949486,-0.200183602566,0.0275695038848,0.800920770162,-0.563642056311 +1470074969985137412,-0.0256014782935,0.125641867518,1.11268138885,-0.181277579957,0.0291396434343,0.801476525325,-0.569143830274 +1470074970062343485,-0.0256408378482,0.123644344509,1.11331343651,-0.162292711113,0.0220729664785,0.788943661585,-0.592234547215 +1470074970139555433,-0.0255666803569,0.121244505048,1.11186885834,-0.168630784255,0.0173361062591,0.777789510107,-0.605232679214 +1470074970215410040,-0.0249867402017,0.118206910789,1.09878671169,-0.290090041099,0.0352471208378,0.783478373631,-0.548422325019 +1470074970289595169,-0.0245352387428,0.111810803413,1.06308698654,-0.231459896506,0.0340303341382,0.796551402882,-0.557471178838 +1470074970365486213,-0.0244204569608,0.110028497875,1.06203460693,-0.218269223928,0.0301657147167,0.788987144417,-0.57353976452 +1470074970441736467,-0.0245297569782,0.10867421329,1.06360352039,-0.10707761158,0.0105325306867,0.77591272746,-0.621597048144 +1470074970519505377,-0.0243546124548,0.106651216745,1.05909228325,-0.252199579607,0.027793809699,0.773771904001,-0.580430802738 +1470074970598634969,-0.0238804593682,0.100808292627,1.0209826231,-0.328248592658,0.0506746568279,0.795095748438,-0.507452156748 +1470074970670339007,-0.0236411988735,0.0996849909425,1.0192489624,-0.236901747453,0.0301338442502,0.790653131187,-0.563770467149 +1470074970741115072,-0.0233688782901,0.0981208235025,1.0155826807,-0.213777619816,0.0285442897892,0.785949536111,-0.579454639703 +1470074970813978387,-0.0236250609159,0.0947275236249,0.992967903614,-0.215254674126,0.0297830448763,0.790698332216,-0.572341281872 +1470074970890208287,-0.0232873912901,0.093364559114,0.986937046051,-0.230546846878,0.024819485011,0.782747377314,-0.57752808405 +1470074970965876446,-0.0226741526276,0.0916915312409,0.977401793003,-0.219735189889,0.0227799968155,0.77860867253,-0.587338108019 +1470074971042130100,-0.0225480794907,0.0908631011844,0.971098005772,-0.0152143749266,0.00296443027528,0.780292334163,-0.625222846828 +1470074971112447879,-0.0226189475507,0.0879082009196,0.951905369759,-0.267772713103,0.034460093616,0.782738157923,-0.560741698286 +1470074971184818810,-0.0224087741226,0.0866146087646,0.948152899742,-0.308774588989,0.0337944381132,0.774837341233,-0.550584492861 +1470074971254997931,-0.0221198610961,0.0846902281046,0.937861561775,-0.222759381398,0.021303775813,0.77259458768,-0.594156553631 +1470074971328765930,-0.0220216102898,0.0828920453787,0.918939948082,-0.187598820478,0.0227520948238,0.787654923741,-0.586420280894 +1470074971400499529,-0.0218923632056,0.0814335793257,0.9144718647,-0.170510399767,0.0182748322182,0.768866229541,-0.615984541324 +1470074971471959941,-0.0219630002975,0.0793031528592,0.895154833794,-0.177360678158,0.0165817795556,0.778444049305,-0.601907880436 +1470074971545940459,-0.0214323084801,0.0783985927701,0.88656938076,-0.29913492333,0.0356487617004,0.781874345996,-0.545820456292 +1470074971620764033,-0.0214055199176,0.0768261402845,0.872899711132,-0.169593663854,0.0203103384286,0.779425027788,-0.602762063663 +1470074971697753288,-0.0213453918695,0.0764165371656,0.865948677063,-0.222319143724,0.0256589553378,0.779214447267,-0.585440570439 +1470074971772058680,-0.0210093669593,0.0754289403558,0.859860897064,-0.33949722275,0.0346355715739,0.768056984674,-0.541876813696 +1470074971856683888,-0.0210874471813,0.0743357464671,0.846861600876,-0.105365354848,0.00990821060679,0.778437640204,-0.618736462215 +1470074971933664776,-0.0206000432372,0.0727600455284,0.835144281387,-0.33895361516,0.0310526424113,0.761197893209,-0.552018068132 +1470074972011645777,-0.0209566131234,0.071914717555,0.820720553398,-0.163729011486,0.0152549003424,0.771656376948,-0.614415604237 +1470074972086489981,-0.0206147674471,0.0717223361135,0.815660834312,-0.285962635945,0.0285300175027,0.772122774788,-0.566778466067 +1470074972171409016,-0.0203885119408,0.0706218332052,0.794334828854,-0.292431572743,0.0328331122651,0.778330626935,-0.554623473338 +1470074972242214298,-0.020242318511,0.0709217041731,0.792728602886,-0.149694984717,0.0122334640807,0.766363434426,-0.624602946104 +1470074972314942705,-0.0198308434337,0.0704629272223,0.780042171478,-0.14013211088,0.0122221885096,0.770342143497,-0.621921692467 +1470074972391852142,-0.0193718988448,0.0699236541986,0.764441609383,-0.341441939513,0.030745068289,0.761193120735,-0.550506290303 +1470074972465905757,-0.0187520124018,0.069702245295,0.754389166832,-0.37945119666,0.0373104735598,0.763915748977,-0.520631776192 +1470074972538658871,-0.0189850088209,0.0690375640988,0.742926239967,-0.134998194787,0.0100647823576,0.762152537191,-0.633085853273 +1470074972612370347,-0.0183970164508,0.0686662122607,0.731413543224,-0.242352952018,0.0200914269044,0.763425463163,-0.598366896986 +1470074972685064180,-0.0183157492429,0.0679985359311,0.719621121883,-0.230912115958,0.0204150675044,0.7649806659,-0.600888842069 +1470074972755890428,-0.0182968545705,0.0667533203959,0.705786585808,-0.306604662532,0.033824641345,0.771124560284,-0.556970723717 +1470074972828228291,-0.018240083009,0.0664293766022,0.701862990856,-0.281822763334,0.0195472068436,0.756342010729,-0.590034405418 +1470074972904948192,-0.0183182004839,0.0658611133695,0.689884483814,-0.310285055812,0.0239027477061,0.75917393025,-0.571670172758 +1470074972981130360,-0.0184370167553,0.0654792934656,0.678155303001,-0.329381588076,0.0248868171682,0.753493505417,-0.568450484266 +1470074973053391365,-0.0186112225056,0.0649720355868,0.667120814323,-0.288505322631,0.0222053200055,0.757544000347,-0.585148434259 +1470074973129418714,-0.0185753852129,0.0642983987927,0.653695821762,-0.30756865814,0.0269046075884,0.765265171049,-0.564842350219 +1470074973203507433,-0.0186802428216,0.0638026595116,0.642863035202,-0.270569803735,0.0239638695168,0.767677103599,-0.580421897309 +1470074973277418567,-0.0184336397797,0.0632269605994,0.628537476063,-0.301773343084,0.0278248721392,0.767338353933,-0.565111030221 +1470074973352554427,-0.0182421468198,0.0626468658447,0.620209693909,-0.27187551026,0.0248883446873,0.762365921358,-0.586738850914 +1470074973427216991,-0.0179482121021,0.0619335845113,0.611919105053,-0.398710250576,0.0309749798447,0.752833115322,-0.522793446003 +1470074973499070096,-0.017938612029,0.0613865740597,0.60127145052,-0.36779782002,0.031404136045,0.759423150452,-0.535737829899 +1470074973573128189,-0.0177309550345,0.0601609908044,0.588202536106,-0.36596533889,0.0242590345407,0.749569647115,-0.551022879831 +1470074973651890453,-0.0176427345723,0.059549279511,0.577948391438,-0.362091079469,0.0301052442541,0.75829573929,-0.54126822945 +1470074973728097188,-0.017432808876,0.0582937970757,0.566128015518,-0.39852678365,0.031661325399,0.75440523127,-0.520621465386 +1470074973803643313,-0.0172318089753,0.0576928630471,0.555105805397,-0.328742351612,0.0288508189612,0.763232983568,-0.555492132523 +1470074973875830497,-0.0169687587768,0.0567152313888,0.546461999416,-0.291230342802,0.0231093104197,0.757900698576,-0.583298704182 +1470074973958179160,-0.0166561380029,0.055452272296,0.53144723177,-0.339906496599,0.0215862763964,0.750145112547,-0.566815592908 +1470074974029611949,-0.0163819417357,0.0550355054438,0.521917641163,-0.300580803229,0.0224524899869,0.756640938919,-0.580208200542 +1470074974111981028,-0.0158238150179,0.0545661859214,0.514094114304,-0.371767432305,0.0299470495074,0.754142513032,-0.540519398858 +1470074974186803178,-0.0155493197963,0.0538236387074,0.505249500275,-0.409909753456,0.0284623634677,0.748034470706,-0.521160549661 +1470074974262388951,-0.0153749575838,0.052429985255,0.488850742579,-0.363169802514,0.0261840891012,0.753019356576,-0.548072930039 +1470074974337432737,-0.0151003999636,0.0514132343233,0.479323208332,-0.380015527282,0.0263893158173,0.750283267409,-0.540339542955 +1470074974409516460,-0.0149155044928,0.0504585616291,0.470711916685,-0.38774710092,0.0252208040155,0.74745616046,-0.538818508371 +1470074974481755200,-0.0146673824638,0.0485898070037,0.45543384552,-0.42853675256,0.0287425694575,0.746214947018,-0.508619080701 +1470074974558906770,-0.014447780326,0.0477534420788,0.447003245354,-0.407387812526,0.0226337724217,0.741401449192,-0.532772722357 +1470074974630853673,-0.0142469536513,0.0468276888132,0.436627209187,-0.32257270671,0.0192315778853,0.745994474201,-0.582296522194 +1470074974707911484,-0.0139609370381,0.0458359457552,0.425546884537,-0.418161295534,0.0278817685397,0.747133785158,-0.515901972254 +1470074974781958514,-0.0136265261099,0.0449568852782,0.411998271942,-0.398502572134,0.0241938939415,0.744616439631,-0.534936176874 +1470074974855771847,-0.0132376290858,0.04424020648,0.40334123373,-0.442228204166,0.0267802134675,0.74219611159,-0.50285382324 +1470074974934141057,-0.0131452977657,0.0433959551156,0.392992645502,-0.419813998823,0.0264373024064,0.745118311987,-0.51754804277 +1470074975009249730,-0.0130163999274,0.0426948592067,0.382626086473,-0.412087599242,0.0260541281239,0.746136410345,-0.522288665505 +1470074975083059038,-0.01247757487,0.041644744575,0.369503647089,-0.429653431654,0.0253241346115,0.74376266446,-0.511442778646 +1470074975156583940,-0.0122576309368,0.0406506583095,0.359646260738,-0.419032963476,0.0256617178822,0.744247917326,-0.519468853073 +1470074975229462352,-0.0120639530942,0.0400414429605,0.350112468004,-0.423628372627,0.0261543707009,0.744524607534,-0.515303851698 +1470074975305664406,-0.0118716815487,0.0393725223839,0.341039896011,-0.404431957987,0.0229167489196,0.743300299218,-0.532366677357 +1470074975383962939,-0.0115272738039,0.0382928177714,0.32641723752,-0.34740868368,0.0191675660602,0.744349631781,-0.569985470501 +1470074975455554685,-0.011376362294,0.0373945459723,0.316546261311,-0.41226413499,0.0217842746965,0.740591124743,-0.530177813879 +1470074975529551396,-0.0112049998716,0.0365376845002,0.306587070227,-0.397173528736,0.0219054196863,0.742210586175,-0.539348483291 +1470074975603869952,-0.0110032372177,0.0359972938895,0.297375917435,-0.34468372077,0.0182160537693,0.743161350519,-0.573212451989 +1470074975675983330,-0.0108683407307,0.0350376851857,0.284441381693,-0.435746330446,0.024004041814,0.741101064627,-0.510213831141 +1470074975752724632,-0.0107898311689,0.0346502326429,0.278601765633,-0.437450887597,0.0228468000086,0.7399256432,-0.510514238004 +1470074975826266127,-0.0107313841581,0.034504827112,0.274428337812,-0.398406823105,0.0215368185453,0.741338849055,-0.539652554549 +1470074975904196124,-0.010724849999,0.0346187129617,0.273297667503,-0.462304974411,0.0252173089266,0.739128386388,-0.489211024407 +1470074975977375448,-0.0104810548946,0.0357031151652,0.273761689663,-0.432695087252,0.0230653403996,0.739875240701,-0.514614010436 +1470074976051482594,-0.0104136168957,0.0350690670311,0.269176155329,-0.476145480995,0.0258001632432,0.737455949653,-0.478308012505 +1470074976123874458,-0.0104371001944,0.0342279784381,0.267357826233,-0.431298285727,0.0247639497967,0.740993446424,-0.514098480718 +1470074976196031136,-0.0104418862611,0.0337280146778,0.267383486032,-0.417188764243,0.0226856742803,0.740516159062,-0.526378868631 +1470074976269586923,-0.0104364817962,0.033758893609,0.267563283443,-0.415506073607,0.0229448739449,0.740648062701,-0.527511784487 +1470074976342403637,-0.0104085067287,0.0328451916575,0.267255961895,-0.445567551088,0.0258669538314,0.740495244889,-0.502461192943 +1470074976414706885,-0.0103713609278,0.0319314934313,0.267218440771,-0.434777010073,0.0251932949886,0.740825462503,-0.511382326158 +1470074976486535688,-0.0103810168803,0.0315320342779,0.267118960619,-0.434065034183,0.0238850184289,0.739178890436,-0.514423580261 +1470074976565778372,-0.0103462552652,0.0309270247817,0.267097264528,-0.446411494298,0.0249461876884,0.739703472039,-0.502924685149 +1470074976640723800,-0.0103257987648,0.0299795046449,0.267103672028,-0.448553788218,0.0247959015724,0.739171836772,-0.501806395 +1470074976712474505,-0.0103287193924,0.0291897207499,0.267002940178,-0.435443353637,0.0238314762883,0.739329684372,-0.513042653508 +1470074976784234101,-0.0103084137663,0.0284867528826,0.266969203949,-0.440252299201,0.0239850542047,0.739080052527,-0.509277239015 +1470074976860447969,-0.0102889034897,0.0281140133739,0.267109721899,-0.447341867841,0.0242055782006,0.738688609205,-0.50362533881 +1470074976932785220,-0.0102848317474,0.0274342671037,0.267032057047,-0.437453778485,0.0235452477705,0.738568457714,-0.512441651573 +1470074977006287626,-0.0102380895987,0.0267743058503,0.267036437988,-0.457973055901,0.0250379963946,0.738330538031,-0.494471228098 +1470074977083930964,-0.0102476673201,0.0261687338352,0.26710486412,-0.448788420154,0.0245346007734,0.738438187563,-0.502688820692 +1470074977166108908,-0.0102654052898,0.0258668530732,0.267091035843,-0.44555795162,0.0229215647468,0.737457060922,-0.507059953965 +1470074977240832364,-0.0102370763198,0.0253418423235,0.267109364271,-0.455315018795,0.024405980989,0.737826281993,-0.497699667824 +1470074977316995307,-0.0102096674964,0.0246808137745,0.267043799162,-0.458332335527,0.0246842009086,0.73779540337,-0.494954647622 +1470074977389644275,-0.0101968841627,0.0241687260568,0.267127424479,-0.464822170937,0.0246162204329,0.737193308421,-0.48977588458 +1470074977459293224,-0.0101779550314,0.0236791353673,0.267029553652,-0.469350345408,0.0252235055151,0.73734735991,-0.485173060741 +1470074977531564415,-0.0101708499715,0.0231609418988,0.267025709152,-0.474997312615,0.0251644624305,0.736689296521,-0.480659113334 +1470074977608518601,-0.0101912887767,0.0229098089039,0.267016410828,-0.453813450555,0.0238609201333,0.737401632188,-0.499722764573 +1470074977680277836,-0.0101757468656,0.0224534645677,0.267058193684,-0.467772411135,0.0233598115454,0.735629899904,-0.489379138249 +1470074977756183600,-0.0101742399856,0.0220771618187,0.267142087221,-0.475453898291,0.0229535074354,0.734664485239,-0.483409579162 +1470074977832446267,-0.0101478714496,0.0216919723898,0.267119795084,-0.478170669904,0.0241008917206,0.735272469432,-0.479735711779 +1470074977905417211,-0.0101373968646,0.0214954465628,0.267072468996,-0.477837072682,0.0239022248341,0.73532009116,-0.480004978261 +1470074977978137831,-0.0101654231548,0.021093538031,0.267093807459,-0.471124118403,0.0217858376358,0.734069144718,-0.488579505414 +1470074978050567420,-0.0100860837847,0.0207055993378,0.267079263926,-0.511122435741,0.0257827182831,0.73360553194,-0.447115231933 +1470074978126478726,-0.0100697176531,0.0204203743488,0.267138957977,-0.514110626482,0.0265761364011,0.73399630544,-0.442982388265 +1470074978200455409,-0.010146218352,0.0201166477054,0.26712974906,-0.475128175307,0.0215674149705,0.733552530561,-0.485477855878 +1470074978274243234,-0.0100595569238,0.0199740324169,0.267135858536,-0.516222932745,0.0269885031192,0.734172948503,-0.440199484431 +1470074978348635767,-0.0101197473705,0.0196519605815,0.26708856225,-0.493962685353,0.0227546338295,0.732779110603,-0.467458947055 +1470074978422927489,-0.010043060407,0.0193273276091,0.267006844282,-0.521518896599,0.0267266918997,0.73336138372,-0.435298524347 +1470074978496369368,-0.0100802229717,0.0190810710192,0.267086058855,-0.50735535021,0.0248185806218,0.733229313337,-0.452050175016 +1470074978574603243,-0.0100438287482,0.0189588684589,0.267031401396,-0.521019212723,0.026798658228,0.733405918226,-0.435817130229 +1470074978648999678,-0.0101093417034,0.0187048669904,0.267258167267,-0.506870132789,0.0244126694692,0.732873170232,-0.453192681329 +1470074978727711568,-0.0101829813793,0.0184698440135,0.268131643534,-0.521571193498,0.0273601913321,0.733896588182,-0.434293343143 +1470074978802986929,-0.0101549094543,0.0183377806097,0.269764602184,-0.502519172572,0.0258473823383,0.734730565338,-0.454947678731 +1470074978875713759,-0.010170917958,0.0180563032627,0.270019114017,-0.502170342821,0.0249666123342,0.73387495648,-0.456759415132 +1470074978946757040,-0.0101243350655,0.0179056711495,0.270074874163,-0.521484979999,0.0278376785163,0.734219380834,-0.433820677352 +1470074979022231352,-0.0101922769099,0.0175496675074,0.270040512085,-0.493006631774,0.0236030616507,0.733562513028,-0.467197384397 +1470074979092267789,-0.0101252477616,0.0172621328384,0.270015597343,-0.526040620987,0.0276046108957,0.73341276784,-0.429680069933 +1470074979168106459,-0.0102093350142,0.0170192830265,0.270086407661,-0.490922159819,0.0224214636108,0.732761065085,-0.470695158742 +1470074979245584798,-0.0101648708805,0.0166456755251,0.270034104586,-0.505400804101,0.0250096309156,0.73345346133,-0.453861835406 +1470074979321487486,-0.0101948678493,0.0165474656969,0.270032763481,-0.491569498561,0.022645096091,0.733116980222,-0.469453001927 +1470074979401323206,-0.0101568251848,0.0162071380764,0.269970953465,-0.501854334188,0.0251435905905,0.733918908375,-0.457026326416 +1470074979474277335,-0.0101045435295,0.0159386638552,0.269954115152,-0.532626697368,0.0280020160272,0.733025225539,-0.422135886974 +1470074979547367226,-0.0101785492152,0.0156488586217,0.270010143518,-0.496393096445,0.023361964298,0.733101654248,-0.464338321663 +1470074979619014394,-0.0100893229246,0.0153846163303,0.269855678082,-0.527428569388,0.0284129193594,0.733955579679,-0.426990652433 +1470074979690304148,-0.0101693207398,0.0152297765017,0.270013868809,-0.495669315841,0.0235704084302,0.733176467151,-0.464982400952 +1470074979763361537,-0.0101508572698,0.0150571353734,0.269892811775,-0.510007731784,0.0244312339187,0.732724343887,-0.449900282513 +1470074979834288204,-0.0101158590987,0.0148312225938,0.269913911819,-0.529479244893,0.0267132436236,0.732111934167,-0.427726837704 +1470074979905823622,-0.010153834708,0.0147094959393,0.269965440035,-0.509003012528,0.0241747223237,0.732498685235,-0.451416871822 +1470074979983464099,-0.0101692099124,0.0146673191339,0.269971728325,-0.50017738082,0.0233598222054,0.732936252354,-0.460522916268 +1470074980053934858,-0.0101277111098,0.0144485905766,0.26987439394,-0.513412436456,0.0259416207521,0.733442530296,-0.44474347343 +1470074980125851171,-0.010132019408,0.0143917687237,0.269906550646,-0.507888870104,0.0257896151021,0.733901805511,-0.450302044461 +1470074980199709519,-0.0101387239993,0.0142547003925,0.269915372133,-0.513245257529,0.0252179272097,0.733083182888,-0.445569757433 +1470074980275170145,-0.0101633938029,0.0141999544576,0.269993185997,-0.515725193589,0.0239453536844,0.731695660899,-0.44505685542 +1470074980348249093,-0.0101606985554,0.0141199827194,0.269940674305,-0.517440372024,0.0241335670138,0.731695934642,-0.443050890498 +1470074980422409306,-0.0101145189255,0.013858569786,0.269872009754,-0.523698272711,0.0266728931995,0.732921991512,-0.433421308066 +1470074980494395084,-0.0101271308959,0.0138247543946,0.269897431135,-0.516378974664,0.0259137754984,0.73314027312,-0.441799242523 +1470074980565891091,-0.010143966414,0.0137735269964,0.269943803549,-0.512755757561,0.0248299829185,0.732708304535,-0.446770126019 +1470074980637513297,-0.0101613579318,0.0136298974976,0.269921451807,-0.513577731084,0.0238037436453,0.731876698604,-0.447244669016 +1470074980709720046,-0.0100996373221,0.0134843317792,0.269842475653,-0.530569700511,0.0276988455372,0.732997009369,-0.424786947906 +1470074980783495577,-0.0101418858394,0.0134083246812,0.26997795701,-0.522124715979,0.0257430880585,0.732231900382,-0.436531234214 +1470074980856556181,-0.0101387007162,0.013371694833,0.269960612059,-0.521222943573,0.0254355517699,0.732142054033,-0.437775842773 +1470074980929205354,-0.0101512568071,0.0133481454104,0.269936263561,-0.506690360157,0.0245124665168,0.733010301512,-0.453166543101 +1470074981003998356,-0.0101379752159,0.0132900197059,0.269900470972,-0.514991753966,0.0247866814468,0.732407050407,-0.444689809062 +1470074981083554811,-0.010167225264,0.0132267409936,0.26995703578,-0.514445984014,0.0237086742101,0.731603941445,-0.446697773848 +1470074981155422472,-0.0101651838049,0.0132164694369,0.269902229309,-0.506170359522,0.0232271110492,0.732062065426,-0.455342948577 +1470074981228951182,-0.0101279411465,0.0130970515311,0.269840538502,-0.526010084982,0.0253848046792,0.731672157645,-0.432810415674 +1470074981304271282,-0.0101373260841,0.0130222141743,0.269872963428,-0.523783158846,0.0257109233117,0.731939713539,-0.435033799465 +1470074981391302288,-0.0100874034688,0.0129925496876,0.26976314187,-0.527676982711,0.027552665321,0.733145163034,-0.42813084737 +1470074981466988836,-0.0101271755993,0.0128868939355,0.269950151443,-0.530014251458,0.0259964853012,0.731635643417,-0.427923312388 +1470074981542249331,-0.0101385936141,0.012861629948,0.269968509674,-0.524333793556,0.0256400983384,0.732101594049,-0.434101271922 +1470074981615795358,-0.0101397735998,0.0128049114719,0.269964158535,-0.529401977809,0.0254569709834,0.731510312175,-0.42892674398 +1470074981696578964,-0.0101502751932,0.0127759547904,0.269947141409,-0.527325229756,0.0245271542122,0.730958031331,-0.432466041674 +1470074981768728813,-0.0101706935093,0.0127142565325,0.26997590065,-0.522537949559,0.0232503339829,0.730394135233,-0.439246992542 +1470074981845686346,-0.010167193599,0.0126636540517,0.269869714975,-0.517245696873,0.0228029023496,0.730473094431,-0.445360500071 +1470074981922189346,-0.0101921046153,0.0126167396083,0.26992842555,-0.515328575705,0.0216459785644,0.729547981556,-0.449141017144 +1470074981996011289,-0.0101916715503,0.0126500902697,0.269906371832,-0.509152450988,0.0218972754229,0.730458523826,-0.454658812685 +1470074982066522188,-0.0101338569075,0.0125395320356,0.26983499527,-0.533407709119,0.0254478492335,0.730772452576,-0.42520612105 +1470074982138401763,-0.0101302834228,0.0124138025567,0.269886136055,-0.539272768307,0.0264261718614,0.730987278338,-0.417305808383 +1470074982211818529,-0.0101640671492,0.0122384959832,0.269907206297,-0.527940961113,0.0239846064351,0.730392029122,-0.432701472182 +1470074982283352894,-0.0102064479142,0.0121610956267,0.269860059023,-0.510314896154,0.0217183320495,0.730182136232,-0.453807303537 +1470074982367219221,-0.0101644145325,0.0120650753379,0.26988145709,-0.53109112265,0.0237245428315,0.729487800286,-0.430379965546 +1470074982438604080,-0.0101378289983,0.0119120376185,0.269944995642,-0.531510475657,0.0255277946565,0.731204310262,-0.426831585782 +1470074982513052831,-0.0101437577978,0.0118531715125,0.269927442074,-0.525703651624,0.0247137704217,0.731195719214,-0.434025022807 +1470074982587416007,-0.0101541467011,0.0118016423658,0.269953638315,-0.527629649345,0.0241262697139,0.730517719862,-0.43286110614 +1470074982665357518,-0.0101583776996,0.0117785930634,0.269933909178,-0.527123370087,0.0238371136819,0.730406669968,-0.433680575062 +1470074982742389044,-0.0101941330358,0.0117220897228,0.269888192415,-0.505689099487,0.0215527012929,0.730384999619,-0.458641219319 +1470074982814457653,-0.0102273412049,0.0116516388953,0.269897758961,-0.504581657283,0.0204352282479,0.729398671088,-0.461473001589 +1470074982886349261,-0.0101278051734,0.0116006415337,0.269799083471,-0.541330493108,0.0262887100332,0.730491718746,-0.415514199276 +1470074982960173030,-0.0101092178375,0.0114705218002,0.269902467728,-0.54786666454,0.0273145862191,0.730759259167,-0.40630891746 +1470074983034255380,-0.0101464390755,0.0113411713392,0.269898116589,-0.531022947901,0.0247018954599,0.73056398786,-0.42857986981 +1470074983108816023,-0.0101540721953,0.0113119259477,0.269852310419,-0.524325633525,0.0241963214789,0.730874767741,-0.436255936276 +1470074983181714803,-0.0101751862094,0.0111755244434,0.26971796155,-0.514949915852,0.0225618240266,0.730379709307,-0.448177452013 +1470074983255735680,-0.0100949248299,0.0110421348363,0.269807547331,-0.551496945326,0.0278765066643,0.730699101665,-0.40143846664 +1470074983328096838,-0.0101142991334,0.0109419701621,0.2698341012,-0.531836727029,0.0259593850131,0.731606930652,-0.425707769642 +1470074983403758160,-0.0101319188252,0.0108710201457,0.269849866629,-0.537008217473,0.0254772801694,0.7305992185,-0.42094876706 +1470074983476208237,-0.0101965665817,0.0107625108212,0.269888967276,-0.516738414095,0.0219703118049,0.72970105849,-0.44725281669 +1470074983552327484,-0.0101707307622,0.0106458682567,0.269833147526,-0.526738541312,0.0231914949531,0.729739110881,-0.435303909596 +1470074983627884590,-0.0101267136633,0.0105868764222,0.26987144351,-0.536095507217,0.0263189145232,0.73131667687,-0.420814495963 +1470074983701230920,-0.010123629123,0.0105737457052,0.269845038652,-0.526358564866,0.0257327612948,0.731990316247,-0.431827121786 +1470074983781241960,-0.0101446947083,0.0105013754219,0.269928067923,-0.531708465463,0.025186744056,0.730893471983,-0.427137528544 +1470074983856840204,-0.0101316301152,0.0104438532144,0.269886463881,-0.534184284965,0.0257013019653,0.731073851182,-0.423695193377 +1470074983930556654,-0.0101968841627,0.0102836061269,0.269818067551,-0.510393584249,0.0221584106359,0.73025983389,-0.453572451767 +1470074984003282104,-0.0101403184235,0.00999163370579,0.269916862249,-0.534536395477,0.0254868658171,0.73081302464,-0.423714036347 +1470074984078194532,-0.0101862587035,0.00988362636417,0.269926637411,-0.520583411567,0.0229829251252,0.730078880081,-0.442096737846 +1470074984153969723,-0.010145355016,0.00935020577163,0.269608408213,-0.512126919038,0.0223064703525,0.730186846036,-0.451725148793 +1470074984226487974,-0.0100330840796,0.00871505960822,0.269196033478,-0.530920621634,0.0259079944065,0.731442295327,-0.427134917744 +1470074984299633687,-0.0100335804746,0.00831206794828,0.268780946732,-0.510111591397,0.0244704551878,0.732470659965,-0.450193395592 +1470074984371544913,-0.0100580975413,0.00812814943492,0.268198698759,-0.500442464557,0.0240412320608,0.732994272978,-0.460107329447 +1470074984446960705,-0.0100703993812,0.00804142188281,0.267825961113,-0.502750986321,0.0252586200888,0.734036961106,-0.455843380553 +1470074984524060077,-0.0100889708847,0.00790250487626,0.267268836498,-0.511863543118,0.0253441484068,0.73319414001,-0.446967269967 +1470074984601713999,-0.0100491847843,0.00778489839286,0.266961336136,-0.512375720779,0.025044878784,0.732780144963,-0.447076205977 +1470074984673692956,-0.010011411272,0.0075990059413,0.266815692186,-0.525339511417,0.0259844576636,0.732243485937,-0.43262302644 +1470074984746567971,-0.0100051509216,0.00746211409569,0.266584306955,-0.526012068473,0.0246082524358,0.730919507081,-0.434122577047 +1470074984817488751,-0.00998837593943,0.00744082173333,0.266403973103,-0.523261254032,0.0250428378495,0.731557993786,-0.436340942417 +1470074984893906025,-0.00993092637509,0.00718198204413,0.266335397959,-0.538513944569,0.0280234557836,0.732147782917,-0.416145457022 +1470074984968800354,-0.00999476388097,0.00666096992791,0.266353338957,-0.500855723197,0.0252280769877,0.733800776088,-0.458305039995 +1470074985044419390,-0.010000939481,0.00610120501369,0.26614266634,-0.496102131668,0.0253969481364,0.734599120446,-0.46217075007 +1470074985116906895,-0.0100443288684,0.00602697068825,0.266095548868,-0.468021997058,0.0225576931049,0.735042275732,-0.490060622411 +1470074985196092365,-0.0100197028369,0.00629303930327,0.266140013933,-0.485830284576,0.0235633574317,0.734194485515,-0.473679385465 +1470074985274295348,-0.0100510399789,0.00641136197373,0.266124457121,-0.473024061168,0.0210146595219,0.733023324143,-0.488347650658 +1470074985351814114,-0.0100539280102,0.00679599260911,0.266178309917,-0.474980668116,0.0199260014501,0.731855332535,-0.488245933545 +1470074985427946708,-0.00995159801096,0.00750117842108,0.266282320023,-0.534924476811,0.0263831158364,0.731442569073,-0.42207997282 +1470074985501256483,-0.00995616707951,0.00800389237702,0.266284048557,-0.526737350443,0.0257807321836,0.731893548248,-0.431526304562 +1470074985573340486,-0.00999070797116,0.00901867635548,0.266210287809,-0.513199927618,0.0218418464586,0.73014444003,-0.45059723116 +1470074985658701888,-0.0099044572562,0.00940468627959,0.266099512577,-0.556181934315,0.0280595132946,0.730236206282,-0.395764327208 +1470074985731402530,-0.00991018302739,0.00937160011381,0.265984863043,-0.551376637894,0.0266805981127,0.729799767101,-0.403316561536 +1470074985803108942,-0.00992944743484,0.00938584748656,0.265687644482,-0.529811965759,0.0260947106016,0.731640201736,-0.428159972698 +1470074985878122884,-0.00996982678771,0.00923702400178,0.265289485455,-0.519636436945,0.0260636485852,0.732860081668,-0.438423038081 +1470074985954704303,-0.0100236684084,0.00924835726619,0.265119463205,-0.535288387439,0.026653958661,0.731627730342,-0.421279922327 +1470074986027920142,-0.010105968453,0.00945508945733,0.264881044626,-0.505826800412,0.0226422880127,0.731553955977,-0.456569145117 +1470074986101457442,-0.0100730080158,0.0100095383823,0.264899194241,-0.52159636085,0.0247964460493,0.731812304821,-0.437919082849 +1470074986175891772,-0.0100553752854,0.0105135049671,0.264920324087,-0.526842356032,0.0251372840319,0.731518777555,-0.432071205851 +1470074986252586876,-0.0100847296417,0.0110483793542,0.264868944883,-0.517058165278,0.0234784400208,0.731279875873,-0.444217694061 +1470074986325555216,-0.0101072089747,0.0116402925923,0.264730870724,-0.49873298267,0.0204735739413,0.730502998113,-0.466059668407 +1470074986403903786,-0.0100776823238,0.0129458820447,0.264478355646,-0.505805698191,0.0207071339594,0.730009453893,-0.459149221395 +1470074986480666911,-0.0100509701297,0.0133696375415,0.264375239611,-0.521422379299,0.0217332868097,0.729498052652,-0.442130023621 +1470074986557854883,-0.0100231841207,0.0137320579961,0.264158725739,-0.519925605725,0.0211441959604,0.729040851207,-0.4446681063 +1470074986630189174,-0.00997729133815,0.0140587212518,0.263830304146,-0.530273277812,0.0214401880173,0.728088980138,-0.433862888686 +1470074986702850718,-0.00996232777834,0.0141033912078,0.2636936903,-0.529168119317,0.0218564589908,0.728622014035,-0.434296393448 +1470074986784871935,-0.00996590591967,0.0140383569524,0.263697117567,-0.542154969404,0.0214893452348,0.726836206709,-0.42108826368 +1470074986860213313,-0.00989692192525,0.0137672415003,0.263636559248,-0.54730649297,0.0247697308006,0.72896030224,-0.410437499442 +1470074986937044743,-0.00992504321039,0.0136614525691,0.263586431742,-0.543046365561,0.0228669545879,0.727951454202,-0.417928735031 +1470074987012256348,-0.00993692968041,0.0135929742828,0.263596653938,-0.545258055825,0.022317057118,0.72732576214,-0.416164435347 +1470074987087900455,-0.00992457102984,0.0137168243527,0.263687074184,-0.544332314543,0.023881182657,0.728751163531,-0.414793637984 +1470074987164059452,-0.00986840669066,0.0143068637699,0.263683289289,-0.56730239525,0.0261443786657,0.728019382657,-0.384021148225 +1470074987236901137,-0.009869934991,0.0146504975855,0.263587772846,-0.568251332743,0.0251815563168,0.727138885988,-0.384350559439 +1470074987311138645,-0.0098663084209,0.0146815795451,0.263545781374,-0.565331760996,0.0251683024693,0.727482188346,-0.387989976931 +1470074987386966643,-0.0099146226421,0.0145104592666,0.263479590416,-0.558195682655,0.0225175723341,0.72611935587,-0.40082567262 +1470074987464900268,-0.00982625037432,0.0143120028079,0.263465434313,-0.585022736885,0.0275262113694,0.726815695877,-0.358789143149 +1470074987539054416,-0.00984662398696,0.0142144886777,0.26345294714,-0.572301594358,0.0259656943127,0.727264388628,-0.377998911174 +1470074987612242117,-0.00991477631032,0.0140265980735,0.263480484486,-0.560897244494,0.0221672571344,0.725660409494,-0.397894287372 +1470074987684344935,-0.00981598068029,0.0138500928879,0.263400018215,-0.578902377264,0.0273853697391,0.727371891325,-0.367494504493 +1470074987760773848,-0.00987795647234,0.0136156706139,0.263367325068,-0.563874409997,0.023746486329,0.726541598149,-0.391942674758 +1470074987837267792,-0.00981444213539,0.0133958738297,0.263363569975,-0.581071097398,0.0274020175039,0.727245473241,-0.364306918485 +1470074987916251150,-0.00987188331783,0.013218424283,0.26342651248,-0.562318042778,0.0239544884209,0.726729345582,-0.393813483163 +1470074987992288400,-0.00984541792423,0.0129315545782,0.263369202614,-0.568685113821,0.0250655764781,0.726927757211,-0.384115860112 +1470074988066684109,-0.00988286640495,0.0126932123676,0.263376265764,-0.557110571333,0.0233282234623,0.726891560976,-0.400889341192 +1470074988140415038,-0.0098265260458,0.0124344108626,0.263368606567,-0.574372448423,0.026553312146,0.727239523898,-0.37485182004 +1470074988215024303,-0.00987635366619,0.0121574448422,0.263292133808,-0.555631746134,0.0231159706439,0.726973675701,-0.402800557878 +1470074988296735536,-0.00985275302082,0.0118904262781,0.263329803944,-0.56097154844,0.0252167149107,0.727723209599,-0.393819716801 +1470074988369736631,-0.00987049099058,0.0117711666971,0.263325750828,-0.562359313624,0.0240146787724,0.726908689163,-0.393419693461 +1470074988445511929,-0.00981628987938,0.0115212062374,0.263321071863,-0.579970665145,0.0274119458818,0.727179798846,-0.366185954052 +1470074988520469989,-0.00987123139203,0.0113283526152,0.263363718987,-0.559650005688,0.0239053241274,0.727003109203,-0.397098080857 +1470074988593939035,-0.00980360154063,0.0110653238371,0.263260632753,-0.577680428539,0.0275645954106,0.727570699738,-0.369007306766 +1470074988666276343,-0.00985092576593,0.0109026161954,0.263298004866,-0.556315502839,0.0246738275272,0.727916792973,-0.400051754208 +1470074988739979925,-0.00987604167312,0.0108165824786,0.2633202672,-0.559915706162,0.0232737591841,0.726702580073,-0.397311079939 +1470074988812989426,-0.00981619767845,0.0105910655111,0.26326072216,-0.571977802614,0.0269543663634,0.727787864965,-0.37741181627 +1470074988890155590,-0.00985731929541,0.0104257445782,0.263315856457,-0.565782564507,0.0243557702641,0.726775622296,-0.388708220894 +1470074988965986894,-0.0098680825904,0.0103709045798,0.263272792101,-0.559967132186,0.0237415210283,0.727041916903,-0.396589462942 +1470074989041807107,-0.00981917697936,0.0101862382144,0.263256430626,-0.578278703849,0.0268229027057,0.727033488661,-0.36918366558 +1470074989116003078,-0.00980172399431,0.0101298578084,0.263242155313,-0.571450878353,0.0273204407207,0.728073641108,-0.377632440705 +1470074989192182819,-0.0098483748734,0.0100013706833,0.263323068619,-0.563836274849,0.024996532658,0.727326739461,-0.390460808002 +1470074989265541484,-0.00982885994017,0.00974375195801,0.263309389353,-0.568561163541,0.0264417980629,0.727818111126,-0.382517753503 +1470074989343386828,-0.00987704191357,0.00946493260562,0.263281315565,-0.556971662128,0.0236547546691,0.727175198025,-0.400548688109 +1470074989418752708,-0.00988451577723,0.00867248233408,0.263415724039,-0.557587888643,0.0246415845973,0.727592313256,-0.398870861857 +1470074989494311342,-0.00989326834679,0.00831041112542,0.263073474169,-0.54843341074,0.0265917513148,0.729788038262,-0.40733658313 +1470074989568668059,-0.00989883765578,0.00736877415329,0.262377142906,-0.562590000932,0.0289906143865,0.730152733985,-0.386689824255 +1470074989646575411,-0.00994691066444,0.00680752890185,0.261905997992,-0.542820916015,0.0261665389845,0.730338841553,-0.413842895183 +1470074989724722109,-0.00993528123945,0.00657311454415,0.261601358652,-0.53066446371,0.0244812817488,0.730413825593,-0.429291902069 +1470074989797937557,-0.00991144124418,0.00643734913319,0.261198103428,-0.515507853194,0.0229220345006,0.730785891143,-0.446853684035 +1470074989871605517,-0.00989844184369,0.00636374251917,0.260995090008,-0.51745627764,0.0223695372463,0.730010352289,-0.445896277273 +1470074989949624724,-0.00985097326338,0.00632809381932,0.260629415512,-0.514112471076,0.0232096741776,0.731048084771,-0.448016044201 +1470074990024079660,-0.00981118064374,0.00630355533212,0.259955525398,-0.509196237571,0.0244469043294,0.732429734472,-0.451296160601 +1470074990096407745,-0.00985392741859,0.00622805254534,0.25935781002,-0.531946274803,0.0245643298507,0.730281118689,-0.42792434157 +1470074990170098654,-0.00985284987837,0.00618730671704,0.258986920118,-0.534973868373,0.024642918538,0.729931713805,-0.424729772804 +1470074990241787853,-0.00980361364782,0.00610687583685,0.258683741093,-0.536806112527,0.0251768722629,0.730243055698,-0.421841679142 +1470074990318366187,-0.00977602228522,0.00602981587872,0.25848698616,-0.537613241222,0.0254399641786,0.730503041547,-0.420345235938 +1470074990393288427,-0.00973311346024,0.0056666424498,0.258321672678,-0.545536164613,0.0265707893475,0.730405116311,-0.410112975068 +1470074990468615448,-0.00973282475024,0.00515267532319,0.258114486933,-0.517237770345,0.0253169823456,0.732411552443,-0.44203784587 +1470074990540152244,-0.00970893353224,0.0045966245234,0.257818579674,-0.513386927387,0.0247952597186,0.732334947742,-0.446659358123 +1470074990613554859,-0.00973435584456,0.0044710105285,0.257683306932,-0.507319079452,0.023236772538,0.731829909276,-0.454436340883 +1470074990684954662,-0.0096899708733,0.004701604601,0.257716953754,-0.525649468971,0.0255366549968,0.731901667402,-0.432851549929 +1470074990761620141,-0.00971112772822,0.00503535009921,0.257695794106,-0.510964093966,0.0249863562574,0.732819252154,-0.448628265217 +1470074990836652165,-0.00969272200018,0.0051856408827,0.257683753967,-0.517527217984,0.0256888592125,0.732868654586,-0.440918582374 +1470074990910709385,-0.00972559582442,0.00546556478366,0.257616311312,-0.511369826082,0.0249961133331,0.732701108331,-0.448358317801 +1470074990982427979,-0.00969211012125,0.00558268139139,0.257660746574,-0.523676644713,0.0262389664942,0.732558862986,-0.43408731919 +1470074991055454634,-0.00976993422955,0.00573154911399,0.257483989,-0.498817564356,0.022298005122,0.731846585414,-0.463771939508 +1470074991138646299,-0.00970048643649,0.00596618885174,0.257622092962,-0.528265030672,0.026510001541,0.732387115677,-0.428768457303 +1470074991210835863,-0.00973086152226,0.00631083967164,0.257556289434,-0.509461074033,0.0243484050486,0.732519728978,-0.450856314001 +1470074991283816813,-0.00969269499183,0.00645994534716,0.257676512003,-0.528560135324,0.0266750660159,0.73237271238,-0.428418993929 +1470074991358967315,-0.00971635337919,0.00676842825487,0.257689625025,-0.526588981943,0.0251154884547,0.731447608259,-0.432501621626 +1470074991430903623,-0.00975659210235,0.00710795586929,0.257622420788,-0.507638883737,0.0224555706952,0.731222764901,-0.455095351716 +1470074991509546079,-0.00973269995302,0.0074060196057,0.257805645466,-0.522116024663,0.0253106968724,0.732047408336,-0.436876203704 +1470074991584957628,-0.00973287131637,0.00774291576818,0.257870078087,-0.532585342804,0.0255407899985,0.731133470239,-0.425610584189 +1470074991658473521,-0.00975303072482,0.00794279761612,0.257848501205,-0.534277799036,0.0238909154762,0.729807398635,-0.425861031926 +1470074991731483540,-0.00977212004364,0.00830526649952,0.257946997881,-0.527368515212,0.02380709834,0.730331250893,-0.43351117079 +1470074991806914440,-0.00972491223365,0.00859428662807,0.257955372334,-0.546184424302,0.0258987878782,0.730167823263,-0.409715483363 +1470074991884309475,-0.00981972645968,0.00890835188329,0.257888734341,-0.507484522884,0.0212915618159,0.730156887204,-0.457030686602 +1470074991962341575,-0.00969156809151,0.0091852247715,0.257868051529,-0.55610668936,0.0280854724638,0.730474353895,-0.395428596067 +1470074992038653343,-0.00979354418814,0.00930849742144,0.257820338011,-0.523834045474,0.0223063175816,0.729508960088,-0.439223175788 +1470074992112967134,-0.00975665915757,0.00943718384951,0.257845818996,-0.53034085778,0.0241887776353,0.73033580176,-0.429840777815 +1470074992187040708,-0.00975612364709,0.00944928172976,0.25801217556,-0.548078114874,0.024286024938,0.728578868304,-0.410113888633 +1470074992264029325,-0.00977361295372,0.0097711533308,0.258028894663,-0.532427871597,0.0218471240893,0.72837426222,-0.4307135926 +1470074992341033239,-0.00976069271564,0.0103904111311,0.258301109076,-0.535716422799,0.0235943059455,0.729636233074,-0.424360920039 +1470074992413948334,-0.00978161208332,0.0108962822706,0.258441865444,-0.529467396805,0.0231351340886,0.729742285643,-0.431978283986 +1470074992489244721,-0.00979637913406,0.0121042206883,0.258307754993,-0.531787689995,0.0215454456677,0.728379949434,-0.431509322963 +1470074992567625062,-0.00971659272909,0.0126610351726,0.258120954037,-0.558284519612,0.0252685725853,0.728441084454,-0.396299736161 +1470074992643968986,-0.00974069070071,0.012864519842,0.257848888636,-0.561790906226,0.0226635358245,0.726192355481,-0.395628619626 +1470074992719958039,-0.00965646281838,0.013069935143,0.257402390242,-0.592152026353,0.0266670733324,0.72567957874,-0.349333642648 +1470074992792772191,-0.00980116799474,0.0132376141846,0.256706118584,-0.550728355914,0.023318785614,0.727612657047,-0.408331156703 +1470074992864768032,-0.00977751240134,0.0133033581078,0.256503999233,-0.564511616944,0.0247178324697,0.727106766814,-0.389912057709 +1470074992938148615,-0.0097738886252,0.0135279521346,0.256144434214,-0.541096765708,0.0221590946536,0.72760378422,-0.421089061665 +1470074993011879962,-0.00967188086361,0.0137086864561,0.255735099316,-0.571856702168,0.0261536509794,0.7273920824,-0.378413341714 +1470074993084871108,-0.00966882798821,0.0138651551679,0.255546599627,-0.559010221042,0.0241698128473,0.727496312095,-0.397079977844 +1470074993155167950,-0.00964699406177,0.0141843184829,0.255296885967,-0.58077199646,0.0247411669108,0.725828103341,-0.367784348755 +1470074993228172250,-0.00956877507269,0.0143567034975,0.255133122206,-0.59966518465,0.0283314809179,0.725855051555,-0.335758004581 +1470074993306271686,-0.00961610861123,0.014608995989,0.255189538002,-0.584453183886,0.0248976192508,0.725572977839,-0.362406454454 +1470074993382606805,-0.00964111927897,0.0145645271987,0.255126595497,-0.57085315592,0.0233145933009,0.725753240677,-0.383230136815 +1470074993460392982,-0.009570912458,0.0142241120338,0.254993498325,-0.593725766671,0.0280897609337,0.726379037423,-0.345071258314 +1470074993537380065,-0.00967718102038,0.0141068566591,0.255085736513,-0.567889888826,0.022773429119,0.725680932021,-0.387775231283 +1470074993613554737,-0.00968803931028,0.0139981685206,0.255035489798,-0.572194873961,0.0216242765972,0.724531662506,-0.383639527292 +1470074993688851415,-0.009580607526,0.0138237429783,0.254912465811,-0.597500055146,0.0282513678875,0.725956338277,-0.339386121148 +1470074993766223881,-0.00968281179667,0.0135550312698,0.254827588797,-0.566060178012,0.022485676536,0.725711824196,-0.390400585863 +1470074993843321322,-0.00956955272704,0.0133564751595,0.25473549962,-0.590608570097,0.0283907571914,0.726872791852,-0.349329967652 +1470074993916097765,-0.00964055862278,0.0131631363183,0.254883617163,-0.585166787477,0.0240408835929,0.724854394339,-0.362750566861 +1470074993993230595,-0.00958405062556,0.012886364013,0.254699230194,-0.580415453728,0.0276417581433,0.72743034302,-0.364964286381 +1470074994066164153,-0.00966522563249,0.0126698473468,0.2547095716,-0.558897594704,0.0232261478868,0.72696390035,-0.398268141175 +1470074994138427385,-0.00965015217662,0.0123231094331,0.254667371511,-0.566581510012,0.0241376241938,0.72675812545,-0.387589208704 +1470074994211120034,-0.00958377216011,0.0121157513931,0.254556715488,-0.57826815752,0.0283540846203,0.72821745862,-0.366744211739 +1470074994282382898,-0.00966463331133,0.0118327215314,0.254651576281,-0.565418053544,0.0236746081146,0.726502693885,-0.389789396258 +1470074994354249194,-0.00965697132051,0.0117489919066,0.254536628723,-0.556618405529,0.0237220602574,0.727541164852,-0.400371162709 +1470074994425990161,-0.00964708346874,0.0114754121751,0.254585504532,-0.567936159717,0.0249292086564,0.726986503141,-0.385120341312 +1470074994503448837,-0.00967860594392,0.0112959109247,0.25450912118,-0.561288362537,0.0226541173578,0.726263437565,-0.396211539841 +1470074994574751827,-0.00961864925921,0.0110468119383,0.254453063011,-0.571664217985,0.0266331653848,0.727660465395,-0.378154655503 +1470074994647732532,-0.00964117236435,0.010944981128,0.254501849413,-0.56300756589,0.0243253491053,0.727263893977,-0.391813714229 +1470074994724116914,-0.00958759523928,0.0108033176512,0.254396170378,-0.574097785812,0.0280980463346,0.728577384263,-0.372554998971 +1470074994798115941,-0.00963798444718,0.0106198666617,0.254510641098,-0.556096388565,0.0252398254638,0.728473442785,-0.399307151191 +1470074994877650244,-0.00966827850789,0.0104860551655,0.254441142082,-0.558245777586,0.0240064368019,0.727495034777,-0.398166192907 +1470074994954550104,-0.00967611279339,0.0104261552915,0.254437237978,-0.551663480217,0.0226522756107,0.727236568886,-0.40777598247 +1470074995028314026,-0.00961090996861,0.0102978851646,0.254286557436,-0.572572287376,0.027383020524,0.728152801088,-0.375772064134 +1470074995104207983,-0.00964867323637,0.0101651335135,0.254409402609,-0.550489558024,0.0247759676516,0.728603282584,-0.406798051299 +1470074995179274115,-0.00963907130063,0.0100712981075,0.254437625408,-0.550612124741,0.0243131977725,0.728462986134,-0.406911334734 +1470074995256147587,-0.00966246984899,0.00972387846559,0.254324436188,-0.551594005974,0.0252942958581,0.728857029439,-0.404810674029 +1470074995328377871,-0.00976377166808,0.00959218665957,0.25406140089,-0.533129737388,0.0230027690134,0.729133032273,-0.428495714072 +1470074995403634174,-0.00978222955018,0.0091648241505,0.254142135382,-0.533565933906,0.0231267630862,0.729159658751,-0.427900384498 +1470074995479122345,-0.00970443338156,0.00903846137226,0.254248589277,-0.548993066271,0.0255848515551,0.729533769159,-0.407102577016 +1470074995554496483,-0.009745166637,0.00873578898609,0.253998577595,-0.53843865057,0.0236831849025,0.729071133911,-0.421874635435 +1470074995626456116,-0.00967051554471,0.00843239948153,0.253491789103,-0.562920974867,0.0248732020061,0.727443694035,-0.391569881229 +1470074995697978839,-0.00962224788964,0.00836350396276,0.253388822079,-0.576255639799,0.0265838089137,0.727116497007,-0.372188579195 +1470074995771618010,-0.00958168134093,0.008205819875,0.253136873245,-0.581118131845,0.0273758804344,0.727032643976,-0.364658487635 +1470074995842173383,-0.00956122018397,0.00815059896559,0.252519935369,-0.574652481979,0.0278506973258,0.728150193069,-0.372553566548 +1470074995917321392,-0.00964147597551,0.00815220922232,0.251834273338,-0.561454468031,0.0272940868493,0.72914371505,-0.390350299032 +1470074995991609593,-0.00970734190196,0.00813515670598,0.251354068518,-0.529175143392,0.0220467027415,0.728717957332,-0.434117206727 +1470074996068179342,-0.00968218035996,0.00811882130802,0.251192182302,-0.532636520798,0.0225152318487,0.728789802279,-0.429717145506 +1470074996140988344,-0.00960886105895,0.00807976257056,0.250851422548,-0.540809102272,0.0232675316142,0.728478414313,-0.419884908936 +1470074996217244184,-0.00955307669938,0.00805129576474,0.250467002392,-0.562636996384,0.0249390274966,0.727411649261,-0.392033095193 +1470074996289167190,-0.0095359319821,0.00807038508356,0.249840244651,-0.56720477977,0.0271264195283,0.72840614137,-0.383363259043 +1470074996360587537,-0.00960920657963,0.00807718466967,0.249427005649,-0.56439471225,0.0260872499174,0.728006623902,-0.388309695643 +1470074996432601018,-0.00965367257595,0.00809143669903,0.248958036304,-0.533785323309,0.0219186232832,0.728224005169,-0.429281493742 +1470074996502440259,-0.00959860254079,0.0080837327987,0.2486949265,-0.542225323995,0.0232335806104,0.728414117879,-0.418168353209 +1470074996580676402,-0.00949160382152,0.00808913819492,0.248286649585,-0.556505789105,0.0258106994774,0.728941644504,-0.397843176883 +1470074996656167377,-0.00943459384143,0.00808482896537,0.247689798474,-0.575595008334,0.0281483889588,0.728295305596,-0.370788352603 +1470074996729504719,-0.00954018440098,0.00811657123268,0.247288137674,-0.543413913498,0.0253574932739,0.729657914191,-0.41431587516 +1470074996802398220,-0.00962832756341,0.00810279045254,0.246752113104,-0.527798612687,0.0212330086566,0.728155064182,-0.436769946648 +1470074996877655196,-0.00954805966467,0.0080949254334,0.246458560228,-0.550073858218,0.0232565930881,0.727564171041,-0.40930216027 +1470074996946068732,-0.00943307112902,0.00811283290386,0.246088534594,-0.571835691562,0.0273676172218,0.728170283381,-0.376859381976 +1470074997023583681,-0.00940012186766,0.00813929829746,0.245828151703,-0.569206005562,0.0277688134787,0.728759756069,-0.379661209717 +1470074997097081935,-0.00941474735737,0.00817629601806,0.245270967484,-0.568720041034,0.0283746304836,0.729211974196,-0.379476339131 +1470074997178138628,-0.00955316610634,0.00817461777478,0.244568124413,-0.535299047001,0.0228222383634,0.728894796827,-0.426200012758 +1470074997257031457,-0.00949190743268,0.00814960245043,0.244284600019,-0.559131222866,0.0246069888442,0.727685027206,-0.396536597172 +1470074997328581703,-0.0094322739169,0.00816342886537,0.244088083506,-0.570590036415,0.026678660965,0.727863445721,-0.379381158962 +1470074997406159968,-0.00938642490655,0.0081727001816,0.2436914891,-0.573525301669,0.0262540392655,0.727166293724,-0.376309227949 +1470074997482211313,-0.00947741512209,0.00823067408055,0.243292585015,-0.53618146966,0.0215012206661,0.72754715975,-0.427460243113 +1470074997556143491,-0.00952315609902,0.00824127532542,0.2424890697,-0.526112150646,0.0228209930935,0.729714518899,-0.43612146029 +1470074997632392041,-0.00944107584655,0.00826036091894,0.242162495852,-0.551410672933,0.026122637283,0.729548034566,-0.40376174021 +1470074997707533480,-0.00939400214702,0.00829022843391,0.241964519024,-0.553733420509,0.0271694045175,0.729993586522,-0.399687985942 +1470074997788949497,-0.00937575194985,0.00831976719201,0.241655364633,-0.55558529895,0.0264200512355,0.729373007824,-0.398298847527 +1470074997863746560,-0.0094190351665,0.00831572897732,0.241340339184,-0.542761946492,0.0226398603786,0.727884071452,-0.418427633754 +1470074997935750075,-0.00940157100558,0.00832482241094,0.24063450098,-0.559546116513,0.025634812545,0.728210518163,-0.394918271441 +1470074998013399277,-0.00939958635718,0.00834341254085,0.240093663335,-0.565811239384,0.0270773300108,0.728505955512,-0.385231790446 +1470074998095987019,-0.00940367858857,0.00836333446205,0.239689975977,-0.54545854285,0.0234877968422,0.728301181993,-0.414126417583 +1470074998170345384,-0.00939219165593,0.00840763747692,0.23936457932,-0.528348200209,0.0229712183498,0.729500608102,-0.433761876197 +1470074998247386462,-0.00934845302254,0.00840517599136,0.239075034857,-0.542613309976,0.0249253156368,0.729557988471,-0.415565477314 +1470074998321622479,-0.00936119817197,0.00839795637876,0.238397449255,-0.553415247066,0.0263759298952,0.729477988368,-0.401120604212 +1470074998396389991,-0.00938151031733,0.00840317457914,0.237913638353,-0.551652865811,0.0242403164164,0.728045443281,-0.406252821799 +1470074998468140840,-0.00940021779388,0.00842754077166,0.237631246448,-0.53581078614,0.0216400662113,0.727724201349,-0.427616645795 +1470074998543207999,-0.00929493550211,0.00844597350806,0.237225979567,-0.549961753863,0.0250112040102,0.728868390416,-0.407022577278 +1470074998614692586,-0.00925003364682,0.00848536286503,0.236879780889,-0.556125162611,0.0273865719268,0.729959764279,-0.396400708529 +1470074998687788297,-0.00930885132402,0.00849094055593,0.236218675971,-0.552476395971,0.0271586821413,0.730218454172,-0.401015270365 +1470074998763279682,-0.00939050782472,0.00848316587508,0.235772654414,-0.524704112606,0.0217557825276,0.729122769874,-0.438853354313 +1470074998837017614,-0.00926904473454,0.00848535541445,0.235418528318,-0.564018198233,0.026004365147,0.728159065327,-0.388576402575 +1470074998913074163,-0.00924081355333,0.00849177595228,0.234965905547,-0.555128556081,0.0264242231012,0.729088243643,-0.399455103407 +1470074998988043471,-0.0092298546806,0.00848630908877,0.234736859798,-0.567981927875,0.0268894658766,0.728142755448,-0.382729165235 +1470074999058696283,-0.00937367975712,0.00852712709457,0.233979478478,-0.523712977327,0.0219846341945,0.72918886254,-0.43991475991 +1470074999136186425,-0.00931544415653,0.00852430798113,0.233653008938,-0.533043792016,0.0230119915379,0.72920343045,-0.428482346262 +1470074999210210227,-0.00920361559838,0.00854864064604,0.233313754201,-0.558713460339,0.026737112829,0.72934619371,-0.393927056388 +1470074999286707376,-0.00920088309795,0.00855982024223,0.232828035951,-0.551038863713,0.025974667985,0.729333295143,-0.404665827439 +1470074999363180900,-0.00925393030047,0.00856166798621,0.232531562448,-0.537841516137,0.0232182109373,0.728665410673,-0.42336052897 +1470074999438795241,-0.00929294154048,0.00854481849819,0.231891080737,-0.548517980791,0.0232505617175,0.727831713699,-0.410911709084 +1470074999514848340,-0.00920184515417,0.00857518240809,0.231534749269,-0.562795936012,0.0261911703402,0.728453138153,-0.38978299414 +1470074999587228687,-0.00914069451392,0.00858120061457,0.231175065041,-0.566749807282,0.0271937223283,0.728677364409,-0.383515913634 +1470074999663253408,-0.00915634445846,0.00859256554395,0.231033831835,-0.550654869491,0.0261261247563,0.729496878032,-0.404883866376 +1470074999737530476,-0.00919838342816,0.00859984755516,0.23058564961,-0.523525602231,0.0234450185344,0.730258762278,-0.438284627873 +1470074999812296017,-0.00921068526804,0.00861184485257,0.229809731245,-0.547916767886,0.0253985010797,0.729460299287,-0.408692798293 +1470074999887635024,-0.0091726379469,0.0085736066103,0.227209731936,-0.541203990941,0.0195086197991,0.725571901294,-0.424573986481 +1470074999958434264,-0.00913278479129,0.00859206914902,0.225678369403,-0.546778190917,0.022669051404,0.727459234116,-0.41391156875 +1470075000030731959,-0.00914847757667,0.00859804078937,0.225289165974,-0.524670160283,0.0188783741857,0.726410599485,-0.443500248988 +1470075000101357126,-0.00910640787333,0.00861654896289,0.225105375051,-0.531645687738,0.019843105766,0.726589445541,-0.43477222944 +1470075000174131605,-0.00914954487234,0.00866658147424,0.225470528007,-0.536879975005,0.0203272463346,0.726629865211,-0.428200577391 +1470075000246026436,-0.00905627664179,0.00866074394435,0.225126206875,-0.55643862198,0.0227359326541,0.726438622504,-0.402673645859 +1470075000318532007,-0.00904695875943,0.00869475398213,0.224606186152,-0.552385508339,0.0234079521479,0.727101702937,-0.406995616118 +1470075000394102952,-0.00907255895436,0.00870135426521,0.224265784025,-0.551653808673,0.0232760597923,0.727266159234,-0.407701157775 +1470075000464388033,-0.00913207046688,0.00871880725026,0.223766610026,-0.538678658052,0.0203596531215,0.726560710381,-0.426052017968 +1470075000537333508,-0.00903023406863,0.00873729027808,0.223448723555,-0.558052946336,0.0236255433229,0.727110127266,-0.399161127386 +1470075000610742624,-0.00902372132987,0.00873910356313,0.223328277469,-0.557367280949,0.0237221598092,0.727243784081,-0.399869293365 +1470075000689386620,-0.00898457504809,0.00875172577798,0.222955182195,-0.558852485065,0.0248688781012,0.727817385526,-0.396670256213 +1470075000762897858,-0.00912451185286,0.00876597128808,0.222144603729,-0.535998089141,0.0204026094443,0.726917402891,-0.428813329246 +1470075000836188740,-0.00904157292098,0.00877037737519,0.221869319677,-0.562905764549,0.0225762545097,0.725855137175,-0.394666609694 +1470075000908453065,-0.00899925921112,0.00878410413861,0.221693173051,-0.565633008418,0.0235496972938,0.726253651807,-0.389949156663 +1470075000985889344,-0.00899280328304,0.00882887560874,0.221814066172,-0.576417521649,0.0253830915298,0.726455274812,-0.373311228197 +1470075001060912139,-0.00905622728169,0.00890998821706,0.222097307444,-0.548888768199,0.0247775632347,0.729041421683,-0.408173735039 +1470075001135984193,-0.00908866617829,0.0089537827298,0.222190737724,-0.530180608704,0.0240692093025,0.730469506269,-0.429817979765 +1470075001209528026,-0.00899361632764,0.00896006636322,0.221872225404,-0.549424084134,0.0260233831744,0.729892131939,-0.405849029855 +1470075001282406078,-0.0089725246653,0.00893977098167,0.2217374295,-0.563056676502,0.0259155500272,0.728273052703,-0.389761368043 +1470075001354671500,-0.0090335374698,0.00892691127956,0.220092773438,-0.528295143051,0.0210116053186,0.727708917315,-0.436923890319 +1470075001428789608,-0.00898012984544,0.00893597956747,0.217790707946,-0.520749724711,0.0196089720892,0.727322780094,-0.446583459146 +1470075001506829832,-0.00894383713603,0.00896677095443,0.21753154695,-0.535397902111,0.0222045879516,0.728003787916,-0.427628960046 +1470075001584032759,-0.00896533299237,0.00898460578173,0.217655658722,-0.523444129029,0.0210314864017,0.728127197632,-0.442034732157 +1470075001658166065,-0.00895242020488,0.00897869933397,0.217364042997,-0.5297661151,0.0218739931569,0.728211004436,-0.43425582867 +1470075001741057295,-0.00898809079081,0.00896103773266,0.216745644808,-0.556369818349,0.0224280078632,0.726342092715,-0.402960015441 +1470075001825529101,-0.00897828862071,0.00898530520499,0.216418042779,-0.545519840742,0.0204996479299,0.726028235798,-0.41817564326 +1470075001902871845,-0.00890613906085,0.00901440437883,0.216040000319,-0.546867664036,0.0229257823927,0.727582746855,-0.413561982068 +1470075001976245409,-0.00890703592449,0.00904328096658,0.215422198176,-0.547271735356,0.0238797909283,0.728381422526,-0.411562761415 +1470075002049426476,-0.0089360140264,0.00901896134019,0.215278759599,-0.561097229272,0.0248556102203,0.727688322283,-0.393728083271 +1470075002125300997,-0.00888875406235,0.00898883026093,0.21593144536,-0.540086326334,0.0233169983178,0.728673442079,-0.420473652569 +1470075002198799579,-0.00887237489223,0.00889882072806,0.216452822089,-0.555758112677,0.0252419943163,0.728621054493,-0.399508599239 +1470075002271641845,-0.00885584484786,0.00880629755557,0.216291487217,-0.540208748766,0.0239482090109,0.729205139524,-0.419357670173 +1470075002354219760,-0.00878715422004,0.00871821679175,0.215950846672,-0.539376371964,0.0242648089134,0.729616555518,-0.419695163577 +1470075002428847876,-0.00877528358251,0.00864829216152,0.214807927608,-0.461336709837,0.0165108440785,0.729398112664,-0.504850696173 +1470075002505090567,-0.00868640653789,0.00848612003028,0.212135657668,-0.537258617861,0.0210580673969,0.727412746734,-0.426357163913 +1470075002583309231,-0.00868145003915,0.0084112919867,0.211967974901,-0.528525522085,0.0197704632866,0.727133669655,-0.437660288054 +1470075002662037215,-0.00863099656999,0.00836276076734,0.21227748692,-0.545146195855,0.0236831791971,0.728643994027,-0.413923497928 +1470075002735269630,-0.00861236453056,0.00827252771705,0.21188211441,-0.53964597436,0.0223023915085,0.728039573788,-0.422188589007 +1470075002810380622,-0.00858128257096,0.00818929355592,0.211507126689,-0.542590775533,0.0212592409612,0.727015750875,-0.420227786991 +1470075002886819079,-0.00863380730152,0.00812043156475,0.210895523429,-0.514335107744,0.0187453025074,0.727387484445,-0.453889257472 +1470075002961297034,-0.00865689478815,0.0080390162766,0.21035322547,-0.516493308157,0.0189758603375,0.727564742982,-0.451136480593 +1470075003032717353,-0.00860192626715,0.00802669208497,0.210175767541,-0.527798033672,0.0205060373832,0.727931056883,-0.437178584229 +1470075003108673670,-0.00856258440763,0.00796524994075,0.209988892078,-0.539589053076,0.0215002058106,0.72766697989,-0.422944631517 +1470075003181961374,-0.00856884103268,0.0078194513917,0.210239797831,-0.545278489361,0.0234708939128,0.728372701488,-0.414238691947 +1470075003256171020,-0.00862784963101,0.00771443918347,0.210505411029,-0.531791110047,0.0223513792912,0.728980668308,-0.430448389882 +1470075003332988451,-0.0085829263553,0.00771441590041,0.210191532969,-0.528469087845,0.0218556608616,0.729001729276,-0.434510335887 +1470075003404651737,-0.0085250036791,0.00773816509172,0.209966316819,-0.52557203958,0.0229536512702,0.730100558543,-0.436119634413 +1470075003477554977,-0.00846013147384,0.00772477919236,0.209609851241,-0.530331004162,0.0237077832198,0.730126994826,-0.430234283229 +1470075003549479405,-0.00849873386323,0.00759897008538,0.206792756915,-0.518080056852,0.0185656391404,0.726885397262,-0.45042867469 +1470075003622815014,-0.00836402270943,0.00761003699154,0.206060767174,-0.539998332999,0.0222545203558,0.727886162276,-0.422005060928 +1470075003698570266,-0.00842114537954,0.0075962273404,0.206471785903,-0.537967616422,0.0215537400146,0.727642003817,-0.42504516731 +1470075003774899286,-0.00840198900551,0.00759796844795,0.206386476755,-0.544078948111,0.0222835439355,0.727613086366,-0.417205870573 +1470075003848748598,-0.00837709382176,0.00763324275613,0.20594085753,-0.531071095469,0.0222978193696,0.728813731579,-0.431621180516 +1470075003926959261,-0.00847885385156,0.00761409616098,0.205275028944,-0.535271670335,0.0202454591007,0.726999147308,-0.429588873385 +1470075004002428527,-0.00837678555399,0.00759202055633,0.204919993877,-0.553698589265,0.0221140990203,0.726563270972,-0.406244571833 +1470075004076104539,-0.00835580937564,0.00760340224952,0.204733788967,-0.54311325017,0.0221838432406,0.727562123988,-0.418556125658 +1470075004152115943,-0.00837141927332,0.00763105833903,0.204255461693,-0.534197525116,0.0216580203494,0.727951781394,-0.429243681701 +1470075004229964086,-0.00842112209648,0.00764428218827,0.203642114997,-0.532934137683,0.0209248935948,0.727723566115,-0.431232843185 +1470075004304161126,-0.00831967126578,0.00765061238781,0.20330119133,-0.551531337532,0.0232706011547,0.727719051066,-0.407058528418 +1470075004378328667,-0.00833171419799,0.00767345167696,0.203049957752,-0.534619472553,0.0228955195405,0.728813818941,-0.427186413727 +1470075004454259455,-0.00832781661302,0.00768049806356,0.203206539154,-0.54165573349,0.0236885623382,0.728919406733,-0.418000498658 +1470075004533990976,-0.00835590716451,0.00771064450964,0.203435227275,-0.541210665529,0.0235812728377,0.728941623463,-0.418543962653 +1470075004605083725,-0.00841435603797,0.00770299369469,0.203644096851,-0.527758453499,0.0216254129071,0.728756623395,-0.435794837206 +1470075004677824188,-0.00837896205485,0.00770193850622,0.203447014093,-0.525823999863,0.0224230898413,0.729529793706,-0.436798129924 +1470075004748580848,-0.00832416955382,0.00768321566284,0.203132808208,-0.529566529319,0.0235646085308,0.730115013013,-0.431203047325 +1470075004819210944,-0.00828806404024,0.00767855066806,0.202737018466,-0.542063408696,0.0248055047784,0.729667951797,-0.416096897375 +1470075004892655557,-0.00829651765525,0.00764010986313,0.200820744038,-0.510081659467,0.0193194794332,0.728259947578,-0.457253657332 diff --git a/MobileRobot/docking_data/Pose2.txt~ b/MobileRobot/docking_data/Pose2.txt~ index ce63e48a99f889ef36ea2f138feed61746926af9..5b0d60b372e1b0b853dd253ab24f463596376f16 100644 --- a/MobileRobot/docking_data/Pose2.txt~ +++ b/MobileRobot/docking_data/Pose2.txt~ @@ -1,630 +1,540 @@ %time,field.position.x,field.position.y,field.position.z,field.orientation.x,field.orientation.y,field.orientation.z,field.orientation.w -1469731593482887253,-0.0260041691363,-0.0718193352222,1.07675242424,-0.0688661015359,0.0198433127838,0.845851290693,-0.528582346499 -1469731593618026604,-0.0259864199907,-0.0719060450792,1.07798373699,-0.0741161962646,0.0207866943198,0.844991066918,-0.529211488556 -1469731593716673408,-0.0259971469641,-0.0718830600381,1.07737827301,-0.0699014262446,0.0199540618789,0.845815536035,-0.528499484414 -1469731593809519253,-0.0259953849018,-0.0718626603484,1.07736766338,-0.0712987518653,0.0202794996261,0.845427114475,-0.528921756017 -1469731593886650352,-0.0259971469641,-0.0718830600381,1.07737827301,-0.0699014262446,0.0199540618789,0.845815536035,-0.528499484414 -1469731593964340971,-0.0259971469641,-0.0718830600381,1.07737827301,-0.0699014262446,0.0199540618789,0.845815536035,-0.528499484414 -1469731594056669309,-0.0259971469641,-0.0718830600381,1.07737827301,-0.0699014262446,0.0199540618789,0.845815536035,-0.528499484414 -1469731594137899983,-0.0259971469641,-0.0718830600381,1.07737827301,-0.0699014262446,0.0199540618789,0.845815536035,-0.528499484414 -1469731594217119199,-0.0254354514182,-0.0714888200164,1.07524394989,-0.151959565434,0.0345891541884,0.84151892068,-0.517259883447 -1469731594298270061,-0.0252359267324,-0.0719114840031,1.06903493404,-0.160950020238,0.0415775310328,0.847985628879,-0.50327604067 -1469731594381001001,-0.0254011992365,-0.071065954864,1.05805325508,-0.159288388097,0.0435241457834,0.84717889423,-0.504995821094 -1469731594466960882,-0.0253648646176,-0.0704110711813,1.04654443264,-0.175814900557,0.0392924712602,0.842665331542,-0.507405519739 -1469731594539749209,-0.0253310985863,-0.0690649077296,1.04489994049,-0.14854433245,0.0360326126059,0.850694478906,-0.502946454093 -1469731594617609567,-0.0251131094992,-0.0663406327367,1.03306043148,-0.131810396002,0.0372860608482,0.851426083068,-0.506270080337 -1469731594698230263,-0.0250338371843,-0.0648937821388,1.02487504482,-0.0560066842819,0.0163063818994,0.847426584733,-0.527698338743 -1469731594793266432,-0.0248739980161,-0.0631717443466,1.01245009899,-0.126426967106,0.0299959868789,0.846828481459,-0.515749925593 -1469731594871742071,-0.0247511789203,-0.0616484247148,1.01033508778,-0.101759092387,0.0196629941092,0.844436700715,-0.525533169519 -1469731594951448725,-0.0242847818881,-0.0601092129946,1.00119626522,-0.131176676459,0.0261491811428,0.837472157741,-0.529857796854 -1469731595029365016,-0.0238086543977,-0.058855753392,0.992524862289,-0.190598674641,0.0483635139566,0.842155500029,-0.502102807713 -1469731595109504367,-0.0237992499024,-0.0578574351966,0.989834547043,-0.0254123478565,0.00552321803983,0.842122582178,-0.538658763248 -1469731595188645696,-0.0236174277961,-0.0566895715892,0.976835608482,-0.0919871699916,0.0234827813324,0.845500985102,-0.525466462992 -1469731595266141486,-0.0235000960529,-0.0557749271393,0.967164516449,-0.120139803098,0.0260854798357,0.844669971168,-0.520978517082 -1469731595342409586,-0.023117410019,-0.0549250878394,0.958952903748,-0.157812935772,0.0350158368796,0.843327178489,-0.512511695957 -1469731595423385954,-0.0228422712535,-0.0545433945954,0.955916941166,-0.137589447383,0.0317802010224,0.840402524489,-0.523242543784 -1469731595500507048,-0.0227537117898,-0.0541158802807,0.954597830772,-0.0761312715022,0.0141904113679,0.83461323088,-0.545365397294 -1469731595573423501,-0.0223954636604,-0.0530052669346,0.943998873234,-0.139773336284,0.0304205501036,0.834246188629,-0.532514132538 -1469731595655198390,-0.0223978850991,-0.0522007346153,0.935920834541,-0.059027483659,0.0112776301162,0.835368706863,-0.546395181921 -1469731595737357937,-0.0222498849034,-0.0501323454082,0.921832025051,-0.154650727988,0.0332617890465,0.838972823882,-0.520673992542 -1469731595812401913,-0.0220484789461,-0.0491529628634,0.919066309929,-0.170459905749,0.0357371475667,0.835473255484,-0.521201224275 -1469731595891815739,-0.0218328759074,-0.0483620427549,0.913519859314,-0.137162092379,0.0288209204717,0.830046039265,-0.539795783291 -1469731595972401615,-0.0217323862016,-0.0461656115949,0.899134397507,-0.116158265419,0.028460923936,0.840970300551,-0.527698954684 -1469731596048813562,-0.0217389781028,-0.045122243464,0.89236587286,-0.11793500633,0.0217525152624,0.836313191724,-0.534975146816 -1469731596122868988,-0.0214717071503,-0.0443724691868,0.888016223907,-0.18135852792,0.0348332800401,0.827919421179,-0.529570730862 -1469731596196171305,-0.0215228516608,-0.0423440188169,0.880879819393,-0.0499665998859,0.00909973448707,0.831681604522,-0.552925168922 -1469731596268394807,-0.0212883111089,-0.0415230542421,0.87231618166,-0.0980295584915,0.0222404209641,0.831069129648,-0.547009754103 -1469731596345174650,-0.0210617855191,-0.0398183315992,0.863517701626,-0.160150427642,0.0370624307934,0.835510616313,-0.524309285421 -1469731596432542374,-0.0208524279296,-0.0385334230959,0.857253670692,-0.187502899132,0.036671048941,0.825658034801,-0.530835856508 -1469731596512931816,-0.0206024311483,-0.0375962369144,0.851280093193,-0.183237903875,0.0381082099751,0.826975941209,-0.530172073556 -1469731596589007063,-0.0207337401807,-0.0362809076905,0.846538424492,-0.0624957876276,0.0123997784254,0.829401542572,-0.555007750579 -1469731596666717015,-0.0206653065979,-0.0353788174689,0.839614868164,-0.084741954867,0.0156113721503,0.823093510142,-0.561330704405 -1469731596747778574,-0.0206341780722,-0.0335240028799,0.829908311367,-0.0609688908371,0.012716307763,0.827271494482,-0.55833947047 -1469731596823405417,-0.0205920040607,-0.0325014591217,0.8212210536,-0.0940327226954,0.0186227270264,0.82653958483,-0.55465606984 -1469731596900896286,-0.0204883255064,-0.0305450912565,0.813200235367,-0.142633745738,0.0264193395861,0.827362345011,-0.542613290596 -1469731596973394053,-0.020505219698,-0.0296199023724,0.806193351746,-0.0986876286735,0.0176364419704,0.821541829896,-0.561265293416 -1469731597046950103,-0.0204744581133,-0.0280254166573,0.800113141537,-0.105016833917,0.0199737484004,0.82590975079,-0.553575286224 -1469731597121411287,-0.0200597215444,-0.0261534061283,0.789518773556,-0.194572559664,0.0401294913415,0.823661252776,-0.531143373889 -1469731597201040003,-0.0200007725507,-0.0251114275306,0.78383898735,-0.135115263211,0.0260318976801,0.820954322355,-0.554166226468 -1469731597276731078,-0.0198566038162,-0.0235824212432,0.776591479778,-0.154945503499,0.0321116717328,0.825260955221,-0.542130138686 -1469731597354666637,-0.0197156630456,-0.0225731898099,0.770703971386,-0.155203017252,0.0277641566636,0.817162983652,-0.554423875017 -1469731597430790654,-0.0191453117877,-0.0200811158866,0.759666085243,-0.205710218713,0.0411844154464,0.820684352347,-0.531473746911 -1469731597507191991,-0.0191602371633,-0.0188268665224,0.755042016506,-0.114344592923,0.0200617881062,0.818078871214,-0.563267076262 -1469731597584214548,-0.0190962497145,-0.0171297769994,0.749544978142,-0.121994281292,0.021825245178,0.81721720349,-0.562847311732 -1469731597660298541,-0.0188505314291,-0.0147188259289,0.739042401314,-0.159188329685,0.0310129639217,0.816830127546,-0.553611609791 -1469731597738913446,-0.0188090652227,-0.0129385460168,0.732257008553,-0.126671642905,0.0241853454177,0.816548530143,-0.562688068003 -1469731597826364387,-0.0186276454479,-0.0113190012053,0.725487232208,-0.201334451952,0.0372468523383,0.814755828663,-0.542448200391 -1469731597908491815,-0.0186500009149,-0.00957190338522,0.720515727997,-0.15640297292,0.0271019028699,0.813878851942,-0.558931848515 -1469731597988339751,-0.0185187067837,-0.0070433486253,0.710544109344,-0.147118123571,0.0256483105486,0.81525812241,-0.559511050586 -1469731598065491421,-0.0184011738747,-0.00552166160196,0.702876031399,-0.146910297916,0.0264447233262,0.817633031693,-0.556052395426 -1469731598146473801,-0.0184147041291,-0.00390349980444,0.697444200516,-0.13016485869,0.0233323990196,0.816286928885,-0.562306285266 -1469731598226898752,-0.0183565765619,-0.00188891717698,0.687476396561,-0.161969152027,0.0266623988314,0.810064858165,-0.562894338083 -1469731598307682866,-0.0182147473097,0.000813317426946,0.678718030453,-0.10634033829,0.0175641977199,0.811944227864,-0.573698354755 -1469731598388762246,-0.0182055309415,0.00237783789635,0.671944379807,-0.117124586775,0.0183468676321,0.810807052899,-0.573181600011 -1469731598463399175,-0.0181506387889,0.00391244655475,0.666076660156,-0.146686481091,0.0238237743671,0.808756827261,-0.569058782902 -1469731598539236390,-0.0180612113327,0.00662725232542,0.655585587025,-0.151970742925,0.0248685743317,0.809745530077,-0.566214291436 -1469731598619278990,-0.0178767349571,0.00832990091294,0.648590803146,-0.166766186309,0.0287873933416,0.808794176569,-0.563216037623 -1469731598694845116,-0.0178812537342,0.0102678332478,0.642695605755,-0.169973373565,0.0291177496732,0.809838335854,-0.56073441014 -1469731598776203694,-0.0179588496685,0.0128919761628,0.633136868477,-0.180923537758,0.0296874499437,0.809899503289,-0.557178717624 -1469731598857099655,-0.0180300138891,0.014480269514,0.627225697041,-0.163429988484,0.0247960846717,0.80523168099,-0.569453890126 -1469731598943736376,-0.0179332699627,0.0162265449762,0.618807435036,-0.193178074214,0.0326647019164,0.809368868367,-0.553658092878 -1469731599024637780,-0.0179491695017,0.0192287620157,0.610409796238,-0.166000694715,0.0247680051093,0.804149557316,-0.57024012902 -1469731599099828569,-0.0178887546062,0.021270385012,0.604711532593,-0.154118058297,0.0244113162493,0.806941293757,-0.569646785452 -1469731599180067099,-0.0176449418068,0.0241812150925,0.593919277191,-0.17785677882,0.0286796167104,0.804005692006,-0.566673885965 -1469731599256297348,-0.0176024157554,0.0264223925769,0.587374806404,-0.195381180731,0.0312840860905,0.804598525174,-0.559882767605 -1469731599336787291,-0.0175655372441,0.029876716435,0.578484535217,-0.160056746551,0.0235620557945,0.805629139141,-0.569902059636 -1469731599418328361,-0.0174614395946,0.031990557909,0.571975588799,-0.126228574361,0.0183395624225,0.803737641071,-0.581150420967 -1469731599495196430,-0.017299644649,0.0340986810625,0.566020607948,-0.16273259175,0.0222084535624,0.800097704203,-0.576947616255 -1469731599578324270,-0.0170263778418,0.037380836904,0.555689394474,-0.177084975567,0.0271343568986,0.800251872142,-0.572277536897 -1469731599654674361,-0.0169262140989,0.0394471175969,0.548458278179,-0.181574876588,0.027372399048,0.801819255399,-0.568653846935 -1469731599737171879,-0.0167442336679,0.04145969823,0.543116629124,-0.161446103889,0.0231618579912,0.799360614794,-0.578291700952 -1469731599817156366,-0.0164096951485,0.0440120697021,0.532969295979,-0.203041817534,0.0293657024397,0.797622001561,-0.567195573395 -1469731599893434431,-0.016327932477,0.0456926971674,0.526307940483,-0.191469498155,0.0276794836756,0.797253452831,-0.571804345392 -1469731599974970743,-0.0160473138094,0.0479719974101,0.516031861305,-0.183680887445,0.0257804403313,0.796635607711,-0.575298539031 -1469731600050806596,-0.0158562045544,0.0495050698519,0.510215222836,-0.178572024757,0.0237046560813,0.79400434001,-0.580609360328 -1469731600138497261,-0.0158233121037,0.0509200356901,0.504032671452,-0.141916731627,0.0175764236752,0.791496832762,-0.594208275223 -1469731600219208909,-0.0156158497557,0.0528365820646,0.49381724,-0.189756053845,0.0252959162819,0.792941706549,-0.578442915649 -1469731600297107796,-0.0154294911772,0.0538709759712,0.486885011196,-0.202244409314,0.0263760965496,0.791777415796,-0.57575170366 -1469731600373889116,-0.015210560523,0.0554915703833,0.477593630552,-0.185085849027,0.0236528606879,0.789411086735,-0.58481955064 -1469731600454152265,-0.015082584694,0.0564526431262,0.471327841282,-0.181797118884,0.0224958198504,0.790516577958,-0.584403358673 -1469731600534872399,-0.0148826083168,0.0576809681952,0.461623549461,-0.202388423281,0.0243525090263,0.788570376636,-0.580174665525 -1469731600612245680,-0.0146549521014,0.0584369376302,0.454590022564,-0.206827725257,0.026377631057,0.788838173479,-0.57815296307 -1469731600693547652,-0.0145720643923,0.0591514594853,0.448697417974,-0.185819044461,0.0228350641409,0.7871098245,-0.587714187966 -1469731600772095820,-0.014304949902,0.0600167624652,0.438783288002,-0.214718130666,0.0256197740133,0.785543344356,-0.579794278758 -1469731600848740154,-0.01416084636,0.0604532845318,0.432070553303,-0.224312382094,0.0272358421784,0.78553389231,-0.576089114784 -1469731600924986861,-0.014074658975,0.0608987063169,0.425636559725,-0.197730127438,0.023637310625,0.785128654362,-0.586444430743 -1469731601004660683,-0.0139531856403,0.0614852868021,0.416402071714,-0.19958882245,0.0223365011699,0.783350846793,-0.588240455509 -1469731601082462098,-0.0138382436708,0.0618909224868,0.409835100174,-0.20629304822,0.0228623425793,0.78306180678,-0.586288920508 -1469731601169280960,-0.0137031823397,0.0622151643038,0.403137922287,-0.204795682819,0.022507817416,0.782509802788,-0.587563217871 -1469731601249395081,-0.0134799396619,0.0624945797026,0.3934699893,-0.234614962683,0.0255774394481,0.780342834296,-0.579108517326 -1469731601333672404,-0.0134190302342,0.0625238567591,0.386839836836,-0.219680205008,0.0241490664255,0.780371985586,-0.584958967989 -1469731601414934794,-0.013295808807,0.0627259463072,0.380154639482,-0.21629652247,0.0237748974183,0.780006916412,-0.586719506212 -1469731601489492823,-0.0130335288122,0.0629599019885,0.370730102062,-0.219966299883,0.0221613539095,0.77762568607,-0.588576242872 -1469731601570301791,-0.0128338141367,0.0628935843706,0.36392223835,-0.235633378168,0.02541090083,0.778196494584,-0.581585258608 -1469731601644207608,-0.0126415463164,0.0628476366401,0.354344695807,-0.223068664599,0.023548386237,0.776385022995,-0.588992479111 -1469731601727131648,-0.0125079099089,0.0627620816231,0.348028868437,-0.222072225353,0.0222680369151,0.775158248493,-0.591031091442 -1469731601805337468,-0.0122990719974,0.0624747686088,0.338053315878,-0.245232864247,0.0244654796071,0.774559960817,-0.582511072599 -1469731601888366366,-0.0121169062331,0.0623089782894,0.331491559744,-0.237195522449,0.0239558652453,0.77419210128,-0.586336926149 -1469731601974035875,-0.0119864633307,0.0621854290366,0.325196415186,-0.244424661039,0.0238939286335,0.773154429146,-0.584737457276 -1469731602050834935,-0.0118664205074,0.0618090853095,0.315756291151,-0.246786800442,0.0239196218791,0.772096128469,-0.585142457201 -1469731602128969485,-0.0117559237406,0.0614788122475,0.309180170298,-0.250846465697,0.0240250127507,0.771336414266,-0.584413368633 -1469731602206212353,-0.0116031551734,0.0612019449472,0.30262747407,-0.239734200656,0.0219124535891,0.770929207663,-0.589674074541 -1469731602292818017,-0.0113198328763,0.0606846772134,0.292893379927,-0.25033647036,0.0227228647423,0.769448806307,-0.587165953968 -1469731602374046333,-0.0110850576311,0.0599121898413,0.281771123409,-0.24486583935,0.0217605019106,0.768070327287,-0.59129956335 -1469731602454214946,-0.0109508009627,0.0597690120339,0.277260661125,-0.250417720917,0.0219575525995,0.766944909518,-0.590427249286 -1469731602533484762,-0.0109943738207,0.0598196946084,0.275602459908,-0.260425440793,0.0227761850704,0.767307602749,-0.5855756808 -1469731602613651845,-0.0110463444144,0.0606488920748,0.276300936937,-0.256544774348,0.0227760065736,0.767801378907,-0.586640498796 -1469731602695390588,-0.0109927468002,0.0616749078035,0.275245964527,-0.269625823673,0.0236687632914,0.767143792929,-0.581577256969 -1469731602772475058,-0.0109568899497,0.0613903924823,0.273794829845,-0.275836168136,0.024448923781,0.766300366205,-0.57974167284 -1469731602853950733,-0.0109446523711,0.0612443722785,0.273378282785,-0.274527118345,0.0242426268838,0.765566345814,-0.581339252496 -1469731602929047019,-0.0109183862805,0.0609403811395,0.273022472858,-0.284478864715,0.0246693819556,0.764673103931,-0.577700823306 -1469731603006275542,-0.010898004286,0.0602885857224,0.272651314735,-0.290049032266,0.0251434300668,0.764303278223,-0.575395399445 -1469731603083552888,-0.0109040653333,0.0599688589573,0.272514551878,-0.296269747914,0.0252918304782,0.763420349006,-0.573388115072 -1469731603165425986,-0.010881495662,0.0594047196209,0.27234774828,-0.303318543812,0.0257422444918,0.762672399409,-0.570671542139 -1469731603246190172,-0.0108671495691,0.0590764395893,0.272289305925,-0.306903420639,0.0257312036063,0.762193457888,-0.569393825321 -1469731603325302404,-0.0108901476488,0.0587872229517,0.27227845788,-0.299368670891,0.0240352607862,0.761512826198,-0.574368279647 -1469731603408147178,-0.0108704874292,0.0583659000695,0.272189795971,-0.304645866089,0.0244959260745,0.761061372865,-0.5721681856 -1469731603483495863,-0.0108612142503,0.0578301586211,0.272086203098,-0.310137799988,0.0250178148322,0.760585077954,-0.569823650924 -1469731603562352221,-0.0108621818945,0.057437852025,0.272116601467,-0.312455063119,0.0248124231592,0.76012689352,-0.569177725263 -1469731603637467092,-0.0108278542757,0.0567600876093,0.271941870451,-0.324652720139,0.0263858009802,0.759199213599,-0.563489977625 -1469731603717342997,-0.0108105456457,0.0563572645187,0.27189424634,-0.324491175709,0.0263408017372,0.759416557626,-0.563292225274 -1469731603791135312,-0.0108180083334,0.0556736849248,0.2719412148,-0.328024064068,0.0252287094923,0.757700703421,-0.563607460601 -1469731603872750619,-0.0108204521239,0.0552307665348,0.271913766861,-0.327709305669,0.0252210281905,0.757566467589,-0.56397123854 -1469731603954167162,-0.0107955178246,0.0547698773444,0.271888792515,-0.331478626569,0.0254727042302,0.75745119949,-0.561908125816 -1469731604033019953,-0.0107998307794,0.0543180778623,0.271828025579,-0.32462984388,0.0246835752396,0.757180545348,-0.566289508399 -1469731604118579982,-0.010762328282,0.0535471811891,0.271783441305,-0.339982757339,0.0260127423092,0.755875075641,-0.558916748697 -1469731604197075609,-0.010768073611,0.0530301891267,0.271701663733,-0.338472697591,0.0249315523668,0.754957033397,-0.561118996654 -1469731604272314180,-0.010784920305,0.0524250343442,0.271735101938,-0.327626510662,0.024657271403,0.755814872717,-0.566389236002 -1469731604351288668,-0.0107487654313,0.0519438125193,0.271684587002,-0.337648671781,0.0252679605132,0.754938225847,-0.561625479987 -1469731604428094626,-0.0107490746304,0.0514154024422,0.271674573421,-0.341010688006,0.0256113462403,0.754621662371,-0.56000171097 -1469731604507470190,-0.0107371658087,0.0507665090263,0.271755188704,-0.347356057087,0.024814145171,0.753439128763,-0.557725297125 -1469731604598319951,-0.0107228150591,0.0502972155809,0.271615296602,-0.34447272546,0.0249204381095,0.754012549176,-0.558733021096 -1469731604687193982,-0.0107357194647,0.0498483851552,0.271649062634,-0.337950486119,0.0239877867993,0.753557267448,-0.563352021113 -1469731604764229055,-0.0106632523239,0.0489698797464,0.2713316679,-0.368912131607,0.0263442723032,0.752028665695,-0.545584736263 -1469731604838967146,-0.0106711732224,0.0485446602106,0.271441906691,-0.36921260982,0.025657591567,0.751029990455,-0.546788524186 -1469731604917427289,-0.0106787411496,0.0480953529477,0.271458297968,-0.366882166267,0.0249511397874,0.750461059674,-0.549165835254 -1469731604994250320,-0.010658537969,0.0475777685642,0.271527022123,-0.362306400562,0.0255470190886,0.752233197272,-0.549751433694 -1469731605073199006,-0.0106377257034,0.0467502400279,0.271292686462,-0.377912860815,0.0256723571116,0.749753455973,-0.542579537919 -1469731605154593401,-0.0106189697981,0.0463129468262,0.271319657564,-0.383180466617,0.0256040896655,0.748922012393,-0.540030536126 -1469731605232519343,-0.010613665916,0.045963332057,0.271383613348,-0.382057344306,0.0261731087217,0.749265878931,-0.540321938025 -1469731605314828966,-0.0106100402772,0.0453905761242,0.27136439085,-0.379186590949,0.0253967996732,0.749188434817,-0.542484304794 -1469731605393207915,-0.0105806402862,0.0449593104422,0.271271944046,-0.396779725779,0.026338399059,0.747775297317,-0.531699391261 -1469731605472665095,-0.0106037333608,0.0444994196296,0.271420568228,-0.383417956789,0.0250116481678,0.748028284314,-0.54112731749 -1469731605551210111,-0.0106010958552,0.0440555624664,0.271274387836,-0.390009121206,0.0253514036048,0.747494746072,-0.537123632236 -1469731605631527403,-0.0105473995209,0.0436081141233,0.271096915007,-0.402438764607,0.0262705945478,0.747015995722,-0.528507330828 -1469731605712656359,-0.0105811860412,0.0431404225528,0.271337717772,-0.390641715689,0.025304179723,0.747381383748,-0.536823821825 -1469731605792292462,-0.0105521911755,0.0427034012973,0.271155148745,-0.405083550897,0.0264375778559,0.746881273151,-0.526665676769 -1469731605870633651,-0.0105489362031,0.0422258786857,0.271170884371,-0.395874135471,0.02589445473,0.747454946371,-0.532845427141 -1469731605949787972,-0.0105389766395,0.0417893081903,0.271237879992,-0.40051149718,0.025771563548,0.746511822009,-0.53070374668 -1469731606032299357,-0.0105191776529,0.0413505323231,0.271027684212,-0.410575093483,0.026498399104,0.746025509086,-0.523614235148 -1469731606107787754,-0.0105292880908,0.0408689901233,0.271090716124,-0.400911514235,0.0259714857443,0.746732003394,-0.530081837822 -1469731606184963019,-0.0105123193935,0.0404458902776,0.271034628153,-0.413012130629,0.0264734364967,0.745636095183,-0.522251807727 -1469731606266318001,-0.01050332468,0.0400190204382,0.270945847034,-0.417116050153,0.0260930444377,0.744537234764,-0.520574355675 -1469731606348257639,-0.0105310035869,0.0395410321653,0.271108210087,-0.398915920593,0.0242831973527,0.744631608933,-0.534602826032 -1469731606423788218,-0.0104974303395,0.0391284301877,0.271001815796,-0.419847278839,0.0255572736307,0.743425969367,-0.519993188692 -1469731606501324298,-0.0104811880738,0.0388265959918,0.271005600691,-0.41843625192,0.0257632240321,0.744606924976,-0.519430348213 -1469731606578369373,-0.0104640191421,0.0382089056075,0.270909965038,-0.429221485727,0.0266801069131,0.743545052898,-0.512052577766 -1469731606656735639,-0.0104963527992,0.0380815416574,0.271140933037,-0.404201409478,0.0247371272447,0.7448630764,-0.530271904336 -1469731606731492950,-0.010476754047,0.0374237447977,0.271086573601,-0.428174244373,0.0251360574812,0.742416158333,-0.514638944227 -1469731606805357400,-0.0104844700545,0.0372076295316,0.271148830652,-0.406999472861,0.0243381425579,0.743716551046,-0.529759167554 -1469731606886204179,-0.0104673057795,0.0368009805679,0.271098822355,-0.419757721689,0.0251966038397,0.74284312549,-0.520915230292 -1469731606964567247,-0.0103637464345,0.0359792374074,0.268379986286,-0.444955526788,0.0259675919147,0.741037943366,-0.502198197769 -1469731607041709859,-0.0103794932365,0.0357285887003,0.26796528697,-0.421464812421,0.0232734438833,0.74135341735,-0.521747898208 -1469731607118184396,-0.0103871440515,0.0354568623006,0.269164860249,-0.466262921588,0.028536359737,0.741237645826,-0.482028335823 -1469731607206031352,-0.0104345651343,0.0351547598839,0.270397633314,-0.447261912286,0.0260306821006,0.740548276062,-0.500866685087 -1469731607284366518,-0.0104409009218,0.0348095297813,0.271070837975,-0.430622936631,0.0243083171842,0.740973250969,-0.514715099362 -1469731607362879416,-0.0104316212237,0.0344961434603,0.271077156067,-0.434231575413,0.02528950934,0.741101634498,-0.511440853839 -1469731607439631900,-0.0104230623692,0.034052181989,0.271106123924,-0.439597990065,0.0254168721391,0.740661384431,-0.507472465612 -1469731607517368840,-0.0104408888146,0.0336597785354,0.270921170712,-0.429710416814,0.0235826359425,0.739492776716,-0.517632350369 -1469731607598732477,-0.0103909848258,0.0333916209638,0.271008193493,-0.454839795523,0.0257268768647,0.739683223082,-0.495305580128 -1469731607676234880,-0.0103937583044,0.0330546535552,0.271093696356,-0.453123861238,0.025523866384,0.739631896046,-0.496962731976 -1469731607751730418,-0.0104282703251,0.0327172726393,0.271100342274,-0.438359024332,0.0234994201444,0.738544675467,-0.511703923552 -1469731607825119373,-0.0103473272175,0.0324355326593,0.271051049232,-0.479137450358,0.0269523206071,0.738127452192,-0.474203269073 -1469731607909936833,-0.0103438617662,0.0320046022534,0.271087676287,-0.484715389599,0.027228303388,0.737792473429,-0.46901159552 -1469731607991289190,-0.0103938728571,0.0317732766271,0.271054208279,-0.449693468664,0.0241249627781,0.73822534439,-0.502212217406 -1469731608067035384,-0.0103671019897,0.0313367843628,0.271120548248,-0.462045247033,0.0249172080682,0.737657559019,-0.491685517439 -1469731608147187974,-0.0103104896843,0.03106383048,0.271047323942,-0.494311562269,0.0272846537165,0.736838407175,-0.460413714816 -1469731608232271301,-0.0103296870366,0.0308296643198,0.271181672812,-0.486626514772,0.0262416360532,0.736604781372,-0.468955656452 -1469731608313996129,-0.0103361057118,0.0304413009435,0.27106103301,-0.476771053444,0.0259649372714,0.737074436852,-0.478264005722 -1469731608396410442,-0.0103455344215,0.0302155520767,0.271177202463,-0.486892958978,0.0245796402055,0.735403999821,-0.470650661142 -1469731608471687568,-0.0103317508474,0.0299408696592,0.271104514599,-0.475438128442,0.0248689563463,0.736438572764,-0.480622876669 -1469731608547212099,-0.0102964816615,0.0295312516391,0.270973563194,-0.487649559701,0.0263493109743,0.736271537041,-0.468409910739 -1469731608624904262,-0.0102913361043,0.0293511003256,0.271074831486,-0.501142287927,0.0264706155074,0.735462949173,-0.45524714624 -1469731608701666271,-0.0102924192324,0.028920603916,0.271055370569,-0.500427975608,0.026267754493,0.735378986815,-0.456179341985 -1469731608779006941,-0.0103075476363,0.0286136399955,0.270936638117,-0.487229063948,0.0249597366604,0.735214006228,-0.470579659395 -1469731608857551426,-0.0102787809446,0.0283441636711,0.270988762379,-0.510853637447,0.026974908428,0.734822236293,-0.445350644406 -1469731608935525348,-0.0102796964347,0.0278619173914,0.270939081907,-0.506898335797,0.0266157655252,0.734875881342,-0.44978118815 -1469731609011894541,-0.0102750919759,0.0275960620493,0.270997464657,-0.500414535915,0.0268824540077,0.7357176609,-0.455611840661 -1469731609091264080,-0.0102737285197,0.0272373314947,0.270838528872,-0.497558495904,0.0264283385256,0.735349138038,-0.459345982091 -1469731609171420345,-0.0102701950818,0.0267658531666,0.270860403776,-0.503412660028,0.0268139280106,0.735102928444,-0.453299450233 -1469731609251383683,-0.0102556403726,0.0264735780656,0.27092024684,-0.507892900568,0.0271911059898,0.735288229085,-0.447947168176 -1469731609331565406,-0.0102858729661,0.0261605829,0.270984172821,-0.499437442736,0.026043213214,0.735244471636,-0.457492687119 -1469731609407878060,-0.010262709111,0.0257226843387,0.270888239145,-0.506183419184,0.0265807278892,0.734944289921,-0.45047608345 -1469731609488231861,-0.0102846166119,0.0253679994494,0.270826041698,-0.495373008293,0.025121139444,0.734577151395,-0.463002073058 -1469731609566331538,-0.0102569945157,0.0250555258244,0.270855009556,-0.507045671996,0.0270915067415,0.735109424313,-0.449204709524 -1469731609648261939,-0.0102722747251,0.024565525353,0.270873993635,-0.506434590951,0.0262295740241,0.734387449525,-0.451122032842 -1469731609723568423,-0.0102509129792,0.024248059839,0.2708812356,-0.512024853227,0.0274418961845,0.735003165793,-0.443675374893 -1469731609802895345,-0.0103028053418,0.0239586345851,0.270903110504,-0.4874237637,0.0244511829703,0.734922205053,-0.470860453586 -1469731609883581666,-0.0102843642235,0.0235014799982,0.27084428072,-0.494265136753,0.0250701545405,0.734709989571,-0.463977039482 -1469731609962320228,-0.0102480007336,0.0231526698917,0.270806670189,-0.51176643562,0.0271669854838,0.734562058181,-0.44471974653 -1469731610041378574,-0.0102398209274,0.0227360147983,0.270824939013,-0.515318091636,0.0275501395913,0.734621660239,-0.440476186131 -1469731610116250066,-0.0103011326864,0.0224730614573,0.270987153053,-0.494913790861,0.0250901684185,0.734877984981,-0.463017462149 -1469731610197053425,-0.0103050768375,0.0221390817314,0.270981580019,-0.494045971267,0.024940747497,0.734424381341,-0.464669092453 -1469731610271838715,-0.0102811306715,0.021726405248,0.270934015512,-0.500178783649,0.0262965718393,0.734986439415,-0.457082715241 -1469731610347307109,-0.0102905984968,0.0215296987444,0.270978033543,-0.48872966878,0.0248330144824,0.735365633002,-0.468789950879 -1469731610428149050,-0.0103113660589,0.0211279839277,0.271110206842,-0.48408769013,0.0238588772657,0.734701773792,-0.474661106292 -1469731610506284169,-0.0102319121361,0.0208620131016,0.271058648825,-0.509080739559,0.0276215690056,0.735273984142,-0.446593795053 -1469731610592908295,-0.010297909379,0.0206472761929,0.271063625813,-0.477879389287,0.0236218670913,0.735246961386,-0.480088744362 -1469731610673611959,-0.0102590341121,0.0204081442207,0.271070808172,-0.49635510127,0.0261979565688,0.735376079554,-0.460616220008 -1469731610752651008,-0.0102586438879,0.0201156828552,0.271106541157,-0.489405628398,0.0255100377353,0.735703839088,-0.467516021136 -1469731610831955985,-0.0102201094851,0.0198818575591,0.271000653505,-0.49996015633,0.0270916447734,0.735701004272,-0.456124892085 -1469731610914710254,-0.0102913770825,0.0196928866208,0.271103322506,-0.476357226439,0.0235529400009,0.735249535258,-0.481598559735 -1469731610993927710,-0.0102076781914,0.0194366574287,0.271008998156,-0.490562668641,0.0267428042595,0.736432990564,-0.465080144669 -1469731611073552559,-0.0102765075862,0.0191762372851,0.271099746227,-0.474196257825,0.0232271288951,0.735070479175,-0.484014256187 -1469731611150806949,-0.0102198822424,0.0190025847405,0.270992130041,-0.498856020149,0.0268176542268,0.73559468795,-0.457519332534 -1469731611226725278,-0.0102302301675,0.0188694316894,0.271057605743,-0.48908424866,0.0258548736434,0.73582762225,-0.467638571501 -1469731611314265933,-0.0103029264137,0.0186901967973,0.271067112684,-0.472668981378,0.0218623919284,0.734112668529,-0.487016077524 -1469731611393657551,-0.0102099115029,0.018588161096,0.271030306816,-0.49671483826,0.0263099949104,0.735526981098,-0.459980666656 -1469731611470633151,-0.0102338502184,0.018391834572,0.271014541388,-0.491780687037,0.0255768197845,0.735310398537,-0.465635264934 -1469731611548530306,-0.0102398470044,0.0183275267482,0.271144986153,-0.494144860426,0.0246922619505,0.734427664617,-0.464572012244 -1469731611624102368,-0.0102511793375,0.0182488169521,0.271126896143,-0.493839765804,0.0242924758621,0.734147637061,-0.465359439922 -1469731611699975646,-0.0101802311838,0.0181055217981,0.271045684814,-0.512875721258,0.0273358380503,0.734767092092,-0.443089795506 -1469731611774862638,-0.0102218566462,0.018000561744,0.2709813416,-0.503081701444,0.0261045925988,0.734493368108,-0.45469423146 -1469731611861289539,-0.0102137345821,0.017903611064,0.270979911089,-0.495762465428,0.0259281522445,0.735237452766,-0.461490191494 -1469731611942562937,-0.0102419583127,0.0178129877895,0.271027088165,-0.4993030815,0.024688238552,0.734145444664,-0.459475124202 -1469731612027544974,-0.0102654118091,0.0177965667099,0.271027326584,-0.48801119103,0.023595099487,0.734368539402,-0.471159417869 -1469731612107563978,-0.0102756461129,0.0178087931126,0.271072655916,-0.487696301208,0.0233775190698,0.734070754498,-0.471959677071 -1469731612188144109,-0.0102930739522,0.0177476238459,0.270956039429,-0.497302402254,0.0234446374229,0.733151602986,-0.463281120626 -1469731612267932170,-0.0102541297674,0.0177623443305,0.271011322737,-0.498782347748,0.0240300461284,0.73358391742,-0.460970023495 -1469731612346450193,-0.010270039551,0.0177374593914,0.270985156298,-0.495272039203,0.023371932413,0.733320399574,-0.465188726785 -1469731612421705683,-0.0102891484275,0.0177247710526,0.270996570587,-0.491763854968,0.0229367986923,0.733211796893,-0.469087065597 -1469731612500600789,-0.0102976085618,0.0176897440106,0.271005988121,-0.494057044013,0.0225726556473,0.732786368575,-0.467356663063 -1469731612580752615,-0.010295111686,0.017663538456,0.270978838205,-0.488561825111,0.022062753258,0.732776441242,-0.473137680938 -1469731612657882512,-0.0102791311219,0.0176552124321,0.270916432142,-0.502529819899,0.0234347906082,0.732649333902,-0.458409799453 -1469731612735324192,-0.0102868042886,0.0175554305315,0.27081233263,-0.497913928334,0.0235073216927,0.732948523869,-0.46294231515 -1469731612815176930,-0.0102345682681,0.0175371710211,0.270827591419,-0.517759852705,0.02646867217,0.73334541877,-0.439805230857 -1469731612891834554,-0.0102517157793,0.0175082515925,0.27094861865,-0.519413112338,0.0250333719759,0.731924678863,-0.440306272372 -1469731612971743110,-0.010244675912,0.0174568574876,0.270831048489,-0.519331810272,0.0264769113302,0.733179917269,-0.438224432134 -1469731613050704684,-0.0102349882945,0.017449984327,0.270917057991,-0.515546936865,0.0262292630488,0.733367311814,-0.442375143529 -1469731613132884199,-0.0102416779846,0.0174392312765,0.270979315042,-0.514666004074,0.0255409528423,0.732919615016,-0.444179470375 -1469731613210314934,-0.010239738971,0.0173903666437,0.270956635475,-0.529519286511,0.0266985099298,0.732306222812,-0.427345423295 -1469731613290621047,-0.0102397426963,0.0173803269863,0.270916730165,-0.526627394155,0.0264380569367,0.732608418082,-0.430406229772 -1469731613367950385,-0.0102539686486,0.0173507109284,0.270982652903,-0.510468735458,0.0249721293944,0.733072391166,-0.448779380301 -1469731613443631906,-0.0102450326085,0.0173246636987,0.270913928747,-0.526235811959,0.025791218308,0.732142677782,-0.43171493215 -1469731613521853156,-0.0102522103116,0.0173336155713,0.271013438702,-0.523077750656,0.0254266451248,0.732109478922,-0.435613203839 -1469731613597619194,-0.0102641461417,0.0173433478922,0.270981878042,-0.527167676235,0.0254602897321,0.731690596982,-0.431363982116 -1469731613676707701,-0.0102609125897,0.0173714961857,0.270889699459,-0.519226099831,0.0255956688138,0.732711125239,-0.439185070264 -1469731613752390268,-0.0102617060766,0.0173638127744,0.270919054747,-0.527896097469,0.0260917590568,0.732131939413,-0.429683317895 -1469731613833427095,-0.0102684590966,0.0173350945115,0.270962506533,-0.515629342958,0.0247872957343,0.732513558328,-0.443774557085 -1469731613914826729,-0.0102680558339,0.0172795709223,0.271003693342,-0.533200977584,0.0252962780251,0.731046876864,-0.425002681931 -1469731613992599474,-0.010283768177,0.0172273181379,0.270937621593,-0.520436048524,0.0244458342951,0.731716890294,-0.439475952745 -1469731614072036237,-0.0103129902855,0.0171539727598,0.270909965038,-0.514943580351,0.0229502210445,0.73074445422,-0.447570038136 -1469731614156589290,-0.0102916695178,0.017101706937,0.270890921354,-0.524685049089,0.0236571486218,0.73043013521,-0.436597934212 -1469731614233245185,-0.0102667119354,0.0170369483531,0.270938128233,-0.527063432187,0.0251406685046,0.731188638704,-0.432360104391 -1469731614314814297,-0.0102458074689,0.0168868023902,0.270899742842,-0.53813042286,0.0269079022795,0.731610866537,-0.417656740341 -1469731614389689609,-0.0102795502171,0.0167757347226,0.270961433649,-0.522661812495,0.0245867181748,0.731591035695,-0.437029380637 -1469731614466058355,-0.0103306667879,0.0166748426855,0.27098557353,-0.517487509208,0.0226519883921,0.730270423117,-0.445419660945 -1469731614543901324,-0.010242741555,0.0165091175586,0.270801216364,-0.531978732479,0.0269969798215,0.732232209847,-0.424388715841 -1469731614623873528,-0.0102361757308,0.0164341256022,0.270875751972,-0.538237634977,0.0274228422302,0.732005542919,-0.41679265967 -1469731614701159538,-0.0102826515213,0.0162532925606,0.270990520716,-0.524298604683,0.0238348614655,0.730799547609,-0.436434294851 -1469731614778545071,-0.010300568305,0.0161603093147,0.271021306515,-0.512548929355,0.0220056129831,0.7302184192,-0.451209938139 -1469731614856220904,-0.0102444430813,0.0160733181983,0.270855724812,-0.53308631587,0.0261605079918,0.731465027747,-0.424374269763 -1469731614937662506,-0.010254717432,0.0158849228173,0.270943403244,-0.537941954038,0.0258591285201,0.730917425743,-0.419177141914 -1469731615016828533,-0.0102796731517,0.0158083364367,0.271015256643,-0.52616541473,0.024173805557,0.73079391608,-0.434172587444 -1469731615097241499,-0.0102926623076,0.015716932714,0.271073490381,-0.526681962984,0.0230592337681,0.72970848727,-0.435430712297 -1469731615177020049,-0.0102676805109,0.0156058976427,0.270876288414,-0.529923807072,0.0244457604746,0.730487454004,-0.430082832762 -1469731615255389498,-0.0102444477379,0.0155540890992,0.270925074816,-0.545506974054,0.0261020030085,0.730298376946,-0.410371913424 -1469731615334561096,-0.0102549502626,0.0154726644978,0.270888328552,-0.545945047207,0.0268329033271,0.730775862843,-0.408889519326 -1469731615412137749,-0.0103076221421,0.0153044071048,0.270979076624,-0.522827224373,0.0237667289871,0.730665783211,-0.438422569325 -1469731615501869460,-0.0103277256712,0.0152019616216,0.270948410034,-0.510386645575,0.0214476344367,0.729842803316,-0.4542851015 -1469731615581642306,-0.0103292306885,0.0151587277651,0.270959466696,-0.515162667429,0.0222043523101,0.730107426497,-0.448394400722 -1469731615657540915,-0.0102540897205,0.0150650124997,0.270907908678,-0.541165603734,0.0266139733145,0.731125512583,-0.414592535641 -1469731615734060392,-0.0102437771857,0.0149750737473,0.271050900221,-0.550254425753,0.0265580670276,0.730215743135,-0.40410358139 -1469731615812629156,-0.0102779483423,0.0148365916684,0.27093911171,-0.537341680638,0.02497297094,0.730280582892,-0.421106327692 -1469731615887200828,-0.0103064971045,0.0147591894493,0.270963966846,-0.526953782055,0.0229066421343,0.729572478335,-0.435337795489 -1469731615970803358,-0.0102525688708,0.0146422926337,0.27099019289,-0.55089672738,0.0259816644389,0.729554230584,-0.404460595747 -1469731616046361314,-0.0102184573188,0.0145615031943,0.270988881588,-0.551209350156,0.0270381947153,0.730409484833,-0.40241666565 -1469731616129782003,-0.010238384828,0.0144682778046,0.270997911692,-0.554795375829,0.0273696601887,0.73025372994,-0.397721614409 -1469731616206899327,-0.0102794226259,0.01433703769,0.271049827337,-0.533238654107,0.0241349360234,0.730011102002,-0.426799523879 -1469731616285487778,-0.0103077935055,0.0142844468355,0.270910233259,-0.51371914967,0.0226246209175,0.730580146761,-0.449258734973 -1469731616365235894,-0.0102737909183,0.0141905890778,0.270977914333,-0.547697152312,0.0244979652489,0.728883096861,-0.41006964062 -1469731616442088367,-0.0101871769875,0.0141032487154,0.270994096994,-0.557776416084,0.0280070472496,0.730288097421,-0.3934213641 -1469731616524037762,-0.0102236224338,0.0140329739079,0.271103233099,-0.546650426284,0.0264022253245,0.730475878702,-0.408510984646 -1469731616605261708,-0.0102251591161,0.0139769762754,0.271165579557,-0.557458888615,0.0261297702362,0.729130136206,-0.39613894922 -1469731616682077018,-0.0102288536727,0.013859574683,0.271180599928,-0.559597574688,0.025259717852,0.728317255841,-0.394672618637 -1469731616762882090,-0.0103004947305,0.0138007597998,0.271027058363,-0.517432424759,0.0218688748743,0.729623564092,-0.446581339558 -1469731616839821262,-0.0102975834161,0.013710311614,0.271132409573,-0.529295630857,0.0210241215207,0.728014867604,-0.435199349743 -1469731616920565971,-0.0102226128802,0.013608542271,0.271088778973,-0.563945726079,0.0263574364589,0.728658632809,-0.387720389472 -1469731617001765274,-0.0102575477213,0.013505442068,0.270995408297,-0.542055691814,0.0252295594695,0.730084348906,-0.415350381947 -1469731617076909059,-0.0102745825425,0.0133655872196,0.271066755056,-0.542131380444,0.0241207336412,0.72906487862,-0.417104494473 -1469731617160777699,-0.010288621299,0.013246383518,0.27099275589,-0.540770697344,0.0226017914619,0.728260534524,-0.420348433769 -1469731617242409674,-0.0101955374703,0.0131226116791,0.270943254232,-0.572522009704,0.0284590216841,0.72902177552,-0.374080049331 -1469731617321414777,-0.010265394114,0.012918304652,0.271027505398,-0.538241188602,0.0240391932126,0.729357286114,-0.42161177554 -1469731617402002776,-0.0102894604206,0.0128300553188,0.270972281694,-0.535683521463,0.0227485315547,0.728600304383,-0.426224431019 -1469731617483067417,-0.0102328713983,0.0126518951729,0.270985722542,-0.56179662568,0.0274773067569,0.729557361001,-0.389070181326 -1469731617560682291,-0.0102480761707,0.0125205274671,0.270962566137,-0.542366974341,0.0255931011197,0.730215794625,-0.41469018749 -1469731617642092378,-0.0103084873408,0.0124060250819,0.270914465189,-0.515800408341,0.0225202227425,0.730284175845,-0.447356458356 -1469731617721853934,-0.0103043690324,0.012309268117,0.270963042974,-0.528951182596,0.0220079644743,0.728880973037,-0.434118443601 -1469731617801110684,-0.0102814538404,0.0122568244115,0.270898759365,-0.541413774245,0.0244967642632,0.729562232568,-0.417145037618 -1469731617876946128,-0.0102373603731,0.012112471275,0.271217286587,-0.555825849349,0.0262658971595,0.729390171083,-0.397941837671 -1469731617954669443,-0.0102678937837,0.012021433562,0.271138548851,-0.546461422536,0.024871447645,0.729205779667,-0.41112073126 -1469731618033039241,-0.0102696521208,0.0119414096698,0.271270811558,-0.546651072953,0.0235232319159,0.728143990315,-0.412826345293 -1469731618112402442,-0.0103096617386,0.0118711963296,0.271199733019,-0.54195182743,0.0223892899103,0.72782705473,-0.419588744899 -1469731618190122087,-0.0102825257927,0.0118267619982,0.271138608456,-0.553121482066,0.0248003071917,0.728614083975,-0.403191130203 -1469731618273156138,-0.0102021014318,0.011753147468,0.271223604679,-0.570610941433,0.0284948589,0.72922144504,-0.376599629085 -1469731618350452656,-0.010237051174,0.0116502577439,0.271268904209,-0.555950462387,0.0266108289853,0.729596185352,-0.397366774493 -1469731618432284518,-0.0102580562234,0.0115886535496,0.271252959967,-0.551434178295,0.0261009768428,0.729673936185,-0.403503448397 -1469731618512133182,-0.0102661205456,0.0116284647956,0.271181166172,-0.543994941467,0.0257956148004,0.730235635691,-0.412504553044 -1469731618593210235,-0.0102617861703,0.0116307139397,0.271175920963,-0.548068458495,0.0260793660951,0.729985088131,-0.407507794495 -1469731618672202676,-0.0102100679651,0.0116339260712,0.271338075399,-0.564920062126,0.0270164189108,0.728927641048,-0.385745940527 -1469731618751949697,-0.0102296508849,0.0116152502596,0.271306574345,-0.561475622968,0.0269243247052,0.729191334113,-0.390256587141 -1469731618831829078,-0.010237634182,0.0115494737402,0.271389842033,-0.557920227887,0.0254251464642,0.728509497599,-0.396676811964 -1469731618913260387,-0.0103210937232,0.0114470673725,0.271271258593,-0.536446973982,0.0222533367494,0.728140644738,-0.42607585544 -1469731618994803756,-0.010301486589,0.0113935964182,0.271254450083,-0.546313670275,0.0225310630229,0.727606887395,-0.414272787286 -1469731619075157723,-0.0102484831586,0.0112914340571,0.27126377821,-0.568130597844,0.0267679186073,0.728428720277,-0.381972121761 -1469731619154999743,-0.0102588282898,0.0112168742344,0.271326512098,-0.564157923136,0.0262281871462,0.728514601012,-0.387691109099 -1469731619236721707,-0.0102299964055,0.0111861620098,0.271417766809,-0.56004171202,0.0265256577139,0.72911317721,-0.392483942473 -1469731619318925524,-0.0102600902319,0.0110715609044,0.271306395531,-0.559062570186,0.0254325966612,0.728373838619,-0.39531478199 -1469731619398225835,-0.0102817220613,0.0110239088535,0.271263480186,-0.542761382818,0.0236315557114,0.728624617156,-0.417082483654 -1469731619476243576,-0.0103283319622,0.010928790085,0.271316707134,-0.526821518775,0.0203652304566,0.727632905273,-0.438856126662 -1469731619556890770,-0.0103312730789,0.01088403631,0.271221250296,-0.519497558011,0.0208230533811,0.728692585304,-0.44575307491 -1469731619637404732,-0.0102087361738,0.0107812229544,0.2713124156,-0.583029686591,0.0274457937127,0.727221318742,-0.361209449665 -1469731619719389560,-0.0102250427008,0.0107029695064,0.271288096905,-0.566838412049,0.0266453074082,0.728463651127,-0.38382932562 -1469731619799877153,-0.0102470731363,0.0106320157647,0.271348118782,-0.564962006827,0.025935316084,0.728054075545,-0.387404895818 -1469731619888783795,-0.0102741448209,0.0105364890769,0.27129727602,-0.558333848881,0.0239800710799,0.727366701555,-0.398278735127 -1469731619967594278,-0.0102484077215,0.0105054229498,0.27122887969,-0.553130624051,0.023940615815,0.727892682344,-0.404531337033 -1469731620044767406,-0.0102764070034,0.0104624405503,0.271275907755,-0.543717913524,0.0225958635891,0.727867476447,-0.417216004238 -1469731620126130852,-0.010213159956,0.0103522576392,0.271205961704,-0.570769109112,0.0278322719947,0.728789554221,-0.37724497926 -1469731620204641901,-0.0102515472099,0.010276498273,0.271194547415,-0.55691995526,0.027014532681,0.729781746002,-0.395637437131 -1469731620285600484,-0.0102789998055,0.0100822690874,0.271353185177,-0.543491885152,0.0234804910852,0.728430958197,-0.416477582174 -1469731620366146599,-0.0102110374719,0.0097423158586,0.271319448948,-0.563422977188,0.0264761986609,0.72861536114,-0.388552718679 -1469731620446370877,-0.0103175872937,0.00931261666119,0.270807236433,-0.5252536899,0.0242882112014,0.730766244094,-0.435315219737 -1469731620522410822,-0.0102919498459,0.00906917266548,0.270647227764,-0.540141710779,0.0245316295928,0.729665650695,-0.418608611499 -1469731620604180560,-0.0103068053722,0.00893504638225,0.270349442959,-0.518743098521,0.0218989200921,0.729529060409,-0.445211618283 -1469731620686255874,-0.0102429427207,0.00878816191107,0.269622057676,-0.539246266443,0.0231827065979,0.728656354217,-0.421587409324 -1469731620769978194,-0.0102082146332,0.00877285376191,0.268993496895,-0.557316802887,0.0254495256504,0.728386424309,-0.397748060645 -1469731620853641804,-0.0102130603045,0.00879115518183,0.268032729626,-0.543652453373,0.0262480702131,0.730392925083,-0.412649032158 -1469731620925647906,-0.0101943900809,0.0087487064302,0.267659276724,-0.536276152303,0.0249080548447,0.730095807913,-0.422785511274 -1469731621005421961,-0.0101798409596,0.00876358430833,0.267168521881,-0.527017563041,0.0229206838046,0.72947017108,-0.435431280461 -1469731621081367296,-0.0101164961234,0.00873875524849,0.266643643379,-0.544976995155,0.0243559792825,0.728912579797,-0.413634273289 -1469731621155409242,-0.0101453298703,0.00869359262288,0.266102075577,-0.529182062846,0.0238730475428,0.730170199613,-0.431564481346 -1469731621241462450,-0.0101891513914,0.0085289971903,0.265433549881,-0.531401659194,0.0239671242544,0.729804344522,-0.429445540526 -1469731621319952365,-0.0101248156279,0.00835711043328,0.265636831522,-0.53841271929,0.0253448407481,0.730018130855,-0.420170098148 -1469731621396048404,-0.0101509066299,0.00828361045569,0.265576690435,-0.536865328791,0.0253504677004,0.730339924491,-0.421588148819 -1469731621475745588,-0.0101544903591,0.00826840288937,0.265369743109,-0.541218013919,0.0252874244477,0.729915457571,-0.416733766778 -1469731621551453058,-0.0101301632822,0.00826602708548,0.265262931585,-0.540553389974,0.0256144242311,0.730234431916,-0.417017515582 -1469731621631648858,-0.0101788090542,0.00848084781319,0.265019625425,-0.518997312739,0.0216977731711,0.729108170234,-0.445614488215 -1469731621707924592,-0.0101319728419,0.00870642438531,0.264792472124,-0.524808214323,0.022781515929,0.729603899601,-0.437876113072 -1469731621787560421,-0.010121437721,0.00883047096431,0.264639347792,-0.534067686886,0.0229155297502,0.72885181932,-0.427810249755 -1469731621874009865,-0.0100873485208,0.00851010438055,0.264655858278,-0.531257988657,0.0245102962266,0.730229124706,-0.428870167182 -1469731621952651955,-0.01007206738,0.00850409921259,0.264611184597,-0.545507623424,0.0253263750491,0.729449727408,-0.411926088877 -1469731622032211332,-0.010108797811,0.00857195816934,0.264667063951,-0.525235958629,0.0234610099921,0.729873864615,-0.436876310328 -1469731622116730836,-0.0100897755474,0.00865392386913,0.264616936445,-0.538132641962,0.02413657692,0.729233260526,-0.421959165147 -1469731622200583588,-0.0100005837157,0.0081575717777,0.264324784279,-0.558362514353,0.0280871570449,0.729900708465,-0.393303152743 -1469731622282081485,-0.0100017916411,0.00801036972553,0.26430734992,-0.549867405325,0.0267085409555,0.730173776615,-0.40469586895 -1469731622359294841,-0.0100002717227,0.00801389478147,0.264298379421,-0.552703764355,0.0268302276911,0.729955677583,-0.401202438321 -1469731622438025562,-0.0100042140111,0.00802636146545,0.264286547899,-0.552453425517,0.0265470873091,0.729744929702,-0.401948755893 -1469731622511494651,-0.0100079281256,0.00811889860779,0.264270067215,-0.551416365587,0.0261624721295,0.729527540744,-0.403788415027 -1469731622592643717,-0.0100267613307,0.00820924621075,0.264195501804,-0.540072033017,0.0243569298882,0.729416576422,-0.419142454495 -1469731622670239865,-0.0100284554064,0.00835218466818,0.264319837093,-0.549459265509,0.0250364843757,0.729066162128,-0.40734533413 -1469731622746836000,-0.0100043397397,0.00849596224725,0.264288425446,-0.548102344843,0.026023031214,0.729889604162,-0.407636832438 -1469731622821656057,-0.0100187575445,0.00888243038207,0.264344155788,-0.547467647098,0.0261482923198,0.730133119645,-0.408045426131 -1469731622896728463,-0.0101699428633,0.0100400848314,0.264497756958,-0.48028493681,0.0166544205209,0.728705820336,-0.487890189653 -1469731622976757243,-0.0100385192782,0.0111778154969,0.26448559761,-0.561638708878,0.0251843260434,0.727957793131,-0.392434914133 -1469731623053687319,-0.0100482134148,0.0119444970042,0.264343589544,-0.551153434062,0.0232280089984,0.727659350319,-0.407679066929 -1469731623134805982,-0.0100309578702,0.0126648629084,0.263885378838,-0.561159060202,0.021604356914,0.725478744589,-0.397887361027 -1469731623213311971,-0.00995782483369,0.0129283573478,0.263478070498,-0.60794093188,0.0236331253501,0.722465695828,-0.328470115966 -1469731623289335059,-0.00997503846884,0.0130578242242,0.262925297022,-0.599410696969,0.0242917471796,0.723535897528,-0.341485771834 -1469731623367645350,-0.0100279757753,0.0132641410455,0.26183155179,-0.541596892231,0.0213483145286,0.726854052672,-0.421782220947 -1469731623445534198,-0.0099413394928,0.013287961483,0.261539012194,-0.559010231475,0.0241854966983,0.727422639633,-0.3972139552 -1469731623521234515,-0.00988443847746,0.0133133176714,0.261291056871,-0.565256150728,0.025762408827,0.727874166699,-0.387325418489 -1469731623602793493,-0.00986290350556,0.0133367013186,0.260967224836,-0.587151022404,0.0250207504905,0.725177854072,-0.358810143248 -1469731623676446461,-0.00985720101744,0.0135665787384,0.260787069798,-0.612335588336,0.0267860309026,0.72372639798,-0.317092631061 -1469731623754363020,-0.00982523523271,0.014092983678,0.260739028454,-0.611189559372,0.0276247852552,0.724363064601,-0.317777193008 -1469731623848170117,-0.0098739573732,0.014291414991,0.260692328215,-0.591872146675,0.0227639484433,0.723499871158,-0.354566074344 -1469731623925795170,-0.00986910331994,0.0138559704646,0.26068803668,-0.591830245663,0.0231815603525,0.723707103795,-0.354185831868 -1469731624001820934,-0.00983145274222,0.0134510556236,0.260587960482,-0.602944389603,0.0251898050269,0.723739227033,-0.33470146104 -1469731624080666343,-0.00987535715103,0.0133403874934,0.260633140802,-0.603846202375,0.0234252718743,0.722872791166,-0.335076033621 -1469731624156510353,-0.00989464763552,0.013319414109,0.260566413403,-0.598413525277,0.0229951183246,0.723152410715,-0.344126529311 -1469731624237092068,-0.00989794824272,0.0129811856896,0.260529309511,-0.587716657098,0.0237194149604,0.724376954636,-0.359589415745 -1469731624313168848,-0.0098705580458,0.0129190506414,0.260428309441,-0.598134037868,0.0243946623983,0.723913532571,-0.342913648824 -1469731624393628598,-0.00987955089658,0.0125668318942,0.260536104441,-0.590284692849,0.0247049029859,0.724642209426,-0.354749654651 -1469731624471131909,-0.00983120128512,0.012227345258,0.260302513838,-0.601485407635,0.02767366913,0.725194551094,-0.333979543539 -1469731624550747934,-0.00989263411611,0.0119556309655,0.260344058275,-0.591375626392,0.0253417504923,0.725091341806,-0.351959103064 -1469731624632563581,-0.00989338383079,0.0116564370692,0.260428786278,-0.580985138584,0.0245717447797,0.725575757805,-0.367956950999 -1469731624714860590,-0.00989453215152,0.0112889381126,0.260270416737,-0.564277983522,0.0246476809171,0.727348198859,-0.389804369849 -1469731624792604973,-0.00989947095513,0.011100419797,0.260239481926,-0.573767820224,0.0241919008856,0.726182119588,-0.377974562103 -1469731624871351730,-0.00991796236485,0.0108022755012,0.260319977999,-0.566015385415,0.0240381918417,0.726554154057,-0.388803047865 -1469731624950767623,-0.00984989106655,0.0104570733383,0.260225862265,-0.578298887424,0.0269936746683,0.727196341954,-0.368818679815 -1469731625028312818,-0.00989700108767,0.0102505497634,0.260324120522,-0.566495132039,0.0239926546183,0.726780915609,-0.387681723333 -1469731625103923690,-0.00988120678812,0.009974533692,0.260260790586,-0.557553034289,0.0252086704162,0.728243335016,-0.397694332241 -1469731625179056571,-0.00988515093923,0.00983906537294,0.260288268328,-0.561712257186,0.0245405460627,0.727463338189,-0.393286401133 -1469731625257018260,-0.00985548924655,0.00960866175592,0.260225623846,-0.566944898994,0.0267876848206,0.728285216208,-0.384000710025 -1469731625332014004,-0.00988410040736,0.00953780021518,0.260201305151,-0.558712874842,0.0259282897184,0.728701279225,-0.395173497257 -1469731625411468226,-0.00990726705641,0.00943232141435,0.260226786137,-0.55273370042,0.0243109798486,0.728202920042,-0.404493436189 -1469731625487645086,-0.00990852899849,0.00927896797657,0.260143756866,-0.558095826428,0.0236935149855,0.727208434423,-0.398917985025 -1469731625568017735,-0.00991822872311,0.00903473235667,0.260079562664,-0.548335764598,0.0248191729239,0.728897827791,-0.409169713639 -1469731625645106395,-0.00995650701225,0.00866435840726,0.25983646512,-0.546450056882,0.0251620609543,0.729095870645,-0.411313040677 -1469731625723797549,-0.00993257388473,0.00780543265864,0.259833872318,-0.53635562011,0.0267197612387,0.731387188639,-0.420334965748 -1469731625800242647,-0.00995872542262,0.00670834956691,0.259996294975,-0.527962859712,0.0240609377735,0.730396981981,-0.43266215313 -1469731625879782764,-0.0099435839802,0.00578928319737,0.259520292282,-0.520858949971,0.0241356231093,0.731098067043,-0.440021638442 -1469731625956945958,-0.00985858403146,0.00545879919082,0.259182959795,-0.543800493728,0.0260428781768,0.730151970056,-0.412893318112 -1469731626037069354,-0.00982243474573,0.00518698664382,0.258753716946,-0.544688434244,0.0255699453197,0.729755101361,-0.412453851399 -1469731626113047926,-0.0097944131121,0.00514734955505,0.258525192738,-0.536509516519,0.025454343313,0.730628725197,-0.421534436326 -1469731626194702821,-0.00977705232799,0.00502710463479,0.257787227631,-0.529174278087,0.0253562859401,0.731282160385,-0.429602192821 -1469731626269582236,-0.00984347239137,0.0049350252375,0.256825596094,-0.527919907275,0.0251794429613,0.731312950794,-0.431100841053 -1469731626351920056,-0.00978871434927,0.00484764575958,0.256389826536,-0.530567785845,0.0251778696891,0.7309870927,-0.428394409169 -1469731626430857767,-0.00979247782379,0.00460065994412,0.256082236767,-0.528739958933,0.0221612450332,0.728742712245,-0.434599809475 -1469731626506057049,-0.00975626893342,0.00433135172352,0.255944907665,-0.537465455325,0.0233693729424,0.728646421203,-0.423862182329 -1469731626581335377,-0.00971157755703,0.00424381531775,0.255885928869,-0.550400934188,0.0257203920559,0.729258166696,-0.405684359306 -1469731626660446907,-0.00972891505808,0.0041552442126,0.255930751562,-0.552149853603,0.0246542479253,0.728371096833,-0.404966977077 -1469731626736768474,-0.00982004776597,0.00449274200946,0.255953222513,-0.518223722927,0.0199563816969,0.727994879768,-0.448407594557 -1469731626815959618,-0.00974428188056,0.00459036277607,0.255959838629,-0.551621018619,0.0244912267641,0.728362142867,-0.405712977938 -1469731626895930211,-0.00972612760961,0.00471233017743,0.255891948938,-0.546810234497,0.025412638931,0.72934690642,-0.410372824792 -1469731626973239498,-0.00978245772421,0.00492224609479,0.2558375597,-0.537654311872,0.0218345677325,0.727702221458,-0.425324075809 -1469731627052112607,-0.00974546652287,0.0051871179603,0.255819171667,-0.543602793434,0.0240955778203,0.728735097282,-0.415765034712 -1469731627133178444,-0.00973918568343,0.00555475382134,0.255798399448,-0.538171645131,0.0251183155567,0.730036011324,-0.420461380831 -1469731627214547397,-0.00979373324662,0.00578029127792,0.255697250366,-0.533265257093,0.0215174757568,0.727844034861,-0.430590553463 -1469731627296377854,-0.00977089256048,0.00614284491166,0.255738914013,-0.54778023184,0.0228766789195,0.727450689687,-0.412588135119 -1469731627378072946,-0.00975255481899,0.00637402851135,0.255797803402,-0.56046273376,0.0250595260439,0.727761650332,-0.394482603578 -1469731627454136515,-0.00972402282059,0.00646466575563,0.255739867687,-0.561105027225,0.0260228227727,0.728274036334,-0.392556861001 -1469731627536150052,-0.00974963977933,0.00676596863195,0.255642235279,-0.558628187605,0.0253438652638,0.728315068183,-0.396042166901 -1469731627611384966,-0.00975652039051,0.00691910134628,0.255652159452,-0.563336395985,0.0252805963924,0.727623047283,-0.39061195254 -1469731627690642001,-0.00981028191745,0.00709666311741,0.255665004253,-0.550772064537,0.022173960938,0.726745120277,-0.409878004455 -1469731627766388262,-0.00975010730326,0.00729366485029,0.255697727203,-0.564475268995,0.0257634575863,0.727953725006,-0.388313390442 -1469731627841633375,-0.00976905412972,0.00744382897392,0.255658656359,-0.565245622805,0.0248479058254,0.727125733612,-0.388803465771 -1469731627920844614,-0.0098198056221,0.0075873923488,0.255566626787,-0.532993058296,0.0221055170767,0.72815639428,-0.430369621829 -1469731627998721709,-0.00977931078523,0.00768540147692,0.255668133497,-0.55451562909,0.0249127347912,0.728285254191,-0.401861121866 -1469731628082168101,-0.00978741049767,0.00777056347579,0.255702406168,-0.554254250938,0.0240998278386,0.727687305158,-0.40335171938 -1469731628162393171,-0.00984635297209,0.00791974179447,0.255609214306,-0.530883878646,0.0199995166833,0.726857001394,-0.435248464961 -1469731628243053428,-0.00982836261392,0.00798043608665,0.255641788244,-0.554831628273,0.022024896326,0.72620672462,-0.405340056405 -1469731628320062977,-0.00978919118643,0.00815850868821,0.255685955286,-0.567440877144,0.0249022832979,0.727003532622,-0.385819375858 -1469731628398503762,-0.00982026383281,0.00844936538488,0.255682647228,-0.549889001472,0.0223132127935,0.726984320341,-0.410631226984 -1469731628473654321,-0.00974144414067,0.00876139104366,0.255802750587,-0.579816333435,0.0259059528698,0.726486307971,-0.367912415418 -1469731628551996319,-0.00980197545141,0.00930427387357,0.255937367678,-0.536225505928,0.0204781796883,0.727024232742,-0.428344039243 -1469731628630883430,-0.00974264089018,0.0099765015766,0.255481868982,-0.572969628268,0.0242567061739,0.726240881548,-0.379066747759 -1469731628707689193,-0.0097761945799,0.0103112440556,0.254651993513,-0.544209937302,0.0250208520427,0.729502129021,-0.41356516398 -1469731628792448246,-0.00984216015786,0.0104377353564,0.25418946147,-0.525783637978,0.0217070876477,0.728923558227,-0.4378936111 -1469731628872418801,-0.0097950398922,0.0104815866798,0.254063010216,-0.53525422091,0.0234588668101,0.729319541869,-0.425494543343 -1469731628956500431,-0.00966428499669,0.0105759361759,0.253581851721,-0.564501210019,0.0266094117545,0.728491386998,-0.38720875786 -1469731629038701947,-0.00967848859727,0.0106889326125,0.253212243319,-0.572794315339,0.02389767429,0.725919237395,-0.379969517539 -1469731629112668214,-0.00967884622514,0.0107272500172,0.252679973841,-0.570702512964,0.0256586704873,0.727153557496,-0.380641534973 -1469731629191336869,-0.00973054487258,0.0107222497463,0.251995891333,-0.5532625436,0.0258354396327,0.729152863336,-0.401956701397 -1469731629270613159,-0.00974002666771,0.010804221034,0.251537203789,-0.528484786127,0.0219722758395,0.728895114762,-0.434664194067 -1469731629349056045,-0.00967526063323,0.0108485557139,0.251336783171,-0.546822797006,0.0244766513628,0.72898149901,-0.411061669721 -1469731629429418633,-0.00969935487956,0.0107012744993,0.251144737005,-0.527437904686,0.0217815338751,0.728703300116,-0.436264050642 -1469731629507770058,-0.00967041868716,0.010685137473,0.251072436571,-0.552216370889,0.0233161962657,0.727695988892,-0.406167431565 -1469731629590634644,-0.0095998281613,0.010797646828,0.250594526529,-0.571920434571,0.0261355193549,0.727534772714,-0.378043787994 -1469731629673476542,-0.00971853919327,0.0109714874998,0.249680861831,-0.542032648507,0.0233992149421,0.72855324826,-0.418166532786 -1469731629753296301,-0.00963448081166,0.0110637880862,0.249347567558,-0.569332611677,0.0265981753853,0.727899070889,-0.381203170167 -1469731629831790413,-0.00971167068928,0.0111321751028,0.249153837562,-0.536983703823,0.0210971710519,0.72722611901,-0.427019417629 -1469731629912906065,-0.0095729213208,0.0112134311348,0.248696491122,-0.568125951601,0.0255864381062,0.727423091151,-0.383971201736 -1469731629988843119,-0.00961719918996,0.011308113113,0.248041287065,-0.557611304537,0.0230603028393,0.726967703643,-0.400069760598 -1469731630067319829,-0.00967700965703,0.0113396598026,0.247316166759,-0.533027731882,0.0232199677461,0.729383956812,-0.428183738234 -1469731630145785665,-0.00957117322832,0.0113330520689,0.24688796699,-0.561456913818,0.026057352281,0.728433267825,-0.391755182026 -1469731630224680943,-0.00952272117138,0.0113395992666,0.246493056417,-0.574985999363,0.0259999300756,0.726957471054,-0.374496915143 -1469731630299712090,-0.0095912180841,0.0113483257592,0.246374920011,-0.546942949018,0.0211658301699,0.726333661775,-0.415746112339 -1469731630372533069,-0.00957248266786,0.0113550024107,0.246078297496,-0.570956796635,0.0229140508628,0.725548823074,-0.383486881113 -1469731630449139296,-0.00951632577926,0.0115193184465,0.245979651809,-0.590710520216,0.0264579232676,0.725649026368,-0.351844497093 -1469731630528380638,-0.0096217347309,0.0117247505113,0.245853319764,-0.567627200716,0.0224104544204,0.72555445199,-0.388417133683 -1469731630613856728,-0.00960936117917,0.0117953512818,0.245830520988,-0.569510514027,0.0237140674219,0.726258465993,-0.384244789154 -1469731630694038195,-0.00962673313916,0.0120131392032,0.245535060763,-0.566557511715,0.0244788347284,0.726833685494,-0.387461180251 -1469731630775369794,-0.00957489851862,0.0118610104546,0.245562002063,-0.581736429784,0.027018962207,0.726936688779,-0.363889753155 -1469731630851178708,-0.00965960044414,0.0117398770526,0.245526760817,-0.552612016299,0.0226499725925,0.727101485364,-0.406731321838 -1469731630934415702,-0.00966097507626,0.0117687229067,0.245461836457,-0.560226228438,0.0239900711488,0.72717088128,-0.395971664232 -1469731631014462979,-0.00970711838454,0.0116954632103,0.245523765683,-0.54357073359,0.0214473102907,0.726846525536,-0.419243364625 -1469731631094576341,-0.00970260705799,0.0116457585245,0.245499804616,-0.545038397208,0.021379944315,0.726702248482,-0.417588177037 -1469731631175003849,-0.00965746771544,0.011592711322,0.245442673564,-0.560804151647,0.0239321423506,0.727030579651,-0.395414329925 -1469731631253256065,-0.0096056452021,0.0115169314668,0.245468616486,-0.577239511553,0.0264694403844,0.72703634797,-0.370826190767 -1469731631331643210,-0.00960481353104,0.0114451618865,0.245423272252,-0.568409580041,0.0264131321742,0.727932704299,-0.382526958238 -1469731631410102501,-0.00961063336581,0.0114079676569,0.245515272021,-0.571348891122,0.0262499514526,0.727590549037,-0.378791997823 -1469731631490249466,-0.00969619303942,0.0112760085613,0.245504796505,-0.545338300533,0.0213343712332,0.726596531113,-0.417382874051 -1469731631567820765,-0.00966732297093,0.0112218866125,0.245489761233,-0.547947471154,0.0222335651121,0.727060245743,-0.413089138683 -1469731631643398193,-0.00962986983359,0.0111308256164,0.24547046423,-0.562227125897,0.0249736523443,0.727586563818,-0.392294236188 -1469731631718125470,-0.00962158478796,0.0110593978316,0.245464637876,-0.567179508267,0.0259252700654,0.727774509994,-0.384681099583 -1469731631805485734,-0.00966746266931,0.0109652392566,0.245558619499,-0.551262029179,0.0234408964786,0.727648916935,-0.407538652451 -1469731631884895064,-0.00967113208026,0.0109067354351,0.245431154966,-0.536501658748,0.0225974540065,0.728451289011,-0.425457453538 -1469731631964187650,-0.00970467273146,0.0108066415414,0.245435446501,-0.541629473318,0.0216674993159,0.727271111975,-0.421004468852 -1469731632053398453,-0.00961218960583,0.0107240444049,0.245472699404,-0.567058755781,0.0266850257062,0.728206514545,-0.383988996026 -1469731632139533602,-0.00960727781057,0.0106795979664,0.24543133378,-0.56944069116,0.0269276309308,0.728133894903,-0.380569616545 -1469731632217190525,-0.00964576657861,0.0106033636257,0.245477378368,-0.56008548639,0.0254932766404,0.728161124969,-0.394253366333 -1469731632291600108,-0.00968083925545,0.0105205504224,0.24548920989,-0.552429470501,0.0235345521481,0.727608907866,-0.406021036612 -1469731632370891671,-0.00970555469394,0.0104595907032,0.245425418019,-0.544049788449,0.0224258505029,0.727610594341,-0.417240616335 -1469731632451172728,-0.00973388087004,0.0104008149356,0.245468407869,-0.533040184262,0.0206540642941,0.727222296934,-0.431959838911 -1469731632529895535,-0.00966817606241,0.010346179828,0.245404183865,-0.554172534069,0.0243386955268,0.72786575414,-0.403127615445 -1469731632610577733,-0.00961269903928,0.0102140130475,0.245360836387,-0.563596431046,0.0268113819251,0.72869518064,-0.388128260273 -1469731632686970585,-0.00967458821833,0.0100350733846,0.245423838496,-0.540094766048,0.0221886760752,0.727742418973,-0.422133009807 -1469731632766169469,-0.00958339963108,0.00973620265722,0.24520355463,-0.565988526566,0.0273678692723,0.728797050038,-0.384399333224 -1469731632843089110,-0.00962755549699,0.00943472515792,0.245022162795,-0.551240926903,0.0249069521187,0.728722605878,-0.405556960149 -1469731632917937836,-0.00961163267493,0.00935062672943,0.244529500604,-0.534396154175,0.0217185742372,0.728132611304,-0.428686312228 -1469731632998841492,-0.00945625919849,0.00943468604237,0.244049504399,-0.574326924321,0.0262407737269,0.72729063736,-0.374844413861 -1469731633076004641,-0.00947582349181,0.00939175020903,0.243379548192,-0.579364277914,0.0246369692009,0.725674052969,-0.370306929552 -1469731633157433059,-0.00956242159009,0.00948182679713,0.24255001545,-0.536560899366,0.0226199867988,0.728516518832,-0.425269819359 -1469731633236265763,-0.00950176641345,0.00949673075229,0.24233046174,-0.549055543015,0.0248548553224,0.728931259775,-0.408141477154 -1469731633313778984,-0.00941303186119,0.00947789475322,0.241922080517,-0.559161377377,0.0261543458157,0.728825141042,-0.394294836422 -1469731633393293846,-0.00941200554371,0.00948773697019,0.241500362754,-0.569585415185,0.0248673737736,0.726999778729,-0.382655707206 -1469731633468856433,-0.0095089096576,0.00948577839881,0.240816935897,-0.547997647442,0.0220860227238,0.727097016023,-0.412965755588 -1469731633549372300,-0.00945284031332,0.00948611553758,0.240240365267,-0.558205964422,0.0246341422363,0.727844790455,-0.397543986659 -1469731633622515411,-0.00939410086721,0.00948382169008,0.239953696728,-0.565722960911,0.0262534103149,0.728129917232,-0.386128364118 -1469731633700953645,-0.00934979598969,0.00946717523038,0.239631175995,-0.562306893426,0.0263684669899,0.728551998658,-0.390291745756 -1469731633788387374,-0.00935764051974,0.00946805905551,0.239330723882,-0.553081513446,0.0248236119721,0.728550793577,-0.403358858774 -1469731633863794587,-0.00936162285507,0.00947271939367,0.239246666431,-0.547729495021,0.0240838353799,0.728534286815,-0.410670381319 -1469731633941877014,-0.00943203084171,0.00948110315949,0.238984972239,-0.53496843119,0.0209483270551,0.72751230426,-0.429063855823 -1469731634016919660,-0.00938999652863,0.00959078874439,0.238092839718,-0.556261616184,0.0258662690205,0.728835242145,-0.398375627135 -1469731634091054401,-0.00942534860224,0.00963746476918,0.23773150146,-0.537372188887,0.0205702686433,0.72673297267,-0.427395813145 -1469731634167583680,-0.00927851721644,0.00969494786114,0.23717777431,-0.567213929052,0.0259211624059,0.727723442547,-0.384727232201 -1469731634257502437,-0.00936400145292,0.00973036140203,0.236200362444,-0.548490251731,0.0233934697108,0.728098009614,-0.410468607481 -1469731634337358275,-0.00935235247016,0.0097441310063,0.235732406378,-0.542552503902,0.0230994977021,0.728406922582,-0.41776374765 -1469731634422933044,-0.00922218430787,0.00971778295934,0.23522888124,-0.57966280121,0.0261996548365,0.726621953895,-0.367865669909 -1469731634500591081,-0.00923517160118,0.00970222894102,0.234932333231,-0.586083403885,0.0252078407919,0.725456482812,-0.359977360399 -1469731634580660819,-0.00936521217227,0.0097812525928,0.234000742435,-0.521778320574,0.0213263427977,0.729003269292,-0.442545822084 -1469731634658753351,-0.0092482753098,0.00977047625929,0.233495593071,-0.555760115216,0.0254892064164,0.728729860666,-0.3992916038 -1469731634738955642,-0.0091963019222,0.00972700677812,0.233190327883,-0.565434289423,0.0254555660995,0.727679889528,-0.387450715415 -1469731634813145106,-0.00918824691325,0.00971113797277,0.232696205378,-0.56606205849,0.0246497103057,0.727067568427,-0.387735591171 -1469731634894808323,-0.00931115634739,0.00968748610467,0.232014432549,-0.546811257095,0.0212626837052,0.726647713274,-0.41536543933 -1469731634968980474,-0.00921923294663,0.00972490385175,0.231511458755,-0.558147834689,0.0247893241445,0.727934016375,-0.397452578108 -1469731635048983692,-0.00915195140988,0.00978021416813,0.231159687042,-0.562749407523,0.0253931420347,0.727947281138,-0.390846579304 -1469731635126371237,-0.00920514855534,0.00983309838921,0.230956286192,-0.536529502905,0.021315236234,0.727594926794,-0.426951256844 -1469731635206572484,-0.0091620888561,0.00987074058503,0.230555832386,-0.553777745295,0.0242274753402,0.728045603269,-0.403352002369 -1469731635282453154,-0.00913800764829,0.00989787932485,0.230313524604,-0.565585267383,0.0259880649936,0.728031466723,-0.386533451669 -1469731635360532431,-0.00915385875851,0.00990352313966,0.230125904083,-0.560373439714,0.0260708151387,0.728646886339,-0.392906650095 -1469731635438568197,-0.00916311796755,0.0098492661491,0.229616343975,-0.560549251018,0.0260554185574,0.72847438481,-0.39297674616 -1469731635530720796,-0.00910537224263,0.0097549688071,0.229182615876,-0.565808235802,0.0256039606502,0.727769283664,-0.38672645016 -1469731635611498395,-0.00913323834538,0.00967779941857,0.228553026915,-0.537363788662,0.0235060786715,0.729059574898,-0.423272677065 -1469731635692480336,-0.00916635990143,0.00959634128958,0.227732524276,-0.542950414003,0.0233919107908,0.728607685275,-0.416879487864 -1469731635773077320,-0.00909998454154,0.00951716769487,0.227212071419,-0.553553449729,0.0232545838245,0.727347690633,-0.404973010898 -1469731635849327073,-0.0090434346348,0.00949136167765,0.226656466722,-0.541609184757,0.0240736361837,0.728958248262,-0.417971079525 -1469731635933735700,-0.00906248483807,0.00946313049644,0.225803107023,-0.554422685411,0.0257672888034,0.729111205543,-0.400435241556 -1469731636011805390,-0.00905635487288,0.00944179017097,0.225292652845,-0.542057239076,0.0232167131838,0.728597828871,-0.418067144798 -1469731636092754713,-0.00902219861746,0.00943753682077,0.224679738283,-0.530088379345,0.0233551072846,0.729525225428,-0.431571308722 -1469731636174095679,-0.00903051067144,0.00937100779265,0.223835125566,-0.55284118152,0.0250231532243,0.728795630588,-0.403233677481 -1469731636250224157,-0.00898133497685,0.00936639029533,0.223392799497,-0.554431690513,0.0247488182951,0.728414145543,-0.401753443197 -1469731636327588821,-0.00898995064199,0.00934714637697,0.22272837162,-0.538850749903,0.0227920391208,0.728431085373,-0.422502717321 -1469731636406455022,-0.00901177339256,0.00934709981084,0.222316130996,-0.534350576722,0.023565962658,0.729515984325,-0.426286916496 -1469731636489216312,-0.00898552779108,0.00932457204908,0.221849098802,-0.540826427737,0.0245266214451,0.729612015374,-0.417817576131 -1469731636570506488,-0.0089234597981,0.00926152523607,0.221442252398,-0.550077773954,0.0246427350096,0.728763497294,-0.407076090215 -1469731636650404518,-0.00892033241689,0.00924902688712,0.221254706383,-0.545164956642,0.024473202745,0.729035943782,-0.413161984057 -1469731636737843107,-0.00893049687147,0.00924537330866,0.220921725035,-0.518989812616,0.023398600293,0.730648114547,-0.443007237655 -1469731636815993316,-0.00894168950617,0.00923750828952,0.220738917589,-0.519740870684,0.0236157587742,0.730828384649,-0.441816246271 -1469731636893703076,-0.00898822583258,0.00923328939825,0.220363244414,-0.529405645641,0.0227356535738,0.729346026427,-0.432743718794 -1469731636973115045,-0.00893871579319,0.00910885911435,0.219999432564,-0.54788182457,0.0253442337968,0.72962438582,-0.40845003579 -1469731637051799200,-0.00894190557301,0.0091102020815,0.219987094402,-0.543396689556,0.0252437031833,0.73007904733,-0.413602922956 -1469731637129267249,-0.00894024409354,0.00918334070593,0.219881147146,-0.548677412038,0.0244792468165,0.728951052095,-0.408637036555 -1469731637211217828,-0.00889464374632,0.00930899754167,0.219624593854,-0.555295458658,0.025242675873,0.728642905643,-0.400111580643 -1469731637290283561,-0.00891967210919,0.0093805603683,0.219436600804,-0.537856893408,0.0238351247542,0.729272102691,-0.422260641402 -1469731637369762641,-0.00885563064367,0.00932768266648,0.219308644533,-0.547293177046,0.0267692890493,0.730371768876,-0.407812043411 -1469731637450776986,-0.00887804292142,0.00921005941927,0.219271406531,-0.54570809362,0.0256754057198,0.729839383785,-0.410947592736 -1469731637529578630,-0.00896694790572,0.00930969417095,0.219029411674,-0.52855487454,0.0223876453535,0.729118190931,-0.43418337323 -1469731637607647852,-0.00897361245006,0.00950558390468,0.218704342842,-0.544957976584,0.0240225453705,0.728824012109,-0.413834846822 -1469731637688603195,-0.00895354617387,0.00965252239257,0.218452498317,-0.554213559551,0.0248853567923,0.728679394596,-0.401564925408 -1469731637763838547,-0.00895366910845,0.0098361633718,0.218128055334,-0.534783105287,0.0225630613672,0.728926498186,-0.426806863584 -1469731637838365131,-0.00885924696922,0.00988566409796,0.217744529247,-0.541798157395,0.0243431493148,0.729457690482,-0.416837672867 -1469731637918575019,-0.00875753816217,0.00986434984952,0.217402011156,-0.553817239361,0.0251439180281,0.728777083662,-0.401918164684 -1469731637998804330,-0.00872460473329,0.00991962756962,0.21680252254,-0.520500683017,0.0221663951712,0.729941202689,-0.442463027293 -1469731638075825526,-0.00867785699666,0.0098021319136,0.216272339225,-0.535094957722,0.0225421538715,0.728769745222,-0.426684773537 -1469731638154428283,-0.00865186564624,0.00976697262377,0.216038405895,-0.532045516971,0.0225436869198,0.729104674724,-0.429913623123 -1469731638232684649,-0.00864272471517,0.00967533886433,0.215470045805,-0.527530707509,0.0222508101779,0.729442627068,-0.434890455055 -1469731638312511163,-0.00857517123222,0.00951388012618,0.214979618788,-0.534704664884,0.0231558768103,0.729521064715,-0.425856481526 -1469731638393383430,-0.00852313172072,0.00936712883413,0.214759767056,-0.541193223566,0.0240930537419,0.729528358669,-0.417513824233 -1469731638470863825,-0.00850439071655,0.00926569569856,0.21460364759,-0.544969208746,0.0242789064799,0.729256388472,-0.413042632294 -1469731638548075669,-0.0084993718192,0.00921387411654,0.214426890016,-0.554199071198,0.0246072071812,0.728619691481,-0.401710368331 -1469731638627253478,-0.00854223407805,0.00915285851806,0.214007005095,-0.541840616825,0.0250416786545,0.730273021427,-0.415310696304 -1469731638707444638,-0.00862463004887,0.00913715362549,0.213860332966,-0.538563483849,0.0239006684614,0.729757908002,-0.420513409561 -1469731638792522917,-0.00862211268395,0.00919489562511,0.213762447238,-0.526497923522,0.0230409323118,0.730293457071,-0.434672886806 -1469731638873148606,-0.00860460940748,0.00914474762976,0.213784322143,-0.539842985118,0.0238142675026,0.729394685533,-0.419506644523 -1469731638949496599,-0.00857435166836,0.00893513299525,0.213501498103,-0.5401302201,0.0242524894418,0.72983837266,-0.418338513508 -1469731639026112961,-0.00861983094364,0.00879306625575,0.213437601924,-0.535508950127,0.0216080415225,0.728186866316,-0.427208549306 -1469731639103995342,-0.00865604169667,0.0087360618636,0.213452845812,-0.520714389397,0.0205461517848,0.728585606678,-0.444519284242 -1469731639179178584,-0.00863891188055,0.00872268527746,0.21340662241,-0.528931416672,0.0208121391333,0.72814225628,-0.435439164456 -1469731639254668656,-0.00863909441978,0.00872428156435,0.213418513536,-0.528461225219,0.0208894481252,0.728163209945,-0.435970989952 -1469731639334153373,-0.00862010382116,0.00878192856908,0.213413119316,-0.53635922788,0.0222404082904,0.728520823458,-0.425536781835 -1469731639413125685,-0.00860191881657,0.00882707070559,0.213443160057,-0.547862392582,0.023550686796,0.728462853951,-0.410650744988 -1469731639497491497,-0.00856521073729,0.00883478950709,0.213345378637,-0.552368297645,0.0246548842634,0.72890051102,-0.403714559403 -1469731639582235883,-0.0085671255365,0.00887622218579,0.213359743357,-0.54820617342,0.0246727741274,0.729365058521,-0.408519102429 -1469731639658802712,-0.00859721563756,0.0087802875787,0.213274911046,-0.551673762601,0.0231131653895,0.72781062818,-0.406710622865 -1469731639735641015,-0.00862082280219,0.00869733653963,0.213104248047,-0.540617027689,0.0222495743259,0.728176550552,-0.420710229306 -1469731639819368070,-0.00866420473903,0.00865991134197,0.212957516313,-0.536600785995,0.0218127235821,0.72834433834,-0.425556490219 -1469731639898504364,-0.00866262055933,0.00866325199604,0.212913274765,-0.542269682938,0.0221838385449,0.728095949325,-0.418721574378 -1469731639975188728,-0.00868279393762,0.00869200378656,0.212899014354,-0.531279262247,0.0219025655088,0.728815269539,-0.431382575005 -1469731640051805819,-0.00867228396237,0.0087326541543,0.212855041027,-0.534929322404,0.0230540332342,0.729360822693,-0.425854343532 -1469731640130288794,-0.00862511340529,0.00884252600372,0.213138252497,-0.560967168772,0.0246226865772,0.728017138579,-0.393319977628 -1469731640208762714,-0.00858012959361,0.0091624353081,0.213313639164,-0.540832385978,0.023128825788,0.728961800999,-0.41902276833 -1469731640283526316,-0.00851046387106,0.00933494139463,0.213268712163,-0.5507801363,0.0247237244212,0.729027831616,-0.405645657731 -1469731640362430792,-0.00849212054163,0.00939057394862,0.213058114052,-0.53663056653,0.0232313264155,0.729330624683,-0.423750847124 -1469731640442005767,-0.00845780596137,0.00935695692897,0.212975472212,-0.544415171413,0.0241134066964,0.72922955931,-0.413829571904 -1469731640523746942,-0.00842425040901,0.00924247410148,0.212836921215,-0.554646530664,0.0246475872742,0.728518890961,-0.401272909598 -1469731640601873751,-0.00842202827334,0.0092105017975,0.212708726525,-0.544254933977,0.0242868731097,0.729238040454,-0.414015211062 -1469731640678524297,-0.00842269230634,0.0091900229454,0.212706372142,-0.548487861263,0.0239215700125,0.728437593823,-0.409838378438 -1469731640767340926,-0.00840502046049,0.00921168550849,0.212643921375,-0.540782279313,0.024037412938,0.729445654626,-0.418193455361 -1469731640847917748,-0.00839413236827,0.00923009868711,0.21254105866,-0.547476788652,0.024099750633,0.728828130082,-0.410484987188 -1469731640921576510,-0.00841486733407,0.00921505782753,0.212530374527,-0.540819590942,0.0224263210816,0.72806255538,-0.420637784358 -1469731641002367559,-0.00840543583035,0.00920868013054,0.212531492114,-0.550573889937,0.0233384287541,0.727859640432,-0.408098092734 -1469731641082811626,-0.00839107856154,0.00917927082628,0.21247497201,-0.554729769331,0.0232946383209,0.727396049888,-0.403270665249 -1469731641164148325,-0.0083691328764,0.00889624189585,0.211657881737,-0.545350438038,0.0238955219861,0.728763917788,-0.413430835679 -1469731641241681817,-0.00838940776885,0.00879344157875,0.211137712002,-0.533468736376,0.0234812323208,0.729640611867,-0.427181830786 -1469731641317484675,-0.00834744703025,0.00854192953557,0.210714697838,-0.551038388065,0.0230040448563,0.727678101802,-0.407813792014 -1469731641397647676,-0.00839908793569,0.00844132713974,0.209810391068,-0.548452842891,0.0232333732946,0.727860025194,-0.410949477692 -1469731641479817720,-0.00829229224473,0.00843967683613,0.209264680743,-0.551498500963,0.0246709124488,0.728850553974,-0.404990888151 -1469731641555980354,-0.00831302441657,0.00838827062398,0.208860173821,-0.528852409694,0.0221787454671,0.728951196858,-0.434112179753 -1469731641635468061,-0.00834526307881,0.00839425995946,0.208130374551,-0.533526381445,0.0223110026017,0.728728981597,-0.428725892437 -1469731641715612691,-0.00827637221664,0.00838942360133,0.207637652755,-0.552583863266,0.0239553015878,0.728133459417,-0.404844269888 -1469731641793828248,-0.00828049331903,0.00840692035854,0.207301780581,-0.540326885221,0.0223365556201,0.728180829255,-0.421070796061 -1469731641872685131,-0.00829910021275,0.00839611608535,0.206612303853,-0.529222040692,0.0221514195699,0.72902426411,-0.433540042668 -1469731641948896550,-0.00824961159378,0.00838626269251,0.206018179655,-0.549676368971,0.0240400307353,0.728459757758,-0.408196457167 -1469731642026155664,-0.00826306175441,0.00840517412871,0.205765292048,-0.535510681758,0.0220465497489,0.728301554473,-0.426988413332 -1469731642106064095,-0.00828015245497,0.00841526687145,0.205033913255,-0.54632850826,0.0234741381815,0.7284254762,-0.412759556548 -1469731642182592070,-0.00823720637709,0.00840754713863,0.204608678818,-0.554129674367,0.0245490807171,0.728441155808,-0.402133223132 -1469731642260856531,-0.00818741787225,0.00840532500297,0.204262539744,-0.55519102527,0.0248855452869,0.728403062615,-0.400715127576 -1469731642336684111,-0.00822755042464,0.00842157006264,0.20365768671,-0.536404525573,0.0227473537294,0.728696741175,-0.425151505047 -1469731642413468677,-0.00825175922364,0.00838467478752,0.203453570604,-0.548827295506,0.0231864453842,0.727880073125,-0.410416358843 -1469731642490161664,-0.00823936518282,0.00838267244399,0.20328463614,-0.552906231193,0.0235370177231,0.727787187088,-0.405051254306 -1469731642568715924,-0.00823984201998,0.00839578267187,0.203136652708,-0.547644850149,0.0233045759093,0.728095489035,-0.411605361595 -1469731642648593334,-0.00822949316353,0.00840072147548,0.203104987741,-0.551508199825,0.0235015368905,0.727871961924,-0.406803134618 -1469731642726530002,-0.00817335862666,0.00841600541025,0.202922269702,-0.557504955165,0.0248214247396,0.728253573913,-0.39776733642 -1469731642802813702,-0.00820545107126,0.00844089500606,0.202658265829,-0.534780066033,0.0227656020344,0.728875988915,-0.426886168809 -1469731642881153274,-0.00817975122482,0.00848669465631,0.202152654529,-0.541675390207,0.0234962795019,0.728930572496,-0.417966406514 -1469731642961248255,-0.00819117669016,0.0085068475455,0.201672941446,-0.544571705937,0.0234149282011,0.728515399304,-0.414920126298 -1469731643041157407,-0.00815667398274,0.00855044089258,0.20125541091,-0.547094819557,0.0222151155625,0.727393402385,-0.413633394712 -1469731643117023164,-0.00806062482297,0.00862261094153,0.200954958797,-0.549238204,0.0237270724795,0.728309136827,-0.409072392753 -1469731643199618106,-0.00803421158344,0.00862828083336,0.200808912516,-0.553316522934,0.0234800847275,0.727808973539,-0.404454705875 -1469731643276875289,-0.00801483821124,0.00867950636894,0.200603425503,-0.549935245794,0.0220722408367,0.727118487563,-0.41034466813 +1469733891295229054,-0.0262244250625,-0.0784310102463,1.12546265125,-0.0976259718543,0.0182482511282,0.841243815793,-0.531455561021 +1469733891414587641,-0.0262125954032,-0.0785312876105,1.12684452534,-0.0880341708204,0.0163552042929,0.840612052816,-0.534185238209 +1469733891494910276,-0.0262669045478,-0.0784791111946,1.12612223625,-0.100830291684,0.0188166569995,0.840845489812,-0.531467824013 +1469733891572916647,-0.0263029765338,-0.0785244703293,1.12674403191,-0.098493530414,0.0183254206714,0.840480811042,-0.532499023185 +1469733891651787157,-0.0262976456434,-0.078575193882,1.12744355202,-0.0930289599233,0.0172537118472,0.840173180098,-0.534000889031 +1469733891730965928,-0.0262637417763,-0.0784770846367,1.12609481812,-0.097403382696,0.0181658572657,0.840890304461,-0.532058341287 +1469733891807794437,-0.0262191183865,-0.0785337984562,1.12688338757,-0.0842478695354,0.0156521599887,0.840713097227,-0.534657642344 +1469733891890366092,-0.0262421350926,-0.0786788761616,1.12887358665,-0.083010642531,0.0153028888711,0.839543428418,-0.536695338735 +1469733891966894590,-0.0259523708373,-0.0787277519703,1.12889695168,-0.0528241022091,0.0109638944153,0.840910871263,-0.538477774692 +1469733892052147098,-0.0254834946245,-0.07975564152,1.12519550323,-0.0608010516558,0.0206650007972,0.847033977578,-0.52764536451 +1469733892130134118,-0.0257268920541,-0.0805289000273,1.1144849062,-0.0410696555662,0.00792933371475,0.590036284979,0.806292497464 +1469733892210184831,-0.0257381275296,-0.0805611908436,1.11438536644,-0.0187361004428,0.00486753981177,0.59115190792,0.806327903125 +1469733892286451748,-0.0255496166646,-0.0789301097393,1.11201012135,-0.142374076324,0.0336622404742,0.839283620241,-0.523640602658 +1469733892364387338,-0.0253495182842,-0.0773210003972,1.10540056229,-0.184442502653,0.0461479681842,0.837649485017,-0.512049478564 +1469733892442664752,-0.0255518201739,-0.0755709856749,1.09826564789,-0.00936283047229,0.00171020840485,0.840854363443,-0.541177745359 +1469733892518776800,-0.0255859550089,-0.0736772567034,1.08389103413,-0.0797621776443,0.0138076555579,0.83111779061,-0.550173210723 +1469733892599144646,-0.0251223258674,-0.0715509280562,1.06986856461,-0.228041882851,0.0571133186603,0.841464831938,-0.48648936793 +1469733892683802558,-0.0251166857779,-0.0709241703153,1.07217597961,-0.159057426453,0.0316018337876,0.836209373638,-0.523885428917 +1469733892763600417,-0.0248188022524,-0.0694485455751,1.06502318382,-0.149114679814,0.0293725748783,0.82898206679,-0.538229316416 +1469733892844214003,-0.0246534403414,-0.0676822438836,1.05789446831,-0.0924374523297,0.0230317522752,0.835809578655,-0.540691412936 +1469733892921285768,-0.0246358048171,-0.0669708922505,1.05237925053,0.0149023074512,-0.00196463697098,0.833561156282,-0.552222654527 +1469733893000249826,-0.0242803748697,-0.0656821429729,1.0422552824,-0.0999656349411,0.0215756337019,0.827662920559,-0.551829188965 +1469733893077938406,-0.0239036269486,-0.0640199705958,1.02749359608,-0.154660825775,0.0359412402385,0.840344396097,-0.518275556213 +1469733893154237395,-0.0237773396075,-0.0623991042376,1.02218747139,-0.110025040443,0.0197504235121,0.836660304094,-0.536193945135 +1469733893232500096,-0.0233689770103,-0.0614202953875,1.01674973965,-0.129175642213,0.0254215526437,0.8246469362,-0.550113468964 +1469733893307610144,-0.0231737941504,-0.06062322855,1.01258003712,-0.195479271726,0.0401989664866,0.822409613671,-0.532742268607 +1469733893381802348,-0.0231388173997,-0.058685079217,1.00362718105,-0.0627365487197,0.0118649349668,0.832831093709,-0.549832445499 +1469733893464650184,-0.0228994693607,-0.0573768280447,0.989356935024,-0.140679863916,0.0314927003794,0.834746027651,-0.53142869233 +1469733893542390853,-0.022713990882,-0.0561860799789,0.978073954582,-0.17102233109,0.0337310454396,0.830876191329,-0.528448988574 +1469733893620942564,-0.0225519705564,-0.0556691065431,0.974918723106,-0.0401265987691,0.00290354783009,-0.600193809934,-0.798842172145 +1469733893701178034,-0.0225235652179,-0.0553783737123,0.974335670471,-0.0445069827361,0.00326373072646,-0.600109843077,-0.798671805432 +1469733893777169716,-0.0222982466221,-0.0534660965204,0.970996558666,-0.0803737287991,0.0126939415461,0.821406670793,-0.56450864364 +1469733893865140646,-0.0218901541084,-0.0522133633494,0.961936235428,-0.157278327447,0.0252443844344,0.812324817503,-0.561029981052 +1469733893942655560,-0.021699776873,-0.0501549839973,0.950056672096,-0.142888390872,0.0307345933232,0.828339118363,-0.540825847679 +1469733894016400069,-0.0215302929282,-0.0486837215722,0.937179088593,-0.184116811151,0.0358157201783,0.82080970719,-0.539527254754 +1469733894095127264,-0.0211491230875,-0.0472347997129,0.92924028635,-0.174747671382,0.0373097981447,0.830756205426,-0.52717678008 +1469733894171694560,-0.0211023706943,-0.0463506393135,0.92863702774,-0.138883437194,0.0228224385231,0.820846180382,-0.553535974735 +1469733894247952180,-0.0208968184888,-0.0446893759072,0.91912996769,-0.142639956966,0.0277353464808,0.821937147343,-0.55073035058 +1469733894327472491,-0.0210821237415,-0.0429836586118,0.909201562405,-0.0749501909487,0.0118726072749,0.822794494543,-0.563250148534 +1469733894402575772,-0.0208648964763,-0.0423066243529,0.901143670082,-0.218739108197,0.0416289974645,0.820819302793,-0.525999906157 +1469733894479995095,-0.0207602083683,-0.0405568256974,0.900053799152,-0.191421179743,0.0354414469619,0.817009526185,-0.542768154837 +1469733894555076965,-0.0207751616836,-0.038945324719,0.888828635216,-0.124165242035,0.0272860929352,0.816452825051,-0.563243505305 +1469733894638516678,-0.0207240600139,-0.0370411016047,0.877786338329,-0.149871213099,0.0241969799105,0.815990626275,-0.557774527456 +1469733894714860658,-0.0205723885447,-0.0353708639741,0.875296473503,-0.137582876806,0.0209403142325,0.81713759609,-0.559391280148 +1469733894795926495,-0.0204954985529,-0.0342343300581,0.867089450359,-0.101601921502,0.0161243854504,0.811493702013,-0.575234756716 +1469733894873023928,-0.0204375125468,-0.0328410640359,0.860584914684,-0.14884142959,0.0295552173159,0.821507180933,-0.549635033129 +1469733894949151764,-0.0204697754234,-0.0316566415131,0.852991521358,-0.188737350621,0.0279521586023,0.804609237977,-0.56231740456 +1469733895024941439,-0.0204753801227,-0.0300742331892,0.851474940777,-0.0642486762527,0.00848793112237,0.804047313039,-0.591022826141 +1469733895103591826,-0.0204486791044,-0.028532454744,0.839174211025,-0.0587317692914,0.0121390547454,0.809995564663,-0.583361301298 +1469733895179187707,-0.020482795313,-0.0272238906473,0.832490622997,-0.102592811761,0.0140370781893,0.807411660792,-0.580830513514 +1469733895258180646,-0.0205228868872,-0.025462448597,0.820893466473,-0.0914454013068,0.0169034982155,0.818474254235,-0.566967287841 +1469733895348435829,-0.020325275138,-0.0240221489221,0.811077952385,-0.275585622284,0.0469187356734,0.805804049473,-0.522045046798 +1469733895428274462,-0.0205516871065,-0.0223367642611,0.806427657604,-0.137075696301,0.021967536697,0.807224865862,-0.573686061142 +1469733895505020639,-0.0204727407545,-0.0210191663355,0.799697875977,-0.181420398587,0.0344493178063,0.818051921107,-0.544693434743 +1469733895585897157,-0.0203737206757,-0.0193141885102,0.794186651707,-0.203978709132,0.033547561748,0.809100764546,-0.550111988719 +1469733895661531693,-0.0201075300574,-0.017200127244,0.787762880325,-0.155721323408,0.0276012374147,0.810663028223,-0.563750384303 +1469733895740165343,-0.0200521573424,-0.0152232469991,0.777934372425,-0.134892650339,0.0235405334226,0.813708700994,-0.564914122763 +1469733895814077789,-0.0198732614517,-0.0131858913228,0.77003133297,-0.154180646233,0.0224683864819,0.807895237076,-0.568356213871 +1469733895887950913,-0.0196299497038,-0.0111809596419,0.763576865196,-0.0516861454978,0.00701160303806,0.79905780694,-0.598987479798 +1469733895970336501,-0.0192605033517,-0.00833327230066,0.753744721413,-0.100380269007,0.0161248479803,0.811037570254,-0.576091876794 +1469733896047931426,-0.0190117508173,-0.0061859455891,0.744505405426,-0.222263677042,0.0342467967166,0.80080176297,-0.555105891885 +1469733896125051869,-0.0187761485577,-0.00358719285578,0.739840745926,-0.192884544479,0.0304910854196,0.80270835509,-0.563493693736 +1469733896200046657,-0.0186496675014,-0.001537716249,0.729528129101,-0.178158106172,0.0272765101656,0.799948295662,-0.57236212791 +1469733896275722732,-0.0186071861535,-0.000204421652597,0.72579395771,-0.182687738982,0.0277789124292,0.802302673811,-0.567594874576 +1469733896354713571,-0.01845340617,0.00204560067505,0.718523621559,-0.221706595124,0.0355003310527,0.80178193593,-0.553833584563 +1469733896431236145,-0.0185332223773,0.00426008878276,0.710101902485,-0.0397521595697,0.00484873108732,0.801400590393,-0.596785848805 +1469733896509695830,-0.0183363482356,0.00645089056343,0.700640559196,-0.183947679303,0.0300429966884,0.803560634026,-0.56528840168 +1469733896584830599,-0.0184080563486,0.00867850333452,0.692239940166,-0.231457113733,0.0333536550215,0.798004522826,-0.555431291654 +1469733896659932077,-0.0185233429074,0.0112773980945,0.686399161816,-0.113805704258,0.0160175256363,0.799446943718,-0.589640809926 +1469733896738559582,-0.018286511302,0.0137746473774,0.677761077881,-0.177296989142,0.0257823595802,0.799802642395,-0.572902069113 +1469733896828612012,-0.0182513240725,0.0150700872764,0.675440728664,-0.137326138826,0.0174036774038,0.79749778014,-0.5872273276 +1469733896906595687,-0.0181488301605,0.0176066998392,0.66632527113,-0.146268583111,0.0214932593951,0.800025712185,-0.581465735222 +1469733896985194909,-0.0179776828736,0.0199165549129,0.65804463625,-0.237771855415,0.0354002310738,0.79544768837,-0.556304182512 +1469733897061354956,-0.0178619548678,0.0223000030965,0.648968100548,-0.192452384616,0.0293138579673,0.797027435004,-0.571708006973 +1469733897135200004,-0.0178654529154,0.024929407984,0.642724573612,-0.165647512071,0.0229294724896,0.796358611702,-0.581247023737 +1469733897209463635,-0.0178353395313,0.0272723697126,0.633945763111,-0.225169649785,0.0294477304075,0.793102468521,-0.565172482004 +1469733897287083700,-0.0177554469556,0.0296207889915,0.625143706799,-0.115801579584,0.0153859851911,0.795191034973,-0.594999565987 +1469733897363371532,-0.0176783800125,0.0319382064044,0.617297053337,-0.168851801742,0.0214949958529,0.791316617066,-0.587235085597 +1469733897438365843,-0.0176255553961,0.0330378226936,0.6129758358,-0.158192243918,0.0203700101397,0.791390447654,-0.590136794323 +1469733897517843754,-0.0173945277929,0.0357356444001,0.605149269104,-0.224417603679,0.0301800080074,0.791167074539,-0.568137805855 +1469733897594417627,-0.0173552073538,0.0382182411849,0.597375452518,-0.188314780768,0.0238350465888,0.789985130266,-0.58300336865 +1469733897677205137,-0.0173440668732,0.0403508506715,0.589840948582,-0.1659094485,0.0202422371745,0.786426773065,-0.59464042693 +1469733897759407517,-0.0171753745526,0.0425086021423,0.580747246742,-0.172037533884,0.0206302446137,0.785146105803,-0.594578062566 +1469733897836591339,-0.0170211195946,0.044527284801,0.572733938694,-0.235749960629,0.0286813146078,0.784657152749,-0.572636438672 +1469733897916434952,-0.016839640215,0.0453789420426,0.567927956581,-0.254257683881,0.0334474071964,0.788208326605,-0.559430009036 +1469733897989157971,-0.01676049456,0.0470544062555,0.560510516167,-0.226636371826,0.0262468375799,0.782693781821,-0.579083329394 +1469733898068511056,-0.016612669453,0.0486604608595,0.55217987299,-0.195461819618,0.0230754793894,0.785150701065,-0.58719722065 +1469733898148947058,-0.0165076814592,0.0502948723733,0.544478297234,-0.185292875768,0.0221534607561,0.785388429595,-0.590204023219 +1469733898225552697,-0.0162418130785,0.0515886358917,0.535994708538,-0.273613995028,0.0328729084018,0.78266275341,-0.558116267495 +1469733898303905924,-0.0161450244486,0.0528510585427,0.528386890888,-0.219159881092,0.0232917706057,0.778901631163,-0.587144521318 +1469733898393787902,-0.0160122159868,0.0542366802692,0.520238816738,-0.189245515192,0.0212797554999,0.782458525005,-0.59286757681 +1469733898470025724,-0.0159162729979,0.0550065338612,0.511595666409,-0.195885119253,0.0209911592916,0.778775602582,-0.595564397954 +1469733898549069376,-0.0157067086548,0.0559705458581,0.503762841225,-0.221443747612,0.0261349159143,0.779383568869,-0.58552616115 +1469733898626466980,-0.015779780224,0.0564321316779,0.500373840332,-0.225619384114,0.0218324648659,0.774073488814,-0.591125596557 +1469733898705544060,-0.0155387427658,0.0572608970106,0.491425007582,-0.244501625655,0.0265823842435,0.776657777043,-0.579926744736 +1469733898786736816,-0.0153892468661,0.0580768659711,0.483195275068,-0.236972194098,0.0255620756367,0.779318883226,-0.579528116454 +1469733898873721462,-0.0152990045026,0.0586817935109,0.475593537092,-0.206639470462,0.0209642585865,0.776533306332,-0.594858515335 +1469733898950049281,-0.0151505256072,0.0591618865728,0.467483401299,-0.222452286919,0.0227360647009,0.776001842343,-0.589761979181 +1469733899029822934,-0.0149343693629,0.0593862608075,0.458763659,-0.267673490939,0.0281591903609,0.775113316795,-0.571626896125 +1469733899112775301,-0.0147799607366,0.059733916074,0.450703859329,-0.260343914841,0.0263057408635,0.773123677933,-0.577761916902 +1469733899188599158,-0.014588156715,0.0600936822593,0.442576915026,-0.285462881831,0.0288313704877,0.772345366077,-0.566711858594 +1469733899269723122,-0.0143807502463,0.0603500008583,0.435043305159,-0.313754658509,0.0300856781342,0.767936468522,-0.557607789176 +1469733899349450754,-0.0143020031974,0.0604706220329,0.426589995623,-0.273065434206,0.0252523968383,0.76928419044,-0.577061018815 +1469733899427273631,-0.0141826858744,0.0607332028449,0.418807983398,-0.232247618509,0.0213470226879,0.770651247304,-0.593044689166 +1469733899507754018,-0.013971443288,0.0607395544648,0.410737395287,-0.258109627286,0.0244544938602,0.768859287491,-0.58449704368 +1469733899594667072,-0.0138115501031,0.0606620945036,0.402385294437,-0.280500374816,0.0239811639261,0.766105799917,-0.577777073653 +1469733899677877078,-0.0136046539992,0.0607889555395,0.39453342557,-0.272644429998,0.0250845087927,0.767543385912,-0.579579962518 +1469733899760361432,-0.0135704344139,0.0606882311404,0.390523523092,-0.271689277548,0.0230933468735,0.765334106869,-0.583022588463 +1469733899840741500,-0.0133052999154,0.0603669956326,0.382128953934,-0.274249990864,0.0236735739037,0.764243977478,-0.583230355262 +1469733899920277035,-0.013051870279,0.0602163039148,0.374208688736,-0.286100364729,0.0257762845802,0.765461333912,-0.575804750536 +1469733899996560517,-0.0129059134051,0.0599767155945,0.366207629442,-0.274094380234,0.0234326640745,0.765153817833,-0.582119245545 +1469733900075591145,-0.0127174034715,0.0595482364297,0.357871115208,-0.289731026609,0.0240116314491,0.763701275932,-0.576402407104 +1469733900163334610,-0.0124707780778,0.0591729097068,0.350351810455,-0.269144448207,0.0213868067527,0.761484860165,-0.58927470524 +1469733900254630653,-0.0122521594167,0.0586891882122,0.34190043807,-0.292628763607,0.0235791066579,0.761706460625,-0.577594754374 +1469733900335977824,-0.0120466351509,0.0582154504955,0.333798855543,-0.305348956272,0.0246113614037,0.761443663659,-0.571279128681 +1469733900412278527,-0.0118788937107,0.0577837266028,0.325866937637,-0.302186735977,0.0234879546943,0.760105900678,-0.574778663782 +1469733900489883168,-0.0117237698287,0.0573416166008,0.317724496126,-0.309313689115,0.0241742910416,0.759952241814,-0.571150799299 +1469733900568234371,-0.0116053661332,0.0567625761032,0.309756994247,-0.304644366543,0.0237056510853,0.75846056057,-0.575645229373 +1469733900648383222,-0.0114667098969,0.0561471432447,0.301374047995,-0.309533749455,0.0240445344242,0.758334579289,-0.573183551898 +1469733900723375204,-0.0112722106278,0.0555982775986,0.293416976929,-0.331789236471,0.0245388144163,0.75608886895,-0.563598590665 +1469733900808105077,-0.0110810501501,0.0551144815981,0.285469889641,-0.312690735811,0.02308239186,0.756817773561,-0.573514223491 +1469733900890306642,-0.0109697859734,0.054145604372,0.275505393744,-0.320853769831,0.0224189621174,0.754590213338,-0.571964910163 +1469733900963768424,-0.0108224563301,0.0538704879582,0.270161300898,-0.323994760011,0.0223465637268,0.753954275378,-0.571035005245 +1469733901042740448,-0.0107680000365,0.054092142731,0.267740607262,-0.343914615541,0.0250208913777,0.754497853493,-0.558417121234 +1469733901120366031,-0.0108015043661,0.0541997589171,0.267950803041,-0.345684042478,0.0243323036356,0.753650219518,-0.558499622557 +1469733901201969591,-0.0107971606776,0.0550699494779,0.268243998289,-0.325029057085,0.0231979284201,0.755285333217,-0.568649306335 +1469733901277177369,-0.0106709282845,0.0547571219504,0.267080545425,-0.362205885006,0.0269643755763,0.753769717055,-0.547641336066 +1469733901357895040,-0.010694893077,0.0540652647614,0.266376554966,-0.339633151566,0.0248660446276,0.754639186287,-0.560848197556 +1469733901433648654,-0.0107076847926,0.0536507330835,0.265988826752,-0.33074330004,0.0232284256768,0.753669802365,-0.567495496653 +1469733901515984739,-0.0106457807124,0.0530964657664,0.265678822994,-0.350800823901,0.0257225859393,0.753624365675,-0.555272407008 +1469733901597611355,-0.0106615703553,0.0524064190686,0.265496730804,-0.347389318041,0.0239558321272,0.751841667563,-0.559893638768 +1469733901674873038,-0.0106305750087,0.051928319037,0.265315830708,-0.360033969527,0.0248297612613,0.751384134843,-0.552431810859 +1469733901754830124,-0.0106285857037,0.0514332652092,0.26531291008,-0.355016879543,0.0245586577693,0.751868736616,-0.555025486323 +1469733901832688336,-0.0105983931571,0.051056817174,0.265211880207,-0.374219247512,0.025907008242,0.750702324538,-0.543815043602 +1469733901914179950,-0.0106055522338,0.0505752116442,0.265220463276,-0.364454329266,0.0248300507302,0.750745342414,-0.550397984465 +1469733901993689614,-0.0106059005484,0.0500978454947,0.265258848667,-0.357675157889,0.0244263526117,0.751284124072,-0.554115511102 +1469733902072237744,-0.0105518307537,0.0493627600372,0.265021055937,-0.379960899869,0.0258347814605,0.749543038036,-0.541430986156 +1469733902149586223,-0.0105762518942,0.0488247387111,0.265003651381,-0.370188605913,0.02440981668,0.748974167361,-0.549001141646 +1469733902223877842,-0.010521040298,0.0483425147831,0.265018165112,-0.375168950602,0.0255236458422,0.750112873611,-0.543992168005 +1469733902301924029,-0.01051729545,0.0478298179805,0.265009909868,-0.374884254084,0.0255462523015,0.749868104198,-0.544524573678 +1469733902380972172,-0.0105000594631,0.0470800474286,0.264864563942,-0.389385951049,0.0251974126636,0.747240370595,-0.537936334592 +1469733902459137192,-0.0104725928977,0.0466257184744,0.264892041683,-0.397070612402,0.0257859461122,0.74718620382,-0.532337102381 +1469733902542431356,-0.0104964422062,0.0461662746966,0.264942198992,-0.383339105328,0.0247335623269,0.747438921321,-0.542009631017 +1469733902621104674,-0.0104692121968,0.0457696504891,0.264850199223,-0.400055002091,0.0251154682902,0.745638188416,-0.532305270057 +1469733902701756810,-0.0104515980929,0.0452928990126,0.264872908592,-0.397429051407,0.0257443737006,0.746881547648,-0.532499136246 +1469733902781288506,-0.0104342866689,0.0448194332421,0.264851570129,-0.396562581926,0.0261084765707,0.747588739483,-0.532134891419 +1469733902871246538,-0.010460308753,0.0443737097085,0.264985144138,-0.380005751724,0.0243956779778,0.74763954849,-0.544091522711 +1469733902950344991,-0.01040683873,0.0438270904124,0.26500171423,-0.408407091847,0.0257532133989,0.745926015219,-0.525485298698 +1469733903027502414,-0.0103729469702,0.0431298352778,0.264713525772,-0.422787695674,0.0263734395201,0.744522682913,-0.515985446212 +1469733903100409105,-0.0103903692216,0.042687933892,0.264820218086,-0.427630548491,0.0259144746008,0.743244913476,-0.51385557562 +1469733903177892355,-0.0103756878525,0.0422315523028,0.264872342348,-0.42502943932,0.0259530162078,0.743477230268,-0.515672400594 +1469733903253526967,-0.0103565482423,0.0417622961104,0.264766097069,-0.423817378301,0.0265022274032,0.744490510734,-0.515179911506 +1469733903326710914,-0.0103688212112,0.0413166955113,0.264880716801,-0.411735650499,0.0253563214363,0.744624913295,-0.524751893348 +1469733903404892029,-0.0103413891047,0.0408084020019,0.264877974987,-0.421253810561,0.0264030588214,0.744848659221,-0.5167674336 +1469733903481967420,-0.0103532653302,0.0404546447098,0.264743149281,-0.415277277492,0.0248660458924,0.74336249465,-0.523773485496 +1469733903562009806,-0.0103517752141,0.0400028675795,0.26472273469,-0.405753127095,0.0241308784371,0.743702565881,-0.530743435249 +1469733903638442486,-0.0103509733453,0.0395350754261,0.264827787876,-0.408345832244,0.0246936019139,0.744075911221,-0.528199721369 +1469733903717028610,-0.0103057734668,0.038940295577,0.264643996954,-0.425805874211,0.0253523728396,0.743304820818,-0.515310157116 +1469733903797688650,-0.0103067252785,0.0383733771741,0.264517068863,-0.425877851147,0.0249124981289,0.742726607326,-0.516105231624 +1469733903883704644,-0.0102839544415,0.0378511697054,0.264494806528,-0.437797583947,0.0263218664301,0.74237925687,-0.5064715923 +1469733903962515339,-0.010263286531,0.0373572781682,0.264484703541,-0.438246315868,0.026911804103,0.742564873949,-0.505779921908 +1469733904039385118,-0.0103035690263,0.0372175648808,0.264618754387,-0.414184550705,0.0239011033088,0.742922575388,-0.525305570308 +1469733904117028420,-0.0103031145409,0.0366861484945,0.264540702105,-0.41850252911,0.0234687500189,0.741955699635,-0.523265315763 +1469733904191109873,-0.0102755045518,0.036228787154,0.26460698247,-0.427526745267,0.0241932373422,0.741651610102,-0.516322049289 +1469733904277438106,-0.0102913212031,0.0357395745814,0.264521360397,-0.421517365072,0.0238051975682,0.741761036161,-0.521101706719 +1469733904354910498,-0.0102744577453,0.0353114083409,0.264566957951,-0.433311221586,0.0242714402611,0.740761630988,-0.512761629308 +1469733904430613915,-0.0102241523564,0.0347237288952,0.263599842787,-0.446956482563,0.0236254136297,0.737996660665,-0.505007595363 +1469733904504235600,-0.0102015770972,0.0343421064317,0.262117505074,-0.424848410843,0.0231963750261,0.739896214274,-0.521075184682 +1469733904577931534,-0.0101975891739,0.0339206382632,0.261711895466,-0.426555054229,0.0233069867875,0.739743767175,-0.519891074173 +1469733904656599945,-0.0101977754384,0.0335390865803,0.263211578131,-0.491063100962,0.0267985565918,0.736902400158,-0.463803536942 +1469733904734112481,-0.0102730607614,0.0332859195769,0.264062255621,-0.461543313874,0.0255628260269,0.738784225694,-0.490430605906 +1469733904814067514,-0.0102528166026,0.033083088696,0.26433417201,-0.449176574591,0.0251630190032,0.739745413422,-0.50038380333 +1469733904890266618,-0.0102639487013,0.032817363739,0.264533698559,-0.429783829189,0.0229511634786,0.739597153566,-0.517450630205 +1469733904980222102,-0.0102393068373,0.0324185676873,0.264521956444,-0.43129302073,0.0234454745338,0.739410754273,-0.516438163247 +1469733905059334926,-0.0101963402703,0.0320766791701,0.264450132847,-0.450922457887,0.0249817079364,0.738837353851,-0.500164188839 +1469733905137332753,-0.0102015500888,0.0317751765251,0.264588594437,-0.460223846671,0.0240722359395,0.73735278835,-0.493888047967 +1469733905213937308,-0.0101868221536,0.0315047092736,0.264560937881,-0.453282430073,0.0243088657996,0.738097372169,-0.499155673941 +1469733905289440917,-0.0102004474029,0.0313557423651,0.264588296413,-0.45641059403,0.0235441481999,0.737142581858,-0.497750797844 +1469733905363522647,-0.0101750707254,0.0309121832252,0.264577269554,-0.465378417773,0.0240501647762,0.736781072618,-0.489896079672 +1469733905450366797,-0.0101660545915,0.0307480078191,0.264473080635,-0.457924206919,0.0239477923576,0.736827020109,-0.49680767546 +1469733905525751973,-0.0101665277034,0.030493253842,0.264636069536,-0.464372213133,0.0235084111534,0.736229362758,-0.49170329233 +1469733905605362045,-0.0101596815512,0.0302029065788,0.264675229788,-0.465306596015,0.0238430011741,0.736077288514,-0.491031066567 +1469733905682750059,-0.0101292803884,0.029922015965,0.264558285475,-0.474479899937,0.0240770310651,0.7356700812,-0.482782200126 +1469733905762176762,-0.0101087819785,0.0296640321612,0.26468411088,-0.489197886727,0.0254742033688,0.735497163307,-0.46806026893 +1469733905840947835,-0.0101521862671,0.0293455570936,0.264584600925,-0.460117576086,0.0227217074513,0.735380063859,-0.496982597145 +1469733905915260007,-0.0100913438946,0.0291040018201,0.264621794224,-0.49088425057,0.02501655884,0.734962055905,-0.467159074305 +1469733905992057639,-0.0100992778316,0.0287942923605,0.264663040638,-0.49414034041,0.0246617181331,0.734299088613,-0.464781639161 +1469733906070743045,-0.0100779049098,0.0286626704037,0.264746278524,-0.504887156827,0.0251305917012,0.733808480837,-0.453852978049 +1469733906147826348,-0.0100976042449,0.0283593274653,0.2646279037,-0.496817801762,0.0242076499159,0.733476689005,-0.463247243083 +1469733906223535922,-0.0100657958537,0.0280909631401,0.264673382044,-0.508730295935,0.0252646322094,0.733111235884,-0.450669613106 +1469733906302838621,-0.0100625967607,0.0277936216444,0.264755696058,-0.513471103264,0.02549825873,0.733190146615,-0.445117370837 +1469733906375520164,-0.0100684380159,0.02748519741,0.264665156603,-0.507890916792,0.0244352419814,0.732662839008,-0.452387997107 +1469733906452663467,-0.0100420704111,0.0272338986397,0.264717012644,-0.518602849238,0.0257188962149,0.732712739342,-0.439910973659 +1469733906533523635,-0.0100879659876,0.0269291736186,0.264743953943,-0.497595494893,0.0227063818204,0.732450801254,-0.464110943018 +1469733906611588917,-0.0100383441895,0.0267846155912,0.264692723751,-0.520501503288,0.0259145075976,0.732567162425,-0.437894937065 +1469733906686870389,-0.0100315269083,0.0264741349965,0.26459428668,-0.51766839987,0.0257195251517,0.732957920402,-0.440602565497 +1469733906759619143,-0.0100408131257,0.0261012855917,0.264648377895,-0.517447736173,0.0252740574121,0.732590537654,-0.441497640414 +1469733906831181873,-0.0100148431957,0.0257405359298,0.264607876539,-0.525218689989,0.026370605985,0.732530079306,-0.432261034258 +1469733906905462327,-0.00999036245048,0.0253217611462,0.264562308788,-0.527354927989,0.0273120941424,0.733015991339,-0.428763787977 +1469733906982680689,-0.0100317038596,0.0249788276851,0.26463842392,-0.520361976879,0.0258063285864,0.732549541656,-0.438096582323 +1469733907058163296,-0.0100519647822,0.0247763283551,0.26467615366,-0.519298341932,0.0249167210733,0.731913196292,-0.440467322478 +1469733907139832342,-0.00999476015568,0.0243643037975,0.264519810677,-0.525218272424,0.0268174967502,0.732726369626,-0.431901210273 +1469733907213680386,-0.0100108785555,0.0239740870893,0.264571279287,-0.522673122616,0.0261826748982,0.732566514139,-0.435285626677 +1469733907288324134,-0.0100293522701,0.0235550384969,0.264584332705,-0.517033216219,0.0250336163821,0.732243410467,-0.442571530044 +1469733907364886968,-0.0100634181872,0.0232032723725,0.264638960361,-0.494240199849,0.0226789357689,0.732580191823,-0.467481072638 +1469733907441860303,-0.0100066550076,0.0229673814029,0.264569669962,-0.522818732407,0.0260698675416,0.732477457454,-0.43526739985 +1469733907518129672,-0.00999662838876,0.0225553940982,0.264591783285,-0.525242694939,0.0270581443673,0.7329976299,-0.431395923483 +1469733907596473876,-0.00999679416418,0.0222162082791,0.264606386423,-0.520234347212,0.0264604387667,0.733190663939,-0.437135584772 +1469733907669729055,-0.0100409351289,0.0218311529607,0.264698237181,-0.500915103965,0.0239523667428,0.73316424316,-0.459326175283 +1469733907745856775,-0.010042800568,0.0215130019933,0.264677196741,-0.497041274893,0.0235190630328,0.733305891853,-0.463313386059 +1469733907824659285,-0.0100264558569,0.0211126301438,0.264654755592,-0.505009110591,0.0247513994495,0.733507131975,-0.454225113558 +1469733907897146039,-0.0100018596277,0.0209318213165,0.264605462551,-0.521727386849,0.0258849305828,0.732722365758,-0.436174780218 +1469733907982482360,-0.0100284563377,0.0206380300224,0.264694064856,-0.514661671044,0.0250221160353,0.732595778896,-0.444747886798 +1469733908056800408,-0.00997391156852,0.0202770605683,0.264551430941,-0.524948236319,0.0273730733249,0.733363466171,-0.43111261931 +1469733908137114277,-0.00999126862735,0.0199382919818,0.264613777399,-0.526105039807,0.0267639102972,0.732876452221,-0.430568561295 +1469733908212782562,-0.0100207300857,0.0196825265884,0.264717549086,-0.513560592766,0.024737741591,0.732574374618,-0.446069890659 +1469733908295018191,-0.00999036990106,0.0193617194891,0.264528930187,-0.514009509595,0.0261654022148,0.733644743915,-0.443705967392 +1469733908370167325,-0.0100538069382,0.0191166549921,0.264693021774,-0.501778262636,0.0229907382811,0.732392061226,-0.459664953801 +1469733908447478564,-0.00998102221638,0.0189828518778,0.264567285776,-0.520462078553,0.0263914269981,0.733111841329,-0.437000852943 +1469733908526366508,-0.0100062806159,0.0187769792974,0.264633387327,-0.509057544432,0.0248290447826,0.733088836449,-0.45036062535 +1469733908603538016,-0.00998305622488,0.0185169894248,0.264597088099,-0.524721908265,0.0265123421221,0.732660198695,-0.432635005461 +1469733908684423061,-0.0100286118686,0.0183219313622,0.264702916145,-0.509337520146,0.024457564634,0.732794509333,-0.450543366608 +1469733908761469931,-0.0100049972534,0.0181354079396,0.264594316483,-0.513009045062,0.025129471328,0.732813263815,-0.446290207972 +1469733908842338241,-0.0100205168128,0.0179517772049,0.264685600996,-0.509432178847,0.0248101317764,0.732877422402,-0.450282129614 +1469733908918931448,-0.0100446548313,0.0177690181881,0.264692574739,-0.501357357984,0.0229619143857,0.732375905306,-0.460151152786 +1469733908994830333,-0.0100064240396,0.0176833793521,0.26454782486,-0.515870582472,0.0250427539388,0.73248100512,-0.44353351593 +1469733909073030647,-0.00995537638664,0.017533864826,0.264512389898,-0.525636550856,0.0279392021349,0.733717380224,-0.429632893695 +1469733909153983435,-0.0100354300812,0.0173598341644,0.264662712812,-0.513685899489,0.0240479521728,0.732037819669,-0.446843510903 +1469733909230453117,-0.00998645834625,0.0171621479094,0.264478385448,-0.515331567395,0.0256905744745,0.733075913055,-0.443140018198 +1469733909309041362,-0.00998874288052,0.0169785022736,0.264584213495,-0.527828483764,0.026642224521,0.73255126707,-0.429017394419 +1469733909388112246,-0.0100430687889,0.016823599115,0.264613091946,-0.506671513072,0.0232499870907,0.732017109446,-0.454856425061 +1469733909469855187,-0.0100297154859,0.0167039074004,0.264566093683,-0.505431541808,0.0238961539646,0.732467476698,-0.455477031201 +1469733909542312486,-0.0100113777444,0.0165807157755,0.264613300562,-0.521608940873,0.0257954954033,0.73249877696,-0.436696973851 +1469733909617160519,-0.0100257294253,0.016417901963,0.264647513628,-0.517360790715,0.0245719624269,0.732090947612,-0.442466807024 +1469733909693220545,-0.0100415823981,0.0163687672466,0.264620810747,-0.517022963533,0.0236296206472,0.731292004078,-0.444230684418 +1469733909769241597,-0.0100537883118,0.0163364280015,0.264607965946,-0.509422142309,0.0230768840866,0.731603623191,-0.452451850343 +1469733909857109617,-0.010055041872,0.016243185848,0.264577656984,-0.508631601473,0.0232782169104,0.731680123108,-0.453206593122 +1469733909932646576,-0.0100069986656,0.0161751601845,0.264543920755,-0.524921190215,0.0258304160489,0.73209170788,-0.433396198556 +1469733910008373773,-0.0100133465603,0.0160976666957,0.264613747597,-0.526732369678,0.0257393597779,0.731916121739,-0.431496566418 +1469733910084177701,-0.0100208874792,0.0159549135715,0.264612078667,-0.521874644555,0.0245159159805,0.731535579208,-0.438065658991 +1469733910154478584,-0.0100727165118,0.015834633261,0.264614284039,-0.506933407356,0.0222542984327,0.731046249846,-0.456173922199 +1469733910235487230,-0.010026961565,0.0157477390021,0.26458349824,-0.521911313335,0.0249469386014,0.731590961789,-0.437905122026 +1469733910311847900,-0.0100214099512,0.015683054924,0.264575183392,-0.528486971585,0.0252640231225,0.731283404074,-0.430450732288 +1469733910392325089,-0.0100125521421,0.0155759640038,0.26460185647,-0.527684540579,0.0256002656334,0.731823453876,-0.430497484767 +1469733910467728823,-0.0100125307217,0.0155168389902,0.264594912529,-0.529975503171,0.025393966474,0.731452670822,-0.428320093916 +1469733910543986832,-0.0100460425019,0.0154577521607,0.264621257782,-0.511345623494,0.0235333862681,0.731843847136,-0.449862664013 +1469733910622878211,-0.0100784702227,0.0153748784214,0.264631658792,-0.510449261471,0.0224278051809,0.730717470444,-0.452758791639 +1469733910695867217,-0.0100543117151,0.015367012471,0.264570534229,-0.512240315081,0.023269041653,0.731311423296,-0.449724374994 +1469733910775358522,-0.0100798849016,0.0153183145449,0.264573127031,-0.504068992549,0.0219997970919,0.730946355775,-0.459508307495 +1469733910853295090,-0.0100364731625,0.0152601739392,0.264594525099,-0.526213843477,0.0247791914289,0.731094630089,-0.433573090102 +1469733910932491015,-0.0100216437131,0.0151930497959,0.264633536339,-0.533409943502,0.0258266656804,0.731314127424,-0.424248114365 +1469733911007090158,-0.00998514425009,0.0151426075026,0.264571934938,-0.54198747343,0.0275722891914,0.731777935513,-0.412298921426 +1469733911079673938,-0.0100151700899,0.0150882676244,0.264676243067,-0.539751643272,0.0263659197048,0.731090500834,-0.416508921216 +1469733911158737907,-0.0100490804762,0.0150071997195,0.26469746232,-0.528431514899,0.0242268692072,0.73062490301,-0.431694850527 +1469733911234049653,-0.0100523354486,0.0149814849719,0.264650076628,-0.519734974083,0.0236818095555,0.731048256657,-0.441455745291 +1469733911311015982,-0.0100750168785,0.0149108842015,0.264633238316,-0.510917998006,0.022481139415,0.730723707563,-0.45221705064 +1469733911387990080,-0.0100278472528,0.0147463139147,0.264614731073,-0.530751374122,0.0254694116125,0.73128507971,-0.427640526766 +1469733911462143770,-0.0100207934156,0.0146361077204,0.264630973339,-0.539484246303,0.0257387885749,0.730616789604,-0.417724035102 +1469733911538282782,-0.0100638931617,0.0145451556891,0.264677226543,-0.526409688319,0.0239233023581,0.730518190112,-0.434354336416 +1469733911617036118,-0.0100778900087,0.0144940046594,0.264685034752,-0.523556394516,0.0230463141526,0.729931929678,-0.438813111931 +1469733911693167741,-0.0100687807426,0.0145091162995,0.264685481787,-0.522964287751,0.0235112718666,0.730472796787,-0.438594421974 +1469733911776077574,-0.0100756660104,0.0144963907078,0.26467487216,-0.526841991533,0.0237790866184,0.730281794864,-0.434235617019 +1469733911852574020,-0.010069264099,0.0144405551255,0.26460069418,-0.52007085756,0.0231876112556,0.730514398981,-0.441969852685 +1469733911932052777,-0.0100858770311,0.0143702635542,0.264584422112,-0.516272731429,0.022004879724,0.729858372496,-0.447532130856 +1469733912019383759,-0.0100417146459,0.0143130747601,0.264648288488,-0.539244110035,0.0253950964197,0.730291252121,-0.418623417818 +1469733912099224226,-0.0100325969979,0.0142666306347,0.264614850283,-0.543591302388,0.0259784466521,0.730339476539,-0.412841210742 +1469733912173291822,-0.0100171966478,0.0141796311364,0.264656871557,-0.543797757867,0.0266938162391,0.730876226033,-0.411571841764 +1469733912257024659,-0.0100468862802,0.0141041837633,0.264707505703,-0.536637320316,0.0252067019319,0.730463686686,-0.421672634937 +1469733912336540332,-0.0100596472621,0.014088393189,0.264721423388,-0.531358089925,0.0243262199001,0.730315145031,-0.42861008415 +1469733912412755420,-0.0100575238466,0.0140547612682,0.264583349228,-0.522536420787,0.0237458882791,0.730582699489,-0.43890857926 +1469733912493015303,-0.0100684948266,0.0140049187467,0.264617830515,-0.519734109416,0.0232811470016,0.730557783588,-0.442289236296 +1469733912574032730,-0.0100930528715,0.0139772044495,0.264635175467,-0.512426905698,0.0223138522452,0.730321733522,-0.451166182089 +1469733912653512601,-0.0100903687999,0.0139066269621,0.26460725069,-0.518299028341,0.0221354628386,0.729818064102,-0.445243452299 +1469733912733321182,-0.010100344196,0.013888688758,0.264602214098,-0.51432494757,0.0212571554145,0.729413025175,-0.450527047307 +1469733912809654367,-0.0100414343178,0.0137972570956,0.264618128538,-0.544869796205,0.0254430746967,0.7298342355,-0.412081962509 +1469733912898207866,-0.0100902672857,0.0138312811032,0.264660269022,-0.532520104922,0.0226675165409,0.728954590286,-0.429573889859 +1469733912974495826,-0.0100957732648,0.0139682544395,0.264680981636,-0.518236472701,0.0221423792419,0.729624180572,-0.445633513697 +1469733913050303873,-0.0100971665233,0.0139679946005,0.264669775963,-0.511233982874,0.0217017060662,0.729857231466,-0.453296009672 +1469733913129141317,-0.0100876241922,0.0139062264934,0.264641821384,-0.516735509458,0.0220239347018,0.72978110424,-0.447122913145 +1469733913214169099,-0.0100776189938,0.0139063792303,0.264581292868,-0.512167096724,0.0214577367137,0.72973876335,-0.452444215161 +1469733913291466249,-0.0100461198017,0.0137781146914,0.264665544033,-0.534682225358,0.0236424380565,0.729467481936,-0.425949698681 +1469733913379199194,-0.0100254826248,0.0137042906135,0.264651894569,-0.546387291651,0.0253629446832,0.729628188698,-0.41043922183 +1469733913455513116,-0.0100586907938,0.0135680306703,0.264623224735,-0.522857048543,0.0231717565274,0.730063294733,-0.439421394758 +1469733913534888570,-0.0100658787414,0.0135385589674,0.264613717794,-0.526350589006,0.0230287934825,0.729564008117,-0.436074638318 +1469733913613244095,-0.0100507987663,0.0135481860489,0.264526367188,-0.51941465499,0.0230785002676,0.730269292946,-0.443150717914 +1469733913693025908,-0.0100626964122,0.0135465189815,0.264586001635,-0.522143024982,0.0231019768086,0.730020124773,-0.440344839367 +1469733913776586958,-0.010077859275,0.0135176395997,0.264643281698,-0.520480746792,0.0222980371125,0.729398669137,-0.44337362486 +1469733913856788369,-0.0100780623034,0.0134990485385,0.264610230923,-0.524217148147,0.0224428315171,0.72922541089,-0.439230009238 +1469733913934393246,-0.0100660379976,0.0134470779449,0.264574021101,-0.532964938872,0.0233545075784,0.729328399263,-0.428349188091 +1469733914009227238,-0.0100490208715,0.0133992116898,0.264546662569,-0.531952181117,0.0236734835654,0.729744765725,-0.428881125813 +1469733914090538798,-0.010026987642,0.013394462876,0.26451793313,-0.548387187036,0.0254744087081,0.729429725613,-0.408111287504 +1469733914167635939,-0.0100237848237,0.0133685553446,0.264552265406,-0.552009883315,0.0257827196967,0.72924794211,-0.403506851263 +1469733914247546539,-0.0100522795692,0.0133653674275,0.264576911926,-0.542751370098,0.0242976968871,0.729100904547,-0.416224030027 +1469733914324755381,-0.0100464392453,0.0133631853387,0.264516353607,-0.541159874409,0.0239271053076,0.729076580826,-0.418354901073 +1469733914401405815,-0.0100542996079,0.0133784664795,0.264548152685,-0.543227794312,0.0241029097836,0.728982794372,-0.415820512645 +1469733914480140615,-0.0100350352004,0.0133719770238,0.264548242092,-0.548325106129,0.0249137795636,0.729031828888,-0.408939450342 +1469733914556620540,-0.0100353322923,0.0133800152689,0.264510005713,-0.546885678501,0.0245373758284,0.728870324743,-0.411171523269 +1469733914638364924,-0.0100653888658,0.0133952461183,0.264578133821,-0.534921381402,0.0230894511111,0.728998708793,-0.426481975639 +1469733914716267265,-0.010036748834,0.0133196618408,0.264572918415,-0.551640232437,0.0253446434327,0.729028546108,-0.404435510267 +1469733914795953166,-0.0100195528939,0.0133141186088,0.264589399099,-0.549940574908,0.0253711604349,0.729269950677,-0.406309004734 +1469733914872305982,-0.010049383156,0.0133606297895,0.264610916376,-0.538638219169,0.0241380164712,0.729485974328,-0.420875799102 +1469733914952148916,-0.0100265154615,0.0133339026943,0.264630079269,-0.549344455954,0.0253743844111,0.729265165737,-0.407122988017 +1469733915028014895,-0.00997513812035,0.0132708577439,0.264712691307,-0.560611518585,0.0268179514345,0.729138623345,-0.391602337401 +1469733915104810279,-0.00999499671161,0.0131781725213,0.264748245478,-0.546647831988,0.0252793231111,0.729499906072,-0.410325469166 +1469733915179143162,-0.0100493021309,0.0130861420184,0.264771044254,-0.537221223016,0.0233976014981,0.728782287871,-0.423936654078 +1469733915253244022,-0.0100064463913,0.0129313040525,0.26473197341,-0.555052875508,0.0252180094988,0.728528757007,-0.400657219579 +1469733915329466198,-0.00998750329018,0.0128003526479,0.264809310436,-0.546507851471,0.0254610668472,0.729649705919,-0.410234334264 +1469733915408975557,-0.010012364015,0.012674247846,0.264809608459,-0.542525944606,0.0241272772044,0.728939946978,-0.416809342054 +1469733915483479209,-0.0100233759731,0.01260234043,0.264860987663,-0.532908221731,0.0228005180985,0.728821748708,-0.429310868948 +1469733915564153930,-0.0100155612454,0.0124481264502,0.264789372683,-0.549024719856,0.0233422444075,0.727852709399,-0.410191942916 +1469733915645683159,-0.0100094862282,0.0122854886577,0.264779418707,-0.544166137053,0.0248314691725,0.729283455979,-0.414019630281 +1469733915721318393,-0.0100031914189,0.0121783223003,0.264822721481,-0.53949688787,0.0236330403849,0.728736291207,-0.421103318984 +1469733915805926886,-0.0100249489769,0.0120554910973,0.264787614346,-0.548608279517,0.0232028549811,0.72773102114,-0.410972193751 +1469733915882237057,-0.00994608830661,0.0119011523202,0.264743953943,-0.573439503057,0.0281956632265,0.728628019163,-0.373461310712 +1469733915962138959,-0.00996646471322,0.0117881093174,0.264919221401,-0.551231132825,0.0254562151688,0.729084440268,-0.404885290265 +1469733916037999775,-0.0100262025371,0.011694772169,0.264809280634,-0.529478566271,0.0230639570157,0.729306207338,-0.432704238117 +1469733916118238302,-0.0100138066337,0.0116479191929,0.264787733555,-0.542035572663,0.0232758518289,0.728287817553,-0.418631732545 +1469733916195975473,-0.00995408929884,0.0115271564573,0.264933347702,-0.577036671325,0.0261724310462,0.726977071699,-0.371278899243 +1469733916273079132,-0.00997672323138,0.0114332865924,0.26484555006,-0.558306515064,0.0261108248533,0.728857296288,-0.395447975984 +1469733916353387997,-0.00999250821769,0.0113194677979,0.264928728342,-0.557424787022,0.0243965225944,0.727698497074,-0.398920184818 +1469733916430515897,-0.00998607650399,0.0112435780466,0.26486748457,-0.549547740577,0.0241089041538,0.728255416139,-0.408729850184 +1469733916510080887,-0.0100205829367,0.0111714499071,0.264755368233,-0.540629082203,0.0228572463898,0.728223301319,-0.420581223047 +1469733916587300309,-0.0100580900908,0.0111126163974,0.264763981104,-0.527124257665,0.0211047252248,0.728218786736,-0.437483721067 +1469733916665652465,-0.0100393481553,0.0110477311537,0.264823317528,-0.533537310262,0.0219785320843,0.728320238694,-0.429423465351 +1469733916742204028,-0.00999308563769,0.0109339486808,0.26499080658,-0.543293726303,0.0240658577554,0.728865886322,-0.415941439635 +1469733916816481779,-0.00997965410352,0.0108941299841,0.264971375465,-0.558960379336,0.0254113904756,0.728315718045,-0.395567655927 +1469733916891171479,-0.0099961804226,0.0108428085223,0.265020042658,-0.541796229896,0.0242785167959,0.729027781659,-0.417595369301 +1469733916977182820,-0.0100119728595,0.0107577759773,0.265139937401,-0.548980500532,0.0236082238204,0.727923384345,-0.410110483074 +1469733917054344561,-0.010029386729,0.0107079567388,0.265128105879,-0.539186783643,0.0220340454436,0.727754862463,-0.423278836404 +1469733917137344957,-0.0100001534447,0.0106320315972,0.265211254358,-0.568297404028,0.0243660856008,0.72663323332,-0.385290148697 +1469733917217995439,-0.00995365064591,0.0105702895671,0.265104651451,-0.580571692575,0.0276381022115,0.727494667409,-0.364587649239 +1469733917295332295,-0.00993379671127,0.0105331111699,0.265131920576,-0.575575021648,0.0281879268782,0.728322189581,-0.370763568055 +1469733917376177496,-0.00993333011866,0.0104041965678,0.265302211046,-0.563143898895,0.0253159684238,0.727713364732,-0.390718965076 +1469733917452839580,-0.00999056175351,0.0099845668301,0.265108704567,-0.556449337747,0.0254522629119,0.728516978754,-0.398722119403 +1469733917531245920,-0.0100820073858,0.00986634939909,0.265051662922,-0.510335979596,0.0215113208428,0.729874492612,-0.454288098061 +1469733917607347533,-0.0099497102201,0.00975316762924,0.265224218369,-0.556808811117,0.0263621039774,0.729207981626,-0.396893823169 +1469733917686006730,-0.0099868029356,0.00886939466,0.264883637428,-0.54807050368,0.0247513782454,0.728823171686,-0.409661905338 +1469733917762739906,-0.010075526312,0.00827392283827,0.264422416687,-0.512149975888,0.0216818434363,0.729983852312,-0.452057380458 +1469733917841973647,-0.00999865867198,0.0081394687295,0.264254003763,-0.538844748683,0.024798726582,0.729673453815,-0.420247558915 +1469733917921382048,-0.00995669420809,0.00811913516372,0.264026463032,-0.548856182602,0.0251135860842,0.728982536455,-0.408302167712 +1469733918000446078,-0.00994489435107,0.00818557105958,0.263672292233,-0.539431990842,0.0229974199217,0.728341726801,-0.421903513772 +1469733918075437250,-0.009870714508,0.00819719489664,0.263423681259,-0.558965679141,0.0251867293613,0.727986207269,-0.39618061567 +1469733918151591614,-0.00989725440741,0.00819457229227,0.262517958879,-0.543613254952,0.0241610970647,0.728717831753,-0.415777815802 +1469733918229220999,-0.00996375549585,0.00816053338349,0.261687487364,-0.524512470816,0.0231595933632,0.729895756953,-0.437724211321 +1469733918308258126,-0.0099178776145,0.00807663053274,0.261394709349,-0.528623867099,0.0232278996579,0.729569276092,-0.433296599564 +1469733918384830452,-0.00987813435495,0.00795866362751,0.261271119118,-0.54749116628,0.0250511956092,0.729164086414,-0.409811658603 +1469733918464428269,-0.00982176698744,0.00787570513785,0.260989159346,-0.547811030001,0.0260684488954,0.729977663682,-0.407867775029 +1469733918542071149,-0.0098072309047,0.00779355876148,0.260779976845,-0.546802334107,0.0253811865332,0.729458254574,-0.410187344538 +1469733918634014584,-0.00979914702475,0.00778959179297,0.260379523039,-0.547412987019,0.0231121482727,0.727649513571,-0.412711807009 +1469733918710949373,-0.00982473231852,0.00781713426113,0.260198652744,-0.539328846944,0.0213070187976,0.727053630077,-0.424338808967 +1469733918789033756,-0.00985997822136,0.00786647200584,0.259817570448,-0.516562971791,0.0201673084768,0.728120887322,-0.450106597695 +1469733918864808191,-0.00987331010401,0.00790652539581,0.259107887745,-0.534795227631,0.0234809237988,0.72911830799,-0.426414356787 +1469733918941645156,-0.00983541179448,0.00794687867165,0.258888781071,-0.534906546258,0.0246713004095,0.730069981999,-0.424575240787 +1469733919019407991,-0.00978934857994,0.00803861115128,0.258410364389,-0.535020653184,0.0235777877494,0.729376467502,-0.425684104994 +1469733919095169953,-0.00972473807633,0.00811079330742,0.25802898407,-0.543070380154,0.0242577859986,0.729027114477,-0.415939404692 +1469733919173163870,-0.00966765265912,0.00813610292971,0.25779107213,-0.552389716556,0.0253494623657,0.728848677717,-0.403735818068 +1469733919251025010,-0.00963620841503,0.00814560241997,0.257381290197,-0.554103832488,0.0246640888835,0.728080573574,-0.402814230044 +1469733919328815794,-0.0097888270393,0.00819886103272,0.256604462862,-0.509953885895,0.0196411995807,0.728211838725,-0.457459042406 +1469733919413253751,-0.0097735542804,0.00823789928108,0.256173729897,-0.526604461015,0.0222784987984,0.728918672127,-0.436885545143 +1469733919493122166,-0.00973665621132,0.00821590144187,0.256060153246,-0.541243099901,0.0235036003349,0.728541972576,-0.419201719672 +1469733919574986957,-0.00979523360729,0.00804866664112,0.256031572819,-0.509699502195,0.0193601280376,0.728232273541,-0.457721922873 +1469733919650134301,-0.00976427365094,0.00811198912561,0.255942672491,-0.517994777024,0.0207691310068,0.728755435488,-0.447398669444 +1469733919728763534,-0.00970037374645,0.00823681429029,0.255855351686,-0.545109081567,0.0243774913398,0.728885872708,-0.413505999564 +1469733919811520098,-0.0096843354404,0.00835680123419,0.255852013826,-0.54741521613,0.0251046490517,0.729153256725,-0.409929098691 +1469733919891379812,-0.00970270764083,0.00829173903912,0.255815863609,-0.546438589499,0.0243237595084,0.728579862955,-0.412291894083 +1469733919968275408,-0.00967261660844,0.00849277339876,0.25548350811,-0.540473401648,0.0233767079827,0.728709674051,-0.419909802909 +1469733920048607983,-0.00959994550794,0.0085061872378,0.25523647666,-0.558389661046,0.0260635175177,0.728895257987,-0.395263687145 +1469733920127201602,-0.00956990011036,0.00849490985274,0.255017757416,-0.575238038937,0.0268633962039,0.727647718177,-0.37270411151 +1469733920210212917,-0.00957845430821,0.00861334148794,0.254964023829,-0.563742042906,0.026968443101,0.728872160005,-0.387573201481 +1469733920292676058,-0.00956877227873,0.00864254869521,0.255022913218,-0.576096935839,0.027285892929,0.727660886387,-0.371318508811 +1469733920368108537,-0.00963110849261,0.00881264451891,0.254802972078,-0.534056675352,0.0234681159851,0.729422792732,-0.42681975644 +1469733920443062254,-0.00963161420077,0.00884608644992,0.254683375359,-0.541638346275,0.0241254529324,0.728987246008,-0.417879718966 +1469733920521653099,-0.00974094681442,0.00909676216543,0.25437194109,-0.512452458249,0.0197428103239,0.728327790073,-0.454468183355 +1469733920597750881,-0.00970958638936,0.00938893761486,0.253812372684,-0.532118723422,0.0226869061473,0.728847916169,-0.430250721754 +1469733920677601533,-0.00966850295663,0.00954723544419,0.253602236509,-0.551717801285,0.0235528826562,0.72762599794,-0.406955939366 +1469733920752987310,-0.00958947464824,0.00985337980092,0.252817302942,-0.564491515594,0.0233277324673,0.726385508675,-0.391368417872 +1469733920832813364,-0.00963115878403,0.0100060282275,0.251997768879,-0.549427676049,0.0229667296933,0.727649617882,-0.410033890935 +1469733920910252191,-0.00965484976768,0.0100754601881,0.251391977072,-0.541526242495,0.0241174412668,0.729092733075,-0.417841434391 +1469733920987349737,-0.00959868449718,0.0101213259622,0.251071572304,-0.55172074317,0.0245300390201,0.728393568569,-0.405518566787 +1469733921066973714,-0.00959303602576,0.0101541448385,0.250792145729,-0.548681549001,0.0225141914666,0.727112021225,-0.41200701154 +1469733921148001620,-0.00957547314465,0.0101443678141,0.25061377883,-0.549948869187,0.022343859703,0.726885558733,-0.410724211264 +1469733921227927964,-0.00955186784267,0.0101983305067,0.250597655773,-0.558183065813,0.0233763339951,0.726792638375,-0.399571861937 +1469733921308486055,-0.00951235368848,0.0102487402037,0.250478953123,-0.578948547726,0.0252321843019,0.726081308865,-0.37011869566 +1469733921387495127,-0.00950802117586,0.010322987102,0.250310003757,-0.5709692591,0.024839218201,0.726529534654,-0.381486505236 +1469733921465518628,-0.00955449230969,0.0104437461123,0.250121712685,-0.575013779297,0.0232279129571,0.72542487155,-0.377595515619 +1469733921547593921,-0.00961600616574,0.0106095960364,0.249309077859,-0.549367018592,0.0235147000724,0.727877740713,-0.409679060166 +1469733921626138254,-0.00961020961404,0.0107343476266,0.248861134052,-0.530634424454,0.0222233431692,0.728773479173,-0.432229622604 +1469733921702859842,-0.00951753184199,0.0109807765111,0.248123779893,-0.543209905754,0.0219210731238,0.727190992325,-0.419089161785 +1469733921780790689,-0.00943252164871,0.0110525656492,0.247648119926,-0.575675419131,0.0249407983968,0.726297400348,-0.374790414274 +1469733921870029728,-0.00957158766687,0.0110897440463,0.246916219592,-0.540814633288,0.0207652043689,0.726644708997,-0.423173493493 +1469733921949089006,-0.00955693889409,0.0111338989809,0.246499791741,-0.535186451001,0.0220879675767,0.728053464943,-0.427815072827 +1469733922027244688,-0.00943276192993,0.0111599871889,0.24607360363,-0.565806308717,0.02594605321,0.727863624587,-0.386528869998 +1469733922105738887,-0.00942422635853,0.0112051460892,0.245277762413,-0.560865527292,0.0223961501976,0.726098269859,-0.39712664889 +1469733922184384417,-0.00946077611297,0.0112447589636,0.244473516941,-0.558534375856,0.0248184338767,0.727745289282,-0.397253307418 +1469733922260219291,-0.00943128485233,0.0112827066332,0.244135677814,-0.570780319045,0.0251309098295,0.726730747768,-0.38136686407 +1469733922351487705,-0.00945431366563,0.0112872393802,0.243836730719,-0.549049565485,0.0217558111152,0.726647242361,-0.412377308412 +1469733922431833248,-0.00936714280397,0.0113533036783,0.243401378393,-0.566519039904,0.0242897713113,0.726729081315,-0.387725452875 +1469733922510050498,-0.00935325119644,0.011484044604,0.243231028318,-0.572741138975,0.0246121881862,0.726360379679,-0.379160159762 +1469733922588431640,-0.00939979590476,0.0115763125941,0.243307933211,-0.57118695514,0.0223875627414,0.725261646085,-0.383718391572 +1469733922668068503,-0.00933238584548,0.0116962268949,0.243231460452,-0.575412770853,0.0243129147859,0.726051852678,-0.375709638601 +1469733922744644768,-0.00931258220226,0.0117553193122,0.243225902319,-0.579185573334,0.0257022165778,0.726524401055,-0.368843818406 +1469733922822925656,-0.00939187034965,0.0111797275022,0.243301734328,-0.546471572623,0.0215034649865,0.726553943244,-0.415963686955 +1469733922900496528,-0.00928838830441,0.0110433530062,0.243205890059,-0.575532135625,0.0267507539994,0.727491003014,-0.37256408651 +1469733922979271454,-0.00929953530431,0.0109693957493,0.243249028921,-0.569633735396,0.0262148650336,0.727744707438,-0.381074571634 +1469733923057624478,-0.00933489855379,0.0109389899299,0.243296697736,-0.569442850095,0.0251346456984,0.727144031998,-0.382576328058 +1469733923133329059,-0.00931353773922,0.0109047889709,0.243263557553,-0.568095614487,0.0256369265103,0.72758657245,-0.383702880351 +1469733923217463514,-0.00937418080866,0.01083596237,0.243304014206,-0.555310235729,0.0229190989838,0.727010020389,-0.403189393771 +1469733923294636515,-0.00938499905169,0.0107070747763,0.243234619498,-0.56013378287,0.0225092688853,0.726248610167,-0.397877411186 +1469733923369827017,-0.00934844557196,0.0106440521777,0.243191868067,-0.572461927385,0.0240642048537,0.726042191413,-0.380224922943 +1469733923457452759,-0.00931360665709,0.010577628389,0.243242919445,-0.579383642065,0.0263120735915,0.7267475014,-0.368049370738 +1469733923535053742,-0.00931847561151,0.010510277003,0.243227213621,-0.581866247436,0.0263825794589,0.726573600443,-0.364453608481 +1469733923609220131,-0.00936957634985,0.0104140108451,0.243231013417,-0.57666913961,0.0245094614846,0.725991110935,-0.37388353342 +1469733923695508079,-0.00937565974891,0.0102393552661,0.243101283908,-0.568321171281,0.0235799403601,0.726203010865,-0.386114257307 +1469733923772706255,-0.00946698989719,0.00952895637602,0.242410957813,-0.543933085509,0.0240330409233,0.728698264457,-0.415401072231 +1469733923851596321,-0.00943544879556,0.0092052295804,0.242037206888,-0.552553437825,0.0254115069309,0.728801202046,-0.403593559859 +1469733923929810977,-0.00943045318127,0.00890414603055,0.241756036878,-0.539733346021,0.0226428494338,0.728160771255,-0.421849626961 +1469733924009728860,-0.00940008927137,0.00872110389173,0.241408392787,-0.550551903802,0.0221800450811,0.726759233703,-0.410148342733 +1469733924087592321,-0.009422021918,0.00854310952127,0.240806087852,-0.545022971199,0.0224265071456,0.72727246938,-0.416559441046 +1469733924163263953,-0.0094324760139,0.00836513470858,0.239964038134,-0.549624531695,0.023792252756,0.727994786018,-0.409109269509 +1469733924243610055,-0.00939775444567,0.0083220815286,0.239609658718,-0.541559124451,0.0232372301962,0.728374919351,-0.419098702834 +1469733924325469999,-0.00934123527259,0.0082898363471,0.239307999611,-0.539844778199,0.0235255082512,0.728874915958,-0.42042302839 +1469733924403706184,-0.00935647170991,0.00823354441673,0.238938868046,-0.541995069601,0.0222494178169,0.727623006801,-0.419894115117 +1469733924481315500,-0.00939488876611,0.00817495025694,0.238297849894,-0.536864102136,0.0223833580575,0.728257449884,-0.425343399864 +1469733924559181840,-0.00936182122678,0.00801155716181,0.237493380904,-0.53289324649,0.0214551885826,0.727817936316,-0.431098033288 +1469733924640186808,-0.00928633939475,0.00796347763389,0.237112894654,-0.547794976211,0.0232059759249,0.727929373343,-0.411704960066 +1469733924719430072,-0.00923065654933,0.00793870165944,0.23657785356,-0.547758003675,0.0251727077317,0.729347283602,-0.409121062888 +1469733924794405724,-0.00929721351713,0.0078846886754,0.235903739929,-0.545268496357,0.0241846253112,0.728696494284,-0.413640894977 +1469733924875555869,-0.00927614886314,0.00785684771836,0.235544681549,-0.549997881244,0.0245151811174,0.728419779038,-0.407806280024 +1469733924951775302,-0.0092264926061,0.00779429869726,0.235327988863,-0.566216578819,0.0256414444062,0.727620034238,-0.386407023713 +1469733925032200107,-0.00922012701631,0.00764239020646,0.235087200999,-0.564060274076,0.0250110998279,0.727286996246,-0.390210298669 +1469733925112818675,-0.00926022976637,0.00760674010962,0.235136881471,-0.549465564694,0.0224761965206,0.727025056195,-0.411116749197 +1469733925189802992,-0.0092153660953,0.0077268932946,0.235037431121,-0.568461056782,0.0245354424537,0.726691652163,-0.384927631722 +1469733925263998245,-0.00925026834011,0.00793697685003,0.235052362084,-0.546992205784,0.022475115482,0.727307036368,-0.413906838365 +1469733925345737226,-0.00920178741217,0.00802395958453,0.234909459949,-0.570082511839,0.0253594295835,0.72693929247,-0.381997505346 +1469733925428138424,-0.00932221952826,0.00818000547588,0.234279260039,-0.539957657222,0.0220512391192,0.727799953546,-0.422216412375 +1469733925507778821,-0.00933194812387,0.00858770962805,0.233821198344,-0.548208632281,0.0228652663425,0.727606536323,-0.411744099397 +1469733925585040185,-0.00928645487875,0.00884657166898,0.233474642038,-0.551464698122,0.0231430143255,0.727542175947,-0.407472047915 +1469733925665388924,-0.00920688174665,0.00891898944974,0.232940003276,-0.568018495431,0.0256122609761,0.727443172708,-0.384090394851 +1469733925745825301,-0.00933702103794,0.00892673991621,0.232213661075,-0.549702115484,0.0213591356461,0.72634810887,-0.412055574283 +1469733925826435858,-0.00923937186599,0.00903950817883,0.231676533818,-0.573739660682,0.0254453957717,0.726745827441,-0.376849885089 +1469733925903613418,-0.00918408762664,0.00911918282509,0.230901628733,-0.575899996511,0.0244342250617,0.726049015662,-0.374959983892 +1469733925981687502,-0.00926161650568,0.00915806181729,0.230115607381,-0.55300911824,0.0233503198311,0.727420409729,-0.405580109493 +1469733926060395729,-0.00930424965918,0.00916826538742,0.229731217027,-0.540730507922,0.0206097730219,0.726572425025,-0.423412642999 +1469733926137095595,-0.00920001324266,0.00917389802635,0.229371935129,-0.567395069768,0.0232010967159,0.725848613372,-0.388160191648 +1469733926217766010,-0.00915222149342,0.00920191965997,0.228686615825,-0.563604271028,0.02534897115,0.727777371921,-0.389933009965 +1469733926302279447,-0.00919535104185,0.00922446884215,0.227672711015,-0.554543621798,0.0231666559041,0.727232221042,-0.403829139929 +1469733926379976526,-0.00911508966237,0.00921350996941,0.227222383022,-0.564347478944,0.0242574807217,0.726942448724,-0.390484537314 +1469733926458364474,-0.00915399752557,0.00921875890344,0.226649299264,-0.557052542333,0.0231429443419,0.726802438999,-0.401142223995 +1469733926534674502,-0.0092385886237,0.00922803673893,0.225975200534,-0.529342521781,0.02065902779,0.727647699144,-0.435773479156 +1469733926617886075,-0.00912938732654,0.00921008735895,0.225607514381,-0.556566829943,0.023302518496,0.727077533215,-0.401308630773 +1469733926701685272,-0.00915164779872,0.00918847322464,0.224449113011,-0.554027245915,0.0226068511247,0.726888822416,-0.405185612915 +1469733926778184935,-0.00916338060051,0.00915696751326,0.223928019404,-0.540975998935,0.0206960802849,0.726522229819,-0.423180919247 +1469733926857416852,-0.00906846858561,0.00917231012136,0.223534762859,-0.544821390929,0.0228224799718,0.72784198436,-0.415806243577 +1469733926937072554,-0.00902839470655,0.00913256127387,0.22320087254,-0.564031819195,0.024474998555,0.727186929249,-0.390471831647 +1469733927021477687,-0.00910534709692,0.00913588143885,0.222419425845,-0.547594017563,0.0234784856045,0.728203590556,-0.411471850002 +1469733927102167667,-0.00902528595179,0.00907284393907,0.221569448709,-0.544133433008,0.022016231378,0.727292622011,-0.417707474924 +1469733927182795726,-0.00898823980242,0.00907774269581,0.22100238502,-0.557012120705,0.0244782778737,0.727888470943,-0.399144942556 +1469733927261990424,-0.00902345962822,0.009063010104,0.220322713256,-0.547489948672,0.0234766922648,0.72819070986,-0.411633199701 +1469733927338608923,-0.00903892051429,0.00907967612147,0.219992816448,-0.524939320153,0.0209408952921,0.728480012044,-0.43967836098 +1469733927413210056,-0.00898849964142,0.00904213171452,0.219727486372,-0.535594801308,0.0213948636108,0.727579722091,-0.428145088288 +1469733927491662059,-0.00896330270916,0.00902637559921,0.218738660216,-0.549584659424,0.0247262194841,0.728818781273,-0.407637707112 +1469733927567514995,-0.00898924469948,0.00902479048818,0.218377009034,-0.542914756297,0.0232574124983,0.728426508549,-0.417249903297 +1469733927642506313,-0.00898398365825,0.00900973193347,0.217933267355,-0.520283190224,0.02051146162,0.728403074917,-0.445324199167 +1469733927722525273,-0.00895448122174,0.00901272706687,0.217386603355,-0.522774754209,0.0221511812862,0.729192812615,-0.441014425569 +1469733927800391800,-0.00898007396609,0.00899251177907,0.21679623425,-0.534516581241,0.0224795194051,0.728547439291,-0.427791215768 +1469733927878825870,-0.00893088430166,0.00895031634718,0.216243162751,-0.531821566999,0.0211862177666,0.727941742952,-0.432224228751 +1469733927958470128,-0.00885998830199,0.00883572455496,0.215530663729,-0.518420634626,0.0207105149132,0.728676701686,-0.447036222902 +1469733928035799267,-0.00880596693605,0.00879044644535,0.215150654316,-0.524456762443,0.0212198558736,0.728647619484,-0.439963031022 +1469733928119246776,-0.00882760062814,0.00868221744895,0.214657709002,-0.531524701623,0.0209189642079,0.727629766514,-0.433126784422 +1469733928195014447,-0.00879235100001,0.00863649509847,0.214293956757,-0.533835145649,0.0215069165272,0.728076184282,-0.42949104728 +1469733928274391962,-0.00874674599618,0.00861124414951,0.214022085071,-0.527087287286,0.0221034262443,0.72920214638,-0.435837882526 +1469733928349246594,-0.00874926056713,0.00853673182428,0.21398229897,-0.525923127676,0.0210891572252,0.728550454348,-0.438376945896 +1469733928430031982,-0.00873831752688,0.00851964112371,0.213901460171,-0.524777005257,0.020985663934,0.72851601658,-0.439810311668 +1469733928505390397,-0.00868897140026,0.00855458155274,0.213817089796,-0.532858327192,0.022504139258,0.729077129654,-0.428954666456 +1469733928583942603,-0.00869800336659,0.00852959044278,0.213809654117,-0.532943338867,0.0220174168936,0.728714811027,-0.429489644927 +1469733928661625870,-0.0087273856625,0.00849679205567,0.213845267892,-0.521786528119,0.0211045950425,0.728965003472,-0.442609804292 +1469733928739722869,-0.00868383143097,0.00834933109581,0.213835924864,-0.540808514116,0.0237190958576,0.729022113888,-0.418915639496 +1469733928816612980,-0.00869900919497,0.00834321975708,0.213890701532,-0.53275352688,0.0232297562747,0.729600793799,-0.428155041672 +1469733928897936794,-0.00871087051928,0.00834970455617,0.213891670108,-0.538361339868,0.0232049917008,0.728887463143,-0.422317016195 +1469733928978371556,-0.00873666722327,0.008375544101,0.213931456208,-0.533643533396,0.0222641229035,0.728661856151,-0.428696614737 +1469733929057144184,-0.00874380301684,0.00841507129371,0.213904097676,-0.532085048655,0.021683165173,0.728433293408,-0.431045564181 +1469733929135641765,-0.00877701491117,0.00845205783844,0.213947743177,-0.520816313529,0.0201911756897,0.728302744669,-0.444879529866 +1469733929212733828,-0.00877605378628,0.00848705694079,0.213938057423,-0.521487493945,0.0202330661663,0.72832559208,-0.444053204711 +1469733929289884744,-0.0087239863351,0.0086089046672,0.213949754834,-0.537672052092,0.023124060741,0.729140880082,-0.422761894224 +1469733929366262246,-0.00870926026255,0.00864550936967,0.213926941156,-0.550419582193,0.0239018206807,0.728301787022,-0.407484347585 +1469733929446102811,-0.00870297476649,0.00871101953089,0.213922768831,-0.545796518726,0.0240012175986,0.728879042654,-0.41263233378 +1469733929522189649,-0.0087798377499,0.00876570586115,0.213942959905,-0.526635358373,0.0207089933572,0.728152337379,-0.43820144965 +1469733929597912401,-0.00878289435059,0.0088210022077,0.213944450021,-0.521308920654,0.0200622505548,0.728192859522,-0.444488104104 +1469733929676247745,-0.00876784045249,0.00888034235686,0.213978871703,-0.530978914116,0.0209041972015,0.728091317202,-0.433021294071 +1469733929752992592,-0.00870294403285,0.00898199994117,0.213926926255,-0.548068240429,0.0236659771998,0.728463395057,-0.41036838014 +1469733929832590753,-0.00871799699962,0.00905005633831,0.213906824589,-0.537486031609,0.0230179965839,0.728943311332,-0.423344524616 +1469733929908610083,-0.00871723052114,0.00909287575632,0.213924884796,-0.548077340665,0.0232327716552,0.728048593249,-0.411116422488 +1469733929989134907,-0.00879775639623,0.00919784326106,0.213976427913,-0.516630916313,0.0192703447491,0.727900415785,-0.450424394126 +1469733930065284868,-0.00873525999486,0.00932016782463,0.213969185948,-0.536762457507,0.0222489318928,0.728478573154,-0.425100009053 +1469733930141397092,-0.00873265042901,0.00945760309696,0.21400116384,-0.5418218508,0.0229064344064,0.728408050063,-0.418719583805 +1469733930228515278,-0.00871447101235,0.00974593311548,0.214001953602,-0.55725547251,0.0239788268244,0.727571750106,-0.399412947548 +1469733930305164369,-0.00869258586317,0.0098292408511,0.213897973299,-0.545730763508,0.0235115611625,0.728472579691,-0.413464437275 +1469733930391911790,-0.00869586318731,0.00982115138322,0.213864922523,-0.552352991385,0.0231971820842,0.727519574313,-0.406304482675 +1469733930469836759,-0.00870798062533,0.009845177643,0.213812842965,-0.53781826135,0.0218081819721,0.727934541994,-0.424720170854 +1469733930556100087,-0.00869200378656,0.00984027609229,0.213663011789,-0.536760868272,0.0211777652301,0.727518494412,-0.426797508006 +1469733930632480697,-0.0087048523128,0.00985943432897,0.213675558567,-0.531197428754,0.0200571340993,0.727127287961,-0.434410992218 +1469733930718233039,-0.00867004692554,0.00986958295107,0.21353533864,-0.529562761615,0.0198914174559,0.727091775552,-0.436468971345 +1469733930796390876,-0.00863692630082,0.00988930184394,0.213480994105,-0.533945294343,0.020605341356,0.727349213088,-0.430628569392 +1469733930878169786,-0.00860156491399,0.00989815033972,0.213399723172,-0.54314910345,0.0217267995913,0.727345598105,-0.418909749849 +1469733930958717232,-0.00854727253318,0.00991038233042,0.213155522943,-0.534572494365,0.0219291618862,0.728303930141,-0.428164390705 +1469733931036515795,-0.0084473900497,0.00984781049192,0.212832465768,-0.54706773431,0.0222617143125,0.727234873961,-0.413945344518 +1469733931114650725,-0.00840805377811,0.00978295132518,0.212649822235,-0.554157865845,0.0227045931036,0.726883556653,-0.405010933484 +1469733931189969302,-0.00839640758932,0.00967532582581,0.212440982461,-0.545913186176,0.0214865566846,0.726642892314,-0.416541988388 +1469733931271428506,-0.00836863555014,0.00963161513209,0.212302297354,-0.541341160639,0.0216638674782,0.727395999553,-0.421159689996 +1469733931350458189,-0.0083608077839,0.00960369501263,0.212242305279,-0.538215027311,0.0213408309957,0.727499127313,-0.424987262242 +1469733931430304567,-0.0083569874987,0.00959533639252,0.212243884802,-0.547749440554,0.0217982476846,0.726923643056,-0.413615043171 +1469733931514909566,-0.00837570615113,0.00956792198122,0.212276145816,-0.542843448504,0.0208990262317,0.726725899002,-0.420420847293 +1469733931597104874,-0.0083696488291,0.00953916087747,0.212244927883,-0.54262486611,0.0208312584652,0.726725431183,-0.420707096471 +1469733931687828507,-0.00835585221648,0.00952683575451,0.212200090289,-0.537298685605,0.0209832791577,0.727388061168,-0.42635247497 +1469733931769479294,-0.00833189021796,0.00952106155455,0.212123036385,-0.539643204019,0.0214819708954,0.727504198236,-0.423156447229 +1469733931851286497,-0.00826278049499,0.00921819638461,0.211627557874,-0.550275854269,0.023275097324,0.727769482261,-0.408664085457 +1469733931927766635,-0.00834093056619,0.00907366536558,0.210926547647,-0.54157326721,0.022938454263,0.72835491678,-0.419131648486 +1469733932007017372,-0.00832440052181,0.00892053730786,0.210668504238,-0.549972513042,0.0225463770203,0.727241746336,-0.410050409301 +1469733932088057187,-0.00828458927572,0.00881790369749,0.210344046354,-0.560122801924,0.0227905688737,0.726385437586,-0.397627002099 +1469733932165313138,-0.00828993879259,0.00874141138047,0.209069281816,-0.546553689525,0.0231412310906,0.728106721611,-0.413042552088 +1469733932243894156,-0.00829408038408,0.00871282443404,0.208894222975,-0.544186341284,0.0216996605098,0.727197112593,-0.417821385438 +1469733932323022808,-0.00829685572535,0.00872250553221,0.208655253053,-0.535959597323,0.0202064572371,0.726814762948,-0.429044647426 +1469733932410993485,-0.0082591176033,0.00870442204177,0.20820094645,-0.562014361173,0.0226858829726,0.726239430393,-0.395223352411 +1469733932486272805,-0.00829586014152,0.00873580668122,0.207639351487,-0.544140213617,0.0222210484168,0.727598026975,-0.417155563397 +1469733932564776872,-0.00826676748693,0.00874543190002,0.207258686423,-0.54472899783,0.0215870201642,0.727220464624,-0.417078787899 +1469733932643327894,-0.00826609041542,0.0087505672127,0.207081481814,-0.535000415607,0.0208786249785,0.727505686915,-0.429038592467 +1469733932722001937,-0.00824164506048,0.00875574257225,0.206671446562,-0.545808928285,0.0226719792232,0.72784984663,-0.41450355357 +1469733932798840755,-0.00828089658171,0.00873491261154,0.20608702302,-0.545667427606,0.0215602318724,0.726862683825,-0.416476714493 +1469733932875830747,-0.0082317199558,0.00875631067902,0.20562069118,-0.55017338914,0.0217619650827,0.726748567671,-0.410697185461 +1469733932953158373,-0.00827006716281,0.00876321922988,0.2046161443,-0.535997987195,0.0207679388939,0.727231027295,-0.428263801151 +1469733933030455496,-0.00824586302042,0.00874526798725,0.204082772136,-0.54333087871,0.0202281712743,0.726031891605,-0.421022647491 +1469733933109467357,-0.00820347387344,0.00876866467297,0.203536480665,-0.549064373756,0.0225973623973,0.72738413096,-0.411010947191 +1469733933197267755,-0.00828241277486,0.00877816323191,0.203077316284,-0.536090799835,0.0203671383713,0.726995080499,-0.428567365693 +1469733933280240211,-0.00823809485883,0.00875242426991,0.202760845423,-0.541369642014,0.0208578202892,0.726842836093,-0.422117701191 +1469733933359596394,-0.00822571758181,0.00870688538998,0.202427297831,-0.541178561941,0.0204656814084,0.726489972371,-0.422988463228 +1469733933438765689,-0.00818869378418,0.00867413170636,0.201354637742,-0.544966527577,0.0218147536005,0.727181267271,-0.416824909137 +1469733933517776836,-0.00818198174238,0.0087062837556,0.201083466411,-0.535066987549,0.0203401342707,0.727106445635,-0.42965778765 +1469733933597641408,-0.00811607670039,0.00871388521045,0.200856015086,-0.546854812159,0.0215284170711,0.727013986607,-0.414652872841 +1469733933677390924,-0.00806213356555,0.00872080400586,0.200619012117,-0.550968534423,0.0222638264984,0.727040103296,-0.409085179766 diff --git a/MobileRobot/docking_data/Pose3.txt b/MobileRobot/docking_data/Pose3.txt index f19e25e69421b5b91615b4ca0be394f1968f4ca5..0b398ce8913714e565f33dd82dc7edb84a765881 100644 --- a/MobileRobot/docking_data/Pose3.txt +++ b/MobileRobot/docking_data/Pose3.txt @@ -1,418 +1,449 @@ %time,field.position.x,field.position.y,field.position.z,field.orientation.x,field.orientation.y,field.orientation.z,field.orientation.w -1468862314214881957,0.11219407618,-0.125686764717,1.0100530386,0.304100718637,-0.0560011041239,0.794447028077,-0.522724161333 -1468862314326472562,0.109805740416,-0.139078244567,0.99497461319,0.345146842038,-0.0573546854124,0.784182742736,-0.512485632469 -1468862314433601594,0.1081443578,-0.14785695076,0.987068474293,0.387653959836,-0.0650309309777,0.784816154037,-0.479123146803 -1468862314516059745,0.106880128384,-0.156589582562,0.982184052467,0.376662735808,-0.0575033162667,0.775662999024,-0.503155506794 -1468862314621318316,0.104682773352,-0.168009221554,0.969509601593,0.37879754389,-0.0582890149624,0.775030246658,-0.502436989325 -1468862314710797929,0.102092884481,-0.179957821965,0.95678293705,0.402274144652,-0.0600163854791,0.773219083384,-0.486524197867 -1468862314817407389,0.0996765419841,-0.193186074495,0.945694088936,0.403153518493,-0.0613659546482,0.773041503321,-0.4859097594 -1468862314905711018,0.0971331000328,-0.208907350898,0.934266984463,0.415288493069,-0.0607651404053,0.770129846166,-0.480357247557 -1468862314994805615,0.0941836684942,-0.222840160131,0.918223261833,0.449278852507,-0.0604733567826,0.761155365553,-0.463825393117 -1468862315085250973,0.0917666181922,-0.234982207417,0.90431535244,0.479943621887,-0.0584730313985,0.752289169832,-0.447544444008 -1468862315178957867,0.0895842239261,-0.243658557534,0.890815973282,0.582768384225,-0.0627382737021,0.737576689392,-0.335299189719 -1468862315283186372,0.0879567265511,-0.247027754784,0.880438685417,0.624681001409,-0.0666967299577,0.732474220236,-0.262310330298 -1468862315372294869,0.0860114917159,-0.25127223134,0.868946254253,0.663170861827,-0.069417366898,0.724744195215,-0.173584240929 -1468862315475848616,0.0844697356224,-0.254497200251,0.860682785511,0.690508189721,-0.0638864013546,0.714911200631,-0.0895485503084 -1468862315561292985,0.0824422985315,-0.254549980164,0.846491932869,0.698510110445,-0.0625577057293,0.711450902874,-0.0448081673385 -1468862315673663234,0.0806589797139,-0.253177255392,0.834064662457,-0.704665702792,0.0601632224041,-0.706145704036,-0.0344220663347 -1468862315764733330,0.0792280733585,-0.249593600631,0.822717487812,-0.702710319815,0.0616263395146,-0.702185677923,-0.0966212938359 -1468862315856021945,0.0776555985212,-0.243789732456,0.812258601189,-0.698162467192,0.0558327497614,-0.700554860002,-0.136655631373 -1468862315955756690,0.0763466730714,-0.237892076373,0.805063009262,-0.704510538452,0.0623805532654,-0.704983782674,-0.0526444104519 -1468862316040123823,0.0740982443094,-0.221848458052,0.793090164661,0.690864456475,-0.0591970646274,0.714111080638,-0.0961632717217 -1468862316149566893,0.0729964450002,-0.212534844875,0.785524666309,0.666674982177,-0.0583732792547,0.720020096566,-0.183597627843 -1468862316258235974,0.0720358937979,-0.198469564319,0.778812229633,0.645856668421,-0.0562238892895,0.722618901933,-0.239854040406 -1468862316350761589,0.0706295743585,-0.183309972286,0.769966840744,0.643410001215,-0.0570201125561,0.723386122437,-0.243895049082 -1468862316442356397,0.0696906745434,-0.16883303225,0.762350797653,0.630981746755,-0.057278376933,0.725534375107,-0.268665392888 -1468862316538893892,0.0684794560075,-0.154189884663,0.754213094711,0.644889376158,-0.0554978047237,0.722400707419,-0.243258924007 -1468862316626785982,0.0675900056958,-0.140153497458,0.745656907558,0.620705439561,-0.0551258033871,0.725776568775,-0.291434856044 -1468862316711359994,0.0666884332895,-0.126013219357,0.737562537193,0.583348843909,-0.0504169778665,0.727657191531,-0.357319557631 -1468862316819782182,0.0657406896353,-0.113191448152,0.731099247932,0.624198323811,-0.0500726460553,0.722350144077,-0.29339299927 -1468862316932229811,0.0648304075003,-0.104476734996,0.724752962589,0.612243958042,-0.0548532356397,0.726372438302,-0.307459817302 -1468862317027184013,0.0638100728393,-0.0921002849936,0.717224001884,0.584302716999,-0.047997611016,0.725609486811,-0.360246355837 -1468862317114950186,0.0627547577024,-0.080075442791,0.709765732288,0.637353413966,-0.0499678496389,0.720545205147,-0.268511539876 -1468862317205020001,0.0619663484395,-0.0699918940663,0.702360451221,0.607320102296,-0.045016969762,0.72135538394,-0.329821430235 -1468862317318383298,0.0609499067068,-0.0595253929496,0.696264386177,-0.656494452864,0.0587082390926,-0.690842338071,-0.297161975951 -1468862317406273453,0.0599385797977,-0.051071356982,0.686579465866,0.646535178772,-0.046715391945,0.71809081459,-0.253289393317 -1468862317498231800,0.0587907657027,-0.0428518205881,0.678607881069,0.70133273565,-0.0473671976691,0.709385585176,-0.0515832728128 -1468862317587647405,0.0578034184873,-0.0378416776657,0.67269128561,-0.61785440245,0.069921660541,-0.677945898646,-0.392117657432 -1468862317698178569,0.056141871959,-0.0295311640948,0.660434186459,-0.636599032895,0.0705629517074,-0.681271159074,-0.354446256825 -1468862317808330936,0.0548775345087,-0.0240369383246,0.651535511017,-0.621385510054,0.0696982848352,-0.678899038143,-0.384861394524 -1468862317904111871,0.0539905503392,-0.0205403417349,0.645351648331,-0.649681428899,0.0737367013615,-0.682682501675,-0.32622314713 -1468862318005101069,0.052766777575,-0.0159237645566,0.637070953846,-0.70498117434,0.0582905333533,-0.705735551936,-0.0392566972742 -1468862318090978972,0.0512073598802,-0.011952563189,0.626568496227,-0.654180630842,0.0805356575353,-0.680779217026,-0.319533046433 -1468862318182709015,0.0498521327972,-0.00925287976861,0.617518246174,-0.687905860419,0.076450003621,-0.692638720465,-0.202959422202 -1468862318276169046,0.0483283773065,-0.00743277464062,0.608571767807,-0.675719249827,0.0766383123151,-0.688411552867,-0.252229257577 -1468862318376841901,0.0466314256191,-0.00630505895242,0.598747372627,-0.682824565535,0.0816560372269,-0.689398935522,-0.227622520827 -1468862318452339776,0.0450320877135,-0.00568328751251,0.589781820774,-0.697301351453,0.080080111334,-0.696795279124,-0.147764474825 -1468862318565956806,0.0434323325753,-0.00534266838804,0.579706788063,-0.676997537787,0.0800179667688,-0.687780341619,-0.249458735076 -1468862318658923562,0.0418752841651,-0.00557537516579,0.570491850376,-0.689073745905,0.0763710756525,-0.693222419876,-0.196945444448 -1468862318742213859,0.0402548164129,-0.00620450126007,0.56085562706,-0.684758805898,0.0799168539567,-0.69065940278,-0.218422213958 -1468862318858745758,0.0393232852221,-0.00690514687449,0.555151164532,-0.686654474081,0.0750838511629,-0.692774792101,-0.207198301026 -1468862318949346459,0.0376142784953,-0.00820459704846,0.544990956783,-0.676173290024,0.0770846740515,-0.688527640522,-0.250554032341 -1468862319048154699,0.0362452752888,-0.0100445952266,0.536120414734,-0.69717670745,0.0700082010107,-0.698252806677,-0.146582769613 -1468862319136965627,0.034580744803,-0.0125986514613,0.526739478111,-0.688676909443,0.0731518291759,-0.693998708395,-0.196821536003 -1468862319248531170,0.0327961631119,-0.0157490130514,0.517033994198,-0.665349024797,0.0704750990378,-0.688088014951,-0.280853732924 -1468862319344755327,0.0310055688024,-0.0191382803023,0.507863283157,-0.692183151803,0.066478717301,-0.696909466908,-0.175443037595 -1468862319442007983,0.0290460586548,-0.0224728565663,0.497946918011,-0.66111188715,0.0708658277307,-0.686896683504,-0.293397432367 -1468862319530627469,0.0272934343666,-0.0257990173995,0.488299936056,-0.683254735069,0.0720929052824,-0.692486554826,-0.220063516739 -1468862319647786398,0.0254354812205,-0.0290635935962,0.478359282017,-0.692461677314,0.0709518406425,-0.695969987519,-0.176319137456 -1468862319743656361,0.0236692298204,-0.0321718677878,0.468905389309,-0.671262451968,0.071266586075,-0.689331277043,-0.262964227183 -1468862319834138317,0.0220528803766,-0.0350640937686,0.459204345942,-0.656917911375,0.0716692939766,-0.685814239485,-0.30492818652 -1468862319919822332,0.020952899009,-0.037102330476,0.452695786953,-0.663186050464,0.0711047406222,-0.687542455073,-0.287077952486 -1468862320020334056,0.0185388103127,-0.0410298667848,0.439501792192,-0.663639217483,0.071860683748,-0.68734732295,-0.286308729841 -1468862320105153953,0.0165891125798,-0.0435288064182,0.429449379444,-0.660361434428,0.0765593973523,-0.684641457016,-0.298877081645 -1468862320237937481,0.0153356771916,-0.0451538078487,0.423177212477,-0.647326242421,0.0746950189554,-0.682349293203,-0.33134397849 -1468862320325364345,0.0133244702592,-0.0473259948194,0.413180708885,-0.63134474133,0.0735972925354,-0.679358620654,-0.366686679154 -1468862320422086838,0.011451870203,-0.0491730198264,0.403549432755,-0.624883198513,0.0724816300499,-0.678459584639,-0.379420602409 -1468862320504116882,0.00979097001255,-0.0507287830114,0.393748223782,-0.6238436316,0.0741085974214,-0.677224010392,-0.383007413569 -1468862320624013896,0.00813626125455,-0.0518492236733,0.383967161179,-0.611853802844,0.0730660430791,-0.675302347313,-0.405293741634 -1468862320704243368,0.00664438633248,-0.0526066236198,0.372105240822,-0.596872696382,0.0716619600462,-0.673189381845,-0.430608411399 -1468862320788127554,0.00503637827933,-0.0533084049821,0.362142831087,-0.601709446112,0.0735992697307,-0.672608935594,-0.424412664412 -1468862320877704765,0.00330028450117,-0.0536134429276,0.354365825653,-0.586406555256,0.0716318509065,-0.670929473904,-0.448162772813 -1468862320978507745,0.0018246298423,-0.0535544604063,0.345833152533,-0.583075633992,0.0731183718684,-0.669075072391,-0.454989072666 -1468862321066972664,0.000563505105674,-0.0531542152166,0.338135957718,-0.573635648164,0.0711491861835,-0.668781670614,-0.467558566932 -1468862321179105483,-4.85799719172e-05,-0.0528777688742,0.334536731243,-0.559496133808,0.0691764792833,-0.667775747294,-0.486059916361 -1468862321281671253,-0.000913516734727,-0.0525090396404,0.330816715956,-0.543493640528,0.0667966575267,-0.667256157083,-0.504898098712 -1468862321368277628,-0.000578734150622,-0.0530659034848,0.330916464329,-0.549702198256,0.0665544211672,-0.668801476652,-0.496087277688 -1468862321462650703,-0.000700264121406,-0.0529686808586,0.330477029085,-0.529234005546,0.0651078740476,-0.665940611368,-0.521723522798 -1468862321553960581,-0.00109695468564,-0.0501586981118,0.329036861658,-0.534351456721,0.0643646657886,-0.667632339583,-0.514385817885 -1468862321642618769,-0.000999066978693,-0.0487992838025,0.32901018858,-0.544040255167,0.06654066345,-0.667214530832,-0.504397968585 -1468862321755575955,-0.000943707651459,-0.0466542057693,0.329362660646,-0.530621796629,0.0644498938769,-0.666621782725,-0.519521047618 -1468862321858451705,-0.000878040678799,-0.0447287522256,0.329456329346,-0.537937144135,0.0643288530297,-0.668107784051,-0.510017074732 -1468862321944915026,-0.000782092509326,-0.0425589047372,0.329471468925,-0.531784473757,0.0631457979293,-0.668306054494,-0.516318602417 -1468862322047097873,-0.000691007531714,-0.0398299768567,0.329834848642,-0.54762503874,0.0639888959984,-0.669829659198,-0.497333354796 -1468862322140580448,-0.000568970630411,-0.0368385948241,0.33012098074,-0.548207828803,0.0631397275615,-0.670670147388,-0.495664306407 -1468862322230700203,-0.000453599001048,-0.0336534976959,0.330394774675,-0.562058553914,0.0654164619361,-0.670942407121,-0.479215144591 -1468862322316979055,-0.000329426809913,-0.0301316399127,0.330860376358,-0.57257495432,0.0646452981521,-0.673445830532,-0.463087054938 -1468862322419600380,-0.000182048868737,-0.0268443431705,0.331102192402,-0.568123977468,0.0619484898129,-0.674851171058,-0.466876244584 -1468862322511364843,-0.000155752408318,-0.0247148107737,0.331066429615,-0.586296931453,0.0638738602758,-0.676086734419,-0.441681747058 -1468862322596576871,-5.32233898412e-05,-0.021813178435,0.331189870834,-0.594137717728,0.0634660107756,-0.677710297147,-0.428580437012 -1468862322690193183,-3.78841218662e-06,-0.0188724733889,0.331398695707,-0.604767489457,0.064607948734,-0.678632457138,-0.411752455699 -1468862322793623621,7.25873178453e-05,-0.0167133864015,0.331444442272,-0.620248498296,0.0649935578036,-0.68111527799,-0.383600854919 -1468862322880784419,0.000171104489709,-0.0135444737971,0.331527203321,-0.628441279811,0.0654854301189,-0.68220490008,-0.367926202625 -1468862322990586657,0.000247045332799,-0.0116628482938,0.331635773182,-0.642341289995,0.064970129852,-0.685168966357,-0.337224015953 -1468862323093501300,0.000247407588176,-0.0104263024405,0.331519722939,-0.647107101735,0.0667528002665,-0.685350106715,-0.327248672673 -1468862323181022142,0.000298833794659,-0.00915730837733,0.331554532051,-0.648904445692,0.0670579989333,-0.685487690177,-0.323315436929 -1468862323284774806,0.000350061804056,-0.00620638811961,0.331735640764,-0.654922286378,0.0653955658516,-0.687250806716,-0.307386641612 -1468862323369184354,0.000374853028916,-0.00410783290863,0.331539660692,-0.665606996005,0.0673788914943,-0.688809066411,-0.279230159333 -1468862323456256320,0.000438821793068,-0.0018028934719,0.331684112549,-0.681274878054,0.0663785207398,-0.693173622464,-0.225762622321 -1468862323549475099,0.000499014451634,-0.00159074319527,0.331910073757,-0.676825834194,0.0654452176009,-0.692336934657,-0.241440018576 -1468862323643491696,0.000500784721226,-0.00205126660876,0.33203214407,-0.682273784534,0.0629752894462,-0.694568485795,-0.21934268713 -1468862323742806662,0.000431121210568,-0.00313808210194,0.331878840923,-0.690752498915,0.0649538339027,-0.696525124084,-0.183015672071 -1468862323829596389,0.000361511454685,-0.00439628912136,0.331881791353,-0.692911920873,0.0656645605989,-0.697172574103,-0.171789514556 -1468862323932901838,0.000331422401359,-0.00603559846058,0.331828743219,-0.693600840035,0.0632109908371,-0.697939566627,-0.166741136727 -1468862324018567054,0.000228112374316,-0.00883705262095,0.331718951464,-0.683635938261,0.0634613657344,-0.69486519187,-0.213955425508 -1468862324103681802,0.000142107426655,-0.0111489938572,0.331592202187,-0.686493876666,0.0639754459005,-0.695514414004,-0.202220175885 -1468862324209684927,7.71019185777e-05,-0.0136685622856,0.331379950047,-0.675263112505,0.0634600217232,-0.692765937599,-0.245087556263 -1468862324301043900,-5.56248305656e-05,-0.0182282906026,0.331176102161,-0.676550078637,0.0629927601291,-0.693354658145,-0.239940036876 -1468862324392936054,-0.00017179553106,-0.0212803035975,0.33086052537,-0.678890742731,0.0633505217247,-0.693702887596,-0.23209992368 -1468862324494878430,-0.000294411729556,-0.0243181809783,0.330666810274,-0.670504561818,0.0627337509783,-0.692033938169,-0.25995602992 -1468862324584134026,-0.000451645784779,-0.0274196490645,0.330420732498,-0.664221447181,0.0646045174991,-0.690026850717,-0.280176856132 -1468862324690538285,-0.000621854967903,-0.0319459326565,0.329938441515,-0.656640649719,0.0646652897002,-0.688437300629,-0.301157003152 -1468862324812466036,-0.000747689744458,-0.0349079556763,0.329458236694,-0.662400220056,0.0665650797482,-0.688814174225,-0.286932173195 -1468862324898134011,-0.000849342264701,-0.0375653505325,0.329256564379,-0.654171049739,0.0656919894729,-0.687334612204,-0.308732782627 -1468862325007440288,-0.000966205087025,-0.041489392519,0.328830063343,-0.639026889095,0.0654372944915,-0.684552411391,-0.344602077129 -1468862325108751199,-0.00105492421426,-0.0435144789517,0.328595906496,-0.634938908021,0.0669943562663,-0.682907906595,-0.354966379281 -1468862325193729281,-0.00117374153342,-0.0464073084295,0.32838845253,-0.624619545462,0.0647801131976,-0.682262403306,-0.374395477265 -1468862325308937942,-0.001224274165,-0.0476903617382,0.328141450882,-0.618202870956,0.0662341080551,-0.680225887353,-0.38824089873 -1468862325401669755,-0.00126232532784,-0.0501531921327,0.328005343676,-0.615050168349,0.0646313338504,-0.680675854981,-0.392704038106 -1468862325505553236,-0.00131521595176,-0.0512752197683,0.328000754118,-0.598109902151,0.0635416555243,-0.678529036436,-0.421693430913 -1468862325592406424,-0.00139655696694,-0.0519469343126,0.327775061131,-0.600954449319,0.0646780553969,-0.678249287145,-0.417909563758 -1468862325673896290,-0.00139445590321,-0.0528107732534,0.327857911587,-0.59283557057,0.0641066778054,-0.67716195155,-0.43114731995 -1468862325786976328,-0.00135160714854,-0.053164973855,0.327842980623,-0.596373554709,0.0645174901028,-0.677464353355,-0.42569722415 -1468862325879640954,-0.00129296409432,-0.0531376749277,0.327816516161,-0.590931030987,0.0645705930268,-0.67637376174,-0.434913427664 -1468862325965527317,-0.00121218489949,-0.0521430931985,0.328037202358,-0.579736884384,0.0637220550897,-0.675172138052,-0.451649453201 -1468862326071051355,-0.00123264919966,-0.0514557808638,0.328000694513,-0.590442863915,0.0651209226917,-0.675917679035,-0.436201537192 -1468862326154795421,-0.00120439461898,-0.0508906692266,0.328150779009,-0.589239077949,0.0641241042271,-0.676415276348,-0.437204508437 -1468862326283387181,-0.00111400836613,-0.0491158887744,0.32859647274,-0.562612563686,0.0616623961933,-0.674054787876,-0.474673566801 -1468862326374562811,-0.00110574509017,-0.0478752329946,0.328530490398,-0.582635694185,0.0635598753843,-0.675609239133,-0.447267197657 -1468862326481198471,-0.00102622073609,-0.0465360209346,0.328827649355,-0.580124544,0.063397112568,-0.675407602918,-0.450844640079 -1468862326565248350,-0.000946765532717,-0.0447663143277,0.329179137945,-0.574774893631,0.0618723633669,-0.675631213725,-0.45752387407 -1468862326674754722,-0.00088042014977,-0.042226780206,0.329259812832,-0.592869317847,0.0641428342812,-0.676819432161,-0.431633090733 -1468862326780064257,-0.000803636328783,-0.0405522659421,0.32959112525,-0.596797003156,0.0631431551232,-0.678181352121,-0.424165454299 -1468862326885541648,-0.000705221202224,-0.0379028618336,0.32984867692,-0.592704776702,0.062687997728,-0.677753455403,-0.430605987306 -1468862326973597245,-0.000649775669444,-0.0361681804061,0.330033987761,-0.600695681342,0.0629412703103,-0.67887533914,-0.41753008133 -1468862327053272703,-0.000506369804498,-0.0335464924574,0.330326706171,-0.594455555944,0.0611406169681,-0.679263280916,-0.426011516468 -1468862327171583249,-0.000463722099084,-0.0318525359035,0.330522716045,-0.61063764269,0.0627699993996,-0.680676668799,-0.399826048498 -1468862327264984981,-0.000392528367229,-0.0293323881924,0.330640077591,-0.627628239241,0.0644601813629,-0.682493979098,-0.368957513572 -1468862327353375052,-0.00029290659586,-0.0278631262481,0.330827623606,-0.629709530011,0.0622903443561,-0.68409623219,-0.362764615027 -1468862327442372728,-0.000218202272663,-0.0265111420304,0.331042766571,-0.632063504046,0.0615225338825,-0.684949759118,-0.357147773565 -1468862327543813161,-0.000138640898513,-0.0252841506153,0.331152051687,-0.628478553635,0.0627947129058,-0.683730054393,-0.365492468284 -1468862327635709653,-0.000122466997709,-0.0241848900914,0.331110656261,-0.630507666167,0.0637293775083,-0.683620571873,-0.362024257556 -1468862327737893631,-8.55823600432e-05,-0.0233936719596,0.331198692322,-0.639546366375,0.0649091774104,-0.684613827891,-0.34361482885 -1468862327824488649,-0.000109238717414,-0.0226132255048,0.331091463566,-0.63690287084,0.0652401066021,-0.683837516699,-0.349949585456 -1468862327920079873,-0.000114000467875,-0.0221590939909,0.331187099218,-0.64282033138,0.0648550333486,-0.685215327923,-0.336237714412 -1468862328030099213,-0.000117494630103,-0.0216335058212,0.331264287233,-0.651523137999,0.0655680969028,-0.686540788111,-0.316038243857 -1468862328121094008,-8.40443972265e-05,-0.0214569568634,0.331310003996,-0.644316276181,0.0642071805699,-0.685825867596,-0.332230121375 -1468862328207816969,-8.39278654894e-05,-0.0216394886374,0.331136465073,-0.654523904596,0.0647390259647,-0.687642219577,-0.307498771843 -1468862328299857222,-4.3336480303e-05,-0.022131267935,0.331018328667,-0.653853183489,0.064845425493,-0.687496937283,-0.309223295468 -1468862328383798260,-8.80464358488e-05,-0.0235156025738,0.330929160118,-0.654772630181,0.0648126849288,-0.687760272293,-0.306688647481 -1468862328470817999,-0.000104404694866,-0.0243406742811,0.330858975649,-0.64870385671,0.0644272707158,-0.68671969207,-0.321634105157 -1468862328566166314,-0.000155615183758,-0.0252771954983,0.330690085888,-0.651145260104,0.0654778626007,-0.686697533339,-0.316494861663 -1468862328653911521,-0.000185338285519,-0.0266698002815,0.330597788095,-0.654893169929,0.0644076579302,-0.687816708962,-0.306389889606 -1468862328760528078,-0.000249650591286,-0.0276263002306,0.330323427916,-0.658413614729,0.0653050304669,-0.688134255412,-0.297822113792 -1468862328851020199,-0.000310139090288,-0.0287563689053,0.330342769623,-0.660620697087,0.0655579005762,-0.688606055922,-0.291726166122 -1468862328942533290,-0.000361036683898,-0.0299049206078,0.33022582531,-0.654788693492,0.065268993988,-0.687461694828,-0.307226534406 -1468862329046614693,-0.000364514737157,-0.0310886390507,0.330109119415,-0.653593225658,0.0647175933298,-0.687453709257,-0.309895024351 -1468862329136153597,-0.000407480605645,-0.0329208076,0.329935878515,-0.648598867205,0.0654483907924,-0.686156485182,-0.322839426722 -1468862329239318806,-0.000424282596214,-0.0340880341828,0.329934537411,-0.646596386856,0.0645476081718,-0.686303395383,-0.32670226242 -1468862329326675531,-0.000467904028483,-0.0352232977748,0.329695880413,-0.641588822848,0.0654424766122,-0.684879942395,-0.339146766395 -1468862329418441059,-0.000528632546775,-0.0362850986421,0.329470396042,-0.646635652408,0.066197742845,-0.68550767069,-0.327962536432 -1468862329505338335,-0.000585074420087,-0.0377949811518,0.329459965229,-0.639570586766,0.0660268174751,-0.68421723439,-0.344146335273 -1468862329600698848,-0.000615740020294,-0.0388529375196,0.329397022724,-0.625904398893,0.0648967269254,-0.682279412153,-0.372192023066 -1468862329684469943,-0.000634222349618,-0.0396718494594,0.329322576523,-0.629529278481,0.0637031896047,-0.683634869591,-0.36370064098 -1468862329769816577,-0.000679215358105,-0.0406214259565,0.329112380743,-0.626814448208,0.0641849835623,-0.682893121412,-0.36964972627 -1468862329879173088,-0.000798346241936,-0.041667599231,0.328752458096,-0.630853112043,0.0655131658418,-0.682691662342,-0.362855991126 -1468862329976581049,-0.000845395377837,-0.0422045439482,0.328727453947,-0.628524440897,0.065934194024,-0.68204870267,-0.367993582064 -1468862330069916230,-0.000849565083627,-0.0426987595856,0.328599065542,-0.629389572191,0.0653793705366,-0.682559515514,-0.365659420919 -1468862330173369041,-0.000849303847644,-0.0430568270385,0.328694701195,-0.619609903595,0.0654185093164,-0.680794926651,-0.385126282992 -1468862330258980924,-0.000891006435268,-0.0432866774499,0.328780353069,-0.60904894247,0.0649085274652,-0.679240118082,-0.404325525693 -1468862330389009415,-0.000992134795524,-0.0437415093184,0.328753978014,-0.609919781406,0.063854086036,-0.679999547054,-0.401896917073 -1468862330481519347,-0.00102332711685,-0.0439116507769,0.3287563622,-0.599418311532,0.0643397689968,-0.678005128358,-0.420555736907 -1468862330573532827,-0.000995880574919,-0.0440846607089,0.32876676321,-0.602487877815,0.0642903736567,-0.678609789114,-0.415167266363 -1468862330687453547,-0.000886179273948,-0.043757379055,0.328877091408,-0.598180993463,0.0635822014192,-0.678261053912,-0.422017470572 -1468862330777739514,-0.000693946552929,-0.0425626784563,0.329023122787,-0.585064306778,0.0624931086994,-0.676958993824,-0.442177440605 -1468862330882744772,-0.000654363713693,-0.0418992005289,0.328973025084,-0.602345335617,0.0639140370963,-0.678819889125,-0.41508872624 -1468862330964265197,-0.000626942317467,-0.0415285080671,0.329042345285,-0.601932434065,0.064231643009,-0.678452987131,-0.416236933861 -1468862331051132015,-0.000582988839597,-0.0406127087772,0.329083859921,-0.601914176167,0.0636306292222,-0.678748116673,-0.415874333983 -1468862331139960425,-0.000574784295168,-0.0400024391711,0.329067379236,-0.605783405327,0.0650870577865,-0.678475373838,-0.410440382802 -1468862331228850252,-0.000534647202585,-0.0390605218709,0.329305648804,-0.599774578833,0.0630126764117,-0.678830613046,-0.418913900448 -1468862331331837101,-0.0005346336402,-0.0382992476225,0.329292863607,-0.60401746999,0.0640336491232,-0.679012430716,-0.412316270185 -1468862331423780909,-0.000511446851306,-0.0375275015831,0.329469621181,-0.603699280785,0.0628245428196,-0.679627743125,-0.41195434938 -1468862331538914652,-0.000466218742076,-0.0364405736327,0.329772561789,-0.598337504735,0.0618787858739,-0.679460187284,-0.420115579552 -1468862331625873095,-0.000403434009058,-0.0354627072811,0.329693883657,-0.619936225753,0.0639786402431,-0.68160797938,-0.383401058993 -1468862331756333816,-0.000381819845643,-0.0346899777651,0.32987472415,-0.615847945737,0.0637605286125,-0.680945963558,-0.391124657158 -1468862331851073132,-0.000302809115965,-0.0333155244589,0.330164253712,-0.623686187822,0.0632990281602,-0.682530503778,-0.375713832015 -1468862331942580858,-0.000264158472419,-0.0324717946351,0.330146729946,-0.635638635381,0.0638716617612,-0.684314161567,-0.35156516368 -1468862332027837472,-0.000232487145695,-0.0314611904323,0.330309838057,-0.628423034149,0.0634018838581,-0.683370883889,-0.36615423844 -1468862332119948735,-0.000254618847976,-0.0309264399111,0.330119907856,-0.636249127429,0.0639283715826,-0.684363577185,-0.350352258985 -1468862332202676163,-0.000253607518971,-0.0304875243455,0.33017835021,-0.630354163347,0.0630563229813,-0.683885273478,-0.361909466032 -1468862332286605277,-0.000234547565924,-0.0301901102066,0.330154538155,-0.642778051947,0.0629747633982,-0.686135451058,-0.334796502239 -1468862332395147558,-0.000261154957116,-0.0300761256367,0.330141603947,-0.641147662075,0.0642206098022,-0.685167164185,-0.339634135231 -1468862332510509328,-0.000127826846438,-0.0297850314528,0.330270946026,-0.639344007513,0.0641405077038,-0.684978453962,-0.343409016971 -1468862332602058786,-0.000165818753885,-0.0299229752272,0.330194741488,-0.63332058974,0.0651956693082,-0.683349595945,-0.35733441625 -1468862332698785984,-0.000167992766364,-0.0304959695786,0.330189317465,-0.638045045505,0.0639439128513,-0.68484940884,-0.346108340159 -1468862332790007960,-0.000250474753557,-0.0317727215588,0.329837203026,-0.647724767732,0.0653776411629,-0.686025894586,-0.324879764314 -1468862332874567968,-0.000366400956409,-0.0326510034502,0.329240709543,-0.634106324622,0.0653519915434,-0.683441585765,-0.355732884512 -1468862332964125142,-0.000396588846343,-0.0331117212772,0.329065263271,-0.632440569859,0.0649295629167,-0.683350067937,-0.358936989047 -1468862333065908465,-0.000459014903754,-0.033288680017,0.328947037458,-0.626347266035,0.0664945806652,-0.6813385648,-0.372887829232 -1468862333152218229,-0.00044362724293,-0.0336132794619,0.329040020704,-0.628363675696,0.0636125100112,-0.683400247289,-0.366164773894 -1468862333237451250,-0.000497101747897,-0.033977907151,0.328847706318,-0.629738758254,0.0650856247477,-0.682814772005,-0.364632616391 -1468862333344382605,-0.000561104272492,-0.0347273051739,0.328818976879,-0.624082947158,0.0650587674714,-0.681872980362,-0.375948228476 -1468862333431478239,-0.00060439488152,-0.0353422351182,0.328748196363,-0.628450196668,0.0652526540166,-0.682539621123,-0.367331059195 -1468862333533412376,-0.000592451484408,-0.0357315205038,0.328777730465,-0.620042661907,0.0641744599122,-0.681659293957,-0.38310487216 -1468862333626025235,-0.000640578044113,-0.0360135510564,0.328608095646,-0.624892978109,0.0668846867463,-0.680958172281,-0.375940383829 -1468862333715189703,-0.000616081058979,-0.0362736172974,0.328726112843,-0.613221769032,0.0640351251575,-0.680546466662,-0.395872544445 -1468862333823001371,-0.000638394674752,-0.0364022180438,0.328673005104,-0.617207338292,0.0651824389093,-0.680495901747,-0.389527507272 -1468862333906585212,-0.000601432751864,-0.0365490056574,0.328674614429,-0.620391144772,0.0642338472496,-0.681695290127,-0.382466170758 -1468862334019722170,-0.000669986591674,-0.0369289368391,0.328593343496,-0.621587868326,0.06416515358,-0.681944250288,-0.380083404683 -1468862334120069719,-0.000868702831212,-0.0371300391853,0.328514546156,-0.619763213213,0.064726787138,-0.681143918971,-0.384378672956 -1468862334208385276,-0.000906972505618,-0.0361708216369,0.328508377075,-0.6117218196,0.0632947289025,-0.680424949133,-0.398512335211 -1468862334316819401,-0.00101576000452,-0.0357434824109,0.327964574099,-0.627972887385,0.0658657619646,-0.68203828518,-0.368965488438 -1468862334426843840,-0.00119401793927,-0.0359660238028,0.327068179846,-0.624964006392,0.063556942478,-0.682725397061,-0.37318432173 -1468862334528303330,-0.00132129632402,-0.0360245257616,0.326442271471,-0.62481119458,0.0654284060061,-0.681728376409,-0.374935348579 -1468862334614856352,-0.00144244136754,-0.0360410995781,0.325804829597,-0.626457837077,0.0640801755931,-0.682651034662,-0.370718052346 -1468862334698649075,-0.00161982071586,-0.0360514298081,0.324922055006,-0.622752602715,0.0638416680591,-0.682250017241,-0.377674927954 -1468862334786281962,-0.00173475127667,-0.0360784493387,0.3241533041,-0.62116066315,0.0645660314554,-0.681454016843,-0.381590200432 -1468862334891766715,-0.00183942459989,-0.0360731631517,0.323585927486,-0.628703989532,0.0647228940479,-0.682623466096,-0.366834355081 -1468862334982311973,-0.00193320645485,-0.036038801074,0.323035627604,-0.621667333538,0.0654434644481,-0.681092511648,-0.38126089486 -1468862335072348045,-0.00198441883549,-0.0360110662878,0.322676688433,-0.615237646669,0.0645073887355,-0.680466104547,-0.392794240643 -1468862335177357174,-0.00207968428731,-0.0359630547464,0.322088479996,-0.6204730266,0.0647321660752,-0.681381578559,-0.382808195233 -1468862335273338444,-0.002231746912,-0.0358454398811,0.321144431829,-0.625715469497,0.0646912815317,-0.682207356285,-0.372677222749 -1468862335363597744,-0.00230777240358,-0.0357527993619,0.32050332427,-0.626328312964,0.0643957884192,-0.682544460492,-0.371078275118 -1468862335463623567,-0.00241349404678,-0.0356968007982,0.319919645786,-0.62241953374,0.0641541936848,-0.68195239546,-0.378707134576 -1468862335550473800,-0.00256928196177,-0.0355875901878,0.318859755993,-0.623548305827,0.0650416076337,-0.681488515109,-0.377532122278 -1468862335655845378,-0.00265048327856,-0.0355481021106,0.318385571241,-0.615452887204,0.0642397640628,-0.680625446742,-0.392224422484 -1468862335747758200,-0.0027612419799,-0.0355071276426,0.317672550678,-0.623935066561,0.064347248606,-0.682043961258,-0.376005982963 -1468862335842064219,-0.00288222520612,-0.0354431420565,0.316836059093,-0.619898379388,0.0638547368129,-0.68165259171,-0.383403594185 -1468862335952864938,-0.00297425780445,-0.0354077517986,0.316277593374,-0.620881149181,0.0634444997874,-0.682203885275,-0.380892705306 -1468862336047148541,-0.0031030504033,-0.0353506952524,0.315576374531,-0.626212905305,0.064639807805,-0.682408457588,-0.37148053716 -1468862336139124967,-0.00317424535751,-0.0353016890585,0.314927607775,-0.620455547196,0.0638985287482,-0.681845439194,-0.382150087044 -1468862336228157764,-0.0033120510634,-0.0352293513715,0.314050644636,-0.622538535823,0.0632299616061,-0.682642278641,-0.377421863148 -1468862336323649767,-0.00343772675842,-0.0351691879332,0.313355028629,-0.623712542183,0.0638384207791,-0.682412631204,-0.375792923736 -1468862336417733544,-0.00351928477176,-0.0351044051349,0.312761247158,-0.620458601014,0.06457908553,-0.681386982584,-0.382847810632 -1468862336519406384,-0.0036648476962,-0.0350399874151,0.311769396067,-0.626074284625,0.0641669321666,-0.682561389686,-0.371515200574 -1468862336610216674,-0.00377219263464,-0.0350064635277,0.311177074909,-0.628255835889,0.0645329825116,-0.682827846459,-0.367254994437 -1468862336716125336,-0.00382031360641,-0.0349542610347,0.31071510911,-0.609992591384,0.0624344436761,-0.681011191309,-0.400293312473 -1468862336827265822,-0.00394768361002,-0.0349061414599,0.310039907694,-0.617832207254,0.0631470691801,-0.681841468842,-0.386507467847 -1468862336923189463,-0.00408610561863,-0.0348294228315,0.309081107378,-0.619039629886,0.0637032248633,-0.68171035536,-0.384711355651 -1468862337027264878,-0.00416655093431,-0.0347632877529,0.308461427689,-0.610897435417,0.0632818504596,-0.68063911472,-0.399412226047 -1468862337115729078,-0.00433127349243,-0.0346814803779,0.307489484549,-0.616264920962,0.0633425820627,-0.68126891491,-0.389971704188 -1468862337211959028,-0.00442332262173,-0.0346316471696,0.306877315044,-0.616011820479,0.0636605770631,-0.681219334271,-0.390406181527 -1468862337303148842,-0.00458173500374,-0.0345749370754,0.305810689926,-0.625296149208,0.0637221015566,-0.682685091839,-0.372673161013 -1468862337425025753,-0.00466272095218,-0.0345405004919,0.305383533239,-0.614351762377,0.0624993780442,-0.68169679522,-0.392371277229 -1468862337536812899,-0.00474689248949,-0.0344959758222,0.304775387049,-0.609691722793,0.0624471996751,-0.681044523659,-0.400692784069 -1468862337636135348,-0.00486723519862,-0.0344352610409,0.303909242153,-0.622425955168,0.0630523325824,-0.682712944766,-0.377509428673 -1468862337724116287,-0.00500552775338,-0.0343760587275,0.303125202656,-0.616031077778,0.0625310790274,-0.681990178528,-0.389210703551 -1468862337820981965,-0.00515620689839,-0.0342698767781,0.302137464285,-0.616311167987,0.0624468322814,-0.682185225296,-0.388438226416 -1468862337910048682,-0.00527406157926,-0.0342160649598,0.30144277215,-0.620114805366,0.0627894803615,-0.682461395778,-0.381787313297 -1468862337998056589,-0.00541715603322,-0.0341481119394,0.300472170115,-0.618807970569,0.0625355255142,-0.682310728168,-0.384210975683 -1468862338082919763,-0.00552748702466,-0.0340877734125,0.29994854331,-0.61355834129,0.0630932864824,-0.681194950383,-0.394384125703 -1468862338179071554,-0.00561792729422,-0.034060113132,0.299327939749,-0.619443078361,0.0628079607586,-0.682444175518,-0.382903878327 -1468862338279578940,-0.00574361393228,-0.034001570195,0.298639237881,-0.619930757429,0.063361957954,-0.682131628319,-0.382580135298 -1468862338372192176,-0.00583158712834,-0.0339518450201,0.297982007265,-0.614062408395,0.0627912411297,-0.681504763494,-0.393110513683 -1468862338480811894,-0.00594413140789,-0.03391860798,0.297424584627,-0.619864235321,0.0629435783583,-0.682345960301,-0.382374719581 -1468862338598516646,-0.00609012506902,-0.0338360443711,0.296456187963,-0.616800341402,0.0628680579907,-0.681851887146,-0.388179018143 -1468862338684844517,-0.00621184939519,-0.0337802134454,0.295835912228,-0.615262404992,0.063035729076,-0.681438828913,-0.391305241868 -1468862338785419428,-0.00632728310302,-0.033731892705,0.295103192329,-0.618272167448,0.0637160675193,-0.681471940676,-0.386362244236 -1468862338877494675,-0.00646610558033,-0.0336749777198,0.294246375561,-0.616017306112,0.0632749641967,-0.681482670937,-0.390000418831 -1468862338984942643,-0.0065827309154,-0.0336440913379,0.293523073196,-0.630395863045,0.0634124369737,-0.683897423648,-0.361751617303 -1468862339094038502,-0.00670764269307,-0.033591311425,0.292725592852,-0.620289001037,0.0622792236691,-0.682838722337,-0.38091223762 -1468862339183735804,-0.00679717538878,-0.0335167013109,0.292104482651,-0.611788453181,0.0621718124383,-0.681445421449,-0.396839629925 -1468862339273557544,-0.00690508913249,-0.0334951542318,0.291544944048,-0.618742970923,0.0623306360987,-0.682547492908,-0.383928310576 -1468862339365227553,-0.00705095101148,-0.0333970449865,0.290491044521,-0.620186502564,0.0627706802104,-0.682491877903,-0.381619418189 -1468862339454552606,-0.00723372213542,-0.0333338603377,0.289519876242,-0.617838716779,0.0632976828502,-0.681731050027,-0.38666716802 -1468862339547105637,-0.0073110871017,-0.0333102755249,0.289113014936,-0.615721629906,0.0628011002131,-0.681694378636,-0.390173897657 -1468862339638749314,-0.00725165149197,-0.0333459638059,0.289133131504,-0.610739721933,0.0620318304032,-0.681364384413,-0.398612116879 -1468862339729559279,-0.00722402846441,-0.0333572588861,0.289054989815,-0.607761124248,0.0621718674189,-0.680795675696,-0.404077124704 -1468862339845424541,-0.00716226687655,-0.0334348492324,0.289071619511,-0.618046202792,0.0619681605257,-0.682678257385,-0.384875610021 -1468862339932419408,-0.00709345750511,-0.0337850153446,0.288945972919,-0.623738805867,0.0638348772446,-0.682572613805,-0.375459235319 -1468862340016723333,-0.00712631922215,-0.0344044826925,0.288749963045,-0.624180257361,0.0640335802956,-0.682489637154,-0.374842102882 -1468862340125732797,-0.007107461337,-0.0343704819679,0.288879185915,-0.618364184796,0.062770765501,-0.682126260256,-0.385213357803 -1468862340223757275,-0.00708556594327,-0.0342155769467,0.288994163275,-0.601562353306,0.0609596359836,-0.68074127174,-0.413519018687 -1468862340324890499,-0.00710626970977,-0.0342986024916,0.2888019979,-0.608697751761,0.0627727174721,-0.680616818607,-0.402873899839 -1468862340412888013,-0.00712551409379,-0.0343628935516,0.288829833269,-0.615364062868,0.0632891782158,-0.681402251909,-0.391168149451 -1468862340507330467,-0.00710338354111,-0.0344842672348,0.288898646832,-0.607159008756,0.0623974222596,-0.680724912236,-0.405065542403 -1468862340592345235,-0.00712234573439,-0.0345991365612,0.288844227791,-0.610659980016,0.0626466970252,-0.681160987185,-0.3989855758 -1468862340687094208,-0.00721874227747,-0.0350519604981,0.288740187883,-0.623360733547,0.0630464153896,-0.683049442123,-0.375353173683 -1468862340771745318,-0.00733741372824,-0.035708386451,0.288539886475,-0.610219236585,0.0617050433062,-0.681587798678,-0.39907774133 -1468862340872226766,-0.00742232566699,-0.0356445759535,0.288605988026,-0.59690687332,0.0606998517331,-0.680033024478,-0.421393875373 -1468862340974751028,-0.00752900820225,-0.0356453731656,0.288111954927,-0.611950138865,0.0621655985463,-0.681632474037,-0.396269650918 -1468862341066109752,-0.00764398183674,-0.0361114740372,0.287535309792,-0.622244660879,0.062695634491,-0.68286274307,-0.377596760515 -1468862341154866292,-0.00773994112387,-0.0364997424185,0.287014842033,-0.613650210008,0.0626061630711,-0.681578921992,-0.393654748731 -1468862341248808442,-0.00786369107664,-0.0368151143193,0.28640127182,-0.617578453711,0.0642835828986,-0.681066441233,-0.388088877847 -1468862341335632006,-0.00796283874661,-0.0371833518147,0.285911887884,-0.613549237151,0.0628476147338,-0.681175332457,-0.394471389795 -1468862341451254891,-0.00806270819157,-0.0374439544976,0.285473227501,-0.61637040451,0.0622959466706,-0.681969864657,-0.388746502456 -1468862341547499158,-0.00800712034106,-0.0374963283539,0.285290032625,-0.616677848679,0.062778748109,-0.681682902933,-0.388684550224 -1468862341636402914,-0.00805010367185,-0.0374861359596,0.285179406404,-0.601757929055,0.0621085040191,-0.679730132572,-0.414725060036 -1468862341738922559,-0.0081201614812,-0.0375687144697,0.284986555576,-0.609444407239,0.0617321287623,-0.681201624011,-0.400912716445 -1468862341829466934,-0.00832057278603,-0.0377652533352,0.28450396657,-0.612606348806,0.0626546073526,-0.681136730847,-0.39603107892 -1468862341945676095,-0.0084217954427,-0.0379310622811,0.284263432026,-0.596998910533,0.0607928202134,-0.679882783201,-0.421492508759 -1468862342029899646,-0.00855675619096,-0.0381302908063,0.283849805593,-0.620996909501,0.0625203351511,-0.682591921268,-0.380160906858 -1468862342167931245,-0.00862651504576,-0.0381712391973,0.283706009388,-0.606128608812,0.0618047957626,-0.680673989022,-0.406781510728 -1468862342266836654,-0.00868831109256,-0.0381981953979,0.283727318048,-0.601240224472,0.0623065243774,-0.679463330627,-0.415881800311 -1468862342355768393,-0.00876548141241,-0.0382195599377,0.283837139606,-0.606946330146,0.0629974263478,-0.679933640684,-0.406617413379 -1468862342466022799,-0.00872165989131,-0.0382095240057,0.283964723349,-0.602483291308,0.061735954927,-0.680037144284,-0.413221536174 -1468862342572248601,-0.00870413333178,-0.0381765291095,0.284046411514,-0.59889024018,0.0615844709122,-0.679631482312,-0.419092926938 -1468862342655214194,-0.00872203800827,-0.0381260253489,0.284106969833,-0.61188353485,0.0625640471765,-0.681031204996,-0.397342141739 -1468862342751789714,-0.00874696206301,-0.0380879938602,0.284075528383,-0.607559002312,0.0626564269056,-0.680243334738,-0.405234791721 -1468862342838558691,-0.00873288325965,-0.0380437001586,0.284058451653,-0.611410708602,0.0621923497761,-0.681201941173,-0.397835358381 -1468862342917955376,-0.00873247813433,-0.0380109660327,0.284122020006,-0.604798354757,0.0607166672293,-0.681109145726,-0.408194522272 -1468862343004337809,-0.00874830316752,-0.0379483141005,0.284027427435,-0.604987551751,0.0620098810223,-0.6803044845,-0.409060686514 -1468862343114383343,-0.00877538602799,-0.0379041060805,0.284094840288,-0.601977832365,0.0623536005766,-0.679480709716,-0.414777871831 -1468862343232715201,-0.00877568498254,-0.0378149226308,0.284051507711,-0.602724367866,0.0616130975134,-0.680032104143,-0.412896476045 -1468862343335322885,-0.00877893809229,-0.0377487428486,0.284095615149,-0.602565077747,0.0613890119494,-0.680250588209,-0.412802438866 -1468862343423002006,-0.00875702220947,-0.0376804098487,0.284142225981,-0.603541659921,0.0615668657694,-0.680186864832,-0.411452080672 -1468862343504123681,-0.00878052134067,-0.0375934392214,0.284096509218,-0.605624092306,0.0618588580853,-0.680253095775,-0.408226243869 -1468862343592861407,-0.00878518633544,-0.0375330448151,0.28416916728,-0.599462876611,0.0614130359695,-0.679589014524,-0.418367625321 -1468862343687735443,-0.00879089068621,-0.0374951697886,0.284201204777,-0.598205271702,0.0606068699025,-0.679938944631,-0.419714536088 -1468862343808681709,-0.00881848111749,-0.0374896787107,0.284121543169,-0.612802268597,0.0625909842465,-0.680885984689,-0.396169186267 -1468862343893494764,-0.00882196612656,-0.0374972075224,0.284261882305,-0.605368123523,0.0613417191451,-0.680545191608,-0.408197097851 -1468862343993942921,-0.00882416963577,-0.0374991185963,0.284208893776,-0.599161809742,0.0615642690474,-0.679281378046,-0.419275298538 -1468862344087051920,-0.00884534604847,-0.0374951809645,0.28421664238,-0.609434824594,0.0624330491028,-0.680389000769,-0.402196614337 -1468862344190341608,-0.00884345732629,-0.0375101678073,0.284282267094,-0.605800315842,0.0615530856097,-0.68039544982,-0.407773499435 -1468862344277025129,-0.00885719899088,-0.0374661535025,0.284225523472,-0.604406547553,0.0618674626751,-0.679922097333,-0.410574090629 -1468862344378819192,-0.00889331381768,-0.037370659411,0.284282505512,-0.598930857237,0.0616381162086,-0.67902324383,-0.420011910804 -1468862344467267986,-0.00890102423728,-0.0373282656074,0.28420060873,-0.603038154807,0.0614723214087,-0.679857591388,-0.412746645025 -1468862344552694305,-0.00889224745333,-0.0373080186546,0.284260571003,-0.601647405055,0.0602327060689,-0.680444216253,-0.413990446361 -1468862344637649936,-0.00886739231646,-0.0372185707092,0.284296452999,-0.601080935642,0.0610217680274,-0.679880836844,-0.415620139462 -1468862344738003246,-0.00872827507555,-0.0369632951915,0.284508556128,-0.602637794287,0.0606127037291,-0.680198098495,-0.412897488304 -1468862344829492294,-0.0087041342631,-0.0368932001293,0.284529030323,-0.6082814949,0.0610229012308,-0.680798692737,-0.403463713928 -1468862344930081300,-0.0087072243914,-0.0368159972131,0.284452348948,-0.610225146443,0.061328835139,-0.680881492479,-0.400330410821 -1468862345025418214,-0.00868131313473,-0.0367989689112,0.284520179033,-0.609546111188,0.0616819034146,-0.68060229348,-0.401782776181 -1468862345116184633,-0.00867181736976,-0.0368005856872,0.284563958645,-0.612129984456,0.0611379028665,-0.68138186805,-0.396582638116 -1468862345206391614,-0.00864671170712,-0.0367946028709,0.284606635571,-0.613408546495,0.0609879502732,-0.681668348176,-0.394130293308 -1468862345296677458,-0.00862975604832,-0.0367380641401,0.284639060497,-0.618833116123,0.0607249513241,-0.682700794183,-0.38376774265 -1468862345384851894,-0.00860505457968,-0.036572996527,0.284752011299,-0.602110893066,0.0597090530767,-0.680589648756,-0.413152552259 -1468862345477380318,-0.00856039021164,-0.0363832674921,0.284715086222,-0.604002625379,0.060181013712,-0.680393462534,-0.410638296149 -1468862345578063886,-0.00849681068212,-0.0362700037658,0.284743010998,-0.618271290004,0.061338385476,-0.681979077207,-0.38585327869 -1468862345668628286,-0.00841536745429,-0.0361791625619,0.284842193127,-0.61529326184,0.060137126635,-0.682192219197,-0.390399159836 -1468862345773107003,-0.00840127654374,-0.0361137166619,0.284839332104,-0.616948892104,0.0609000201828,-0.681926866151,-0.38812498154 -1468862345889250902,-0.0083465622738,-0.0360970273614,0.284976243973,-0.608739388337,0.0612361795727,-0.680422594513,-0.403375235078 -1468862345980475564,-0.00835044402629,-0.0360940359533,0.285027831793,-0.61356907759,0.0613347084672,-0.680966448912,-0.395038904437 -1468862346065707031,-0.00835595931858,-0.036097176373,0.28503960371,-0.615863265055,0.061632879013,-0.681198437168,-0.391001938843 -1468862346172882517,-0.00833012443036,-0.0360814258456,0.285178482533,-0.603905597255,0.0603450404739,-0.680030570993,-0.411357421483 -1468862346285857912,-0.00824455171824,-0.0360850021243,0.285255730152,-0.610275433565,0.0599604932163,-0.68133428698,-0.399690159781 -1468862346375016934,-0.0081406114623,-0.0363375209272,0.285374939442,-0.622084789357,0.0599855583112,-0.683398833825,-0.377330467325 -1468862346459785434,-0.00793093536049,-0.0366422049701,0.285389304161,-0.610899492542,0.0609612145912,-0.680954168363,-0.399232965719 -1468862346574686797,-0.00810440815985,-0.0369894653559,0.284886240959,-0.61641050777,0.0622447067813,-0.68124571893,-0.389958911717 -1468862346664578525,-0.00838878657669,-0.037027284503,0.284348964691,-0.611715997423,0.0622359580339,-0.680624558643,-0.398347127762 -1468862346748306255,-0.00857150740921,-0.0370827391744,0.283869147301,-0.6184374413,0.0624635854039,-0.68161592782,-0.386048129952 -1468862346857114413,-0.00873817596585,-0.0370948798954,0.28362685442,-0.613409282564,0.0619790515387,-0.681306521199,-0.394599890277 -1468862346955935905,-0.00904117710888,-0.0372328199446,0.283052146435,-0.6096342711,0.0615017751973,-0.681009339273,-0.400986118179 -1468862347057430779,-0.00925937667489,-0.0372729711235,0.282651484013,-0.607612958704,0.0637855725851,-0.679297259631,-0.406562573538 -1468862347144118594,-0.00945008266717,-0.037328530103,0.282190799713,-0.613133596412,0.0629422077201,-0.680633117111,-0.396035391513 -1468862347225689068,-0.00977073609829,-0.0373285003006,0.281672686338,-0.61564674499,0.0641984221402,-0.680228674412,-0.392615076743 -1468862347313661300,-0.010318223387,-0.0372492708266,0.281024932861,-0.610678281266,0.0641790681859,-0.679439155105,-0.401641031901 -1468862347421846047,-0.0119083281606,-0.0371283665299,0.278905659914,-0.612403739991,0.0642517453478,-0.679452561427,-0.398970662123 -1468862347525143412,-0.0117133101448,-0.0371411181986,0.278635948896,-0.608511654027,0.0617544516034,-0.680404736168,-0.403669852256 -1468862347617327954,-0.0119905108586,-0.0371443480253,0.27867975831,-0.611285709816,0.0620989411,-0.680784262039,-0.398755929171 -1468862347709260762,-0.0120631335303,-0.0372850485146,0.278890639544,-0.608105877704,0.0617548604095,-0.680438470882,-0.404224029544 -1468862347848463749,-0.0119863636792,-0.0375793129206,0.27933177352,-0.600582669516,0.0605703262129,-0.68015257376,-0.415961739908 -1468862347937078793,-0.0119753722101,-0.0376345776021,0.279336243868,-0.597068542589,0.0610539032322,-0.679474675047,-0.422013912473 -1468862348029017344,-0.0120084304363,-0.0376714505255,0.279262512922,-0.604414703294,0.0618630087018,-0.67996107726,-0.41049819489 -1468862348116449501,-0.0119760315865,-0.0377049520612,0.27936732769,-0.59443078398,0.0603987362517,-0.679353600194,-0.426007889152 -1468862348201820000,-0.011995151639,-0.037739366293,0.279419749975,-0.594664588981,0.0608453494217,-0.679112882371,-0.426001834577 -1468862348285069605,-0.0119809405878,-0.0377528853714,0.279349207878,-0.592705535503,0.0611907257543,-0.678541701032,-0.429577703363 -1468862348387170930,-0.0119798164815,-0.0377807840705,0.279346734285,-0.594784945533,0.0613179226237,-0.678886629594,-0.426126653815 -1468862348475565231,-0.0119739305228,-0.03778186813,0.279337376356,-0.591215785755,0.0611907224698,-0.678346274727,-0.431932774539 -1468862348561605594,-0.0119555899873,-0.0378033779562,0.279294610023,-0.59422563886,0.0611490861838,-0.678749130625,-0.427149033778 -1468862348645847120,-0.0119493622333,-0.0378187969327,0.279464691877,-0.586294932434,0.0600478223735,-0.678434202289,-0.438610925987 -1468862348742864843,-0.0119980983436,-0.0377442277968,0.279208958149,-0.594813442219,0.0623599420231,-0.678067581039,-0.427238296657 -1468862348836565643,-0.0119805838913,-0.0377231240273,0.279273509979,-0.598057020353,0.0620103033166,-0.678820278378,-0.421527641267 -1468862348917343700,-0.0119483517483,-0.0376549735665,0.27922552824,-0.599504015948,0.0612617248979,-0.679557430101,-0.418382163958 -1468862348996927640,-0.0119913397357,-0.0375202745199,0.27919074893,-0.602499486185,0.0619136304768,-0.679496656558,-0.414059615555 -1468862349088902911,-0.0119660766795,-0.0374907851219,0.279204189777,-0.600466431227,0.061676282194,-0.679334647739,-0.417301494803 -1468862349172689444,-0.0119218882173,-0.0374091230333,0.279330760241,-0.594679870766,0.0608568818159,-0.678919421629,-0.426287121757 -1468862349283704819,-0.0119429174811,-0.0373335778713,0.279232174158,-0.592328546105,0.061406743801,-0.67818573207,-0.430627702432 -1468862349386188551,-0.011935046874,-0.0372021235526,0.279258728027,-0.599885578438,0.0617149805175,-0.679157642066,-0.418417795015 -1468862349473915577,-0.0119255585596,-0.0368780642748,0.279318630695,-0.594649175574,0.0604675848607,-0.679091452404,-0.426111286451 -1468862349572322846,-0.0119555443525,-0.0367080792785,0.279231309891,-0.602366711433,0.0611474308891,-0.679886764997,-0.413726145456 -1468862349662311243,-0.0119609227404,-0.0365234613419,0.279193639755,-0.604706024692,0.0608784846603,-0.680190173994,-0.409836261217 -1468862349783975248,-0.0119905183092,-0.0362600944936,0.27924901247,-0.604674406252,0.0608675970924,-0.680204908932,-0.409860073577 -1468862349863918304,-0.0120124332607,-0.0360474251211,0.279118865728,-0.611350062711,0.0616421750448,-0.680754881288,-0.398778302671 -1468862349952859580,-0.0120006222278,-0.0358707271516,0.279197275639,-0.614592035447,0.0602022257554,-0.682172669762,-0.391526206797 -1468862350036864032,-0.0120236137882,-0.0356279276311,0.279072254896,-0.615344253649,0.0622046478771,-0.680909491701,-0.392229901201 -1468862350145830258,-0.0119613092393,-0.0353616885841,0.27934589982,-0.614540538325,0.0601317121502,-0.68214003412,-0.391674709166 -1468862350235811409,-0.0119018983096,-0.0351294577122,0.279458642006,-0.611806157262,0.0604863080397,-0.681301075042,-0.397320371518 -1468862350326757378,-0.0118196709082,-0.0349744595587,0.279680192471,-0.610964562065,0.0589518355615,-0.682117876758,-0.39744457122 -1468862350430091007,-0.0118150385097,-0.0348093770444,0.279816806316,-0.614737212207,0.0602198366438,-0.681814691434,-0.391918942828 -1468862350514914549,-0.011660868302,-0.0346033759415,0.279938489199,-0.620151426661,0.0600317774682,-0.682910843901,-0.381367503842 -1468862350601771641,-0.011372926645,-0.034579358995,0.280064553022,-0.623609314617,0.0602806351425,-0.683263137591,-0.375005536704 -1468862350690212828,-0.0112782418728,-0.034567989409,0.279781162739,-0.623849955218,0.0612878115036,-0.682658834708,-0.375542211916 -1468862350775781741,-0.0112230945379,-0.0346457511187,0.279556423426,-0.621839498242,0.0605007210521,-0.682946884438,-0.378469092813 -1468862350865870207,-0.0113114956766,-0.0347731485963,0.279277026653,-0.620696836784,0.0610217238398,-0.682518858373,-0.381024663232 -1468862350958991066,-0.0113273318857,-0.0348613746464,0.279080152512,-0.624024383314,0.0605380631288,-0.683360162423,-0.374095710153 -1468862351042048010,-0.0113137196749,-0.0349039249122,0.279015928507,-0.627497521665,0.0610215935389,-0.683694169549,-0.367539804579 -1468862351150337027,-0.0112882368267,-0.0349308550358,0.278935015202,-0.631151283047,0.0612778916194,-0.684239146753,-0.360152562059 -1468862351266313786,-0.0113106556237,-0.0350004285574,0.278830200434,-0.625139006916,0.0614114794739,-0.683042031085,-0.372670680349 -1468862351356138886,-0.0112160043791,-0.0349969565868,0.278773367405,-0.625156994916,0.0610176421909,-0.683317597613,-0.372199731114 -1468862351443087587,-0.0112322177738,-0.0349575020373,0.278705924749,-0.626270648599,0.0601839174899,-0.683927181436,-0.36933261604 -1468862351544890293,-0.0112807406113,-0.0350280292332,0.278539776802,-0.632799325101,0.0615873985486,-0.684252716309,-0.357169744961 -1468862351635668268,-0.0112938480452,-0.0351046286523,0.278259605169,-0.634446334533,0.0620818859997,-0.684189437214,-0.354271791191 -1468862351736714263,-0.0113065168262,-0.0351348631084,0.278251171112,-0.629648495716,0.0611970325659,-0.683762319818,-0.363685008 -1468862351821351724,-0.011299636215,-0.0351775400341,0.278334766626,-0.631709827241,0.0616892084684,-0.683918991597,-0.35971092374 -1468862351905988339,-0.0113250296563,-0.0351971387863,0.278227388859,-0.63887073764,0.0617520622085,-0.685124783805,-0.344434164997 -1468862351990989062,-0.0113367550075,-0.0352855995297,0.278111368418,-0.635875101738,0.0618435760167,-0.684605932803,-0.350931537291 -1468862352113237193,-0.0113284206018,-0.0353391654789,0.278119593859,-0.637518422499,0.06188225854,-0.684950392534,-0.347251791672 -1468862352214157890,-0.0113514680415,-0.0353535115719,0.278072625399,-0.635015174916,0.0621973280507,-0.684338013715,-0.352942917474 -1468862352301654202,-0.0113598778844,-0.0354257635772,0.278027027845,-0.640877374466,0.0620807489459,-0.68548592629,-0.339898832546 -1468862352390313636,-0.0113602224737,-0.0354752279818,0.277944803238,-0.635927114985,0.062195711599,-0.684545930043,-0.35089210243 -1468862352494889751,-0.0113713853061,-0.0355403348804,0.278054982424,-0.637510641349,0.0616004462812,-0.685106983146,-0.34700718844 -1468862352574114594,-0.0114253647625,-0.0355985425413,0.277990669012,-0.631034973713,0.062177881893,-0.683563281225,-0.361483075006 -1468862352650009318,-0.0114409802482,-0.0356591753662,0.27795368433,-0.624233235501,0.0613962415592,-0.682887805579,-0.374469777432 -1468862352723051143,-0.0114155877382,-0.0357258394361,0.277828097343,-0.625632580065,0.0621855661064,-0.682689442023,-0.372359981577 -1468862352840053888,-0.0114228129387,-0.0357664525509,0.277807414532,-0.63098595313,0.0635049478522,-0.68287780229,-0.362631708061 -1468862352929223547,-0.0113929342479,-0.0358010791242,0.277959704399,-0.626699098471,0.0610395857299,-0.683589852647,-0.369089856685 -1468862353010251406,-0.0113893058151,-0.0357773602009,0.27786886692,-0.627522635045,0.0619706291317,-0.683123095655,-0.368398995403 -1468862353097380231,-0.0114130740985,-0.0357913076878,0.277790814638,-0.630496055073,0.061958628605,-0.68371325338,-0.362176807693 -1468862353200869099,-0.0114171970636,-0.0358237214386,0.277798622847,-0.625697494282,0.061577481883,-0.68316573382,-0.371477374154 -1468862353290230808,-0.0114258844405,-0.0360241793096,0.277702301741,-0.629949641591,0.0619332119154,-0.68357654265,-0.363387997407 -1468862353389634512,-0.0114583503455,-0.0360626243055,0.277861714363,-0.618083657194,0.0617584173804,-0.681627000951,-0.386708058058 -1468862353481985028,-0.0115266209468,-0.0362666919827,0.277641177177,-0.626562443173,0.0628021223901,-0.682600961171,-0.370852161967 -1468862353574401377,-0.0115870684385,-0.0363393574953,0.277595698833,-0.624779104341,0.0623735139416,-0.682571799643,-0.373973734197 -1468862353663143892,-0.0116088427603,-0.0364622659981,0.277555376291,-0.62157146251,0.061817877583,-0.68237320541,-0.379729213444 -1468862353759399620,-0.0115944901481,-0.0366817861795,0.277303993702,-0.608040696837,0.0609663211114,-0.680701776842,-0.403998403071 -1468862353860649195,-0.0115959718823,-0.0367514714599,0.277203500271,-0.616642652485,0.0625124267964,-0.681140903974,-0.389732093323 -1468862353947995963,-0.0133939599618,-0.0361491292715,0.271332740784,-0.639306522796,0.0723521899065,-0.679630650638,-0.352355657312 -1468862354065762854,-0.0141657032073,-0.0363117977977,0.267705589533,-0.612483625202,0.0609536912749,-0.681478563265,-0.395898249794 +1470076134043620648,-0.0365874581039,0.359091848135,1.37559998035,-0.149816482862,0.0093634605335,0.765627236522,-0.625525604404 +1470076134149486941,-0.036578334868,0.359025806189,1.37549376488,-0.166915059807,0.0113087856352,0.766406978169,-0.620186921815 +1470076134225642755,-0.0365421809256,0.358909010887,1.37474524975,-0.111582905837,0.00621963896108,0.765246521838,-0.63396240585 +1470076134307849295,-0.0365265570581,0.35880202055,1.3746329546,-0.149604868716,0.0103015561834,0.766789380334,-0.624136449347 +1470076134387110620,-0.0365964882076,0.359152346849,1.37568330765,-0.130109310889,0.00724867155203,0.764837962525,-0.630905630869 +1470076134466728655,-0.0365874581039,0.359091848135,1.37559998035,-0.149816482862,0.0093634605335,0.765627236522,-0.625525604404 +1470076134544929449,-0.0365964882076,0.359152346849,1.37568330765,-0.130109310889,0.00724867155203,0.764837962525,-0.630905630869 +1470076134623589461,-0.0365345180035,0.358858972788,1.37470316887,-0.13189740734,0.00834474283722,0.766021087831,-0.62908277055 +1470076134694548172,-0.036424934864,0.360185354948,1.37571048737,-0.163963983267,0.0187681070001,0.779730542468,-0.603973386411 +1470076134768017373,-0.0362242795527,0.361874818802,1.37183558941,-0.213995468618,0.0238278654651,0.780522269194,-0.58687576158 +1470076134842294421,-0.0355258658528,0.35873273015,1.35597538948,-0.241334090411,0.0175808836867,0.773350882733,-0.585983943048 +1470076134916918556,-0.0343568772078,0.346767991781,1.33592367172,-0.17311719097,0.017744776741,0.78366714532,-0.596306436688 +1470076134988838746,-0.0349984578788,0.32836779952,1.30887508392,-0.17479787306,0.0185348059793,0.794714090119,-0.58097476667 +1470076135064656813,-0.0333708748221,0.30430445075,1.27978074551,-0.246175184451,0.0326162938134,0.797457536354,-0.549904931467 +1470076135139374193,-0.0322071425617,0.297613322735,1.29637026787,-0.144869615309,0.016361193714,0.784157787337,-0.603192896559 +1470076135211176877,-0.0304311364889,0.278365314007,1.26572716236,-0.276471832517,0.0411881968688,0.797235233523,-0.535054053992 +1470076135285925504,-0.0301822926849,0.264396429062,1.26339495182,-0.17161355806,0.0257942164139,0.798124239171,-0.576958528784 +1470076135362258235,-0.029594514519,0.247600644827,1.25164353848,-0.211900512738,0.0267775356417,0.795579491879,-0.566951857205 +1470076135434327587,-0.0283937249333,0.222634240985,1.23123323917,-0.0951002596371,0.0145374359612,0.805718779962,-0.584432931302 +1470076135505415512,-0.0280222799629,0.206457138062,1.2231824398,-0.243707746667,0.0391887723711,0.80076259153,-0.545756398351 +1470076135577905208,-0.0266394708306,0.189082294703,1.1996229887,-0.136813607066,0.0226214543197,0.808519831261,-0.571896834389 +1470076135649324311,-0.0265460424125,0.175054788589,1.1978533268,-0.184949492687,0.0308011578721,0.804338467287,-0.563812560938 +1470076135731234967,-0.0263859145343,0.153686210513,1.19380021095,-0.259374744099,0.0419033533358,0.797246794295,-0.543476218514 +1470076135804783640,-0.0263756159693,0.141903176904,1.19235491753,-0.331881868195,0.043324425265,0.777739784336,-0.532069777003 +1470076135878761645,-0.0265637822449,0.129484862089,1.16137361526,-0.232266923101,0.0349864019412,0.798678287398,-0.554022581986 +1470076135949628068,-0.0267261844128,0.119115389884,1.16488111019,-0.204038664999,0.0270873062754,0.790889376315,-0.576305904408 +1470076136020942886,-0.0267546698451,0.106940478086,1.16549634933,-0.199037262226,0.0248941219876,0.788053238208,-0.582010777122 +1470076136095557806,-0.0259617511183,0.0895611047745,1.11652755737,-0.278909522139,0.0366558732512,0.789733126895,-0.545148983032 +1470076136168058911,-0.0257155522704,0.0833139717579,1.11431360245,-0.0705132638825,0.00738510960918,0.785066643352,-0.615340316629 +1470076136237653079,-0.0256878901273,0.0757377818227,1.11417603493,-0.121736722566,0.014234065548,0.785053724052,-0.607180543256 +1470076136312669175,-0.0254892557859,0.0689222067595,1.11016154289,-0.27596416961,0.028602518695,0.769656049958,-0.575026293119 +1470076136384988524,-0.0248264111578,0.0623770952225,1.09740209579,-0.303439636036,0.0331361684599,0.7791435394,-0.547505001469 +1470076136464059223,-0.0241634473205,0.0551264733076,1.08826720715,-0.148889888589,0.0125382372736,0.764092789363,-0.627564182316 +1470076136548115867,-0.0241881962866,0.051379788667,1.08835530281,-0.0904250420689,0.00697048136906,0.760678726305,-0.642761697291 +1470076136628042208,-0.0241619143635,0.0460827723145,1.05637490749,-0.29420055602,0.0386376946448,0.782923712776,-0.546793947812 +1470076136703369630,-0.0236333459616,0.0433482080698,1.04738438129,-0.232037166411,0.0247407803717,0.784393391762,-0.574694400661 +1470076136778736050,-0.0229990296066,0.0398065969348,1.03805303574,-0.296255911612,0.0378950918482,0.781542835471,-0.5477108664 +1470076136855207552,-0.0228359419852,0.0369018912315,1.03502082825,-0.484787994631,0.047154186405,0.751993092423,-0.444143526256 +1470076136926742505,-0.0231903921813,0.0351321659982,1.03260505199,-0.105590308859,0.00807582018133,-0.65494899865,-0.748216063026 +1470076137011670773,-0.0232878383249,0.0339170135558,1.01350498199,-0.451356672807,0.015105322104,0.726288492284,-0.518221968979 +1470076137095826036,-0.0227427836508,0.0337159894407,1.00364124775,-0.414088272551,0.0318519025829,0.753433963975,-0.509758394503 +1470076137176793773,-0.0227772090584,0.0330741591752,0.978610575199,-0.233139375923,0.0261419115881,0.786010190693,-0.571970813922 +1470076137251561681,-0.0225090570748,0.0336436517537,0.975328981876,-0.0788756283324,0.00551628717558,0.760595502505,-0.644393270759 +1470076137332666506,-0.0224469508976,0.0341790132225,0.973131895065,-0.409174374048,0.00438483654135,0.713783443472,-0.568392734521 +1470076137404039298,-0.0226214732975,0.0352889932692,0.951477825642,-0.169944166602,0.0131337970289,0.766824283356,-0.618810958265 +1470076137475842441,-0.0218202229589,0.0356117710471,0.936935245991,-0.468350661156,0.0445792265897,0.757063576958,-0.453337723111 +1470076137548455248,-0.0213506780565,0.037370596081,0.931900501251,-0.55829037822,0.0451961044365,0.739390632777,-0.373591565605 +1470076137620945557,-0.021790612489,0.0386228971183,0.918801784515,-0.333441831743,0.0267466902098,0.756888601157,-0.561445282148 +1470076137696067022,-0.0213199406862,0.039015751332,0.90684491396,-0.423838872685,0.0287378636355,0.747846679231,-0.510156926405 +1470076137776266611,-0.0215275064111,0.0389711558819,0.887447059155,-0.405763557449,0.0294508747894,0.751947840861,-0.518712855099 +1470076137848927040,-0.0212546177208,0.0403268821537,0.884394526482,-0.377849111264,0.0288322233341,0.755567505341,-0.534337437288 +1470076137927933953,-0.0212654918432,0.0395309887826,0.872975051403,-0.155259577922,0.0183990279131,-0.612139850454,-0.775139176356 +1470076138005120377,-0.0211314056069,0.0404521487653,0.861943602562,-0.544658523909,0.0452104706823,0.741550369476,-0.389109438595 +1470076138081755920,-0.0208979062736,0.0420023575425,0.85681527853,-0.452706617811,0.0292412236124,0.744562079862,-0.489723369122 +1470076138157786350,-0.0208734199405,0.0418199189007,0.837303817272,-0.348082594424,0.0241198514013,0.753475038141,-0.557254077711 +1470076138233331898,-0.0207143258303,0.0421428382397,0.834569036961,0.319768547002,-9.55502480906e-05,0.707295367529,-0.630461204429 +1470076138307499082,-0.0206902902573,0.0420330427587,0.815626263618,-0.447275950446,0.0200859769162,0.733537097798,-0.511335607833 +1470076138387022585,-0.0202802568674,0.0418200790882,0.809136986732,-0.476084606603,0.036092486033,0.748103159395,-0.460849696442 +1470076138465379428,-0.0204381812364,0.0417391397059,0.794632673264,-0.349318009076,0.0226525099955,0.750679883776,-0.560306616435 +1470076138540095836,-0.0202348064631,0.0406851023436,0.791184008121,-0.424815038588,0.00677332371309,0.717010792343,-0.552613634232 +1470076138613106241,-0.0198846962303,0.040324959904,0.769611358643,-0.484462261087,0.0421509093368,0.751506353022,-0.44582263266 +1470076138693215167,-0.0196505170316,0.0394851230085,0.76657730341,-0.665461616817,0.0172632457021,0.713853129596,-0.217431658822 +1470076138771351775,-0.0196937676519,0.0389200039208,0.75152105093,-0.260900560628,0.0186003337576,0.757141591156,-0.598599645832 +1470076138845421704,-0.018922034651,0.0377996042371,0.742109000683,-0.415668817116,0.0275419045236,0.74451388476,-0.521689518174 +1470076138924326538,-0.0187468938529,0.036690082401,0.723353505135,-0.486147679016,0.0372237470071,0.74641144358,-0.452929115579 +1470076139006715829,-0.018574109301,0.0366883911192,0.721295058727,-0.344919223256,0.0212663803123,0.748710662766,-0.565694983146 +1470076139081774071,-0.0182051584125,0.0356359817088,0.702005565166,-0.473084741048,0.0324954061299,0.743944690209,-0.470830303058 +1470076139155023635,-0.0183692518622,0.0345077477396,0.689768731594,-0.362622688206,0.0219106822337,0.747129028782,-0.556617393148 +1470076139229927333,-0.0181191824377,0.0344607010484,0.687573730946,-0.450788738458,0.0313713172661,0.745341264713,-0.490175226678 +1470076139309246990,-0.018117595464,0.0336003042758,0.672830343246,-0.45510207087,0.0227370162214,0.736390704289,-0.500093855012 +1470076139385726058,-0.0178329590708,0.0325045995414,0.65663343668,-0.559900411612,0.0511546111547,0.744400160306,-0.360226506758 +1470076139459333868,-0.018303507939,0.0325298346579,0.650469183922,-0.145396688131,0.00648815698522,0.741265270169,-0.65524308935 +1470076139535631554,-0.0174775440246,0.0317033343017,0.63799571991,-0.612312784735,0.0556997320346,0.737105291685,-0.280439623575 +1470076139611166069,-0.0172063969076,0.0308220051229,0.624639570713,-0.609990287444,0.0489334373672,0.734160967588,-0.294151392317 +1470076139682968943,-0.0174647942185,0.030909249559,0.617282271385,-0.372447048262,0.0202244777469,0.742944613922,-0.555794447062 +1470076139756132901,-0.017235038802,0.0299487151206,0.604754269123,-0.483760319398,0.0364331630007,0.744633258386,-0.458442895588 +1470076139828899654,-0.0170411970466,0.0292348451912,0.591427505016,-0.497230645272,0.0365837885277,0.743777376044,-0.445217392635 +1470076139901541960,-0.0171107575297,0.0285890363157,0.581225097179,-0.392583650716,0.0163712255898,0.734490455074,-0.553293621479 +1470076139973944024,-0.0170004926622,0.0285849440843,0.571122825146,-0.434772286586,0.028726254478,0.745286140272,-0.504674578554 +1470076140050311851,-0.0168561935425,0.0277687571943,0.560355842113,-0.382673330644,0.027840439328,0.751275019485,-0.53700267881 +1470076140129673130,-0.0167606435716,0.0271776095033,0.553191363811,-0.548481241221,0.0253301095957,0.729701809678,-0.407507033717 +1470076140207678352,-0.0165309868753,0.0265550855547,0.538466691971,-0.347278263295,0.0172688752969,0.741349990196,-0.574020718987 +1470076140284472294,-0.0161667242646,0.0257285628468,0.527324318886,-0.438726026519,0.0333644301262,0.749768977789,-0.494219352518 +1470076140357172923,-0.0160649623722,0.0249571595341,0.517810821533,-0.324483205583,0.0141627022444,0.74072767195,-0.588075320998 +1470076140432433154,-0.0154516594484,0.0239573027939,0.508723080158,-0.578578131552,0.0398135150913,0.735885174409,-0.349478525506 +1470076140509144331,-0.0153235429898,0.0230587217957,0.495372533798,-0.368735789471,0.0176962528559,0.740512160771,-0.56157145578 +1470076140582801807,-0.0150562562048,0.022535616532,0.48536041379,-0.360590100179,0.0154811276889,0.738322221765,-0.569750305999 +1470076140656131673,-0.0148112718016,0.0221424344927,0.475892871618,-0.396982520117,0.0188522659344,0.739743889794,-0.542981075456 +1470076140728841913,-0.0144110023975,0.0219685453922,0.466036260128,-0.460065639182,0.0313820902035,0.744820421341,-0.482283435348 +1470076140801752893,-0.0143007775769,0.0214585121721,0.451846778393,-0.339835754246,0.0153131816099,0.740272619611,-0.579891037402 +1470076140881545307,-0.0137887485325,0.0212911069393,0.441890478134,-0.533082500768,0.03380745246,0.737121844807,-0.413922081365 +1470076140956800906,-0.0135923987255,0.0211223103106,0.433373421431,-0.406758086207,0.0202744576552,0.738653668628,-0.537147617974 +1470076141029198589,-0.0133446641266,0.021140884608,0.424684464931,-0.566962181035,0.0236588789572,0.727121360326,-0.386378920335 +1470076141100626899,-0.0132774468511,0.0213265381753,0.408695429564,-0.364116318581,0.0180701808381,0.741483433954,-0.563289527934 +1470076141174603289,-0.0128122381866,0.0214141122997,0.400051027536,-0.589987087425,0.0348168162091,0.73083875175,-0.341434832613 +1470076141247633924,-0.0128839397803,0.0216592736542,0.389947921038,-0.385094504335,0.0155190310587,0.734677550321,-0.558310200033 +1470076141319273277,-0.0127291670069,0.0219998266548,0.379440575838,-0.389859115299,0.0155648670415,0.735419021137,-0.554009448007 +1470076141394260912,-0.0123147405684,0.0223349239677,0.36655664444,-0.529693820355,0.0212236349222,0.728946992717,-0.433140041797 +1470076141468404318,-0.0119796795771,0.0227077715099,0.356967508793,-0.535410118422,0.0250311775232,0.730231324392,-0.423640954253 +1470076141540363136,-0.011888153851,0.0230674669147,0.34725022316,-0.548172809573,0.0208912525282,0.726469321316,-0.413899083835 +1470076141614244205,-0.0118013061583,0.0233408175409,0.336622983217,-0.434560305378,0.0191082974002,0.735076820622,-0.520052191367 +1470076141687534733,-0.0114822443575,0.0234903357923,0.327214509249,-0.480048798278,0.0212695806437,0.731868279791,-0.483186896808 +1470076141759711556,-0.0112246219069,0.0235444009304,0.313090443611,-0.482234163549,0.0166519019051,0.728545814657,-0.486203580421 +1470076141833356637,-0.0108753535897,0.0235963407904,0.303566455841,-0.49746122681,0.0192572305035,0.72890523204,-0.469956008152 +1470076141903633398,-0.0107609946281,0.0236539486796,0.293797433376,-0.440168357305,0.0151432453133,0.729273630987,-0.523624360105 +1470076141978535619,-0.0104989781976,0.0234891176224,0.286952316761,-0.560873233327,0.0250207307222,0.728068292688,-0.393334133218 +1470076142048203765,-0.0106733134016,0.0235869493335,0.28291362524,-0.509606819957,0.0224697183966,0.731029795168,-0.453201323237 +1470076142130139951,-0.0104385390878,0.024062640965,0.283632993698,-0.563991448515,0.0238764783577,0.727181656717,-0.390577006386 +1470076142204815122,-0.010286054574,0.0242228619754,0.283212631941,-0.579024675628,0.0267936847262,0.727155843302,-0.367772895989 +1470076142282768944,-0.0104070622474,0.0238103382289,0.2814912498,-0.539676911096,0.0253544872346,0.730181214849,-0.418259937226 +1470076142355883491,-0.0103084510192,0.0229634866118,0.278081506491,-0.534747361449,0.0234935922492,0.729387458023,-0.426013200059 +1470076142430387976,-0.0102771902457,0.0226285587996,0.277443021536,-0.534303547061,0.0211393082627,0.727485081741,-0.429928255746 +1470076142507995639,-0.0103125227615,0.0223628543317,0.278372138739,-0.55481211889,0.0273596984115,0.730159780331,-0.397871404882 +1470076142580150280,-0.0104066012427,0.0215791407973,0.279099225998,-0.537469934866,0.027632716569,0.732050885412,-0.41768888333 +1470076142655620537,-0.0103501519188,0.0208917073905,0.280300050974,-0.577918877631,0.0264244653416,0.727217734641,-0.369412892212 +1470076142731965790,-0.010360090062,0.0201297793537,0.280045181513,-0.56720138677,0.0279396246589,0.729012233362,-0.382155894667 +1470076142809103063,-0.0103368544951,0.0192353148013,0.279861330986,-0.569479646751,0.0290870629876,0.729655755841,-0.377424631776 +1470076142886195218,-0.0103554325178,0.0181553550065,0.27980440855,-0.550236402652,0.0272340914432,0.730519700994,-0.403533359117 +1470076142963837173,-0.0103730531409,0.017630988732,0.280028820038,-0.557579781885,0.025955018199,0.72885938859,-0.396478392258 +1470076143035722271,-0.0103844832629,0.0166939757764,0.279914736748,-0.539815885162,0.0259867285169,0.73073470042,-0.417073491929 +1470076143113111425,-0.010345466435,0.0157501269132,0.279945224524,-0.535400570976,0.0260209446115,0.73121637405,-0.421890688877 +1470076143187669978,-0.0103118838742,0.0148288523778,0.279968082905,-0.559257919882,0.0283683651726,0.730216228232,-0.39142058573 +1470076143263443222,-0.0103128449991,0.0138860009611,0.279878914356,-0.545206615346,0.0273091921279,0.731052041903,-0.409349321042 +1470076143336727297,-0.0102885849774,0.0134659064934,0.279837667942,-0.556192942227,0.0288005319493,0.73080540985,-0.394643374846 +1470076143411645517,-0.0103793498129,0.0126539766788,0.279866099358,-0.521691599545,0.0234759851721,0.730661774526,-0.43979554833 +1470076143486325075,-0.010297476314,0.0119353765622,0.279920965433,-0.529671968467,0.0267543296529,0.732273146137,-0.427209376197 +1470076143569682174,-0.0102897174656,0.0113007780164,0.279869347811,-0.546264452132,0.0275010779303,0.731278742088,-0.407517165797 +1470076143646113945,-0.0103254821151,0.0107855442911,0.279817670584,-0.550854711778,0.027099446761,0.730462498988,-0.402801742884 +1470076143719743701,-0.0103110596538,0.0105405272916,0.279778182507,-0.538125283753,0.0268128656606,0.731410109267,-0.418020934024 +1470076143795092065,-0.0102882999927,0.00998501852155,0.279909342527,-0.544428796702,0.0278066532721,0.731560992654,-0.409441802191 +1470076143869292814,-0.010322115384,0.00954686198384,0.279844492674,-0.526572556124,0.0251491620131,0.731458442917,-0.432501339966 +1470076143943520542,-0.010297620669,0.00936662964523,0.279792875051,-0.534926893343,0.0271552132286,0.732148610458,-0.420801883761 +1470076144016022613,-0.0103126298636,0.00904766842723,0.279873818159,-0.534772957541,0.0256252330795,0.730990077573,-0.423101332782 +1470076144089748903,-0.0102965580299,0.00887778121978,0.279702454805,-0.523342707643,0.02683114839,0.733143933375,-0.433465653528 +1470076144166516115,-0.0103334132582,0.00880686100572,0.279716640711,-0.516077069918,0.0248724828461,0.732283676033,-0.44362871336 +1470076144241073315,-0.0103029320017,0.0084954733029,0.279625505209,-0.534903266779,0.0281183791442,0.732890083514,-0.419475836527 +1470076144312508424,-0.0104102380574,0.00818915292621,0.279855102301,-0.485553362972,0.0205869551587,0.731311443804,-0.478537021708 +1470076144388455047,-0.010227154009,0.00794355850667,0.280318558216,-0.544860984644,0.0273933439978,0.731137751713,-0.409650705036 +1470076144458939023,-0.0102220121771,0.00801661331207,0.280153810978,-0.555221037866,0.0281656535158,0.730653317194,-0.396335748004 +1470076144531247776,-0.010430184193,0.00810579862446,0.279584497213,-0.493755420829,0.0192549444829,0.729814321333,-0.472446703759 +1470076144605498192,-0.01037053857,0.00786150060594,0.278794586658,-0.51375999155,0.026128356138,0.73343953272,-0.444335944901 +1470076144678831250,-0.0103295492008,0.00773787964135,0.278577357531,-0.526838307808,0.0267712177981,0.732782779843,-0.429830311738 +1470076144751689100,-0.0102819940075,0.00765003217384,0.278280079365,-0.534104241791,0.0276853295552,0.732834382331,-0.420618532048 +1470076144828965949,-0.0103010674939,0.00760092725977,0.278228491545,-0.526944432766,0.0260611684304,0.732180102636,-0.430769866148 +1470076144901693012,-0.010279096663,0.00753968628123,0.277986377478,-0.525650142692,0.0257304128938,0.732004872492,-0.432664696951 +1470076144975039054,-0.0102515332401,0.00748550705612,0.277745068073,-0.52918874304,0.0257576097357,0.731547601842,-0.429108291716 +1470076145048873168,-0.0102049931884,0.0074531477876,0.277541875839,-0.543900289527,0.0265964383285,0.730550670105,-0.412020415672 +1470076145119355280,-0.0102017801255,0.00746025098488,0.277506113052,-0.549449814242,0.0269875120234,0.730288285197,-0.405037771483 +1470076145190161728,-0.0101932538673,0.00748903956264,0.277097225189,-0.543550736447,0.0276814201942,0.731451169273,-0.41081081151 +1470076145263163533,-0.0104081779718,0.00764745334163,0.276400983334,-0.47003937452,0.0186658914453,0.731114969342,-0.494151264798 +1470076145335586570,-0.0102982725948,0.00781914684922,0.275891780853,-0.52834684453,0.0267499781172,0.73251759099,-0.428429725201 +1470076145410023294,-0.010299121961,0.0078778155148,0.275813639164,-0.526518845188,0.0252055476994,0.731619449147,-0.432291068212 +1470076145489035398,-0.0103498436511,0.0079992134124,0.275652825832,-0.504217036892,0.0212589267348,0.730618693155,-0.459901688358 +1470076145566246695,-0.0102151744068,0.00814414117485,0.275226593018,-0.535056269454,0.0267286094007,0.731781736501,-0.421302575451 +1470076145640807682,-0.0102927144617,0.00825389660895,0.274909079075,-0.505047275492,0.0203624355966,0.729634684314,-0.460592931102 +1470076145715890550,-0.010227529332,0.00829119514674,0.274634540081,-0.532696520184,0.0241396071436,0.730127099488,-0.427277562416 +1470076145791825302,-0.0102424491197,0.00835588853806,0.273754447699,-0.534723490676,0.0265746211593,0.731684869633,-0.421902630448 +1470076145868052596,-0.0103076808155,0.00841305218637,0.273197978735,-0.503455059028,0.0233832384641,0.732371806753,-0.457840326283 +1470076145948296677,-0.0103189311922,0.00843777880073,0.272901296616,-0.504826782815,0.020076773238,0.729239539143,-0.461472141174 +1470076146030697046,-0.010219422169,0.00843803118914,0.272559374571,-0.53387147614,0.0240413451169,0.729790395086,-0.426390947288 +1470076146104835437,-0.010155711323,0.00844459701329,0.272325307131,-0.543081567547,0.0261269303432,0.730514352552,-0.413193145173 +1470076146179665747,-0.0101395901293,0.0084245884791,0.272220879793,-0.546814559676,0.0263330278297,0.730269918259,-0.408663988453 +1470076146257446259,-0.0100876390934,0.00842816848308,0.271983146667,-0.556494903132,0.027940407194,0.730398202843,-0.395033190653 +1470076146339550842,-0.0101999314502,0.00852615665644,0.27152889967,-0.518898804342,0.022126623585,0.729966330413,-0.44430124898 +1470076146414309837,-0.0102460924536,0.00858926773071,0.27086687088,-0.52594750358,0.0229372136693,0.729974993862,-0.435877982977 +1470076146486492931,-0.0102707976475,0.00857001449913,0.27049228549,-0.495414890292,0.0216535379775,0.7320015155,-0.467192671256 +1470076146562498219,-0.0101974708959,0.00859934464097,0.270207196474,-0.516683065516,0.0248211925086,0.732442114407,-0.44266360507 +1470076146634444177,-0.0101563278586,0.00860592909157,0.270056158304,-0.533220476848,0.0263901335152,0.731863847516,-0.423503001905 +1470076146711113927,-0.0102209132165,0.00879465509206,0.269795298576,-0.488962175764,0.0199605630229,0.730774266796,-0.475906017596 +1470076146785494126,-0.0101094692945,0.00891198869795,0.269554942846,-0.535963957876,0.0249169515951,0.730181546579,-0.423032729723 +1470076146863217121,-0.0100556258112,0.00906904786825,0.269293725491,-0.548424147178,0.0258612057078,0.729747233401,-0.407469174509 +1470076146935135298,-0.0100396890193,0.00919821579009,0.268957108259,-0.558297425534,0.0259839229878,0.728936610171,-0.395322954989 +1470076147004603833,-0.0101368092,0.00930496864021,0.268098205328,-0.537686607602,0.0259802777985,0.73109787967,-0.419182570621 +1470076147076519966,-0.0101696681231,0.00933849997818,0.267837703228,-0.524587157587,0.0248811020045,0.731579253343,-0.434719496844 +1470076147148660833,-0.010192505084,0.00932985916734,0.267643272877,-0.51534819936,0.0226511751042,0.730771429811,-0.447075245405 +1470076147225676629,-0.0101663768291,0.00931454077363,0.267448931932,-0.515103707267,0.0230751638929,0.731099849737,-0.446798295974 +1470076147302690295,-0.0101438974962,0.00887512788177,0.267174810171,-0.503346113757,0.0219761920942,0.731270458112,-0.459786095743 +1470076147376158663,-0.0100678894669,0.00896928273141,0.267101764679,-0.524675745791,0.0254797742014,0.732238254436,-0.433466586516 +1470076147453293852,-0.0100780697539,0.00933281052858,0.266914606094,-0.523364349306,0.0241790623521,0.731234871291,-0.436807387561 +1470076147532597532,-0.0100657800213,0.00958965253085,0.266658037901,-0.529103376149,0.0227886148787,0.729508728218,-0.432836356876 +1470076147609436677,-0.010009162128,0.00982580892742,0.266376703978,-0.544560399446,0.0242514507074,0.728913959144,-0.414186284973 +1470076147684370015,-0.0100411623716,0.00994989369065,0.265884041786,-0.541575971232,0.0226709270761,0.728115451841,-0.419558559964 +1470076147760889846,-0.0100664496422,0.0099628707394,0.265622794628,-0.550635701019,0.0240262693034,0.728222763763,-0.407326244532 +1470076147838464220,-0.0101159717888,0.00997936725616,0.26508423686,-0.519663810555,0.0237264426145,0.730872457782,-0.441828055217 +1470076147911991048,-0.010084990412,0.00964019075036,0.265029162169,-0.534645301991,0.0255316266156,0.730854230932,-0.423502810181 +1470076147986150487,-0.0100871575996,0.00905311200768,0.264875501394,-0.519705582211,0.0243992764218,0.73146055738,-0.440767780273 +1470076148068569345,-0.0100430967286,0.00914742518216,0.264763385057,-0.533685348488,0.0258018537021,0.731361317542,-0.4238217035 +1470076148145279795,-0.0100867729634,0.00929305981845,0.264538139105,-0.517761790623,0.0226565760215,0.730491179843,-0.444738174554 +1470076148218720430,-0.0100834518671,0.00931267254055,0.264565587044,-0.524285041268,0.0229465443306,0.730094550835,-0.437676362678 +1470076148296221605,-0.0101421456784,0.00970355607569,0.264623701572,-0.500341725634,0.0194271431429,0.729374531866,-0.466147547419 +1470076148368504805,-0.0100475046784,0.0102602653205,0.264481067657,-0.539723795467,0.024956745709,0.730100872166,-0.418363600129 +1470076148441666055,-0.0100473808125,0.0106533681974,0.264416962862,-0.540191911344,0.0238843036989,0.729264980196,-0.419278937718 +1470076148514122450,-0.0100235501304,0.0110912825912,0.264310121536,-0.551423244832,0.0247691287071,0.728795963474,-0.405185561128 +1470076148587398835,-0.0100451717153,0.0114287603647,0.264074414968,-0.529514523918,0.0217537324034,0.728519082195,-0.434051945007 +1470076148662355527,-0.00998854637146,0.0114621212706,0.263947993517,-0.549425384292,0.024592107871,0.728759185714,-0.407966940527 +1470076148735171406,-0.00997427478433,0.0114586856216,0.263810127974,-0.572947655004,0.0260982968221,0.72746768927,-0.376617345055 +1470076148807150230,-0.010019749403,0.0112469242886,0.263683378696,-0.567245669695,0.0242003768158,0.726897968744,-0.386349627941 +1470076148882352244,-0.00996986683458,0.0112112937495,0.263472139835,-0.568805081367,0.026588894327,0.728342973216,-0.381143442127 +1470076148956880428,-0.0100046647713,0.0112645532936,0.263380467892,-0.570035537598,0.0237700590507,0.726401401639,-0.383191171433 +1470076149028901273,-0.0100320708007,0.0117571027949,0.262716650963,-0.54817962777,0.0244529500067,0.72890267946,-0.409392272534 +1470076149100998974,-0.0100742978975,0.0119113419205,0.262639433146,-0.540198934814,0.023977109072,0.729188178802,-0.41939815088 +1470076149173602767,-0.0100227836519,0.0121832415462,0.26281195879,-0.56569978353,0.0245827550932,0.727235313301,-0.387953917565 +1470076149245892194,-0.010019576177,0.0124319707975,0.262872070074,-0.570308225699,0.0228716989294,0.725648130809,-0.384265797777 +1470076149319640436,-0.00994525104761,0.0127906017005,0.26276832819,-0.574626427996,0.0257766251312,0.726951837652,-0.375074738658 +1470076149394814922,-0.00998184550554,0.0128081440926,0.262657523155,-0.576692383123,0.0260073342625,0.726669980544,-0.372424828911 +1470076149463589612,-0.0100376037881,0.0126508576795,0.262604534626,-0.549442391289,0.024125449694,0.728291143675,-0.408806838709 +1470076149535271091,-0.0100315380841,0.012621127069,0.262634515762,-0.556284352589,0.0241598935631,0.72777324852,-0.400387459026 +1470076149607300574,-0.0100694745779,0.012588378042,0.262542426586,-0.540398610532,0.0228565948876,0.728302089711,-0.420740993877 +1470076149684483429,-0.0100675392896,0.0124381845817,0.262442260981,-0.538044469642,0.0231280739324,0.728530358478,-0.423340002433 +1470076149759422747,-0.010044622235,0.012256976217,0.262440651655,-0.554155671369,0.0252884174341,0.728549026387,-0.401856073718 +1470076149832624249,-0.0100542241707,0.012165366672,0.262401014566,-0.547685528508,0.0240128246342,0.728401935107,-0.410967841868 +1470076149907434490,-0.0100608961657,0.0119147552177,0.262310892344,-0.538407496534,0.0235396595975,0.728788839429,-0.422409847927 +1470076149978839036,-0.0100363353267,0.0117076477036,0.262297362089,-0.549322710574,0.0247600602482,0.728805310649,-0.408012644698 +1470076150052852014,-0.0100467214361,0.0114670358598,0.262284457684,-0.551275357001,0.0244385965376,0.728156712322,-0.406553856289 +1470076150130163207,-0.0100719295442,0.0112028364092,0.262347906828,-0.536980411374,0.02301498144,0.72867336245,-0.424449619254 +1470076150210310330,-0.0100718205795,0.0110886562616,0.262221395969,-0.546030332115,0.0226781226484,0.727519661037,-0.414791178748 +1470076150282689737,-0.010032759048,0.0108570978045,0.262342214584,-0.551422779936,0.0250283915795,0.728710097315,-0.405324674125 +1470076150357798055,-0.0101093184203,0.0106203677133,0.26230469346,-0.528014125977,0.0207212251085,0.727537295501,-0.437562792356 +1470076150433425201,-0.0100308898836,0.0104076191783,0.262299835682,-0.545714872005,0.0247424210191,0.72905639692,-0.412383148523 +1470076150507825286,-0.0100596453995,0.0102886697277,0.262262880802,-0.536948592356,0.0233419511292,0.728875631676,-0.424124599656 +1470076150584897072,-0.0100177126005,0.0100852688774,0.262235045433,-0.556988366066,0.0260876158736,0.728749130381,-0.397502328714 +1470076150664271231,-0.0100342752412,0.00990526843816,0.262339919806,-0.55476488555,0.0251315828969,0.728424516012,-0.401250607196 +1470076150736521479,-0.0100602703169,0.00972895883024,0.262209892273,-0.538996694441,0.023109078181,0.728572412512,-0.422055415335 +1470076150808675015,-0.0100198788568,0.00958949141204,0.26228171587,-0.547696491457,0.0258806902296,0.729695051345,-0.408538707055 +1470076150883733395,-0.0100803906098,0.00932533945888,0.26224526763,-0.535451705669,0.0221006441742,0.727934624241,-0.427684714777 +1470076150957514943,-0.0100095467642,0.00910729449242,0.262257158756,-0.558232054859,0.0261282547791,0.728676045131,-0.395885726546 +1470076151032082045,-0.0100602349266,0.00839795451611,0.262052297592,-0.524670632156,0.0223310573438,0.729019715382,-0.439035654833 +1470076151109477268,-0.00996216014028,0.00740924151614,0.262062370777,-0.559870495389,0.0278158010513,0.729698189508,-0.391550586558 +1470076151187900500,-0.0100129023194,0.00661239586771,0.261938452721,-0.522955707024,0.0229179571663,0.729725460646,-0.439878219301 +1470076151263314618,-0.00992538873106,0.0061672036536,0.261570990086,-0.552251590544,0.0260633673005,0.729379373675,-0.40292010484 +1470076151336511436,-0.00991800799966,0.00607422413304,0.261457204819,-0.551412409032,0.0255881327166,0.729176597626,-0.404463956497 +1470076151408845154,-0.00989938806742,0.00595343625173,0.261111140251,-0.54653856846,0.0250997139511,0.729329234125,-0.410785182054 +1470076151481029668,-0.00991575513035,0.00584818189964,0.260445147753,-0.537761945958,0.0242260668673,0.729654226456,-0.421698822596 +1470076151553654817,-0.00996410474181,0.00583057338372,0.259676605463,-0.533020235382,0.0254621582858,0.731126238379,-0.425082969223 +1470076151627873474,-0.0099003976211,0.00578934978694,0.259311527014,-0.535842773339,0.0257658691959,0.730966489867,-0.421777942685 +1470076151706446605,-0.00990001764148,0.00571044208482,0.25919097662,-0.541695793161,0.0248173090205,0.729458295671,-0.416941679041 +1470076151788134082,-0.009870801121,0.00560746574774,0.258899182081,-0.540760442862,0.0245083752349,0.72935489478,-0.418352626906 +1470076151863033785,-0.00985294952989,0.00529598770663,0.258816480637,-0.548350330932,0.0250133761238,0.72891163605,-0.409113764634 +1470076151936863040,-0.00986442994326,0.00497786654159,0.25862416625,-0.535180968612,0.0227900421497,0.728670132308,-0.42673385511 +1470076152014492673,-0.00988486967981,0.00490284757689,0.258604288101,-0.525393724096,0.0212661749323,0.728531982252,-0.439033410255 +1470076152090550007,-0.00987852271646,0.00526606291533,0.25854191184,-0.520463130212,0.0207013209841,0.728534223997,-0.444890402082 +1470076152165435980,-0.009775608778,0.0056440345943,0.258432120085,-0.548879186291,0.0264596864698,0.730120902456,-0.406146514997 +1470076152236857832,-0.00985452439636,0.00574887916446,0.258253633976,-0.522360065328,0.0211789053308,0.728737116058,-0.442304908179 +1470076152316170278,-0.00980872195214,0.00589034985751,0.25826883316,-0.545970806523,0.0246988585954,0.729179952214,-0.411828170597 +1470076152392378101,-0.00984341744334,0.00610951101407,0.258252471685,-0.537330372646,0.0218832341713,0.728080592655,-0.425083339233 +1470076152469628009,-0.00982362683862,0.00632081413642,0.258133620024,-0.547327397915,0.0246056810483,0.728958183861,-0.410423252428 +1470076152544633269,-0.00978473387659,0.00644471868873,0.258040189743,-0.545928804123,0.0267257251768,0.730694200118,-0.409064129884 +1470076152623781403,-0.00985750183463,0.00666330428794,0.258152097464,-0.550220884424,0.0224148663694,0.727274357428,-0.409666402256 +1470076152700803389,-0.00980150606483,0.0069276439026,0.25811907649,-0.568154780555,0.0268320523358,0.728428308353,-0.381932436288 +1470076152776413169,-0.00985779892653,0.00716983480379,0.257943958044,-0.541958560026,0.0237912896524,0.728943856251,-0.417559275055 +1470076152848429888,-0.00990732479841,0.00746274972335,0.257942140102,-0.527424377316,0.0209887040189,0.728289532239,-0.437009562536 +1470076152924160492,-0.00992370862514,0.00753451697528,0.257815092802,-0.536850417892,0.0218882450262,0.728059757499,-0.425724703357 +1470076153000218150,-0.00987871177495,0.00775735033676,0.257872223854,-0.545237280808,0.0255365890409,0.729952778359,-0.411379546894 +1470076153075938198,-0.00994327664375,0.00799412932247,0.257786124945,-0.528727619008,0.0217333435305,0.728634018435,-0.434818621792 +1470076153148064430,-0.00987965147942,0.0081661650911,0.2578959167,-0.553001841522,0.0260546953766,0.729499196516,-0.40167280018 +1470076153225122698,-0.00994096603245,0.00842209905386,0.257864713669,-0.534394712857,0.0212337227661,0.727763976937,-0.429337878321 +1470076153302383125,-0.00990399625152,0.0085845189169,0.257810801268,-0.555158016823,0.025096219879,0.728594834017,-0.400398955979 +1470076153377744295,-0.00991386082023,0.00868016295135,0.257945030928,-0.556460539741,0.0248036162688,0.72824898351,-0.39923660447 +1470076153449082891,-0.00993864331394,0.00912049226463,0.257839113474,-0.549408191339,0.0253455961506,0.729357478624,-0.406873332158 +1470076153526541358,-0.00990031659603,0.00960504915565,0.258278995752,-0.563721978739,0.0247753083121,0.727442380781,-0.390424509257 +1470076153603341655,-0.0098488163203,0.00982222519815,0.258673012257,-0.55755488772,0.0242399612336,0.727673925263,-0.39879271552 +1470076153676486100,-0.00981045980006,0.0102108465508,0.258420318365,-0.570615719467,0.0251066531275,0.727062407053,-0.380982431244 +1470076153749089944,-0.00981827266514,0.0104070864618,0.258142918348,-0.570860909126,0.026008872766,0.727754802523,-0.379228570091 +1470076153821620467,-0.00994700845331,0.0107314130291,0.257295548916,-0.531591433518,0.0238254716688,0.729940244557,-0.428987335576 +1470076153895086619,-0.00989191606641,0.0108593748882,0.256950229406,-0.532385044012,0.024944571432,0.730783489799,-0.426496687332 +1470076153965864133,-0.00986208114773,0.0109826866537,0.256595373154,-0.536795880267,0.0237908161315,0.729512113372,-0.423197656469 +1470076154039692776,-0.00979229621589,0.0110268369317,0.256333082914,-0.547353805735,0.0250230454802,0.729291142836,-0.409770774365 +1470076154115904869,-0.00975379440933,0.0110530583188,0.256146997213,-0.571232553942,0.0263804295503,0.72761745973,-0.378906683169 +1470076154193736815,-0.00980961881578,0.011105472222,0.255645871162,-0.556457458966,0.0224099256534,0.726492833501,-0.402568074325 +1470076154267482896,-0.00984617415816,0.0111454213038,0.254970520735,-0.550564646637,0.0241452047573,0.72826081204,-0.407347233461 +1470076154346530484,-0.00980742741376,0.0111998682842,0.254580497742,-0.550484401765,0.0261637638815,0.729772305878,-0.404616809398 +1470076154419542375,-0.00983089860529,0.0112523622811,0.254191815853,-0.53351755543,0.0227984379299,0.728935342663,-0.428360263672 +1470076154493480684,-0.00977651961148,0.0112683065236,0.253838598728,-0.53988649645,0.0230082760518,0.728544371703,-0.420970650573 +1470076154565466023,-0.00973761361092,0.011274330318,0.253526717424,-0.53889630941,0.0232920375372,0.728696877516,-0.42195865839 +1470076154643017237,-0.00970873143524,0.0112933963537,0.252923816442,-0.579803746931,0.0262246390298,0.72663371274,-0.36761845827 +1470076154718436599,-0.00985723920166,0.0113533372059,0.252222746611,-0.525374095038,0.0204946022251,0.727708563189,-0.440456897555 +1470076154789894990,-0.00980641692877,0.0114328358322,0.252152979374,-0.544778542126,0.0231459929255,0.72810081345,-0.41539115121 +1470076154863415642,-0.00982154440135,0.0117644080892,0.25198674202,-0.531332226751,0.0215446771866,0.728136474269,-0.432480249885 +1470076154935624926,-0.00974800717086,0.0119924563915,0.252011716366,-0.562643887439,0.0261841242915,0.728424152568,-0.390057049056 +1470076155008591272,-0.00974500179291,0.0119791384786,0.251981049776,-0.560848139798,0.0263559318718,0.728656147712,-0.392192487615 +1470076155082378562,-0.00982053857297,0.011695294641,0.251891165972,-0.534504539216,0.0214142006107,0.727587808837,-0.429490756595 +1470076155156056983,-0.00975300371647,0.0116117447615,0.25194182992,-0.56028972261,0.0255445246913,0.728180643375,-0.393923665968 +1470076155244444758,-0.00974325463176,0.0115705775097,0.251907914877,-0.562126128843,0.0260777515314,0.728338053554,-0.390970390044 +1470076155318669763,-0.00975360348821,0.0114962980151,0.251934915781,-0.557608913336,0.0258130429076,0.728541323563,-0.397030888528 +1470076155391824925,-0.00980527605861,0.0113276466727,0.251877695322,-0.543624545365,0.0224972133567,0.727568423828,-0.417864113937 +1470076155465350306,-0.00983322411776,0.0112673789263,0.251921772957,-0.536712021453,0.0212721640639,0.727312785077,-0.427204650874 +1470076155538256697,-0.00972713716328,0.01111614611,0.25185239315,-0.56592631047,0.0267033097009,0.728416783321,-0.385257490706 +1470076155611173066,-0.00981286261231,0.0108831133693,0.251884162426,-0.53672103992,0.0219632918268,0.727783328821,-0.426356148553 +1470076155682543974,-0.00974518153816,0.0107425907627,0.251824557781,-0.566203462009,0.0254035588185,0.727512591778,-0.386644187352 +1470076155756363549,-0.00973811838776,0.0105413123965,0.251805365086,-0.556625914291,0.025600781903,0.728490763659,-0.398513988171 +1470076155833227455,-0.00980551447719,0.0104432897642,0.251878529787,-0.543482020996,0.0226845308377,0.72771014374,-0.417792594014 +1470076155906023228,-0.00977924559265,0.0103206662461,0.251782476902,-0.548396513734,0.0232227540986,0.727754809702,-0.411211508074 +1470076155981554657,-0.00973527226597,0.0101360175759,0.251841932535,-0.565220900405,0.0261693265937,0.72804102436,-0.387035872936 +1470076156056521089,-0.00979806762189,0.00999043602496,0.251838922501,-0.536694435604,0.0221731010349,0.72804231165,-0.425936414068 +1470076156133601099,-0.00980177056044,0.00992804486305,0.251827985048,-0.540875273206,0.0219852475434,0.727569401938,-0.421441992555 +1470076156206676092,-0.00977129023522,0.00967060215771,0.251823693514,-0.54346488671,0.0238751434918,0.728571190555,-0.416245017664 +1470076156280123984,-0.00973781570792,0.0092198215425,0.251700758934,-0.548584024645,0.0251956387702,0.728969567148,-0.408685842504 +1470076156352921181,-0.00975419115275,0.00868323538452,0.251674473286,-0.542709881985,0.0236453456454,0.728657869672,-0.417090626352 +1470076156428996697,-0.00975769665092,0.00840951409191,0.251791030169,-0.54518682646,0.0242963031256,0.728797746677,-0.413563608588 +1470076156504254678,-0.00975227728486,0.00832009594887,0.251692920923,-0.543700099234,0.0239742880272,0.728659022762,-0.415778142948 +1470076156576788211,-0.0097235981375,0.00803898368031,0.25122025609,-0.542207517233,0.0230701396652,0.728205465128,-0.418563707779 +1470076156650061681,-0.00968610029668,0.00779396947473,0.250739991665,-0.549944050949,0.0261700441235,0.729787431119,-0.405323296883 +1470076156736344240,-0.00975999981165,0.00768588669598,0.250090390444,-0.53594058543,0.0250917730876,0.730508704387,-0.422486833673 +1470076156813384587,-0.00970489531755,0.00760251143947,0.249646693468,-0.54402375366,0.025724271018,0.730062001054,-0.412778260028 +1470076156889703874,-0.00967237353325,0.00756666762754,0.249443665147,-0.555707069729,0.0260151197089,0.728964774548,-0.398902524017 +1470076156965787498,-0.00959245022386,0.0075367721729,0.249052003026,-0.576554594679,0.0279439796248,0.727963029208,-0.369964540819 +1470076157040020610,-0.00965716410428,0.00753798568621,0.248653903604,-0.542376584204,0.0233246378508,0.728369711513,-0.418044454008 +1470076157116601462,-0.00971686560661,0.00754794524983,0.247872129083,-0.513324413995,0.0222159037103,0.730344750941,-0.450112257544 +1470076157189007947,-0.00972206611186,0.00751569354907,0.247431784868,-0.529294874107,0.0232840627659,0.729753556282,-0.432162626518 +1470076157261461058,-0.00963065493852,0.00753614632413,0.247058063745,-0.541438646654,0.0255676264995,0.730247873321,-0.415846764921 +1470076157334169524,-0.00959423929453,0.00753418402746,0.24690747261,-0.553558250696,0.0264118868557,0.729558112029,-0.400775044747 +1470076157406252296,-0.00959572941065,0.00753244385123,0.246439561248,-0.548745636361,0.0243780765863,0.728645550767,-0.40909607344 +1470076157477754742,-0.00966295506805,0.0075071384199,0.245916545391,-0.53886267795,0.0217034747201,0.727430113453,-0.424265722796 +1470076157550880006,-0.00966784916818,0.00751099782065,0.245202705264,-0.535504407452,0.0233485305464,0.729126127311,-0.425517292472 +1470076157624472325,-0.0095899766311,0.0075335809961,0.244822219014,-0.551504661105,0.0258713166947,0.729373719765,-0.403964429954 +1470076157699524394,-0.00954876560718,0.00754759879783,0.24471616745,-0.556211832508,0.0272917227267,0.729801882492,-0.396576312404 +1470076157775661685,-0.00954066775739,0.00756547693163,0.244388133287,-0.552668895066,0.0255784883491,0.729061057198,-0.402955094569 +1470076157849278789,-0.00958138983697,0.0075918356888,0.243952542543,-0.523352268971,0.022780071281,0.729872527202,-0.439169175775 +1470076157923753100,-0.00962791685015,0.00757887307554,0.243343278766,-0.531055535095,0.0235255262913,0.729772789639,-0.429951443491 +1470076157995868262,-0.00961255095899,0.00757366325706,0.24305960536,-0.54175571872,0.0247685277337,0.729730815981,-0.416389478105 +1470076158065782768,-0.00951367802918,0.0075712245889,0.242668703198,-0.571110122772,0.027609096604,0.728417101061,-0.377464557718 +1470076158140153688,-0.00951100233942,0.00760422926396,0.242260023952,-0.550864007572,0.0253869618299,0.729046936725,-0.405456423532 +1470076158217994423,-0.00953160878271,0.00765147060156,0.241791382432,-0.518875635279,0.0232933896988,0.730757688304,-0.442965793369 +1470076158292648148,-0.00956608820707,0.00763547001407,0.241246417165,-0.529728220298,0.0241653091567,0.730345474867,-0.430580466109 +1470076158368856867,-0.0095432093367,0.00765803223476,0.240735992789,-0.535826271314,0.0255911815774,0.73085701669,-0.421999193779 +1470076158442314635,-0.00951616093516,0.00765944179147,0.240498200059,-0.54966512973,0.0255934539872,0.729316974917,-0.406583288356 +1470076158515714760,-0.0095469802618,0.00767512153834,0.240190699697,-0.526439963001,0.0213782578375,0.728445288359,-0.43791711238 +1470076158591572394,-0.00949617940933,0.00769446184859,0.23984977603,-0.525163489828,0.0227664111079,0.729559069338,-0.437525500771 +1470076158664091174,-0.00948467478156,0.00771503662691,0.23947507143,-0.533744933334,0.0242752047115,0.729979170909,-0.426212940459 +1470076158741124875,-0.00948453694582,0.00773098599166,0.238833457232,-0.542971283019,0.0265727833045,0.730775029696,-0.41284855453 +1470076158814699812,-0.00949596986175,0.00775059126318,0.23828984797,-0.531000495518,0.0234654401475,0.729855063359,-0.429883046151 +1470076158883932920,-0.00944659672678,0.0077387415804,0.237983837724,-0.539194082337,0.0235774702529,0.729061131133,-0.420931955951 +1470076158955359904,-0.00937607698143,0.00777902407572,0.237637847662,-0.552289696498,0.0265547922634,0.729799800672,-0.402073606555 +1470076159026753138,-0.00935900304466,0.00780803151429,0.237282782793,-0.548274753804,0.0263559621319,0.729923473915,-0.407322820168 +1470076159101912854,-0.00951412972063,0.00781617965549,0.236586913466,-0.525291973406,0.0220174791872,0.729033725089,-0.438284611832 +1470076159176676342,-0.00949568394572,0.00781785883009,0.23632080853,-0.522280640714,0.0216219070504,0.729010083737,-0.441927282796 +1470076159266702308,-0.00940608605742,0.00785686448216,0.236005291343,-0.536590610815,0.0241916032566,0.729669225693,-0.423164393343 +1470076159341508226,-0.00935318041593,0.00787889771163,0.235714673996,-0.542140173579,0.0255967371624,0.730132432796,-0.415133074829 +1470076159416719045,-0.00937184039503,0.00791507121176,0.235231235623,-0.533280265223,0.023770110372,0.729657774869,-0.427371819555 +1470076159491309844,-0.00945180095732,0.00792678818107,0.23481836915,-0.51429274713,0.021917277,0.730055707673,-0.449490007578 +1470076159565917565,-0.00932887196541,0.00791044812649,0.234019830823,-0.561159414517,0.02675834969,0.728918925892,-0.39123049689 +1470076159639355022,-0.00929859187454,0.00792461633682,0.233748853207,-0.556964122626,0.0259721852824,0.728896698643,-0.397273223873 +1470076159716457590,-0.00933166686445,0.00798286404461,0.233404606581,-0.526724216716,0.0236372721758,0.730240257107,-0.434456034358 +1470076159793994279,-0.00936361867934,0.00800008047372,0.233004510403,-0.495256575172,0.0215569858753,0.731372231526,-0.468349100631 +1470076159868072109,-0.00935193803161,0.00797441694885,0.232419341803,-0.541665648082,0.0248993277789,0.729653555286,-0.416634178174 +1470076159945343349,-0.00930416304618,0.00798518210649,0.23205794394,-0.548477886402,0.0260440714799,0.729805375552,-0.407281018811 +1470076160021379890,-0.00930136721581,0.00798874069005,0.231580868363,-0.537829788034,0.0228953600692,0.728562191001,-0.423570602656 +1470076160093613497,-0.00927982199937,0.00801540724933,0.231265753508,-0.519966616822,0.0228169356498,0.73023067785,-0.442580232235 +1470076160170318700,-0.00925368070602,0.00802430789918,0.230880960822,-0.538893260162,0.0249521150555,0.729987515348,-0.419630401118 +1470076160245817975,-0.00928172655404,0.0080359717831,0.230198204517,-0.548291511511,0.0258579342646,0.729845566829,-0.407471758801 +1470076160323305524,-0.0092893820256,0.00804612506181,0.22997058928,-0.542839137011,0.0238644398833,0.728945489359,-0.416406812361 +1470076160396232909,-0.00928104389459,0.00804293621331,0.229800745845,-0.536018682294,0.0227893903909,0.728736531157,-0.425567484748 +1470076160469657155,-0.00925565045327,0.00806104112417,0.229468882084,-0.520745525447,0.0222758323628,0.729754688315,-0.442477095341 +1470076160542030115,-0.00919311493635,0.00810818560421,0.229008585215,-0.535427510124,0.0252738148353,0.730333747076,-0.423427955581 +1470076160613407130,-0.00926428474486,0.0081446878612,0.228189095855,-0.528463237659,0.0234396101926,0.729912465248,-0.432902973186 +1470076160690699854,-0.00927775353193,0.00814905110747,0.227987229824,-0.521983343801,0.0217648252811,0.729294386323,-0.441802421058 +1470076160765984353,-0.0091929892078,0.00815864093602,0.226466149092,-0.487230586281,0.0189187394891,0.729373392883,-0.479857156708 +1470076160838847650,-0.00913667213172,0.008151197806,0.224305421114,-0.508694477161,0.0200363943417,0.728729199794,-0.458019896048 +1470076160910727357,-0.00910167302936,0.008145888336,0.223727226257,-0.540975976634,0.0218875948877,0.727353950012,-0.421689645708 +1470076160981086823,-0.00916110165417,0.00816626939923,0.223427638412,-0.512551563371,0.0179625191906,0.726580377555,-0.457218982264 +1470076161054142867,-0.00911520794034,0.00821309443563,0.223678454757,-0.546918526041,0.0218303394051,0.726910825905,-0.414733906664 +1470076161126761343,-0.00914614647627,0.00825737137347,0.223494127393,-0.511360832026,0.0194201586462,0.728105089775,-0.456065713633 +1470076161202062058,-0.00909744761884,0.00830998178571,0.223103493452,-0.513263655405,0.0220750727203,0.730007028992,-0.450735896981 +1470076161275430440,-0.00916840229183,0.00821315124631,0.222496673465,-0.530549711832,0.0220672712851,0.728348830141,-0.433056601896 +1470076161349282176,-0.00912958942354,0.00798388011754,0.222369119525,-0.540130354377,0.0232710338469,0.728542946601,-0.42064573482 +1470076161424023470,-0.00911642704159,0.0077887699008,0.222275853157,-0.537556840013,0.0226505509896,0.728519179487,-0.424004011083 +1470076161497427974,-0.00908184051514,0.00781188020483,0.222158581018,-0.547940209059,0.0240838297107,0.728490962661,-0.410466093319 +1470076161570712320,-0.00907498039305,0.00771580822766,0.222069531679,-0.545782156625,0.0234548383368,0.728385633955,-0.413552990942 +1470076161643269265,-0.00907907355577,0.00771148875356,0.222019597888,-0.5393887736,0.0230050690696,0.728575436797,-0.42155468282 +1470076161717328149,-0.00906887091696,0.00769821926951,0.221964165568,-0.541731672616,0.0230511656539,0.72839868604,-0.418844592686 +1470076161795640495,-0.00906647741795,0.00783252809197,0.221851184964,-0.538314419318,0.0225434226152,0.72836636846,-0.423310540085 +1470076161868597683,-0.0091370549053,0.00826788786799,0.221748054028,-0.501088517551,0.0188311549997,0.728630193698,-0.466533735127 +1470076161942086886,-0.00906409882009,0.00884483102709,0.221535205841,-0.525417607797,0.0225778512191,0.729307834804,-0.437649014788 +1470076162014070110,-0.00910878926516,0.0094160810113,0.22090870142,-0.548152186536,0.0230457673864,0.727684033722,-0.411672224065 +1470076162086437947,-0.00914423447102,0.00966230314225,0.220621705055,-0.540970356792,0.0213344906382,0.727129571076,-0.422111951321 +1470076162163553520,-0.00910504162312,0.00991293974221,0.220311284065,-0.541839829034,0.0211679807292,0.726956499396,-0.421302461718 +1470076162241121493,-0.00905096810311,0.0100642386824,0.220037922263,-0.549846843215,0.0221259025685,0.726680513328,-0.411235121301 +1470076162323998384,-0.00902695860714,0.0102369952947,0.219692662358,-0.538487132158,0.0226281802438,0.728257022286,-0.423274477673 +1470076162398320541,-0.00909641478211,0.0103023014963,0.219170182943,-0.543545234588,0.0210330608523,0.726630361814,-0.419671902323 +1470076162471117289,-0.0090674366802,0.0103762764484,0.218739017844,-0.560706096638,0.0227624896573,0.726338946499,-0.39689076212 +1470076162549158563,-0.00900983717293,0.0104346340522,0.218492850661,-0.564784698929,0.023988087992,0.726789841597,-0.390152972104 +1470076162627866099,-0.00906044896692,0.0105047561228,0.21816457808,-0.528477401824,0.019677847124,0.726956586713,-0.438016596864 +1470076162699920112,-0.00896417163312,0.0104628978297,0.217444196343,-0.532676407688,0.0218087194964,0.727934809692,-0.431150944898 +1470076162773210581,-0.00888614077121,0.0103650158271,0.217187970877,-0.543269443354,0.0218445518159,0.727116877831,-0.419144573444 +1470076162849829979,-0.00884838495404,0.0102590480819,0.216874241829,-0.532950178912,0.0207451707611,0.727301232976,-0.431933630549 +1470076162924995796,-0.00882108975202,0.0101882601157,0.216590151191,-0.516317667765,0.0196503635929,0.727774451286,-0.450970372885 +1470076163004897545,-0.00874664541334,0.0100895287469,0.216288372874,-0.531847274009,0.020089892482,0.727090228839,-0.433675768837 +1470076163080014998,-0.00874164234847,0.0099978139624,0.215929910541,-0.521727625795,0.0190027260867,0.727059678699,-0.445896181295 +1470076163153305438,-0.00873721484095,0.00988376140594,0.215486004949,-0.518905567801,0.0187693194529,0.727054522601,-0.44919533114 +1470076163226407593,-0.00857150740921,0.00961655005813,0.21490894258,-0.544599030709,0.0229688613443,0.728091830859,-0.415652033551 +1470076163306523705,-0.00864528398961,0.00948070082814,0.215022087097,-0.527246455308,0.0204822218292,0.727988500592,-0.437749239816 +1470076163383274227,-0.00858954992145,0.00927653256804,0.214995905757,-0.543058413677,0.0234356452991,0.728674807734,-0.416618955928 +1470076163454784510,-0.008674220182,0.00912842713296,0.215154767036,-0.528503823511,0.0206015550649,0.728025279849,-0.436163359721 +1470076163527885392,-0.00861931499094,0.00901532638818,0.215274676681,-0.550073389203,0.0242745505519,0.728669545132,-0.40727227586 +1470076163605380375,-0.00868041906506,0.00882841646671,0.215275585651,-0.530986662382,0.0218252963114,0.728725758038,-0.431897661935 +1470076163680218185,-0.00864879507571,0.00867739878595,0.215085566044,-0.537570319085,0.0222857953535,0.728569825919,-0.423919218867 +1470076163752860849,-0.0086451433599,0.00848641432822,0.214805975556,-0.555795133828,0.0243852365586,0.728321864463,-0.400055485147 +1470076163825494905,-0.00868191290647,0.00842580758035,0.214020848274,-0.536637746744,0.0241771352447,0.730156614716,-0.422263795379 +1470076163903333312,-0.00867896340787,0.00827510748059,0.212275981903,-0.527426249772,0.0218470839833,0.729044721318,-0.435704085696 +1470076163979605206,-0.00863235723227,0.00817654374987,0.211309328675,-0.535876432951,0.01946543183,0.726610478303,-0.429528530359 +1470076164053244970,-0.00870542321354,0.00811626575887,0.210565090179,-0.519135134812,0.019835938329,0.728297419598,-0.446864762497 +1470076164127171040,-0.00872210599482,0.00802512466908,0.210789442062,-0.533042875534,0.0220564423644,0.728795673927,-0.429226830311 +1470076164203137103,-0.00868033990264,0.00791691988707,0.210541456938,-0.554683546356,0.0226639790641,0.727293748644,-0.403554594372 +1470076164274295915,-0.00861707609147,0.007803064771,0.210203275084,-0.563123323676,0.0233391852999,0.726903711767,-0.392375328711 +1470076164349284531,-0.00853221677244,0.00768228713423,0.209575295448,-0.549561203179,0.0237484990404,0.728540720026,-0.408224095342 +1470076164432085332,-0.00852612406015,0.00755762774497,0.209380283952,-0.542298842255,0.02243518682,0.728088571901,-0.418683244886 +1470076164510350607,-0.00852066930383,0.00744440266863,0.208627596498,-0.539558988914,0.0224681113978,0.728442252064,-0.421595975859 +1470076164590229076,-0.00844123307616,0.0074111558497,0.208084240556,-0.534297326758,0.0215687412213,0.728168332723,-0.428756382157 +1470076164668081667,-0.0084027601406,0.00742592290044,0.208195030689,-0.540573703144,0.0237466581599,0.729318422677,-0.418701332742 +1470076164748153018,-0.00835475511849,0.00743727711961,0.208528727293,-0.529638491918,0.0230851368862,0.729769914278,-0.431724468323 +1470076164825952689,-0.0082978233695,0.00742619903758,0.208521127701,-0.534406041995,0.0233178802003,0.729472935853,-0.426304696902 +1470076164899372451,-0.00829698890448,0.00742807146162,0.208647474647,-0.521441806179,0.0226932497028,0.730192500283,-0.440910843276 +1470076164976899009,-0.00828862003982,0.00738997524604,0.208171352744,-0.514490010484,0.0223566209838,0.730560036018,-0.448421949042 +1470076165048986496,-0.00826976448298,0.0073296520859,0.207571551204,-0.536247015926,0.0237189213293,0.72964160555,-0.423674023433 +1470076165122741845,-0.00828380323946,0.00735784461722,0.207219198346,-0.521213214019,0.0211314416339,0.729090021212,-0.443077858481 +1470076165195862145,-0.00830493029207,0.00734564615414,0.206484943628,-0.518130251728,0.0219491063503,0.729927416679,-0.445269856778 +1470076165267868904,-0.00822642538697,0.00731729529798,0.20468403399,-0.515039535577,0.0211266697346,0.729312292924,-0.44987945053 +1470076165339869852,-0.00828068796545,0.0072960704565,0.202723309398,-0.51296836944,0.0180990244702,0.72723682536,-0.455699985854 +1470076165417963907,-0.00821061246097,0.00731147592887,0.203108340502,-0.549732029609,0.0235207821889,0.728133464961,-0.408733563132 +1470076165494085375,-0.0082168392837,0.00730547402054,0.202972754836,-0.543282140524,0.0225170334143,0.728024627372,-0.417513641614 +1470076165566670845,-0.00824635848403,0.00730949593708,0.202731758356,-0.521648138742,0.0198307031044,0.72794521437,-0.444506161303 +1470076165642740988,-0.00824679620564,0.0073010167107,0.202482819557,-0.507735211106,0.0190581859427,0.728364523789,-0.459703014388 +1470076165719399911,-0.00825315993279,0.00729096168652,0.202366173267,-0.497392058119,0.0188456628733,0.728935840342,-0.469998427844 +1470076165793879328,-0.00827724486589,0.00725019117817,0.202225297689,-0.498653641959,0.0186786910819,0.728821552218,-0.468844107229 +1470076165865949733,-0.00823210645467,0.00728247361258,0.202037617564,-0.518791861894,0.0208649180153,0.728852030836,-0.446311972027 +1470076165939561728,-0.00822964590043,0.0073444689624,0.20210956037,-0.518154194718,0.0214105239647,0.729353276669,-0.446208043151 +1470076166011106941,-0.00822488963604,0.00746603123844,0.201971188188,-0.537831284528,0.0221605036593,0.728288152251,-0.424078753006 +1470076166086426475,-0.00823798216879,0.00747629441321,0.201998203993,-0.534790023133,0.0218277298364,0.728340630552,-0.42783537401 +1470076166159114854,-0.00831554085016,0.00747520988807,0.201813310385,-0.525199202511,0.0202928603219,0.728022783526,-0.440155454548 +1470076166242233259,-0.00832593720406,0.00746299792081,0.201745733619,-0.525933311896,0.020091738603,0.727803013175,-0.439651279414 +1470076166319320623,-0.00830768700689,0.00744226993993,0.201695427299,-0.526610529396,0.0205403226233,0.728119951335,-0.438293032049 +1470076166394140709,-0.00831002742052,0.00743111688644,0.201577439904,-0.524789776562,0.0197581825606,0.727572480953,-0.441410907883 +1470076166466637320,-0.00831882283092,0.0074261710979,0.201550126076,-0.518708880531,0.0191601977555,0.727598033689,-0.448525456861 +1470076166542960613,-0.0083289379254,0.00749189639464,0.20177270472,-0.525538555869,0.0203610012173,0.728092444269,-0.439631719196 +1470076166621514908,-0.00825592409819,0.00761486077681,0.202604159713,-0.529235195172,0.0228616027056,0.729405508878,-0.432845306006 +1470076166695675503,-0.00824381504208,0.00770788034424,0.203011289239,-0.546503143023,0.0235614258971,0.72853253481,-0.412334232873 +1470076166768443181,-0.0082936193794,0.00781928095967,0.203217342496,-0.531614366499,0.0215986941544,0.728426600255,-0.43164145976 +1470076166844519634,-0.00828494410962,0.00785053241998,0.203085511923,-0.519539332936,0.0204519314825,0.72847860382,-0.446071209347 +1470076166919795772,-0.00821326486766,0.00780740054324,0.202689513564,-0.526321126271,0.0215543519516,0.728899523399,-0.437295056846 +1470076166993463227,-0.0082644270733,0.0077134068124,0.201929956675,-0.53037038142,0.0223546333837,0.72912358342,-0.431956397081 +1470076167066019200,-0.00820848625153,0.00771526806056,0.20157212019,-0.538692351504,0.0235402054503,0.729245511323,-0.421256920861 +1470076167140257621,-0.00818938948214,0.00773003092036,0.20152913034,-0.544281582285,0.0237600478074,0.728755985174,-0.414858690865 +1470076167211394123,-0.00817275885493,0.00779335014522,0.201230600476,-0.541921124837,0.021791586786,0.727599074993,-0.420055005053 +1470076167286348862,-0.00815812684596,0.00781719665974,0.201163366437,-0.537315177089,0.021786926281,0.727936181512,-0.425354729561 +1470076167359852068,-0.00811787974089,0.0078381318599,0.201077595353,-0.53960386538,0.0223248353437,0.728163821944,-0.422026916921 +1470076167433402098,-0.00808302406222,0.00788673665375,0.201043754816,-0.546891756224,0.023141231749,0.728211032137,-0.41241069705 +1470076167506710649,-0.00806335359812,0.00794700812548,0.201007887721,-0.549948366116,0.0233686520772,0.728054168578,-0.408592496655 +1470076167579827104,-0.00808910932392,0.00800743326545,0.200872197747,-0.528629925196,0.0208065256568,0.728175781048,-0.435749380461 diff --git a/MobileRobot/docking_data/Pose3.txt~ b/MobileRobot/docking_data/Pose3.txt~ new file mode 100644 index 0000000000000000000000000000000000000000..7246677360ed4e9885b115aa4d108f87938a351d --- /dev/null +++ b/MobileRobot/docking_data/Pose3.txt~ @@ -0,0 +1,440 @@ +%time,field.position.x,field.position.y,field.position.z,field.orientation.x,field.orientation.y,field.orientation.z,field.orientation.w +1470073172939732993,-0.0344990864396,0.247396096587,1.36573696136,-0.276164500313,0.0321816003731,0.79077518373,-0.545318367709 +1470073173050271184,-0.034662168473,0.245415970683,1.35936236382,-0.101505041102,0.0292182623344,-0.456139788235,-0.883617288969 +1470073173134855462,-0.0344856008887,0.245848804712,1.35672414303,-0.290807866487,0.0358876457737,0.794478035796,-0.531928108213 +1470073173213306582,-0.0344787836075,0.246029958129,1.35793161392,-0.294483847906,0.0359066279373,0.793342086839,-0.531599765465 +1470073173288927081,-0.034544326365,0.246297761798,1.35861265659,-0.287280351336,0.0356214623933,0.796680652234,-0.530566724841 +1470073173362291389,-0.0345133505762,0.246486604214,1.36027777195,-0.275161953352,0.0328457121053,0.794235617908,-0.540737313185 +1470073173440405704,-0.0345887616277,0.247113242745,1.36358225346,-0.301875358947,0.0364380994357,0.791975177663,-0.529451461926 +1470073173528274722,-0.0342697240412,0.248253524303,1.37089622021,-0.240422850341,0.0280812287934,0.787338873157,-0.567014811482 +1470073173607337379,-0.034144192934,0.248109728098,1.37281692028,-0.0412707089477,0.00617852209322,-0.45881241935,-0.887552656634 +1470073173695043649,-0.0341421179473,0.250623255968,1.37376642227,-0.0867589192599,0.00639521279343,0.776521835421,-0.624055951255 +1470073173767186484,-0.0322467163205,0.246204808354,1.33941662312,-0.263708667522,0.0372463007343,0.797353393163,-0.541569956853 +1470073173843769449,-0.0328762643039,0.246240898967,1.34901845455,-0.240721179957,0.0241479036503,0.788280717169,-0.565759403995 +1470073173918183452,-0.0340514816344,0.241067171097,1.33252871037,-0.188629827126,0.0247913186314,0.792441610338,-0.579517448437 +1470073173992834011,-0.0323929488659,0.23432970047,1.30253744125,-0.0870418909272,0.00858271069887,0.792733969848,-0.603260225235 +1470073174063515020,-0.0320066027343,0.229502186179,1.29581141472,-0.19651395068,0.0218035546519,0.781751229453,-0.591415156588 +1470073174137412300,-0.0319413803518,0.226801410317,1.29424512386,-0.257476230323,0.0321283895845,0.78335872253,-0.564821094895 +1470073174209885852,-0.0304323453456,0.218791261315,1.26473104954,-0.332605525114,0.0448398206233,0.786767872759,-0.518034042843 +1470073174280852071,-0.0301853232086,0.215982034802,1.26339256763,-0.201564446234,0.025129957583,0.784113031067,-0.586435856473 +1470073174354317717,-0.0297557674348,0.211451262236,1.25362861156,-0.304261665607,0.0419702780238,0.786891724511,-0.535224017118 +1470073174424469608,-0.0285431742668,0.20335111022,1.23265254498,-0.273090507884,0.0318715272231,0.782565175004,-0.55856738817 +1470073174500372953,-0.028287474066,0.200158953667,1.22893977165,-0.231385971799,0.0314167685209,0.786365737456,-0.571928706803 +1470073174580306984,-0.0281897671521,0.196888968349,1.22710072994,-0.267340315993,0.0264269987688,0.76982574277,-0.578963811434 +1470073174652574890,-0.027630219236,0.192960262299,1.21579992771,-0.276623150425,0.0292216833832,0.780133574462,-0.560372493853 +1470073174728721945,-0.0269295275211,0.187565535307,1.19604921341,-0.357636264891,0.0475734531554,0.783587746011,-0.505789791209 +1470073174807013036,-0.0268122553825,0.18093675375,1.16624104977,-0.255808787446,0.0379974376318,0.790584993856,-0.555061642062 +1470073174881625148,-0.0268842726946,0.178301170468,1.1680546999,-0.216029793028,0.0287844872349,0.786153410682,-0.578329833826 +1470073174955134633,-0.0261898934841,0.17399649322,1.1526093483,-0.35609381807,0.0493363391309,0.784822602214,-0.504793622609 +1470073175029930201,-0.0253357104957,0.170338749886,1.14103519917,-0.175626605615,0.0198392223753,0.778966058207,-0.601642402775 +1470073175112036253,-0.0252701714635,0.168396040797,1.13995373249,-0.222793289373,0.0248941296685,0.774568153378,-0.591428447313 +1470073175189032447,-0.0251269880682,0.165577247739,1.13700711727,-0.237662590692,0.0235551061635,0.770959127149,-0.590409751127 +1470073175265203996,-0.0243636630476,0.161806762218,1.12101554871,-0.378884399264,0.0444907990569,0.77558277651,-0.50292995295 +1470073175339546322,-0.0242460891604,0.155935153365,1.0894844532,-0.131377780147,0.0153221701575,0.787464308085,-0.602000891592 +1470073175418624400,-0.0241265259683,0.153149172664,1.08769571781,-0.177963525788,0.0185790939868,0.772912052201,-0.60876166134 +1470073175496869742,-0.0240836124867,0.151122823358,1.08524012566,-0.264863034958,0.0278603276207,0.767827512871,-0.582676827526 +1470073175572443526,-0.0244857594371,0.147066086531,1.06302332878,-0.165643673523,0.0187327061687,0.777165329242,-0.606815713513 +1470073175646688675,-0.0244825277478,0.145082756877,1.06307041645,-0.207486131285,0.0191951441087,0.766585890342,-0.607393714567 +1470073175722696479,-0.0243926532567,0.14369507134,1.05943143368,-0.258298940224,0.0201254634606,0.754771943207,-0.602657395995 +1470073175800819380,-0.0240706913173,0.138400539756,1.02492368221,-0.338869352053,0.0432275423048,0.782403817277,-0.520714133221 +1470073175875171244,-0.023271407932,0.135667711496,1.01404082775,-0.308419243738,0.0385437664442,0.776329030786,-0.548365921733 +1470073175947113221,-0.0234167631716,0.135321557522,1.01697731018,-0.205106693583,0.0184712143398,0.765334349275,-0.609797829045 +1470073176020350618,-0.0236101504415,0.131611213088,0.992548763752,-0.257836822042,0.0300811482512,0.776916377245,-0.57359937281 +1470073176092264135,-0.0232401769608,0.130411237478,0.986102759838,-0.264638860041,0.0258062877454,0.775106197295,-0.573158522735 +1470073176163974774,-0.0223668571562,0.128106489778,0.973545908928,-0.288317424796,0.0288396001691,0.765934155057,-0.573921780505 +1470073176234911417,-0.0224041752517,0.127993315458,0.972478985786,-0.307891279708,0.0267868478413,0.758385144245,-0.573879253547 +1470073176312605005,-0.0226827468723,0.125626757741,0.952975809574,-0.24770170628,0.0250443689513,0.770112744043,-0.587318487494 +1470073176395271052,-0.0222985371947,0.124117039144,0.94598788023,-0.282972445824,0.0182013718201,0.756005785593,-0.589958097766 +1470073176475000677,-0.0218777116388,0.123345658183,0.939624965191,-0.286832221863,0.0216370903693,0.762437138141,-0.579610837722 +1470073176552379706,-0.0218135323375,0.119847334921,0.916248381138,-0.307096022786,0.0299945331332,0.763745534571,-0.566996577762 +1470073176631717945,-0.0217927061021,0.119752801955,0.915968835354,-0.338928899146,0.0283219170666,0.756450675575,-0.558665772855 +1470073176707307093,-0.0216681957245,0.115885958076,0.890045285225,-0.377237640777,0.0407633470653,0.769326139068,-0.513972181799 +1470073176782010674,-0.0210840534419,0.11434301734,0.880903661251,-0.418795380633,0.045675582344,0.76595891399,-0.485624456157 +1470073176859086626,-0.0214478950948,0.112232528627,0.866927981377,-0.147087256289,0.0124038727202,0.765233292755,-0.626601540565 +1470073176934381688,-0.0213748868555,0.112020112574,0.865726530552,-0.193235286324,0.0154609169406,0.760073221738,-0.62024977369 +1470073177007335105,-0.0211460031569,0.109136909246,0.847276687622,-0.269054150234,0.0215973563342,0.766572433852,-0.582674971231 +1470073177078687720,-0.0206707958132,0.107221439481,0.834354221821,-0.403413658506,0.0427414858496,0.765864666717,-0.498880644836 +1470073177150830597,-0.0205942317843,0.107081227005,0.834791481495,-0.345893635252,0.0257148607791,0.750361992612,-0.562719485242 +1470073177231492751,-0.0207476634532,0.104580201209,0.817475199699,-0.363573873761,0.0313811665064,0.756818608124,-0.542268250134 +1470073177306137601,-0.0202073622495,0.103362172842,0.807731151581,-0.343707188859,0.0263201226795,0.75771604032,-0.5541110193 +1470073177384353411,-0.0202615652233,0.100901857018,0.79336220026,-0.250752617742,0.0185883067279,0.754757015984,-0.605903826009 +1470073177457857114,-0.0197409335524,0.0998646989465,0.785075902939,-0.436987616998,0.0421633374064,0.758328414293,-0.481873522457 +1470073177531191442,-0.0196993499994,0.0973992645741,0.76812928915,-0.329512746615,0.0294452850173,0.764241524161,-0.553614683473 +1470073177604175031,-0.0191053170711,0.0961611792445,0.759858548641,-0.456562912013,0.0375776516434,0.750623728245,-0.476132592947 +1470073177678894068,-0.0190624818206,0.0943522900343,0.743830323219,-0.31844372644,0.027002712422,0.761914688802,-0.563338666879 +1470073177751021093,-0.0188822131604,0.0936996340752,0.741778731346,-0.33919831725,0.0233779957185,0.747424078411,-0.570749698118 +1470073177827206537,-0.0184970181435,0.092627376318,0.733559548855,-0.308894028857,0.0209788871713,0.753527716569,-0.579948571506 +1470073177903205620,-0.0183271933347,0.090398080647,0.719681560993,-0.396003180268,0.0282065990253,0.747324689391,-0.53281486242 +1470073177976255763,-0.0184859223664,0.088277131319,0.706637740135,-0.393855426447,0.0289257488543,0.749890521312,-0.530759277033 +1470073178055964178,-0.0185673348606,0.0861647799611,0.692663311958,-0.355338826302,0.0241757761685,0.751858774512,-0.554849739622 +1470073178131018652,-0.0187311805785,0.0849845558405,0.68150395155,-0.284264490627,0.0232858800705,0.764120169483,-0.578594705945 +1470073178206794809,-0.0185333956033,0.0840635597706,0.678199410439,-0.451136341007,0.0335711377096,0.748543795859,-0.484800130173 +1470073178279308164,-0.0190991964191,0.0815766081214,0.659439504147,-0.153046128113,0.00926201024959,0.752329105498,-0.640696507604 +1470073178365277939,-0.0185318291187,0.080428622663,0.652160406113,-0.492812493647,0.0383763296019,0.745893059353,-0.446437730753 +1470073178441473593,-0.0187205858529,0.0795100331306,0.64270055294,-0.276753980017,0.0160496338545,0.749635794861,-0.600995689553 +1470073178534980692,-0.0183917675167,0.0775090754032,0.627799987793,-0.406973970259,0.0293480178511,0.750307734727,-0.52014342694 +1470073178611702503,-0.0183125901967,0.0758046209812,0.615817427635,-0.414501117211,0.027844922181,0.74681226822,-0.519311968064 +1470073178684590397,-0.0183046348393,0.074879989028,0.604665875435,-0.259659659074,0.0178982801252,0.757461938319,-0.598755313142 +1470073178768253026,-0.0180832855403,0.0733067989349,0.592087090015,-0.221848053145,0.0129186960029,0.749428231353,-0.623677700948 +1470073178844120183,-0.0178477298468,0.071619682014,0.579713523388,-0.397390926329,0.028561766319,0.750993561541,-0.526567514854 +1470073178919471333,-0.0175491068512,0.0701109841466,0.566699683666,-0.370978677307,0.0205492015395,0.743815842484,-0.555599265451 +1470073178998516516,-0.0171349309385,0.0692511498928,0.556795835495,-0.401296630994,0.0298881974576,0.752482307593,-0.521380941698 +1470073179072465363,-0.0167512949556,0.068272896111,0.550125837326,-0.457902178628,0.0294280966228,0.742741670396,-0.487641664539 +1470073179151479350,-0.0166719704866,0.0663023591042,0.531320691109,-0.288617700818,0.0158741442959,0.748346253499,-0.597014002508 +1470073179224933657,-0.0161667428911,0.0661596134305,0.526394546032,-0.455060845333,0.0271388805478,0.740636465654,-0.493599771021 +1470073179296962201,-0.0159304589033,0.0648926123977,0.515958070755,-0.51684736521,0.0294435269185,0.73530280977,-0.4374147434 +1470073179368637567,-0.015666089952,0.0631090551615,0.498486548662,-0.442403890365,0.0246806572469,0.739779192204,-0.506356010855 +1470073179443237215,-0.01543969661,0.0624936781824,0.489356726408,-0.393618616545,0.0255534170815,0.747200970392,-0.534885144148 +1470073179516026394,-0.015186755918,0.0613879859447,0.479828387499,-0.435241348326,0.0246275611714,0.740275712943,-0.511810825174 +1470073179592432723,-0.0149801177904,0.0609379820526,0.471110850573,-0.40367877575,0.0236131180469,0.743209040991,-0.533034884463 +1470073179665957624,-0.0147232832387,0.0594840124249,0.455840647221,-0.438409346142,0.0265580312415,0.742259686589,-0.506105200385 +1470073179745098419,-0.0144859524444,0.0590755529702,0.447517842054,-0.404679000953,0.0235521102774,0.742903658592,-0.532704757197 +1470073179823115849,-0.0141824223101,0.0581009276211,0.43870344758,-0.480316151163,0.0257230405284,0.736302965876,-0.475912452621 +1470073179905294834,-0.0141323711723,0.0568175539374,0.426867634058,-0.446596805326,0.0251007649042,0.739519455182,-0.503023081459 +1470073179979069532,-0.0138137890026,0.0558976195753,0.418456822634,-0.488349589138,0.0232491983574,0.733002556404,-0.472949686404 +1470073180051385443,-0.0134716229513,0.0546271838248,0.405115514994,-0.483944549207,0.0264394019841,0.737228540423,-0.470736349246 +1470073180123959514,-0.0133610824123,0.0534967668355,0.394495010376,-0.428327892215,0.0229041300182,0.739352348851,-0.519007439086 +1470073180199253823,-0.0132009452209,0.0524292774498,0.38377520442,-0.41430944789,0.0235660485192,0.742552408705,-0.525745416596 +1470073180270786274,-0.012695286423,0.050901953131,0.370635420084,-0.481942824099,0.0241088531135,0.735087714992,-0.476230961581 +1470073180350740178,-0.0124950380996,0.0500246137381,0.360687464476,-0.500230037382,0.0249050985643,0.734211140682,-0.458348826403 +1470073180422672199,-0.0123319877312,0.0493889935315,0.351580023766,-0.476289167016,0.0219056151838,0.734308253852,-0.483177153569 +1470073180494847502,-0.0120887309313,0.0487801395357,0.342151641846,-0.465728001496,0.0221482447483,0.73517686185,-0.492058803069 +1470073180566128288,-0.0117254117504,0.0473924018443,0.32710146904,-0.498066817969,0.0235880113484,0.733063264184,-0.462591938173 +1470073180637838660,-0.0115407910198,0.0466212928295,0.317502528429,-0.473141942222,0.022201765148,0.73411831443,-0.486532716837 +1470073180710207792,-0.011419496499,0.0458059310913,0.307505428791,-0.421334648671,0.0197226578472,0.736747926193,-0.528479539668 +1470073180784572170,-0.0109790395945,0.0449835471809,0.298570364714,-0.503179619707,0.0230114705587,0.732698249447,-0.457639615627 +1470073180857307766,-0.0110426424071,0.0439583696425,0.284959226847,-0.455376035293,0.0203876786611,0.733962470353,-0.503503824368 +1470073180931615027,-0.0108643323183,0.0433895215392,0.279011577368,-0.481384136179,0.0238219983109,0.734980066174,-0.476976024721 +1470073181004727911,-0.0107259601355,0.0432596057653,0.275583446026,-0.498026204237,0.0234870310417,0.733447818178,-0.462030905108 +1470073181081391396,-0.0107148401439,0.0432260744274,0.273213922977,-0.522020637359,0.0252055684977,0.732142265521,-0.43683731128 +1470073181156495825,-0.0106229996309,0.0435727350414,0.27287337184,-0.484260635409,0.0234725286548,0.735024040844,-0.474004574633 +1470073181231164134,-0.0103556746617,0.0439032204449,0.273400396109,-0.519414443938,0.0241433529717,0.731242962887,-0.441485518635 +1470073181308343422,-0.010429837741,0.0424079708755,0.271743148565,-0.529659365129,0.0263466310029,0.731625183718,-0.428358964555 +1470073181383390700,-0.0105001488701,0.0414789058268,0.271232485771,-0.49556583594,0.0241202528651,0.733329273664,-0.464823506332 +1470073181454847239,-0.0104948775843,0.0409970059991,0.271049201488,-0.487170319448,0.0236107202211,0.733521935383,-0.473342565222 +1470073181527158186,-0.0104001099244,0.0401524789631,0.270623117685,-0.519301520162,0.02683072435,0.732944133892,-0.438633035671 +1470073181599264226,-0.0104337166995,0.0383391715586,0.270451724529,-0.510929408152,0.0248706450541,0.732444480822,-0.449285736936 +1470073181673714638,-0.0103996517137,0.0377863608301,0.270462930202,-0.518107900757,0.0268974197474,0.733474809464,-0.439153089329 +1470073181745878661,-0.0103817684576,0.0369301438332,0.270469158888,-0.514789712012,0.0257909833888,0.732596267903,-0.444554930055 +1470073181819014616,-0.0103087415919,0.0357459671795,0.270428061485,-0.515383490664,0.0274222268311,0.734392518462,-0.440789641274 +1470073181896971325,-0.010300132446,0.0346186645329,0.270415455103,-0.504544314711,0.0264936534536,0.734357856566,-0.453267756761 +1470073181978045366,-0.0102932788432,0.0332719683647,0.270432442427,-0.503142820977,0.0251814515401,0.733270980996,-0.456647418287 +1470073182054245487,-0.0102834887803,0.0323464907706,0.270526796579,-0.511083049127,0.0257339646469,0.733057536667,-0.448060852892 +1470073182126899924,-0.0102362707257,0.0314889959991,0.270458430052,-0.534589762583,0.0276302451307,0.732194444356,-0.421119520978 +1470073182203460838,-0.0102161895484,0.0307731013745,0.270419836044,-0.538487393112,0.0275886021049,0.732203237955,-0.416111301002 +1470073182273152408,-0.0101878708228,0.0294563453645,0.270376324654,-0.532936831518,0.0275956093424,0.732836842996,-0.42209830313 +1470073182345876987,-0.010203320533,0.0285958014429,0.270381212234,-0.52663613267,0.0269219573605,0.73287907614,-0.42990446815 +1470073182421892681,-0.0101964753121,0.0280127711594,0.270337611437,-0.537668923329,0.0269368630492,0.7318658851,-0.417802418041 +1470073182496682249,-0.0101688001305,0.0273420363665,0.270272254944,-0.531494116322,0.0275461337552,0.732697366335,-0.424157735042 +1470073182570788472,-0.0101743610576,0.0263827349991,0.27023229003,-0.522337422076,0.026830667579,0.732891857774,-0.435101433675 +1470073182643018385,-0.0101679256186,0.0258138924837,0.270255237818,-0.524991209365,0.0270546418306,0.733120369561,-0.431493684983 +1470073182715737144,-0.0101645635441,0.0251861438155,0.270209252834,-0.524784476337,0.0266826455774,0.732933231587,-0.432085833899 +1470073182793626039,-0.0101426560432,0.0245621073991,0.270081728697,-0.526103550056,0.0275130050097,0.733272139315,-0.429848879118 +1470073182868077517,-0.0101392269135,0.0235299635679,0.270104914904,-0.516687747975,0.0269019533144,0.733917258319,-0.440085802931 +1470073182941899415,-0.0101313842461,0.0228649061173,0.27013155818,-0.528004507634,0.0274087597564,0.733074492585,-0.427857205301 +1470073183014699770,-0.0101646119729,0.0222559068352,0.270034044981,-0.504957726623,0.0246346034209,0.733032649023,-0.455053805725 +1470073183086269176,-0.0101537983865,0.021704794839,0.270073533058,-0.509641818626,0.0248196064739,0.732772007913,-0.450215935149 +1470073183159281958,-0.0101272938773,0.021200042218,0.270057082176,-0.514324878032,0.0267121297814,0.734091393106,-0.442567744564 +1470073183233487070,-0.0101672764868,0.0202971659601,0.270075857639,-0.500801003906,0.0239727008172,0.733067373536,-0.459604057815 +1470073183305341348,-0.0101248053834,0.0197942331433,0.270054668188,-0.51414594712,0.0261793797329,0.733561937366,-0.44368397445 +1470073183378119664,-0.0101177673787,0.0192947778851,0.270082622766,-0.516330651369,0.0261911242962,0.733233464552,-0.441684695146 +1470073183451494465,-0.010109574534,0.0187964439392,0.270034700632,-0.519736794566,0.0268495109448,0.733419402459,-0.437319960936 +1470073183529976329,-0.0100907431915,0.0183233805001,0.269950807095,-0.517681268621,0.0269515443667,0.733904143074,-0.438935561506 +1470073183605858783,-0.0100729763508,0.0178236979991,0.269966989756,-0.528539426015,0.0283950149743,0.733857747168,-0.425784693471 +1470073183684099711,-0.0101386383176,0.0174519792199,0.270003169775,-0.504650037872,0.0243621104623,0.733036749065,-0.455403064734 +1470073183763837762,-0.0101470472291,0.0171577762812,0.270015716553,-0.506594806332,0.024884266605,0.733202346234,-0.452942374867 +1470073183840491998,-0.0101074622944,0.0169163048267,0.269965171814,-0.519637878857,0.0272710984965,0.734018661361,-0.436405049029 +1470073183917062190,-0.0101837329566,0.0165776312351,0.270034909248,-0.48559550646,0.0225835993952,0.733518265771,-0.475013619725 +1470073183990232575,-0.0101080201566,0.0163051951677,0.26999604702,-0.523789244941,0.0269201408934,0.733185762464,-0.43284959353 +1470073184069323094,-0.0101766847074,0.0161053147167,0.270056694746,-0.502971256709,0.0229807575678,0.731964391088,-0.459042405323 +1470073184144338564,-0.010133927688,0.0157676953822,0.269960999489,-0.515881394257,0.0257651824413,0.73291648185,-0.442759497997 +1470073184216225734,-0.0101794311777,0.0156362205744,0.270035684109,-0.495848064292,0.0228532205892,0.732636997881,-0.465677417084 +1470073184288290273,-0.0100933276117,0.015418077819,0.269946187735,-0.52485913861,0.028013768472,0.733961056551,-0.430161924 +1470073184376776680,-0.0101616764441,0.0151950437576,0.269976913929,-0.503915568083,0.0240512623827,0.732966318987,-0.456345277451 +1470073184456355406,-0.01007991191,0.0149423284456,0.2698610425,-0.531396497647,0.0281725935968,0.733356389597,-0.423098656458 +1470073184528024246,-0.010158364661,0.014763657935,0.269992172718,-0.497830583871,0.024300446632,0.733739276514,-0.461736799657 +1470073184598266925,-0.0101698422804,0.0146051663905,0.269977748394,-0.501526814805,0.0229438021411,0.732375777689,-0.459967559976 +1470073184670873299,-0.0100993579254,0.0144319403917,0.269876331091,-0.523060278197,0.0269720894744,0.733288852649,-0.433552661556 +1470073184742839910,-0.0101381763816,0.0142700783908,0.269895136356,-0.507837423772,0.0247646458996,0.733219741273,-0.451527047183 +1470073184818735014,-0.0101293819025,0.0141363246366,0.269870132208,-0.510146505956,0.0251039114665,0.733290618699,-0.44878191209 +1470073184897630257,-0.0101242288947,0.0138931153342,0.269918054342,-0.510016213461,0.0253155285842,0.733276319278,-0.448941450087 +1470073184974831995,-0.0101458914578,0.013744758442,0.269905775785,-0.503766860238,0.0240453073931,0.733115148739,-0.456270700799 +1470073185052524987,-0.010103341192,0.0135749261826,0.269844561815,-0.524135665668,0.026003451795,0.732466785708,-0.433702700366 +1470073185124938922,-0.0101085631177,0.0134567134082,0.269849389791,-0.513141895881,0.0265759521153,0.734025175872,-0.444056476866 +1470073185198103601,-0.0101205585524,0.0133618833497,0.269892305136,-0.512493342206,0.0255335428601,0.733283388387,-0.446087530312 +1470073185276637092,-0.0101523054764,0.0132293226197,0.26989659667,-0.509537976489,0.023550831188,0.731971036569,-0.451702125842 +1470073185354633267,-0.0101562421769,0.0131338210776,0.269808679819,-0.506572587309,0.0229926819689,0.731717422105,-0.455461485256 +1470073185430099448,-0.0101077640429,0.0130564989522,0.269782811403,-0.517115651882,0.0264662647767,0.733522436978,-0.440267843315 +1470073185505690509,-0.0100911846384,0.0129509847611,0.269855171442,-0.535165959045,0.027176513532,0.7319341646,-0.420869590353 +1470073185582814634,-0.0101159820333,0.0129023967311,0.269920647144,-0.523226851548,0.0260039130866,0.7324289666,-0.434862354324 +1470073185656976017,-0.0101234279573,0.0128640793264,0.26987811923,-0.512894588234,0.0250577185223,0.732954635497,-0.446193628827 +1470073185733297196,-0.0101360138506,0.0128096602857,0.269965201616,-0.519629985583,0.0244427630182,0.731652330371,-0.440536147077 +1470073185809394360,-0.0101540526375,0.012727114372,0.269881635904,-0.503061360426,0.0228949307542,0.732142395494,-0.458663931995 +1470073185895999292,-0.0101432399824,0.0126462168992,0.269831776619,-0.508199717523,0.0236002706131,0.732144173333,-0.452924920701 +1470073185967950272,-0.0101190339774,0.0126054044813,0.269852042198,-0.519825013588,0.0249675330812,0.732023616832,-0.439658960947 +1470073186038911705,-0.0101190777496,0.0125568062067,0.269879490137,-0.528566660034,0.025638290792,0.731558404203,-0.429863077253 +1470073186112585757,-0.0101076643914,0.0125071434304,0.269853919744,-0.525894859418,0.0259699741423,0.732128216822,-0.432143993841 +1470073186190392370,-0.0100847892463,0.0125028006732,0.26980099082,-0.528660408684,0.0266312779545,0.732289411387,-0.428440387096 +1470073186266057551,-0.0101023176685,0.0124641936272,0.269830137491,-0.531583224554,0.0263385804361,0.731643276954,-0.425938575198 +1470073186343480306,-0.0101095540449,0.0124220959842,0.269869834185,-0.535919601276,0.0260565872722,0.731093226407,-0.421442676445 +1470073186418608789,-0.0101285967976,0.0124109424651,0.269910186529,-0.536060870069,0.0257929810672,0.730962848817,-0.421505372869 +1470073186494522409,-0.0101238228381,0.0123700108379,0.269905924797,-0.527602943315,0.025315980153,0.731507716607,-0.431150433027 +1470073186569192141,-0.0101230656728,0.0123454723507,0.269864082336,-0.52140262525,0.0249030594584,0.73189419203,-0.43800688543 +1470073186646510688,-0.0101303337142,0.0122687900439,0.269870191813,-0.523587542921,0.0239849306615,0.730841479181,-0.437208806302 +1470073186722334544,-0.0101385405287,0.0122303487733,0.269841820002,-0.525711749857,0.0235289098502,0.730250595319,-0.435669157159 +1470073186798012185,-0.0101311057806,0.0120968716219,0.269750803709,-0.527507876464,0.0237714125008,0.730108464218,-0.433718792184 +1470073186872678130,-0.0101037705317,0.0119199836627,0.269792586565,-0.523460413915,0.0252367683184,0.731911742385,-0.435496844934 +1470073186952141948,-0.0101375477389,0.0117691736668,0.269844591618,-0.525881241601,0.0237840011705,0.730373342343,-0.435244783788 +1470073187025254513,-0.0101175857708,0.0116379372776,0.269720226526,-0.518147880246,0.0242631119109,0.731349401444,-0.44278903397 +1470073187097653601,-0.0100908642635,0.0114419870079,0.269846588373,-0.534944234119,0.0255542583046,0.730799852135,-0.423217700936 +1470073187173205640,-0.0101380953565,0.0112122893333,0.269749611616,-0.516634673971,0.0226839663816,0.730268203618,-0.446410575709 +1470073187261204262,-0.0100957890972,0.0110162077472,0.269870370626,-0.531359795331,0.0259186901729,0.731431508173,-0.426606303583 +1470073187335359116,-0.010121807456,0.0108597101644,0.269838511944,-0.523491594175,0.0240033872164,0.730837442239,-0.437329419604 +1470073187408176347,-0.0101685142145,0.010695242323,0.26981768012,-0.508762128214,0.0214327589167,0.729986879936,-0.455873764173 +1470073187487499954,-0.0101178819314,0.0104134073481,0.269813627005,-0.524727553635,0.024393744816,0.730899170982,-0.435720485549 +1470073187563598522,-0.0101326825097,0.0103109981865,0.269712507725,-0.515860497117,0.022914721349,0.730559537209,-0.446817217274 +1470073187639033906,-0.0100952796638,0.0101006021723,0.269875347614,-0.530968377615,0.025795177117,0.731311059591,-0.427307061643 +1470073187716812369,-0.0100790634751,0.00999959651381,0.269758462906,-0.530600520386,0.0258927035756,0.731697168473,-0.427097072474 +1470073187794686556,-0.0101320547983,0.00989620573819,0.269792318344,-0.515756812176,0.0231486916656,0.73081765399,-0.446502637601 +1470073187866157072,-0.0101570803672,0.00979899335653,0.269739985466,-0.507365603867,0.0214278820461,0.730152813586,-0.457162836085 +1470073187938031165,-0.0101960971951,0.00977736245841,0.269792824984,-0.489967542456,0.0193331752197,0.729918277624,-0.476211448483 +1470073188024741831,-0.0100742597133,0.00998608861119,0.269744485617,-0.526089925541,0.0253847754591,0.731794746617,-0.432506014113 +1470073188103850467,-0.0100784003735,0.0101751433685,0.269615471363,-0.517862209735,0.0241966584338,0.731567270682,-0.442766961184 +1470073188175980613,-0.0100585576147,0.0104138310999,0.269585102797,-0.523046076939,0.0253221096553,0.732056020111,-0.435747146382 +1470073188248107261,-0.0101147182286,0.0105861201882,0.269650399685,-0.509034793053,0.0220972792447,0.730713982436,-0.454370295667 +1470073188320311694,-0.0100839100778,0.0108033455908,0.269604384899,-0.527213352372,0.0242188502196,0.730657853585,-0.433126574305 +1470073188394600445,-0.0100559936836,0.0110016437247,0.26953715086,-0.53215283567,0.0255564445643,0.731275600611,-0.425906355412 +1470073188472232511,-0.010086379014,0.0110162487254,0.269475728273,-0.533298434492,0.0239310332891,0.729927963327,-0.426878500005 +1470073188547820275,-0.0100716277957,0.0112273637205,0.269469439983,-0.53321836255,0.0245368814638,0.730352627566,-0.426217267008 +1470073188626071776,-0.0100568383932,0.0116507103667,0.269298970699,-0.543413635711,0.0246801846005,0.729354791068,-0.414890464771 +1470073188701852723,-0.0100382771343,0.0117506692186,0.269226253033,-0.539842331476,0.0251846627803,0.730069350579,-0.418251997308 +1470073188773587939,-0.0100339250639,0.0117038208991,0.269194632769,-0.551389161843,0.0259098135859,0.729498116494,-0.403895000952 +1470073188849927838,-0.0100471964106,0.011770750396,0.269278168678,-0.540694728356,0.0249050139245,0.729826014437,-0.417591833805 +1470073188927809083,-0.0100731551647,0.0119723333046,0.269171446562,-0.532331726834,0.0227637136445,0.729187053842,-0.429407715878 +1470073189002059203,-0.0101166768,0.0123900044709,0.269227772951,-0.524080580925,0.0204484332468,0.728065530703,-0.441409095146 +1470073189073897653,-0.0101408325136,0.0131145948544,0.268814265728,-0.542820927682,0.0202835897333,0.726406712347,-0.421031239595 +1470073189158064708,-0.0100872851908,0.0133592821658,0.26847743988,-0.571001936914,0.0256777927873,0.727575695118,-0.379382454618 +1470073189231984185,-0.0101100606844,0.013502297923,0.268125355244,-0.556313815245,0.0254149162418,0.728767336949,-0.398456007102 +1470073189305233438,-0.0101521480829,0.0137256057933,0.26756465435,-0.522334927987,0.0240527131868,0.731075978983,-0.438309939366 +1470073189377779684,-0.0101362857968,0.0136014930904,0.267708778381,-0.527919927499,0.0227970827537,0.729484798103,-0.434318745283 +1470073189458464683,-0.0100808423012,0.0131592545658,0.26812979579,-0.550379093948,0.0227533924101,0.727374223963,-0.409257711464 +1470073189531493603,-0.0099968649447,0.0127936443314,0.268462926149,-0.5652278381,0.0250187505782,0.727593381562,-0.387942552789 +1470073189610199795,-0.00992786791176,0.0125834876671,0.268435716629,-0.583283652927,0.0287191618105,0.728007205053,-0.35911126321 +1470073189698818278,-0.00996267609298,0.0124639645219,0.268511027098,-0.572936852447,0.0271819138023,0.72824256706,-0.375056356021 +1470073189775853635,-0.0100205251947,0.0121988458559,0.268360555172,-0.561553063545,0.0237428977522,0.727016221053,-0.3943879384 +1470073189855752218,-0.00993525609374,0.0120451971889,0.26832562685,-0.573350300813,0.0280622169093,0.728660811808,-0.373544329197 +1470073189930030171,-0.0100167421624,0.0117695201188,0.26829919219,-0.546589229522,0.0228163778944,0.72783001289,-0.413501027092 +1470073190012036437,-0.0099821453914,0.0114562548697,0.268390893936,-0.570504476173,0.0259597098717,0.727645735392,-0.37997686758 +1470073190086177100,-0.00994798820466,0.0111913848668,0.268126994371,-0.562811640158,0.0278334576627,0.729739819451,-0.38723139367 +1470073190161937276,-0.0099582914263,0.0109956730157,0.268244475126,-0.564010532329,0.026699697798,0.728860118341,-0.387223673671 +1470073190236561342,-0.0100189549848,0.0108455168083,0.268178522587,-0.541080539488,0.0236181357692,0.728953292936,-0.41868977796 +1470073190315612590,-0.00996172986925,0.0105964560062,0.268217414618,-0.551431802883,0.0267343967255,0.730264480709,-0.402395361573 +1470073190387304408,-0.0100174602121,0.0104362042621,0.268172353506,-0.534255692641,0.0236555392775,0.729510265071,-0.426410651249 +1470073190461596812,-0.0100119542331,0.0102499183267,0.268043637276,-0.553711933276,0.0245562142389,0.728681440481,-0.402272849679 +1470073190536495245,-0.00999952573329,0.0100210346282,0.268121123314,-0.541761810927,0.0249154905286,0.729687362165,-0.416448930903 +1470073190609505259,-0.010010891594,0.00987480860204,0.268040299416,-0.549995900342,0.0236184812206,0.728151935719,-0.408339852892 +1470073190683866494,-0.00994807016104,0.00972495786846,0.268107712269,-0.55814779647,0.0277361403598,0.730155696703,-0.393159512648 +1470073190756224882,-0.0100054256618,0.00952762365341,0.267967015505,-0.519870376291,0.0239643941979,0.73123203746,-0.440976424605 +1470073190826465303,-0.00995061639696,0.00925817899406,0.267871558666,-0.549960186928,0.0264782803314,0.730245100205,-0.404456162138 +1470073190901598505,-0.0100208679214,0.00864172820002,0.267236858606,-0.517006497461,0.025076804699,0.732296589447,-0.442512305515 +1470073190977338180,-0.0100390631706,0.008276399225,0.266966044903,-0.524540466205,0.0242607142549,0.730781644862,-0.436150094107 +1470073191052897636,-0.010001915507,0.00793091952801,0.26668664813,-0.523336622117,0.0235642110023,0.73036269449,-0.438330745451 +1470073191125641862,-0.00999174080789,0.00771576771513,0.26635363698,-0.528617955238,0.02178588053,0.728617822687,-0.434976437605 +1470073191201962925,-0.00992678012699,0.00757584068924,0.266118973494,-0.538528232049,0.0246842574336,0.729900308738,-0.420266070513 +1470073191275379885,-0.0098596541211,0.00739842792973,0.265797555447,-0.556911230657,0.0265250235324,0.729355688371,-0.396467633149 +1470073191353669868,-0.00987678766251,0.00734023330733,0.265215873718,-0.538991526682,0.0263649502091,0.731114739974,-0.417449710215 +1470073191431521452,-0.00994105264544,0.00730880675837,0.264571279287,-0.523016538625,0.0254589447562,0.732225221392,-0.435490261217 +1470073191508155422,-0.00995283666998,0.0071923667565,0.26429232955,-0.523657314154,0.025619013117,0.732168815781,-0.434805138765 +1470073191582578058,-0.00997254718095,0.00705588981509,0.264198184013,-0.521731700852,0.0241577784692,0.731221697691,-0.438779287219 +1470073191655284885,-0.00999670196325,0.00687202112749,0.264196276665,-0.517308484025,0.0235824111139,0.731186168765,-0.444074981111 +1470073191727912736,-0.0099586006254,0.00678632501513,0.264217615128,-0.523973049662,0.0250667715067,0.731749661321,-0.435162421804 +1470073191805648001,-0.0100335180759,0.00724621023983,0.263892561197,-0.470600792668,0.0176675257284,0.730299900848,-0.494858370947 +1470073191885198235,-0.0099561791867,0.00765245826915,0.263723909855,-0.518786045344,0.0214030345391,0.72924890254,-0.445644463012 +1470073191966778026,-0.00984219647944,0.00791959278286,0.263497024775,-0.549752783465,0.025561744635,0.729367095982,-0.406376812308 +1470073192043380596,-0.00986433029175,0.00808523781598,0.263257265091,-0.542142409748,0.0227202593093,0.728081315298,-0.418883033417 +1470073192114909288,-0.00984020717442,0.00829484593123,0.262840718031,-0.563389464022,0.0239127483932,0.726826855136,-0.392101026454 +1470073192191002036,-0.00979928299785,0.00825782958418,0.262823283672,-0.575786476822,0.0263357278884,0.727117075999,-0.37293044973 +1470073192270485196,-0.0098822535947,0.00804291386157,0.262749612331,-0.549903147658,0.0239624519031,0.728185978405,-0.408384022642 +1470073192345402684,-0.0098346658051,0.00732547370717,0.262807011604,-0.558334828661,0.0271148707556,0.729394339105,-0.39434870479 +1470073192421279802,-0.00986507534981,0.00713416188955,0.262984514236,-0.527382432625,0.022149248624,0.72898654895,-0.435839181342 +1470073192504144107,-0.00978202279657,0.00729361735284,0.263119965792,-0.549118609466,0.0261090691957,0.729765964895,-0.406483340034 +1470073192580589663,-0.00978581886739,0.00738135492429,0.26318487525,-0.55450850295,0.0266067253903,0.729503013421,-0.399546938081 +1470073192659861007,-0.00981992576271,0.00771867390722,0.263205736876,-0.557364886247,0.0253843538364,0.728440454445,-0.397585868068 +1470073192733453620,-0.00982721894979,0.00862189009786,0.263105988503,-0.568555208974,0.0259465844316,0.727910340265,-0.382384996621 +1470073192806880960,-0.00996598321944,0.00966645404696,0.262989968061,-0.549156343088,0.0182956512627,0.724622758505,-0.41595004249 +1470073192881788315,-0.00988275930285,0.0108503103256,0.262541174889,-0.582926562793,0.0249590456045,0.725819221225,-0.364362630538 +1470073192953308467,-0.00993178412318,0.0114273140207,0.262232363224,-0.561097222687,0.0217023936617,0.725777341237,-0.397424412624 +1470073193030029411,-0.00993446446955,0.0118900900707,0.261829078197,-0.541435202321,0.0217212254244,0.727636311193,-0.420620385487 +1470073193106366340,-0.00985405873507,0.012577213347,0.261126190424,-0.545285640342,0.0243118947058,0.729109307986,-0.412882694262 +1470073193184613153,-0.00984790269285,0.0126689597964,0.26095533371,-0.546313289518,0.0230521501106,0.727975769337,-0.413596019479 +1470073193261353374,-0.00978355202824,0.0127088092268,0.260780513287,-0.563295932094,0.0246592477734,0.727447130663,-0.391037448944 +1470073193344249706,-0.00976652186364,0.0127767426893,0.260418355465,-0.592373944465,0.0239050504094,0.724047294144,-0.352529678647 +1470073193422322537,-0.00974595546722,0.0128400623798,0.259921848774,-0.606401922155,0.0249253675888,0.723464356415,-0.329020910969 +1470073193495756041,-0.00978455971926,0.0129432845861,0.259254425764,-0.567589700151,0.0253889000132,0.727601203317,-0.38443962461 +1470073193571653740,-0.00985233299434,0.01308271382,0.258676320314,-0.540718333235,0.0219965162588,0.727750920089,-0.421329367225 +1470073193648247145,-0.00984334386885,0.013375589624,0.258599281311,-0.547789141954,0.0215842073248,0.72683413849,-0.413730967027 +1470073193732476944,-0.00975873786956,0.0137621248141,0.258455723524,-0.572908745252,0.0266913725382,0.727800332818,-0.375991776234 +1470073193811185551,-0.00982608366758,0.0135377468541,0.258617550135,-0.554686841191,0.0232669420455,0.727344724048,-0.403423859008 +1470073193886314779,-0.00975750759244,0.0129847535864,0.258693039417,-0.569478044726,0.0277562930222,0.728866777549,-0.379048236188 +1470073193959540625,-0.00984940305352,0.0127426981926,0.258760035038,-0.536117110049,0.023030167478,0.72880122655,-0.425319677275 +1470073194032721342,-0.0097733521834,0.0124953268096,0.258738040924,-0.567082460253,0.0274165190438,0.72879159917,-0.382790572944 +1470073194104062886,-0.00983570702374,0.0121859777719,0.258695930243,-0.547089443303,0.0230382317197,0.727912737438,-0.412680781697 +1470073194179634462,-0.00977593380958,0.0120185269043,0.258723437786,-0.561487609678,0.0270402948516,0.729161684902,-0.390286720121 +1470073194256470323,-0.00982475187629,0.0117921670899,0.258668631315,-0.550663639631,0.0235970802983,0.727887778955,-0.407911896171 +1470073194329950080,-0.00977500993758,0.0115228686482,0.258643001318,-0.56118641513,0.0263619876871,0.728703769936,-0.391619290587 +1470073194404289472,-0.00986259803176,0.0112362997606,0.25857976079,-0.525078239616,0.0205146944648,0.72799206333,-0.440340260845 +1470073194477334482,-0.00980993360281,0.0109409373254,0.258626908064,-0.553846207805,0.0240879015061,0.727852748133,-0.403614330936 +1470073194560802333,-0.00979305617511,0.0108005134389,0.258539587259,-0.552914198669,0.0245246665399,0.728358065704,-0.403954153049 +1470073194634977294,-0.00976460799575,0.0106135811657,0.258564919233,-0.564508232309,0.0267435828289,0.728566137431,-0.387048601368 +1470073194713440890,-0.00981774087995,0.0103776073083,0.258528023958,-0.543050467033,0.0227748791204,0.728092638704,-0.417682420748 +1470073194788567151,-0.00978677719831,0.0102392826229,0.258538395166,-0.558580404117,0.0253805119276,0.72830208235,-0.396131087642 +1470073194867185437,-0.00979389809072,0.010055700317,0.258581638336,-0.554271326408,0.0246548884467,0.728253839326,-0.402270777841 +1470073194943654409,-0.00983789935708,0.00993119552732,0.258567690849,-0.53513900151,0.0219847463913,0.728192744353,-0.427642662817 +1470073195024060185,-0.0097889713943,0.00973156094551,0.258554369211,-0.543833339427,0.0248125906656,0.729381210961,-0.414285750863 +1470073195098787300,-0.00978988409042,0.00958246458322,0.258541226387,-0.544433042605,0.0243528021992,0.729063658416,-0.414084272972 +1470073195173651759,-0.00972365215421,0.0093044359237,0.258421897888,-0.558346523952,0.0271060617953,0.729447039691,-0.394235255769 +1470073195245305047,-0.00971813313663,0.00889606401324,0.258131355047,-0.560606750505,0.0255936921327,0.728183410701,-0.393464044852 +1470073195317054258,-0.00973099004477,0.00859431084245,0.258200883865,-0.553411232222,0.0246599098724,0.728360762161,-0.403259838119 +1470073195395295839,-0.00964935217053,0.00823766272515,0.257785916328,-0.582740978874,0.0272169609347,0.726910128357,-0.362317338627 +1470073195470265940,-0.009780369699,0.00785581115633,0.256679832935,-0.564312134352,0.0242596767185,0.726875631986,-0.390659824826 +1470073195544976121,-0.00981358904392,0.00776246376336,0.256322473288,-0.534412998084,0.0219535774694,0.727978699887,-0.428914677327 +1470073195620955647,-0.00977566558868,0.00770766334608,0.256106555462,-0.542784461123,0.0224198564664,0.727606454812,-0.418892857084 +1470073195698063979,-0.00972826592624,0.00765011506155,0.255838394165,-0.546269037646,0.0230829499053,0.727885817746,-0.413811010315 +1470073195775846608,-0.00966170523316,0.00757191423327,0.255389243364,-0.558213742412,0.0243804343013,0.727695626577,-0.397821677723 +1470073195851281984,-0.00952363759279,0.00742739904672,0.252260535955,-0.577119702259,0.0241985147754,0.725794319077,-0.373590534599 +1470073195925120223,-0.00971779599786,0.00745925167575,0.250914663076,-0.47461108807,0.015969594713,0.728149380507,-0.494254758999 +1470073195998132118,-0.00973480381072,0.00745475292206,0.250827282667,-0.452351476922,0.0140593018323,0.727741974567,-0.515336876045 +1470073196073429753,-0.00968453101814,0.00746368663386,0.250809341669,-0.496463722957,0.016680253714,0.727011417225,-0.474025252648 +1470073196155189804,-0.00959645118564,0.00743656326085,0.250581532717,-0.540693509202,0.0199641292728,0.726075635958,-0.424342000652 +1470073196227896551,-0.00950728636235,0.00741909258068,0.250259846449,-0.560252271492,0.0228919145327,0.726467929286,-0.397287931174 +1470073196304992192,-0.00946722086519,0.00738769816235,0.250005722046,-0.592136676319,0.0246714521535,0.724619200112,-0.351699432521 +1470073196380092525,-0.00955792702734,0.00741613144055,0.248985081911,-0.542176744045,0.0235486974598,0.728641060682,-0.417818192223 +1470073196453324528,-0.00955669954419,0.00743542658165,0.248603835702,-0.530702778736,0.0231278107854,0.729414236458,-0.431015703498 +1470073196525396374,-0.0095776040107,0.00743215857074,0.248371094465,-0.518381358144,0.01967300111,0.727763371868,-0.448613659092 +1470073196597508003,-0.00945520494133,0.00727527448907,0.248105272651,-0.554589910863,0.024866351158,0.72841644879,-0.401523564043 +1470073196670313791,-0.00945391319692,0.00719069223851,0.248031467199,-0.553953626087,0.0239097224264,0.727691981566,-0.403767365303 +1470073196743043006,-0.00948770996183,0.00721875810996,0.247851386666,-0.565283001567,0.0216135205769,0.72516936362,-0.392577862257 +1470073196815788353,-0.00952653773129,0.00726018100977,0.247590348125,-0.560559593006,0.0201629978134,0.724532698393,-0.400523114399 +1470073196893666778,-0.00948915444314,0.00732009205967,0.247231423855,-0.570452133285,0.0230327127691,0.725555416573,-0.384217640478 +1470073196970315355,-0.00956401787698,0.00761380931363,0.246429175138,-0.528357308677,0.0209385165686,0.727903682759,-0.436527618276 +1470073197048747978,-0.00948961172253,0.00770247494802,0.246136665344,-0.543109053222,0.0226759844075,0.727843487644,-0.418045707469 +1470073197125473272,-0.00953722279519,0.00777427339926,0.245822265744,-0.515087309122,0.0182105802237,0.726879386028,-0.453872004993 +1470073197203610974,-0.0094646345824,0.00781846325845,0.245630905032,-0.549059395568,0.0213445754282,0.726417885235,-0.412789589559 +1470073197276869394,-0.00944924261421,0.00792321655899,0.245843365788,-0.564748560046,0.0241064562221,0.727059130032,-0.389695989371 +1470073197354265637,-0.00952130090445,0.00803153775632,0.246307015419,-0.564090972035,0.0240132217923,0.72684362031,-0.391053822463 +1470073197426967177,-0.00957998633385,0.00809410307556,0.246555402875,-0.544831717087,0.0223399412509,0.727377123093,-0.416631549311 +1470073197500656112,-0.00952143780887,0.0081298975274,0.246362909675,-0.555072217302,0.0239882167882,0.727637209368,-0.402322620018 +1470073197574112113,-0.00951982475817,0.00819693971425,0.245758980513,-0.555090708521,0.0214476208221,0.726053457097,-0.405290861373 +1470073197652506272,-0.00949296820909,0.00820658262819,0.244568884373,-0.552217923108,0.0232560254882,0.727467309818,-0.406578203821 +1470073197728304404,-0.00945450924337,0.00819472689182,0.242305085063,-0.538756577536,0.0228518868969,0.728559101646,-0.422398836215 +1470073197800804074,-0.00941508449614,0.00821873079985,0.241821095347,-0.547928082898,0.0230287590424,0.727648512969,-0.41203414155 +1470073197880681581,-0.0094400215894,0.00824563391507,0.241499081254,-0.526285765508,0.0190175805804,0.72650491138,-0.441420704536 +1470073197958712563,-0.00937377475202,0.00823086407036,0.241318285465,-0.564762706254,0.0215177434259,0.72503158125,-0.393585160458 +1470073198036500462,-0.00935772527009,0.0082525908947,0.240905791521,-0.569584099563,0.0232389313121,0.725772229278,-0.385082558428 +1470073198111440414,-0.00941603258252,0.00834374781698,0.239958807826,-0.544444365768,0.0234619604207,0.728394613801,-0.415296467095 +1470073198187453951,-0.00942615699023,0.00837567262352,0.239669665694,-0.526317377114,0.0205705724985,0.727996600011,-0.438848288668 +1470073198263447489,-0.00935787986964,0.00837912410498,0.239459007978,-0.547258444366,0.0225641645973,0.727518349772,-0.41317805398 +1470073198339420522,-0.00932952575386,0.00838493462652,0.239364221692,-0.560127566562,0.023434865104,0.726916231415,-0.396611533846 +1470073198413130776,-0.00950870476663,0.00847784336656,0.240109309554,-0.533866882968,0.0207380951786,0.72717176678,-0.431018914059 +1470073198487074127,-0.0094915702939,0.00851794797927,0.240308523178,-0.542853542309,0.0223346006812,0.727654863839,-0.418723770936 +1470073198559465181,-0.00945957284421,0.00853753276169,0.239987507463,-0.524800162321,0.0218398101806,0.729014901036,-0.43891352951 +1470073198629218605,-0.00932958442718,0.0085628060624,0.239587560296,-0.557587133394,0.0266076098742,0.729273085823,-0.395663228092 +1470073198706112768,-0.00938053056598,0.00854161102325,0.23857216537,-0.539560188062,0.0207742328027,0.726970091206,-0.424214239745 +1470073198781481564,-0.00930773559958,0.00848065689206,0.236566990614,-0.552676886454,0.0202382229017,0.725363626258,-0.409861297533 +1470073198853734157,-0.00936987902969,0.0085174171254,0.235855102539,-0.540351895946,0.0220032410213,0.72769700723,-0.421891871929 +1470073198928902367,-0.00932035688311,0.00849805958569,0.235628202558,-0.552803761568,0.0228140184237,0.727032692021,-0.40658453794 +1470073199009482478,-0.0092360349372,0.00852291099727,0.235198244452,-0.569739275505,0.0242996913716,0.72638864919,-0.383622487967 +1470073199084799101,-0.00929772667587,0.00851668417454,0.234845221043,-0.559411348535,0.0198963148208,0.724438537884,-0.402308196056 +1470073199157399161,-0.00932420045137,0.00855291262269,0.23421266675,-0.528520007298,0.0204765602978,0.727383251542,-0.437219530374 +1470073199236521273,-0.00936462171376,0.00856663007289,0.233840376139,-0.525877999836,0.0208056104595,0.727910008709,-0.439507081949 +1470073199310669858,-0.00927431508899,0.00859825592488,0.23348467052,-0.545927060888,0.0231668643635,0.727887968378,-0.414253601163 +1470073199382739703,-0.00928767398,0.00860740337521,0.233160212636,-0.537793748182,0.0198669564656,0.726198061797,-0.427807858156 +1470073199454860314,-0.00923984777182,0.00856892112643,0.232810378075,-0.563310876097,0.021064679804,0.724861800633,-0.39599558851 +1470073199529318198,-0.00927113741636,0.00861098431051,0.23206025362,-0.550382825162,0.0225377340378,0.727136587585,-0.409686684317 +1470073199601477382,-0.00923019926995,0.00863022077829,0.231534987688,-0.556594409287,0.0236881983642,0.727370440591,-0.40071657685 +1470073199674739099,-0.00926223583519,0.00864221807569,0.231223374605,-0.532235059899,0.0196623395751,0.726648348116,-0.43396014978 +1470073199753462209,-0.00922220293432,0.00864066835493,0.231053844094,-0.536723379314,0.0206898968275,0.726999830261,-0.427751316851 +1470073199828313309,-0.00919658783823,0.00863575004041,0.230624780059,-0.544154016216,0.0217873019176,0.726992275715,-0.418215197191 +1470073199903708755,-0.00924831535667,0.00864511635154,0.22987793386,-0.553862416964,0.0226687922145,0.726633977769,-0.40586403054 +1470073199976492394,-0.00923274550587,0.00866658426821,0.229662075639,-0.551220697205,0.0225817743651,0.726933005571,-0.408918343745 +1470073200054192765,-0.00921408180147,0.00868064444512,0.229318737984,-0.543932294278,0.0205125532434,0.726188135221,-0.419961529983 +1470073200128345644,-0.00919427350163,0.00869339238852,0.229229435325,-0.55225477721,0.021389706591,0.726097172966,-0.409072165897 +1470073200208792172,-0.00927883666009,0.00874382071197,0.229588389397,-0.537331980192,0.0205641428815,0.726743614377,-0.427428564853 +1470073200287670650,-0.00925483647734,0.00880216807127,0.229956761003,-0.556078340335,0.0251278137637,0.728480960636,-0.399325634509 +1470073200372036264,-0.00925515126437,0.00880471337587,0.229925334454,-0.552616232591,0.0244345474104,0.728268699996,-0.404528062038 +1470073200446034974,-0.00922100804746,0.00881420541555,0.229547798634,-0.548747262339,0.0229436424152,0.727628920173,-0.410981977556 +1470073200522080440,-0.00915448274463,0.00882616452873,0.229093983769,-0.548208451233,0.0243437705738,0.728505413808,-0.410066746864 +1470073200598028928,-0.00918057374656,0.00880243908614,0.225798264146,-0.517786781898,0.0195086342498,0.727666778703,-0.449463369868 +1470073200668844239,-0.00904800090939,0.00879510771483,0.225053861737,-0.558271945704,0.0225376090418,0.726354883163,-0.400291237131 +1470073200741648594,-0.00905743334442,0.00881525594741,0.225396841764,-0.570347974104,0.0244101664785,0.726423133222,-0.38264443512 +1470073200814321953,-0.00904414523393,0.00883956439793,0.225004017353,-0.562803491297,0.0225811158229,0.725957194602,-0.39462447339 +1470073200888339846,-0.0091098099947,0.00885138474405,0.224406942725,-0.536343089767,0.0204835284456,0.726746627143,-0.428667534412 +1470073200964490572,-0.00912944972515,0.00884036067873,0.22397980094,-0.554204411486,0.0220188637784,0.726319891378,-0.405995141985 +1470073201040541634,-0.00904892664403,0.00887390784919,0.223640620708,-0.559809130585,0.0239283273272,0.72714340657,-0.396615227578 +1470073201113264992,-0.00911988411099,0.00888614822179,0.22332380712,-0.526450595346,0.0185222040605,0.725987157899,-0.442096533782 +1470073201185753753,-0.00911105144769,0.00892648659647,0.223053514957,-0.527544343155,0.0198540910553,0.727058533158,-0.438963176628 +1470073201261627998,-0.00910090282559,0.0089609362185,0.223317667842,-0.535606271141,0.0210572929455,0.727319287959,-0.428589741 +1470073201336080985,-0.00904640369117,0.00897249858826,0.223681375384,-0.569094919337,0.0255737040937,0.72743454661,-0.382512664943 +1470073201408514175,-0.00905316136777,0.00901115871966,0.223758891225,-0.554179281027,0.0249675746935,0.728608675626,-0.401735413546 +1470073201484393864,-0.00905542820692,0.00903254374862,0.223459929228,-0.54305284253,0.0235123461428,0.72870985029,-0.416560600501 +1470073201558645708,-0.00905702076852,0.00905836373568,0.222771823406,-0.55053532675,0.0247452599618,0.728771445232,-0.406436596192 +1470073201627996594,-0.00908744055778,0.00904596783221,0.222204118967,-0.54151091811,0.0239374825305,0.729010184223,-0.41801563822 +1470073201699597774,-0.00909873843193,0.00901739671826,0.220198228955,-0.522917999279,0.0188832546696,0.726667652708,-0.445145269806 +1470073201773809085,-0.00895973201841,0.0089922202751,0.21954934299,-0.561562356055,0.022169645231,0.725546408632,-0.39716323598 +1470073201844192222,-0.00896310526878,0.00904180947691,0.219001695514,-0.549652426712,0.0226927880669,0.727114762462,-0.410696200845 +1470073201917857857,-0.00902581866831,0.00905130617321,0.218548923731,-0.544749121774,0.021867855978,0.727107084462,-0.417235519733 +1470073201990778577,-0.00900828372687,0.00905802380294,0.218215018511,-0.542249977923,0.0209735527648,0.726761440854,-0.421120979785 +1470073202066878129,-0.00891331676394,0.0090906880796,0.217852711678,-0.551973290289,0.0234979381068,0.727624880283,-0.4066145193 +1470073202143668266,-0.00893711671233,0.0091166170314,0.217351019382,-0.540887594529,0.0222597405903,0.727615901192,-0.421331478015 +1470073202216136368,-0.00903957337141,0.00908794254065,0.217008054256,-0.525231745622,0.0187129830292,0.726358835264,-0.442926946675 +1470073202289873917,-0.00897028669715,0.00909819360822,0.216549620032,-0.550508060408,0.0216736528637,0.726369921307,-0.410923187004 +1470073202376129152,-0.00897394958884,0.00914812833071,0.216708257794,-0.559753217888,0.0230645727916,0.72665319338,-0.397642423662 +1470073202452476087,-0.00901574362069,0.00920958630741,0.217010602355,-0.540916072912,0.0232605897642,0.728747458379,-0.419280203367 +1470073202525802112,-0.00900827068835,0.00923008751124,0.217116385698,-0.543363934999,0.0239858933555,0.72904597698,-0.415538535532 +1470073202601996817,-0.00892694666982,0.00914099533111,0.217003419995,-0.55040050356,0.0253002436486,0.729257552749,-0.405712466052 +1470073202673470340,-0.00891568232328,0.00901287980378,0.216620713472,-0.546047620626,0.0232169850595,0.727952289691,-0.413978781519 +1470073202748048937,-0.00873496476561,0.00886643212289,0.215284824371,-0.534823025333,0.0211248610059,0.727238658725,-0.429699901183 +1470073202823741203,-0.008670094423,0.00871786102653,0.212958678603,-0.552376002327,0.0222585701848,0.726664864739,-0.407852280195 +1470073202896974174,-0.00871969666332,0.00862114224583,0.212799027562,-0.557485637579,0.0219827594273,0.726074641301,-0.401923049152 +1470073202970465576,-0.00870101060718,0.00858471356332,0.213192790747,-0.536297274814,0.0189747462428,0.725830541098,-0.430343139416 +1470073203044388669,-0.00867113750428,0.00851697754115,0.212657347322,-0.527549337025,0.0194417525029,0.726911462719,-0.439219125985 +1470073203120489034,-0.00866247154772,0.00849051587284,0.212074562907,-0.527617629282,0.0206689819578,0.727944266574,-0.437366637065 +1470073203195464830,-0.00858363416046,0.00841364823282,0.211740016937,-0.545601238374,0.0218013196331,0.727166214397,-0.416020778071 +1470073203269131568,-0.00852823723108,0.0082973735407,0.211337760091,-0.553418814452,0.0218519664494,0.726364103791,-0.406995449724 +1470073203342245314,-0.00850499607623,0.00828383117914,0.21109546721,-0.552415021354,0.0224979865772,0.727047370969,-0.407103924262 +1470073203414384214,-0.00854155607522,0.00824870914221,0.210793316364,-0.543560400334,0.0227413131323,0.728166051424,-0.416892222785 +1470073203486861590,-0.00855137128383,0.00816037598997,0.211210310459,-0.549108290702,0.0220865979821,0.727215859255,-0.411277717996 +1470073203571776951,-0.00850986596197,0.00812081620097,0.211444616318,-0.551224321515,0.0250043374927,0.729097422789,-0.404899343738 +1470073203644351409,-0.00852021947503,0.00803951732814,0.211453303695,-0.547132345683,0.0236367860394,0.728462880346,-0.411617942528 +1470073203727262703,-0.00856099277735,0.0079070944339,0.211193025112,-0.525465959573,0.0213507988817,0.728865716952,-0.438388452595 +1470073203800463052,-0.00852581765503,0.00780905457214,0.210132107139,-0.519507708894,0.0217766649307,0.729587102164,-0.444229870248 +1470073203873691146,-0.00839057844132,0.00773017294705,0.207562342286,-0.522980809645,0.0185395556359,0.726541142857,-0.445292404332 +1470073203945840992,-0.00830635614693,0.00775456149131,0.206729084253,-0.536162030901,0.0221665648562,0.728261053661,-0.426233219896 +1470073204022488243,-0.00832875259221,0.00774763803929,0.206850096583,-0.552156207571,0.0234916054552,0.727770022342,-0.406106465714 +1470073204098711374,-0.00836110860109,0.00769202876836,0.206370279193,-0.542160003091,0.0220879263289,0.727666752284,-0.419613813141 +1470073204170233629,-0.00834436528385,0.00770817091689,0.206259205937,-0.538747542353,0.0220372527769,0.727954257382,-0.423495034515 +1470073204242794741,-0.00834863074124,0.00768490927294,0.205905541778,-0.528042159244,0.0191697117438,0.726647285537,-0.439075987313 +1470073204318980839,-0.00829869322479,0.00770872924477,0.205359324813,-0.537078806968,0.0218702009483,0.727876883463,-0.42575026945 +1470073204395464778,-0.00831757020205,0.00769000034779,0.204797253013,-0.550979444209,0.0227320106154,0.727345595104,-0.408501276664 +1470073204470217837,-0.00829656422138,0.00769808655605,0.204668849707,-0.548445886073,0.0226533311162,0.72759643895,-0.411457602513 +1470073204545085252,-0.00831558462232,0.00772654637694,0.204850271344,-0.549431290966,0.0233290316377,0.727960882474,-0.409455695258 +1470073204620441248,-0.00834316574037,0.00776848802343,0.205277174711,-0.533171139859,0.0228320753712,0.729159680524,-0.428407974078 +1470073204698626118,-0.00832932814956,0.00780530693009,0.205670118332,-0.511064904402,0.0221821215445,0.730638437498,-0.452203594218 +1470073204773537884,-0.00834050308913,0.00778468092903,0.205142468214,-0.535156644616,0.0232956373484,0.729332829345,-0.425603457508 +1470073204852100735,-0.008331367746,0.00777314184234,0.204950332642,-0.542583129208,0.0231196026824,0.728512155389,-0.417539305121 +1470073204925812878,-0.00829291250557,0.00782386958599,0.204504460096,-0.531344204367,0.0223553752583,0.729034484057,-0.43090868492 +1470073204998073663,-0.00830428209156,0.00782492570579,0.204011783004,-0.526252319118,0.0223453176275,0.729302141874,-0.436666427906 +1470073205068957597,-0.00833113491535,0.00778767745942,0.2034984231,-0.535400374892,0.0230942102502,0.729175844315,-0.425576883871 +1470073205141076369,-0.00827540457249,0.0077455136925,0.203224390745,-0.543727455292,0.0233108172136,0.728503961836,-0.416051724851 +1470073205214791244,-0.00824967212975,0.00776209356263,0.203054130077,-0.545925499879,0.0244182296308,0.729039466641,-0.412153557213 +1470073205287477123,-0.00824854243547,0.00777448667213,0.202650159597,-0.533328492159,0.0226469615792,0.728980767867,-0.428526399027 +1470073205359807781,-0.00825321301818,0.00776466215029,0.202053800225,-0.536940479508,0.0233637580544,0.729316166194,-0.423375703134 +1470073205439158804,-0.00820477493107,0.00777936447412,0.201683282852,-0.542483555106,0.024448588396,0.729619523162,-0.415655158017 +1470073205513992292,-0.00818396639079,0.00779488077387,0.201537147164,-0.543492789707,0.0238634054554,0.729021772873,-0.415419523006 +1470073205588239270,-0.00816973205656,0.00780209992081,0.20133779943,-0.548609026507,0.0223362393873,0.727360153149,-0.411675158415 +1470073205656640166,-0.00814166665077,0.00785126909614,0.201238811016,-0.544049907764,0.0226691825526,0.728094121225,-0.41638294473 +1470073205728572414,-0.00808727554977,0.00790322385728,0.201091185212,-0.537804211021,0.022830521725,0.728855527017,-0.423101664642 +1470073205800386655,-0.00804647337645,0.00794698111713,0.20107857883,-0.546243209901,0.0239728286542,0.728929347362,-0.411953475138 +1470073205874884085,-0.00802151858807,0.00797569286078,0.201057434082,-0.537644332341,0.0231303799071,0.729157551133,-0.42276804876 +1470073205948256605,-0.00797170493752,0.00801290664822,0.20104637742,-0.534656901281,0.0225515530417,0.72897564952,-0.426881632042 +1470073206025159007,-0.00794609263539,0.00806983280927,0.200959593058,-0.52300810236,0.0207460971926,0.728601708043,-0.441782384613 diff --git a/MobileRobot/docking_data/Vel.txt b/MobileRobot/docking_data/Vel.txt index 03f002d46c2e477e36e3bc5184ed91623a71ae8b..a3599c0233349dee5e3723d307fef4cb1602adfd 100644 --- a/MobileRobot/docking_data/Vel.txt +++ b/MobileRobot/docking_data/Vel.txt @@ -1,557 +1,537 @@ %time,field.linear.x,field.linear.y,field.linear.z,field.angular.x,field.angular.y,field.angular.z -1469729948913069649,0.1,-0.0161744770074,0.0,0.0,0.0,0.0414302421861 -1469729948997206761,0.1,-0.0161744770074,0.0,0.0,0.0,0.0414302421861 -1469729949095296441,0.1,-0.0161744770074,0.0,0.0,0.0,0.0414302421861 -1469729949177974217,0.1,-0.0161744770074,0.0,0.0,0.0,0.0414302421861 -1469729949253293916,0.1,-0.0161744770074,0.0,0.0,0.0,0.0414302421861 -1469729949330756317,0.1,-0.0161627408529,0.0,0.0,0.0,0.0408539567714 -1469729949414111149,0.1,-0.0161744770074,0.0,0.0,0.0,0.0414302421861 -1469729949496020817,0.1,-0.0161744770074,0.0,0.0,0.0,0.0414302421861 -1469729949573590133,0.1,-0.0161877441073,0.0,0.0,0.0,0.036492002931 -1469729949651284977,0.1,-0.0162364327574,0.0,0.0,0.0,0.0312008855313 -1469729949725351741,0.1,-0.0158492306286,0.0,0.0,0.0,0.0370367422807 -1469729949799675004,0.1,-0.0145681769067,0.0,0.0,0.0,0.036686976141 -1469729949880240945,0.1,-0.0129138011897,0.0,0.0,0.0,0.037405127869 -1469729949956165331,0.1,-0.0109969093317,0.0,0.0,0.0,0.0300020115952 -1469729950036795230,0.1,-0.00944500819239,0.0,0.0,0.0,0.0347574453461 -1469729950121389838,0.1,-0.00823884990457,0.0,0.0,0.0,0.0415555538836 -1469729950201470856,0.1,-0.00603680596146,0.0,0.0,0.0,0.0362627935923 -1469729950280170643,0.1,-0.00485495696235,0.0,0.0,0.0,0.037240479893 -1469729950355393936,0.1,0.00356025232858,0.0,0.0,0.0,0.0358335627951 -1469729950432958329,0.1,0.00160327872652,0.0,0.0,0.0,0.0338649169095 -1469729950511424684,0.1,0.0,0.0,0.0,0.0,0.0376930364782 -1469729950596755150,0.1,-0.00116939577815,0.0,0.0,0.0,0.0312107358158 -1469729950690501763,0.1,-0.00232720922288,0.0,0.0,0.0,0.0298944271032 -1469729950773450653,0.1,-0.00351624395308,0.0,0.0,0.0,0.03421157227 -1469729950862142279,0.1,-0.00509811285493,0.0,0.0,0.0,0.0387685881912 -1469729950938935798,0.1,-0.00609979528543,0.0,0.0,0.0,0.0421804150898 -1469729951014248529,0.1,-0.00793755497393,0.0,0.0,0.0,0.0315994180262 -1469729951093141090,0.1,-0.00900882657227,0.0,0.0,0.0,0.0311314824844 -1469729951170981363,0.1,-0.0111403294241,0.0,0.0,0.0,0.0333159761584 -1469729951249784794,0.1,-0.0124324947929,0.0,0.0,0.0,0.0308062718372 -1469729951326951861,0.1,-0.0144447240567,0.0,0.0,0.0,0.0358473332694 -1469729951406401795,0.1,-0.015675325427,0.0,0.0,0.0,0.0398960913905 -1469729951488748668,0.1,-0.0169587640798,0.0,0.0,0.0,0.0326114110124 -1469729951567510922,0.1,-0.019078279171,0.0,0.0,0.0,0.0317507565499 -1469729951648347592,0.1,-0.020359809879,0.0,0.0,0.0,0.0386913702993 -1469729951729618944,0.1,-0.0214459696746,0.0,0.0,0.0,0.0379912932588 -1469729951811899802,0.1,-0.0232791160381,0.0,0.0,0.0,0.0356356165612 -1469729951890379393,0.1,-0.024434256885,0.0,0.0,0.0,0.0384457181338 -1469729951975805460,0.1,-0.0259093439912,0.0,0.0,0.0,0.0331387063984 -1469729952057006422,0.1,-0.0268933058119,0.0,0.0,0.0,0.0296912018197 -1469729952143101174,0.1,-0.0285230151152,0.0,0.0,0.0,0.0339448414337 -1469729952222438614,0.1,-0.0291565904355,0.0,0.0,0.0,0.0429422904507 -1469729952297738982,0.1,-0.0299720958209,0.0,0.0,0.0,0.0319062870026 -1469729952374197344,0.1,-0.0313485861158,0.0,0.0,0.0,0.0320228191564 -1469729952450976234,0.1,-0.0320494312381,0.0,0.0,0.0,0.0320336113381 -1469729952523718827,0.1,-0.0332773149347,0.0,0.0,0.0,0.035602788766 -1469729952603826606,0.1,-0.0339544386005,0.0,0.0,0.0,0.0309115382829 -1469729952687822075,0.1,-0.0351851350403,0.0,0.0,0.0,0.0297034571273 -1469729952767125742,0.1,-0.0357219526505,0.0,0.0,0.0,0.035322275805 -1469729952845087920,0.1,-0.0363119206166,0.0,0.0,0.0,0.0357022370169 -1469729952920796607,0.1,-0.0369292030072,0.0,0.0,0.0,0.0337867447117 -1469729953001010019,0.1,-0.037191165123,0.0,0.0,0.0,0.0372749364196 -1469729953084330319,0.1,-0.0375116899943,0.0,0.0,0.0,0.0302707099003 -1469729953171439864,0.1,-0.0378632665014,0.0,0.0,0.0,0.038169644204 -1469729953256055061,0.1,-0.0379769137835,0.0,0.0,0.0,0.034266671188 -1469729953330152566,0.1,-0.0381049526071,0.0,0.0,0.0,0.0274838707439 -1469729953408465927,0.1,-0.0384779754615,0.0,0.0,0.0,0.0315555847377 -1469729953488671997,0.1,-0.038557686243,0.0,0.0,0.0,0.0336777828128 -1469729953571239690,0.1,-0.0388940385318,0.0,0.0,0.0,0.0276312260928 -1469729953651063741,0.1,-0.0390994376278,0.0,0.0,0.0,0.0354096639023 -1469729953725229387,0.1,-0.0392229000067,0.0,0.0,0.0,0.0341559152087 -1469729953806748129,0.1,-0.0392656091189,0.0,0.0,0.0,0.0259959712461 -1469729953888827265,0.1,-0.0394138813352,0.0,0.0,0.0,0.0357852493214 -1469729953970253525,0.1,-0.0393761322236,0.0,0.0,0.0,0.0289769548053 -1469729954047134013,0.1,-0.0393624356723,0.0,0.0,0.0,0.0296601324968 -1469729954131139983,0.1,-0.0392582756614,0.0,0.0,0.0,0.0279202245827 -1469729954207132442,0.1,-0.0392180645799,0.0,0.0,0.0,0.0348663226603 -1469729954285352265,0.1,-0.0390939629411,0.0,0.0,0.0,0.0290730317516 -1469729954366960131,0.1,-0.0387527391648,0.0,0.0,0.0,0.0263788093841 -1469729954447030907,0.1,-0.0386912030315,0.0,0.0,0.0,0.0320468258228 -1469729954524634669,0.1,-0.0384978252983,0.0,0.0,0.0,0.0313117584607 -1469729954605281934,0.1,-0.0382519528603,0.0,0.0,0.0,0.0256074121188 -1469729954686611335,0.1,-0.0379908922648,0.0,0.0,0.0,0.029104281393 -1469729954764788702,0.1,-0.0377323231435,0.0,0.0,0.0,0.0307091432393 -1469729954839292704,0.1,-0.0374683285093,0.0,0.0,0.0,0.0246521103794 -1469729954921168667,0.1,-0.0372087037897,0.0,0.0,0.0,0.0294116341333 -1469729955003158946,0.1,-0.0367819306588,0.0,0.0,0.0,0.0287196700409 -1469729955086209139,0.1,-0.0363734993672,0.0,0.0,0.0,0.0270845960529 -1469729955166424456,0.1,-0.0360422021484,0.0,0.0,0.0,0.0286191762456 -1469729955252312556,0.1,-0.0356944513654,0.0,0.0,0.0,0.0266508111362 -1469729955334825971,0.1,-0.035414976809,0.0,0.0,0.0,0.0305866945766 -1469729955414274986,0.1,-0.0349279624557,0.0,0.0,0.0,0.0273287137422 -1469729955499714090,0.1,-0.0345439836716,0.0,0.0,0.0,0.0261907401303 -1469729955581710850,0.1,-0.0340939709878,0.0,0.0,0.0,0.0283341293872 -1469729955662324592,0.1,-0.0337600872254,0.0,0.0,0.0,0.0259583184105 -1469729955740981656,0.1,-0.0332449651098,0.0,0.0,0.0,0.0228303780874 -1469729955822149071,0.1,-0.0329385072326,0.0,0.0,0.0,0.0274550068527 -1469729955898370805,0.1,-0.0324447068906,0.0,0.0,0.0,0.0295696450218 -1469729955995935569,0.1,-0.0321235001421,0.0,0.0,0.0,0.0283473376864 -1469729956076148535,0.1,-0.0317219466304,0.0,0.0,0.0,0.02374752573 -1469729956157130176,0.1,-0.0311753237581,0.0,0.0,0.0,0.0277458772444 -1469729956234132409,0.1,-0.0308256060219,0.0,0.0,0.0,0.0249207095235 -1469729956318618482,0.1,-0.0302475381231,0.0,0.0,0.0,0.0270107068148 -1469729956400924158,0.1,-0.0298687520957,0.0,0.0,0.0,0.021899218173 -1469729956478128178,0.1,-0.0293748370146,0.0,0.0,0.0,0.0249848003578 -1469729956557450373,0.1,-0.0290087935662,0.0,0.0,0.0,0.0238605976331 -1469729956634274957,0.1,-0.028506355021,0.0,0.0,0.0,0.025481402656 -1469729956714055555,0.1,-0.0281786311006,0.0,0.0,0.0,0.0254868155649 -1469729956794360707,0.1,-0.0276811099386,0.0,0.0,0.0,0.0255949776081 -1469729956873552825,0.1,-0.0273822510576,0.0,0.0,0.0,0.0261216135627 -1469729956951683152,0.1,-0.0271550745105,0.0,0.0,0.0,0.0249380005762 -1469729957030981309,0.1,-0.0266822418904,0.0,0.0,0.0,0.0231049444966 -1469729957114768990,0.1,-0.0263700634575,0.0,0.0,0.0,0.0245999576421 -1469729957192095626,0.1,-0.0260690868234,0.0,0.0,0.0,0.0232378193365 -1469729957272911905,0.1,-0.0255958116388,0.0,0.0,0.0,0.0227671911445 -1469729957354011162,0.1,-0.025322119925,0.0,0.0,0.0,0.0230491097643 -1469729957435188282,0.1,-0.0248296505546,0.0,0.0,0.0,0.0225235857787 -1469729957517014737,0.0,-0.0245595518088,0.0,0.0,0.0,0.0232009732392 -1469729957597025748,0.0,-0.0242630499935,0.0,0.0,0.0,0.0232138170791 -1469729957672098837,0.0,-0.0238015470242,0.0,0.0,0.0,0.0231868853422 -1469729957751552123,0.0,-0.0235216757989,0.0,0.0,0.0,0.0204876025714 -1469729957826152550,0.0,-0.0230703845954,0.0,0.0,0.0,0.021777309813 -1469729957902589898,0.0,-0.0227281248903,0.0,0.0,0.0,0.0196463806239 -1469729957980207919,0.0,-0.0223406121468,0.0,0.0,0.0,0.0217935765341 -1469729958060757588,0.0,-0.022002115879,0.0,0.0,0.0,0.0215348697253 -1469729958138358620,0.0,-0.021786270622,0.0,0.0,0.0,0.0221496847304 -1469729958219463782,0.0,-0.0216385229265,0.0,0.0,0.0,0.0203989611104 -1469729958296656152,0.0,-0.0216392031645,0.0,0.0,0.0,0.0203752502534 -1469729958377376820,0.0,-0.0219245638287,0.0,0.0,0.0,0.0210528142859 -1469729958456893329,0.0,-0.0221154123878,0.0,0.0,0.0,0.0194220129222 -1469729958536609020,0.0,-0.022099745605,0.0,0.0,0.0,0.0186356724606 -1469729958615131632,0.0,-0.0219853934979,0.0,0.0,0.0,0.0176009665797 -1469729958691843997,0.0,-0.0216133541202,0.0,0.0,0.0,0.0175088876761 -1469729958773080031,0.0,-0.0214109054541,0.0,0.0,0.0,0.0175813442822 -1469729958851612768,0.0,-0.021151877377,0.0,0.0,0.0,0.0160511131364 -1469729958941135201,0.0,-0.0208180657363,0.0,0.0,0.0,0.0167620852492 -1469729959027202581,0.0,-0.0206157711482,0.0,0.0,0.0,0.0175062785371 -1469729959106394542,0.0,-0.020293246541,0.0,0.0,0.0,0.018221851306 -1469729959183009217,0.0,-0.0199466201997,0.0,0.0,0.0,0.0161982321771 -1469729959266460221,0.0,-0.0197643278873,0.0,0.0,0.0,0.0163814851925 -1469729959341488118,0.0,-0.0194194554126,0.0,0.0,0.0,0.0143998339411 -1469729959424935240,0.0,-0.0192274234032,0.0,0.0,0.0,0.0148065899169 -1469729959505530488,0.0,-0.0188317379689,0.0,0.0,0.0,0.0134445662482 -1469729959589804735,0.0,-0.018619705323,0.0,0.0,0.0,0.0145770320825 -1469729959668706293,0.0,-0.0182304141259,0.0,0.0,0.0,0.0130184439604 -1469729959766260488,0.0,-0.0180060929393,0.0,0.0,0.0,0.0142683502869 -1469729959846452957,0.0,-0.0177314029967,0.0,0.0,0.0,0.0138854998684 -1469729959926881446,0.0,-0.0174053001737,0.0,0.0,0.0,0.0136878102835 -1469729960000463750,0.0,-0.0170437266266,0.0,0.0,0.0,0.0121153516355 -1469729960080359828,0.0,-0.0168025257027,0.0,0.0,0.0,0.0138327255347 -1469729960157009806,0.0,-0.0164035423433,0.0,0.0,0.0,0.0139184930849 -1469729960244902695,0.0,-0.0160438242888,0.0,0.0,0.0,0.0115205523808 -1469729960326597188,0.0,-0.0158272905981,0.0,0.0,0.0,0.0128270570213 -1469729960403602639,0.0,-0.0154371060764,0.0,0.0,0.0,0.0121222098283 -1469729960478832369,0.0,-0.0152290155327,0.0,0.0,0.0,0.0129255602586 -1469729960552671754,0.0,-0.0150135948097,0.0,0.0,0.0,0.0121467286203 -1469729960632424097,0.0,-0.0146310174799,0.0,0.0,0.0,0.012339869155 -1469729960711380184,0.0,-0.0144251758194,0.0,0.0,0.0,0.0129543985319 -1469729960791293125,0.0,-0.0140317556596,0.0,0.0,0.0,0.011436071713 -1469729960872663255,0.0,-0.0138265991544,0.0,0.0,0.0,0.0111283398687 -1469729960950080810,0.0,-0.0136253929472,0.0,0.0,0.0,0.011117998867 -1469729961030683810,0.0,-0.0133262832796,0.0,0.0,0.0,0.0118752404597 -1469729961111864820,0.0,-0.013087293539,0.0,0.0,0.0,0.0123172592132 -1469729961187121108,0.0,-0.0128931060767,0.0,0.0,0.0,0.0108333766702 -1469729961267057468,0.0,-0.0126103516257,0.0,0.0,0.0,0.0118156490222 -1469729961347363839,0.0,-0.0124183491206,0.0,0.0,0.0,0.011862811466 -1469729961424259332,0.0,-0.0121494452989,0.0,0.0,0.0,0.0104586097841 -1469729961502451928,0.0,-0.0119848965442,0.0,0.0,0.0,0.0112086598792 -1469729961581377467,0.0,-0.0118047416544,0.0,0.0,0.0,0.0122946248756 -1469729961659750605,0.0,-0.0115640504992,0.0,0.0,0.0,0.0108636335974 -1469729961740522635,0.0,-0.0113843463695,0.0,0.0,0.0,0.012310565358 -1469729961825522165,0.0,-0.0112056224382,0.0,0.0,0.0,0.0108123140995 -1469729961905484169,0.0,-0.0109799768364,0.0,0.0,0.0,0.0111166003927 -1469729961980830505,0.0,-0.0108080929851,0.0,0.0,0.0,0.010271138661 -1469729962059743450,0.0,-0.0106422378456,0.0,0.0,0.0,0.00903435228852 -1469729962136860447,0.0,-0.0104486306345,0.0,0.0,0.0,0.00958369720218 -1469729962218287285,0.0,-0.0103364897108,0.0,0.0,0.0,0.0096910609879 -1469729962292495524,0.0,-0.0101342049575,0.0,0.0,0.0,0.00917897205848 -1469729962369688276,0.0,-0.010003677938,0.0,0.0,0.0,0.0100834213269 -1469729962446675318,0.0,-0.00987832072732,0.0,0.0,0.0,0.00886550565716 -1469729962535239661,0.0,-0.00971981379744,0.0,0.0,0.0,0.00844039847021 -1469729962615023903,0.0,-0.00959972064552,0.0,0.0,0.0,0.00988956855666 -1469729962689497023,0.0,-0.00947850796935,0.0,0.0,0.0,0.00721375237713 -1469729962767569197,0.0,-0.00936170782503,0.0,0.0,0.0,0.00843278773288 -1469729962848222456,0.0,-0.00913157838938,0.0,0.0,0.0,0.00816395115663 -1469729962921768117,0.0,-0.00906201216933,0.0,0.0,0.0,0.0109686930235 -1469729962999293130,0.0,-0.00895466897246,0.0,0.0,0.0,0.00964413568638 -1469729963073114914,0.0,-0.00883330713567,0.0,0.0,0.0,0.00846696533093 -1469729963149844441,0.0,-0.00867305043694,0.0,0.0,0.0,0.00682522342697 -1469729963229995818,0.0,-0.00858387451229,0.0,0.0,0.0,0.00630930803115 -1469729963307627635,0.0,-0.00847876298782,0.0,0.0,0.0,0.00562122371221 -1469729963392036768,0.0,-0.00835639882442,0.0,0.0,0.0,0.00551758189638 -1469729963475394543,0.0,-0.00825914691743,0.0,0.0,0.0,0.00550475042821 -1469729963552500002,0.0,-0.00818550418672,0.0,0.0,0.0,0.00644711348173 -1469729963630061264,0.0,-0.00803427252528,0.0,0.0,0.0,0.00472716213096 -1469729963711160995,0.0,-0.00796243283507,0.0,0.0,0.0,0.00426932230555 -1469729963789010809,0.0,-0.00785754177329,0.0,0.0,0.0,0.00448794515366 -1469729963867111595,0.0,-0.00775650020298,0.0,0.0,0.0,0.00469589052475 -1469729963947307340,0.0,-0.00767428155598,0.0,0.0,0.0,0.00453887587143 -1469729964023445531,0.0,-0.00756205375847,0.0,0.0,0.0,0.0042858868278 -1469729964103988683,0.0,-0.0074581445342,0.0,0.0,0.0,0.00461916162243 -1469729964181744400,0.0,-0.00736023123917,0.0,0.0,0.0,0.00338346457447 -1469729964258945870,0.0,-0.00720503042993,0.0,0.0,0.0,0.00401981398603 -1469729964340543976,0.0,-0.00710206944105,0.0,0.0,0.0,0.00486508603029 -1469729964417651362,0.0,-0.00694789800403,0.0,0.0,0.0,0.00366803795381 -1469729964498582274,0.0,-0.00673713240382,0.0,0.0,0.0,0.00318344147523 -1469729964589127545,0.0,-0.00659779999015,0.0,0.0,0.0,0.00387046074065 -1469729964677290513,0.0,-0.00647886979935,0.0,0.0,0.0,0.00458139793679 -1469729964755469087,0.0,-0.00626012082753,0.0,0.0,0.0,0.00494469494367 -1469729964832237087,0.0,-0.00613721575198,0.0,0.0,0.0,0.00322475198772 -1469729964908301739,0.0,-0.00595025684294,0.0,0.0,0.0,0.00355506094236 -1469729964981409654,0.0,-0.00581014666316,0.0,0.0,0.0,0.00618600711061 -1469729965073247075,0.0,-0.00560065384564,0.0,0.0,0.0,0.00617882150296 -1469729965148264688,0.0,-0.00550352815148,0.0,0.0,0.0,0.00326606053148 -1469729965228677720,0.0,-0.00532122026739,0.0,0.0,0.0,0.00337560100559 -1469729965305105003,0.0,-0.00517733025905,0.0,0.0,0.0,0.00622104388337 -1469729965383306608,0.0,-0.00507007229683,0.0,0.0,0.0,0.00345758513407 -1469729965459061705,0.0,-0.00490554321167,0.0,0.0,0.0,0.00347226164265 -1469729965532844350,0.0,-0.00478826198336,0.0,0.0,0.0,0.0064271232552 -1469729965614710762,0.0,-0.00470045800862,0.0,0.0,0.0,0.00345421256813 -1469729965694487133,0.0,-0.0045314508265,0.0,0.0,0.0,0.00470534623191 -1469729965770601069,0.0,-0.00442770305631,0.0,0.0,0.0,0.00439252195131 -1469729965848559540,0.0,-0.00437902997789,0.0,0.0,0.0,0.00563451198654 -1469729965924503541,0.0,-0.0042729685789,0.0,0.0,0.0,0.0025312884399 -1469729965999995971,0.0,-0.00422268177924,0.0,0.0,0.0,0.00457256103766 -1469729966079305756,0.0,-0.00416526805219,0.0,0.0,0.0,0.00341764486553 -1469729966157803946,0.0,-0.00406655978021,0.0,0.0,0.0,0.00294396855686 -1469729966235615888,0.0,-0.00400117989239,0.0,0.0,0.0,0.00442611771273 -1469729966311837197,0.0,-0.00393606718239,0.0,0.0,0.0,0.00395114072756 -1469729966388121681,0.0,-0.00384367856738,0.0,0.0,0.0,0.00342162853779 -1469729966464828331,0.0,-0.00375569920596,0.0,0.0,0.0,0.00402243189817 -1469729966546846707,0.0,-0.00367118578014,0.0,0.0,0.0,0.00216364508652 -1469729966625172076,0.0,-0.0035944680458,0.0,0.0,0.0,0.00379733799325 -1469729966703759206,0.0,-0.00356915171799,0.0,0.0,0.0,0.00486522080068 -1469729966780794275,0.0,-0.00353818941471,0.0,0.0,0.0,0.00488771671811 -1469729966860357623,0.0,-0.0034874067789,0.0,0.0,0.0,0.00254996825875 -1469729966935463221,0.0,-0.00342532235739,0.0,0.0,0.0,0.00338164051003 -1469729967011561457,0.0,-0.00338753882405,0.0,0.0,0.0,0.00459671894232 -1469729967086487281,0.0,-0.00333587351796,0.0,0.0,0.0,0.00329929828365 -1469729967163108240,0.0,-0.00328591864166,0.0,0.0,0.0,0.00195230867998 -1469729967237030257,0.0,-0.00323244537768,0.0,0.0,0.0,0.00313841947775 -1469729967319004444,0.0,-0.00315947305021,0.0,0.0,0.0,0.00460230050139 -1469729967396947316,0.0,-0.00309018220362,0.0,0.0,0.0,0.0019276228588 -1469729967475954938,0.0,-0.00305628832039,0.0,0.0,0.0,0.00270201185249 -1469729967557020359,0.0,-0.00302352871355,0.0,0.0,0.0,0.00301607555358 -1469729967637420419,0.0,-0.00296140741166,0.0,0.0,0.0,0.00422540891804 -1469729967715759118,0.0,-0.00293898168561,0.0,0.0,0.0,0.00433590446578 -1469729967795948282,0.0,-0.00292371157166,0.0,0.0,0.0,0.00426948501736 -1469729967872113221,0.0,-0.00289377331343,0.0,0.0,0.0,0.00374566425646 -1469729967951153100,0.0,-0.00287331249174,0.0,0.0,0.0,0.00206972006727 -1469729968027952497,0.0,-0.00285121049342,0.0,0.0,0.0,0.00230588738119 -1469729968106731926,0.0,-0.00281792923418,0.0,0.0,0.0,0.00256524559298 -1469729968181435940,0.0,-0.00279956854489,0.0,0.0,0.0,0.00314519477347 -1469729968260751737,0.0,-0.00274498272297,0.0,0.0,0.0,0.00405308345226 -1469729968337818489,0.0,-0.00270868301001,0.0,0.0,0.0,0.00471541850617 -1469729968417951435,0.0,-0.00266147285309,0.0,0.0,0.0,0.00217021602647 -1469729968501085753,0.0,-0.0025950512996,0.0,0.0,0.0,0.00251999292488 -1469729968580521221,0.0,-0.00257169045118,0.0,0.0,0.0,0.00305563673826 -1469729968661234742,0.0,-0.00256166226771,0.0,0.0,0.0,0.00335297325673 -1469729968736424215,0.0,-0.00255513731,0.0,0.0,0.0,0.00314598706038 -1469729968817410202,0.0,-0.00255818731692,0.0,0.0,0.0,0.00332930973165 -1469729968892541073,0.0,-0.0025477682015,0.0,0.0,0.0,0.00290470445942 -1469729968987040688,0.0,-0.00253341763821,0.0,0.0,0.0,0.00257366081038 -1469729969060557764,0.0,-0.0025153093746,0.0,0.0,0.0,0.00278074004698 -1469729969138990803,0.0,-0.00248110364732,0.0,0.0,0.0,0.00292286100698 -1469729969219628587,0.0,-0.00245392281172,0.0,0.0,0.0,0.0020156265403 -1469729969297644104,0.0,-0.00242652151343,0.0,0.0,0.0,0.00289422840336 -1469729969373719349,0.0,-0.00240373435971,0.0,0.0,0.0,0.00239361405124 -1469729969456052276,0.0,-0.00237911302206,0.0,0.0,0.0,0.00268414790258 -1469729969542848119,0.0,-0.00235486950335,0.0,0.0,0.0,0.00310077643856 -1469729969621481907,0.0,-0.00233618877438,0.0,0.0,0.0,0.00286926391711 -1469729969699995113,0.0,-0.00231949343887,0.0,0.0,0.0,0.00283755062246 -1469729969777659557,0.0,-0.00230650744942,0.0,0.0,0.0,0.00356494144073 -1469729969851124210,0.0,-0.00230229284224,0.0,0.0,0.0,0.00378583386965 -1469729969931395166,0.0,-0.00228751077858,0.0,0.0,0.0,0.00393486987739 -1469729970010702433,0.0,-0.00227439488825,0.0,0.0,0.0,0.00426020778399 -1469729970091021307,0.0,-0.00224929574487,0.0,0.0,0.0,0.00466565399667 -1469729970165293553,0.0,-0.00223861559835,0.0,0.0,0.0,0.00448309628818 -1469729970244470352,0.0,-0.00222560174373,0.0,0.0,0.0,0.00273241405854 -1469729970322464847,0.0,-0.00220394149032,0.0,0.0,0.0,0.00273127064248 -1469729970409962930,0.0,-0.00218352164683,0.0,0.0,0.0,0.00205743918572 -1469729970490875932,0.0,-0.0021477882525,0.0,0.0,0.0,0.00223403613961 -1469729970568844261,0.0,-0.00210649493691,0.0,0.0,0.0,0.00236156601748 -1469729970647636262,0.0,-0.00206963546184,0.0,0.0,0.0,0.00415863586329 -1469729970726829201,0.0,-0.00200152683613,0.0,0.0,0.0,0.0 -1469729970801322649,0.0,-0.00191786862519,0.0,0.0,0.0,0.0026429885881 -1469729970879124245,0.0,-0.00189458768424,0.0,0.0,0.0,0.00220204747662 -1469729970960079854,0.0,-0.00191306311247,0.0,0.0,0.0,0.00221356048668 -1469729971047408052,0.0,-0.00194252069649,0.0,0.0,0.0,0.0 -1469729971125140375,0.0,-0.00199040494469,0.0,0.0,0.0,0.0 -1469729971210280734,0.0,-0.00207300059107,0.0,0.0,0.0,0.0019406408425 -1469729971290134051,0.0,-0.00210689857212,0.0,0.0,0.0,0.00149545810083 -1469729971376176961,0.0,-0.00212327509728,0.0,0.0,0.0,0.0 -1469729971455530785,0.0,-0.00210698380676,0.0,0.0,0.0,0.00176490746937 -1469729971531228047,0.0,-0.00209309096989,0.0,0.0,0.0,0.001537240274 -1469729971610328916,0.0,-0.00208016767707,0.0,0.0,0.0,0.0 -1469729971689788909,0.0,-0.00215523030218,0.0,0.0,0.0,0.0 -1469729971768445580,0.0,-0.00222722529975,0.0,0.0,0.0,0.003189405653 -1469729971846531665,0.0,-0.00219362645951,0.0,0.0,0.0,0.0 -1469729971927772741,0.0,-0.00219393297639,0.0,0.0,0.0,0.00198637952777 -1469729972003604705,0.0,-0.0022032842001,0.0,0.0,0.0,0.00234529180352 -1469729972080458191,0.0,-0.00219281673041,0.0,0.0,0.0,0.00178950609341 -1469729972159616069,0.0,-0.00213960285839,0.0,0.0,0.0,0.0 -1469729972236862993,0.0,-0.00209822717664,0.0,0.0,0.0,0.0 -1469729972316756113,0.0,-0.00208986844477,0.0,0.0,0.0,0.0 -1469729972394055958,0.0,-0.00205106250551,0.0,0.0,0.0,0.00202362661919 -1469729972470909265,0.0,-0.00201291221735,0.0,0.0,0.0,0.00155924071384 -1469729972549451346,0.0,-0.00197544257697,0.0,0.0,0.0,0.0 -1469729972628247994,0.0,-0.00190983566996,0.0,0.0,0.0,0.0 -1469729972715465256,0.0,-0.00186588205007,0.0,0.0,0.0,0.00182704748134 -1469729972792037598,0.0,-0.00181162815151,0.0,0.0,0.0,0.00269146099834 -1469729972871998057,0.0,-0.00176558259484,0.0,0.0,0.0,0.0 -1469729972957220781,0.0,-0.00172124623862,0.0,0.0,0.0,0.00156349364043 -1469729973039647595,0.0,-0.00168140478042,0.0,0.0,0.0,0.0017830233168 -1469729973115582934,0.0,-0.00163326195982,0.0,0.0,0.0,0.00294158036034 -1469729973197269227,0.0,-0.00162164955941,0.0,0.0,0.0,0.00398632476103 -1469729973270595802,0.0,-0.00156334947404,0.0,0.0,0.0,0.0 -1469729973348138459,0.0,-0.00152059528586,0.0,0.0,0.0,0.0 -1469729973425035786,0.0,-0.00142224311438,0.0,0.0,0.0,0.00231626644529 -1469729973507223977,0.0,-0.00139112468418,0.0,0.0,0.0,0.00198491280503 -1469729973586869227,0.0,-0.00135706320015,0.0,0.0,0.0,0.0 -1469729973665608048,0.0,-0.00130120787379,0.0,0.0,0.0,0.0 -1469729973746118242,0.0,-0.00124311063048,0.0,0.0,0.0,0.00147312982169 -1469729973823190651,0.0,-0.00119285456446,0.0,0.0,0.0,0.00348693419249 -1469729973899466837,0.0,-0.00117709066328,0.0,0.0,0.0,0.00391230243514 -1469729973976296326,0.0,-0.00119497395661,0.0,0.0,0.0,0.00274474123803 -1469729974053386389,0.0,-0.00119974054006,0.0,0.0,0.0,0.00210079479049 -1469729974133394805,0.0,-0.00118223957327,0.0,0.0,0.0,0.002189609162 -1469729974220668001,0.0,-0.0011845773792,0.0,0.0,0.0,0.00221145832727 -1469729974303209653,0.0,-0.0011953599712,0.0,0.0,0.0,0.0020881988237 -1469729974378206215,0.0,-0.00118540718761,0.0,0.0,0.0,0.00251008521566 -1469729974461531207,0.0,-0.00114654838648,0.0,0.0,0.0,0.0 -1469729974544009549,0.0,-0.00107158697751,0.0,0.0,0.0,0.0 -1469729974626243614,0.0,-0.000997295971781,0.0,0.0,0.0,0.0023237854165 -1469729974707055058,0.0,0.0,0.0,0.0,0.0,0.0020867605418 -1469729974782878199,0.008,0.0,0.0,0.0,0.0,0.0 -1469729974859559139,0.0,0.0,0.0,0.0,0.0,0.00216034459218 -1469729974938883588,0.008,0.0,0.0,0.0,0.0,0.0 -1469729975023013151,0.008,0.0,0.0,0.0,0.0,0.0 -1469729975103372078,0.0,0.0,0.0,0.0,0.0,0.00270609114079 -1469729975188946574,0.008,0.0,0.0,0.0,0.0,0.0 -1469729975268314947,0.008,0.0,0.0,0.0,0.0,0.0 -1469729975348999712,0.0,-0.000916777510017,0.0,0.0,0.0,0.0 -1469729975426255874,0.0,-0.000999978814095,0.0,0.0,0.0,0.00202037372633 -1469729975503646946,0.0,-0.000979517172843,0.0,0.0,0.0,0.00174186467848 -1469729975586363110,0.008,0.0,0.0,0.0,0.0,0.0 -1469729975659421487,0.0,0.0,0.0,0.0,0.0,0.001475028659 -1469729975739896479,0.0,0.0,0.0,0.0,0.0,0.00173353934849 -1469729975816809057,0.0,0.0,0.0,0.0,0.0,0.00226878660035 -1469729975897015243,0.008,0.0,0.0,0.0,0.0,0.0 -1469729975977997176,0.0,0.0,0.0,0.0,0.0,-0.00148525503585 -1469729976073476004,0.0,0.0,0.0,0.0,0.0,-0.00153812286195 -1469729976154762763,0.0,0.0,0.0,0.0,0.0,-0.00206232558399 -1469729976234102424,0.0,0.0,0.0,0.0,0.0,0.00160228683267 -1469729976311814914,0.0,0.0,0.0,0.0,0.0,0.00215749604849 -1469729976391005317,0.0,0.0,0.0,0.0,0.0,0.00143263842003 -1469729976471297989,0.008,0.0,0.0,0.0,0.0,0.0 -1469729976554516045,0.008,0.0,0.0,0.0,0.0,0.0 -1469729976637155638,0.008,0.0,0.0,0.0,0.0,0.0 -1469729976716554956,0.008,0.0,0.0,0.0,0.0,0.0 -1469729976797489766,0.008,0.0,0.0,0.0,0.0,0.0 -1469729976881528398,0.008,0.0,0.0,0.0,0.0,0.0 -1469729976963757326,0.0,0.0,0.0,0.0,0.0,0.00157342943191 -1469729977044816368,0.0,0.0,0.0,0.0,0.0,0.00179671852579 -1469729977121303908,0.0,0.0,0.0,0.0,0.0,0.00156312949157 -1469729977194876300,0.008,0.0,0.0,0.0,0.0,0.0 -1469729977272414858,0.008,0.0,0.0,0.0,0.0,0.0 -1469729977356420286,0.008,0.0,0.0,0.0,0.0,0.0 -1469729977435447926,0.008,0.0,0.0,0.0,0.0,0.0 -1469729977517721898,0.0,0.0,0.0,0.0,0.0,0.00244091878524 -1469729977591662358,0.0,0.0,0.0,0.0,0.0,0.00211839782702 -1469729977670667207,0.0,0.0,0.0,0.0,0.0,0.00224705812716 -1469729977746720952,0.0,0.0,0.0,0.0,0.0,0.00292152857271 -1469729977821275022,0.008,0.0,0.0,0.0,0.0,0.0 -1469729977899270449,0.0,0.0,0.0,0.0,0.0,-0.00166944332083 -1469729977972307623,0.008,0.0,0.0,0.0,0.0,0.0 -1469729978050327236,0.008,0.0,0.0,0.0,0.0,0.0 -1469729978127674201,0.0,0.0,0.0,0.0,0.0,0.00200199926677 -1469729978205206520,0.0,0.0,0.0,0.0,0.0,0.00159189842813 -1469729978288582277,0.008,0.0,0.0,0.0,0.0,0.0 -1469729978371811562,0.008,0.0,0.0,0.0,0.0,0.0 -1469729978450070514,0.008,0.0,0.0,0.0,0.0,0.0 -1469729978527572760,0.0,0.0,0.0,0.0,0.0,0.00288941938515 -1469729978607795611,0.0,0.0,0.0,0.0,0.0,0.0040790951855 -1469729978686500158,0.0,0.0,0.0,0.0,0.0,0.00222233376568 -1469729978764559225,0.008,0.0,0.0,0.0,0.0,0.0 -1469729978839812488,0.008,0.0,0.0,0.0,0.0,0.0 -1469729978917555095,0.0,0.0,0.0,0.0,0.0,-0.0013991659292 -1469729978996505585,0.008,0.0,0.0,0.0,0.0,0.0 -1469729979082074127,0.008,0.0,0.0,0.0,0.0,0.0 -1469729979162408383,0.0,0.0,0.0,0.0,0.0,0.00187727162253 -1469729979238034212,0.008,0.0,0.0,0.0,0.0,0.0 -1469729979319475084,0.008,0.0,0.0,0.0,0.0,0.0 -1469729979400861887,0.0,0.0,0.0,0.0,0.0,-0.00185911555292 -1469729979477617002,0.0,0.0,0.0,0.0,0.0,-0.00159623405416 -1469729979557124557,0.008,0.0,0.0,0.0,0.0,0.0 -1469729979632840076,0.008,0.0,0.0,0.0,0.0,0.0 -1469729979713585500,0.0,0.0,0.0,0.0,0.0,0.00161376159565 -1469729979793098855,0.008,0.0,0.0,0.0,0.0,0.0 -1469729979868547384,0.008,0.0,0.0,0.0,0.0,0.0 -1469729979947379967,0.0,0.0,0.0,0.0,0.0,-0.00235246730033 -1469729980023762728,0.0,-0.000887361313969,0.0,0.0,0.0,0.0 -1469729980100539506,0.0,-0.000923235263497,0.0,0.0,0.0,0.0 -1469729980183647891,0.0,-0.000942404042751,0.0,0.0,0.0,0.00197673697492 -1469729980260533003,0.0,-0.000929186526507,0.0,0.0,0.0,0.0 -1469729980339200378,0.0,-0.000944072264999,0.0,0.0,0.0,0.0 -1469729980418685074,0.0,-0.000950004678041,0.0,0.0,0.0,0.0 -1469729980495036484,0.0,-0.00089421163854,0.0,0.0,0.0,0.0 -1469729980576296810,0.008,0.0,0.0,0.0,0.0,0.0 -1469729980657039650,0.0,-0.00089076865074,0.0,0.0,0.0,0.0 -1469729980735314538,0.0,-0.000898343879551,0.0,0.0,0.0,0.0 -1469729980811603283,0.0,-0.000961578558952,0.0,0.0,0.0,0.0 -1469729980889220557,0.0,-0.00100440691766,0.0,0.0,0.0,0.0 -1469729980963515855,0.0,-0.00112066164222,0.0,0.0,0.0,0.0 -1469729981042750865,0.0,-0.00109767369536,0.0,0.0,0.0,0.0 -1469729981122265386,0.0,-0.00106937292573,0.0,0.0,0.0,0.0 -1469729981200832498,0.0,-0.00111188165453,0.0,0.0,0.0,0.0 -1469729981280898647,0.0,-0.0011099974772,0.0,0.0,0.0,0.0 -1469729981358386556,0.0,-0.00110345817712,0.0,0.0,0.0,0.0 -1469729981431308534,0.0,-0.00108925882337,0.0,0.0,0.0,0.0 -1469729981510083978,0.0,-0.0010677973142,0.0,0.0,0.0,0.0 -1469729981589085773,0.0,-0.00102706826833,0.0,0.0,0.0,0.0 -1469729981667060542,0.0,-0.00101058028248,0.0,0.0,0.0,0.00178173388496 -1469729981744608016,0.0,-0.000989864166647,0.0,0.0,0.0,0.00207338662552 -1469729981825446814,0.0,-0.000936052832574,0.0,0.0,0.0,0.0 -1469729981904302238,0.0,-0.000918004806906,0.0,0.0,0.0,0.0 -1469729981985003825,0.0,-0.000882259528905,0.0,0.0,0.0,0.0 -1469729982063621594,0.008,0.0,0.0,0.0,0.0,0.0 -1469729982141895407,0.0,0.0,0.0,0.0,0.0,0.00151177698264 -1469729982221721152,0.0,0.0,0.0,0.0,0.0,0.00192621721251 -1469729982301905310,0.008,0.0,0.0,0.0,0.0,0.0 -1469729982380115376,0.008,0.0,0.0,0.0,0.0,0.0 -1469729982462020998,0.008,0.0,0.0,0.0,0.0,0.0 -1469729982538568097,0.008,0.0,0.0,0.0,0.0,0.0 -1469729982622044317,0.0,0.0,0.0,0.0,0.0,0.00170830540568 -1469729982700796547,0.0,0.0,0.0,0.0,0.0,0.00183899383415 -1469729982777599853,0.0,0.0,0.0,0.0,0.0,0.00257272911938 -1469729982857034804,0.0,0.0,0.0,0.0,0.0,0.00255833806238 -1469729982934003996,0.0,0.0,0.0,0.0,0.0,0.00190554212511 -1469729983014618496,0.0,0.0,0.0,0.0,0.0,0.00248416256801 -1469729983093384415,0.0,0.0,0.0,0.0,0.0,0.00202331320714 -1469729983170603138,0.008,0.0,0.0,0.0,0.0,0.0 -1469729983251795201,0.008,0.0,0.0,0.0,0.0,0.0 -1469729983327684977,0.0,0.0,0.0,0.0,0.0,-0.00229733661998 -1469729983406707886,0.0,0.0,0.0,0.0,0.0,-0.0021930355413 -1469729983485510181,0.008,0.0,0.0,0.0,0.0,0.0 -1469729983566903007,0.0,0.0,0.0,0.0,0.0,0.00219373546649 -1469729983642625219,0.008,0.0,0.0,0.0,0.0,0.0 -1469729983720019964,0.008,0.0,0.0,0.0,0.0,0.0 -1469729983796343718,0.0,0.0,0.0,0.0,0.0,0.00150198091343 -1469729983872428982,0.0,0.0,0.0,0.0,0.0,0.00151762245596 -1469729983951363468,0.008,0.0,0.0,0.0,0.0,0.0 -1469729984031737216,0.008,0.0,0.0,0.0,0.0,0.0 -1469729984112119377,0.008,0.0,0.0,0.0,0.0,0.0 -1469729984192432685,0.008,0.0,0.0,0.0,0.0,0.0 -1469729984273006217,0.008,0.0,0.0,0.0,0.0,0.0 -1469729984347081737,0.008,0.0,0.0,0.0,0.0,0.0 -1469729984420056305,0.0,0.0,0.0,0.0,0.0,-0.00193778085619 -1469729984500444357,0.008,0.0,0.0,0.0,0.0,0.0 -1469729984578197108,0.008,0.0,0.0,0.0,0.0,0.0 -1469729984660756581,0.008,0.0,0.0,0.0,0.0,0.0 -1469729984741514000,0.008,0.0,0.0,0.0,0.0,0.0 -1469729984816880346,0.008,0.0,0.0,0.0,0.0,0.0 -1469729984897780588,0.008,0.0,0.0,0.0,0.0,0.0 -1469729984982673188,0.0,0.0,0.0,0.0,0.0,0.00150124171924 -1469729985060057408,0.008,0.0,0.0,0.0,0.0,0.0 -1469729985138207555,0.0,0.0,0.0,0.0,0.0,-0.0024042353144 -1469729985211338458,0.008,0.0,0.0,0.0,0.0,0.0 -1469729985290173568,0.008,0.0,0.0,0.0,0.0,0.0 -1469729985367900763,0.008,0.0,0.0,0.0,0.0,0.0 -1469729985447820390,0.0,0.0,0.0,0.0,0.0,-0.00245995627391 -1469729985525656570,0.0,0.0,0.0,0.0,0.0,0.00158744920325 -1469729985606138170,0.008,0.0,0.0,0.0,0.0,0.0 -1469729985681542408,0.008,0.0,0.0,0.0,0.0,0.0 -1469729985759907257,0.008,0.0,0.0,0.0,0.0,0.0 -1469729985838047014,0.008,0.0,0.0,0.0,0.0,0.0 -1469729985916748164,0.008,0.0,0.0,0.0,0.0,0.0 -1469729985994976723,0.008,0.0,0.0,0.0,0.0,0.0 -1469729986071998795,0.0,0.0,0.0,0.0,0.0,-0.00155502872774 -1469729986150035789,0.008,0.0,0.0,0.0,0.0,0.0 -1469729986230203463,0.0,0.0,0.0,0.0,0.0,0.0028182969682 -1469729986307744542,0.008,0.0,0.0,0.0,0.0,0.0 -1469729986384500751,0.008,0.0,0.0,0.0,0.0,0.0 -1469729986458826224,0.008,0.0,0.0,0.0,0.0,0.0 -1469729986538680934,0.0,0.0,0.0,0.0,0.0,0.00281558729283 -1469729986623876204,0.008,0.0,0.0,0.0,0.0,0.0 -1469729986699871464,0.008,0.0,0.0,0.0,0.0,0.0 -1469729986778915562,0.0,0.0,0.0,0.0,0.0,0.00172771823273 -1469729986855082440,0.008,0.0,0.0,0.0,0.0,0.0 -1469729986935734265,0.008,0.0,0.0,0.0,0.0,0.0 -1469729987015927523,0.008,0.0,0.0,0.0,0.0,0.0 -1469729987093552734,0.008,0.0,0.0,0.0,0.0,0.0 -1469729987169351424,0.008,0.0,0.0,0.0,0.0,0.0 -1469729987245430580,0.008,0.0,0.0,0.0,0.0,0.0 -1469729987331681149,0.008,0.0,0.0,0.0,0.0,0.0 -1469729987420136218,0.008,0.0,0.0,0.0,0.0,0.0 -1469729987497651494,0.0,0.0,0.0,0.0,0.0,0.00218647724891 -1469729987574246078,0.008,0.0,0.0,0.0,0.0,0.0 -1469729987653305389,0.008,0.0,0.0,0.0,0.0,0.0 -1469729987732895194,0.008,0.0,0.0,0.0,0.0,0.0 -1469729987810601709,0.008,0.0,0.0,0.0,0.0,0.0 -1469729987891098496,0.0,0.0,0.0,0.0,0.0,0.00246320393325 -1469729987977964013,0.008,0.0,0.0,0.0,0.0,0.0 -1469729988052580738,0.008,0.0,0.0,0.0,0.0,0.0 -1469729988131754979,0.008,0.0,0.0,0.0,0.0,0.0 -1469729988209218159,0.008,0.0,0.0,0.0,0.0,0.0 -1469729988287802992,0.008,0.0,0.0,0.0,0.0,0.0 -1469729988368049671,0.0,0.0,0.0,0.0,0.0,0.00178747654459 -1469729988443178550,0.008,0.0,0.0,0.0,0.0,0.0 -1469729988523230347,0.008,0.0,0.0,0.0,0.0,0.0 -1469729988603349203,0.008,0.0,0.0,0.0,0.0,0.0 -1469729988684059470,0.0,0.0,0.0,0.0,0.0,0.00146639379508 -1469729988763279267,0.008,0.0,0.0,0.0,0.0,0.0 -1469729988835670190,0.0,0.0,0.0,0.0,0.0,0.00175267029646 -1469729988911897616,0.0,0.0,0.0,0.0,0.0,0.00140048095941 -1469729988988722356,0.0,0.0,0.0,0.0,0.0,0.0021507927851 -1469729989064949376,0.0,0.0,0.0,0.0,0.0,0.0016072850678 -1469729989155855501,0.0,0.0,0.0,0.0,0.0,0.00152797817347 -1469729989232046298,0.008,0.0,0.0,0.0,0.0,0.0 -1469729989319055972,0.0,0.0,0.0,0.0,0.0,0.00166075559655 -1469729989395685475,0.0,0.0,0.0,0.0,0.0,0.00286861251876 -1469729989472523730,0.0,0.0,0.0,0.0,0.0,0.001803680592 -1469729989550492350,0.0,0.0,0.0,0.0,0.0,0.00198692115404 -1469729989628861198,0.0,0.0,0.0,0.0,0.0,0.00229106842451 -1469729989707191051,0.0,0.0,0.0,0.0,0.0,0.00225678427757 -1469729989782204395,0.0,0.0,0.0,0.0,0.0,0.00239850077037 -1469729989856097136,0.0,0.0,0.0,0.0,0.0,0.001845009563 -1469729989937264224,0.008,0.0,0.0,0.0,0.0,0.0 -1469729990016520680,0.0,0.0,0.0,0.0,0.0,0.0018373714564 -1469729990093380449,0.008,0.0,0.0,0.0,0.0,0.0 -1469729990172838308,0.008,0.0,0.0,0.0,0.0,0.0 -1469729990249027734,0.008,0.0,0.0,0.0,0.0,0.0 -1469729990331394649,0.0,0.0,0.0,0.0,0.0,0.00192132190869 -1469729990411077627,0.0,0.0,0.0,0.0,0.0,0.00143810001206 -1469729990491954294,0.008,0.0,0.0,0.0,0.0,0.0 -1469729990571499926,0.008,0.0,0.0,0.0,0.0,0.0 -1469729990650628265,0.008,0.0,0.0,0.0,0.0,0.0 -1469729990731007213,0.0,0.0,0.0,0.0,0.0,0.00190168576951 -1469729990812618957,0.0,0.0,0.0,0.0,0.0,0.0016186908825 -1469729990893038953,0.008,0.0,0.0,0.0,0.0,0.0 -1469729990969580870,0.008,0.0,0.0,0.0,0.0,0.0 -1469729991047558422,0.008,0.0,0.0,0.0,0.0,0.0 -1469729991124934066,0.008,0.0,0.0,0.0,0.0,0.0 -1469729991199681310,0.0,0.0,0.0,0.0,0.0,-0.00151094335429 -1469729991272803733,0.008,0.0,0.0,0.0,0.0,0.0 -1469729991357070700,0.008,0.0,0.0,0.0,0.0,0.0 -1469729991435870015,0.008,0.0,0.0,0.0,0.0,0.0 -1469729991512756252,0.0,0.0,0.0,0.0,0.0,0.00141107321561 -1469729991592200643,0.008,0.0,0.0,0.0,0.0,0.0 -1469729991668061279,0.008,0.0,0.0,0.0,0.0,0.0 -1469729991745133448,0.008,0.0,0.0,0.0,0.0,0.0 -1469729991820115761,0.0,0.0,0.0,0.0,0.0,0.00196849926259 -1469729991896973580,0.008,0.0,0.0,0.0,0.0,0.0 -1469729991978138875,0.0,0.0,0.0,0.0,0.0,0.00201231391815 -1469729992051376822,0.008,0.0,0.0,0.0,0.0,0.0 -1469729992130522352,0.0,0.0,0.0,0.0,0.0,0.00153678504435 -1469729992209269372,0.008,0.0,0.0,0.0,0.0,0.0 -1469729992288006565,0.008,0.0,0.0,0.0,0.0,0.0 -1469729992366428987,0.008,0.0,0.0,0.0,0.0,0.0 -1469729992443243571,0.0,0.0,0.0,0.0,0.0,0.00166742565098 -1469729992523543959,0.008,0.0,0.0,0.0,0.0,0.0 -1469729992602777006,0.0,0.0,0.0,0.0,0.0,0.0014501866859 -1469729992680253172,0.0,0.0,0.0,0.0,0.0,0.00158402562023 -1469729992756474210,0.0,0.0,0.0,0.0,0.0,0.00272407324129 -1469729992831537975,0.0,0.0,0.0,0.0,0.0,0.00236825806339 -1469729992906499411,0.0,0.0,0.0,0.0,0.0,0.0016158473012 +1470068791617163535,0.16,-0.134309997643,0.0,0.0,0.0,0.0358472942521 +1470068791699334713,0.16,-0.133803751553,0.0,0.0,0.0,0.0430134957337 +1470068791780790626,0.16,-0.134071316804,0.0,0.0,0.0,0.0330886053309 +1470068791861284515,0.16,-0.134223630513,0.0,0.0,0.0,0.0377821335139 +1470068791937247375,0.16,-0.134223630513,0.0,0.0,0.0,0.0377821335139 +1470068792013086465,0.16,-0.134191444005,0.0,0.0,0.0,0.0346793551799 +1470068792093820439,0.16,-0.133642354096,0.0,0.0,0.0,0.0433939635144 +1470068792179375173,0.16,-0.134192874516,0.0,0.0,0.0,0.0343153436592 +1470068792257912135,0.16,-0.134120705212,0.0,0.0,0.0,0.0379381517749 +1470068792336380762,0.16,-0.131907906617,0.0,0.0,0.0,0.0157107771996 +1470068792409333555,0.16,-0.131887712563,0.0,0.0,0.0,0.0313970941282 +1470068792480024989,0.16,-0.131207742776,0.0,0.0,0.0,0.0247250066321 +1470068792550588544,0.16,-0.129460468377,0.0,0.0,0.0,0.0236432982102 +1470068792625002925,0.16,-0.126408829774,0.0,0.0,0.0,0.0272553470592 +1470068792704922812,0.16,-0.124164750661,0.0,0.0,0.0,0.0241429074572 +1470068792779908932,0.16,-0.122557940568,0.0,0.0,0.0,0.0250586987523 +1470068792858942383,0.16,-0.12071110257,0.0,0.0,0.0,0.0423219642323 +1470068792939099288,0.16,-0.120002951707,0.0,0.0,0.0,0.0162572040813 +1470068793020080170,0.16,-0.117732682313,0.0,0.0,0.0,0.0273202787829 +1470068793092436995,0.16,-0.117020001496,0.0,0.0,0.0,0.0239027116715 +1470068793169877662,0.16,-0.114981856431,0.0,0.0,0.0,0.015238756988 +1470068793251188122,0.16,-0.111488571251,0.0,0.0,0.0,0.0266193355366 +1470068793336871197,0.16,-0.110163667286,0.0,0.0,0.0,0.0289270871156 +1470068793412565587,0.16,-0.103664901341,0.0,0.0,0.0,0.0281067805282 +1470068793487868701,0.16,-0.101847925271,0.0,0.0,0.0,0.0237762735206 +1470068793560029252,0.16,-0.100795402611,0.0,0.0,0.0,0.0243600218501 +1470068793632649981,0.16,-0.0976922536741,0.0,0.0,0.0,0.012812393309 +1470068793704535723,0.16,-0.095693507279,0.0,0.0,0.0,0.0248389375105 +1470068793794662060,0.16,-0.0945115948568,0.0,0.0,0.0,0.0231422232803 +1470068793870090500,0.16,-0.0905860091101,0.0,0.0,0.0,0.011491958868 +1470068793944832749,0.16,-0.0875469649683,0.0,0.0,0.0,0.0324873298694 +1470068794024539570,0.16,-0.0864607597242,0.0,0.0,0.0,0.0281534176862 +1470068794102229464,0.16,-0.0854026521097,0.0,0.0,0.0,0.0240737314061 +1470068794180976573,0.16,-0.0822903777014,0.0,0.0,0.0,0.0130663800257 +1470068794257843961,0.16,-0.0795998001944,0.0,0.0,0.0,0.0223692648858 +1470068794331185862,0.16,-0.0790272618185,0.0,0.0,0.0,0.0317977547127 +1470068794418305091,0.16,-0.0761428917299,0.0,0.0,0.0,0.0279953392379 +1470068794500286404,0.16,-0.0752475703608,0.0,0.0,0.0,0.020021735784 +1470068794579951396,0.16,-0.073936721171,0.0,0.0,0.0,0.0186991268913 +1470068794652490624,0.16,-0.0703733945738,0.0,0.0,0.0,0.0217390093989 +1470068794726467665,0.16,-0.0697040105711,0.0,0.0,0.0,0.0300865397239 +1470068794796943925,0.16,-0.0673208797823,0.0,0.0,0.0,0.0292503615828 +1470068794869783518,0.16,-0.0666124010931,0.0,0.0,0.0,0.014672733919 +1470068794947176748,0.16,-0.0640237475287,0.0,0.0,0.0,0.0210806385395 +1470068795026652854,0.16,-0.0629258478533,0.0,0.0,0.0,0.0147019711018 +1470068795101770087,0.16,-0.0619239295374,0.0,0.0,0.0,0.00702633067334 +1470068795180410729,0.16,-0.0598628843676,0.0,0.0,0.0,0.0150866800828 +1470068795253405297,0.16,-0.0591426218401,0.0,0.0,0.0,0.0184876682515 +1470068795329156457,0.16,-0.0575019324671,0.0,0.0,0.0,0.0237238644872 +1470068795409859242,0.16,-0.0566886628519,0.0,0.0,0.0,0.0144973018542 +1470068795487575068,0.16,-0.0551080490004,0.0,0.0,0.0,0.0232304467672 +1470068795563525100,0.16,-0.0548723245512,0.0,0.0,0.0,0.0209454149222 +1470068795644420491,0.16,-0.053044750775,0.0,0.0,0.0,0.0158388037424 +1470068795720525969,0.16,-0.0524944389711,0.0,0.0,0.0,0.0165729838166 +1470068795796614779,0.16,-0.0514833892237,0.0,0.0,0.0,0.00477660025264 +1470068795873961278,0.16,-0.0502620244871,0.0,0.0,0.0,0.012727762889 +1470068795950873386,0.16,-0.0494559193503,0.0,0.0,0.0,0.00813086929834 +1470068796028153244,0.16,-0.0481639588724,0.0,0.0,0.0,0.0155983358438 +1470068796109547041,0.16,-0.0468281830202,0.0,0.0,0.0,0.0123369233005 +1470068796188951732,0.16,-0.046336742724,0.0,0.0,0.0,0.00821928540226 +1470068796264822723,0.16,-0.0453541273724,0.0,0.0,0.0,0.0156165904367 +1470068796341186740,0.16,-0.0441964800011,0.0,0.0,0.0,0.0113778581087 +1470068796421607156,0.16,-0.0431566590916,0.0,0.0,0.0,0.00857564485819 +1470068796498135855,0.16,-0.0424114251982,0.0,0.0,0.0,0.0123289400997 +1470068796572924778,0.16,-0.0415316755425,0.0,0.0,0.0,0.00831911399896 +1470068796649332890,0.16,-0.0405914182316,0.0,0.0,0.0,0.00880884140857 +1470068796726531632,0.16,-0.0396473104607,0.0,0.0,0.0,0.0150476626417 +1470068796816496447,0.16,-0.0383052612196,0.0,0.0,0.0,0.00527538955041 +1470068796887739282,0.16,-0.0374703282963,0.0,0.0,0.0,0.0107307802554 +1470068796965585695,0.16,-0.0365502888809,0.0,0.0,0.0,0.0134341821616 +1470068797042734242,0.16,-0.0354106927763,0.0,0.0,0.0,0.00913165760715 +1470068797120848545,0.16,-0.0346170986544,0.0,0.0,0.0,0.0185166181831 +1470068797197276819,0.16,-0.0333172673832,0.0,0.0,0.0,0.0085430221137 +1470068797277691824,0.16,-0.0325026000391,0.0,0.0,0.0,0.0105403300044 +1470068797353924134,0.16,-0.0318327809225,0.0,0.0,0.0,0.0 +1470068797428164119,0.16,-0.0310663844,0.0,0.0,0.0,0.0 +1470068797499370813,0.16,-0.030038979138,0.0,0.0,0.0,0.00825350022677 +1470068797571596225,0.16,-0.0293382043491,0.0,0.0,0.0,0.00586275939004 +1470068797644984844,0.16,-0.0287919218193,0.0,0.0,0.0,0.00811410569382 +1470068797723207388,0.16,-0.0276654715191,0.0,0.0,0.0,0.00424087961858 +1470068797798395755,0.16,-0.0271214986693,0.0,0.0,0.0,0.0 +1470068797873916609,0.16,-0.0264164144646,0.0,0.0,0.0,0.0087963196746 +1470068797950997885,0.16,-0.0260149354588,0.0,0.0,0.0,0.00894706435171 +1470068798025884352,0.16,-0.0250055188786,0.0,0.0,0.0,0.0 +1470068798099917966,0.16,-0.0244069243322,0.0,0.0,0.0,0.0 +1470068798178335037,0.16,-0.0238629991661,0.0,0.0,0.0,0.00332440067955 +1470068798251210850,0.16,-0.0232235396753,0.0,0.0,0.0,0.00581471963067 +1470068798323494938,0.16,-0.0224369550596,0.0,0.0,0.0,0.0 +1470068798400012539,0.0,-0.0218580062042,0.0,0.0,0.0,0.0 +1470068798472690958,0.0,-0.0213287586819,0.0,0.0,0.0,0.0 +1470068798552817492,0.0,-0.0208176875959,0.0,0.0,0.0,0.0 +1470068798626504163,0.0,-0.0201792115818,0.0,0.0,0.0,0.00648373000922 +1470068798701045116,0.0,-0.0197468037258,0.0,0.0,0.0,0.00506366925672 +1470068798775680370,0.0,-0.0191046411644,0.0,0.0,0.0,0.00380415790871 +1470068798854480993,0.0,-0.0186448524247,0.0,0.0,0.0,0.00749660094725 +1470068798926225060,0.0,-0.017964085425,0.0,0.0,0.0,0.00449475845352 +1470068799006778608,0.0,-0.0175658712636,0.0,0.0,0.0,0.00597879735842 +1470068799082027784,0.0,-0.0171281928669,0.0,0.0,0.0,0.0 +1470068799162142380,0.0,-0.0170192758094,0.0,0.0,0.0,0.0 +1470068799239812297,0.0,-0.0166973019491,0.0,0.0,0.0,0.00355443092192 +1470068799311800771,0.0,-0.0168659100782,0.0,0.0,0.0,0.00364256810979 +1470068799391779752,0.0,-0.0167418594013,0.0,0.0,0.0,0.0 +1470068799467582834,0.0,-0.0157970706473,0.0,0.0,0.0,0.0 +1470068799548554955,0.0,-0.0152819121729,0.0,0.0,0.0,0.0 +1470068799626459124,0.0,-0.015262741829,0.0,0.0,0.0,0.0034746207453 +1470068799700012942,0.0,-0.0149190957199,0.0,0.0,0.0,0.0 +1470068799783468325,0.0,-0.0140902871739,0.0,0.0,0.0,0.0 +1470068799857859896,0.0,-0.0137470821391,0.0,0.0,0.0,0.0 +1470068799931135780,0.0,-0.0131596083294,0.0,0.0,0.0,0.0 +1470068800003946516,0.0,-0.0127152080189,0.0,0.0,0.0,0.0 +1470068800082262239,0.0,-0.0122610221158,0.0,0.0,0.0,0.0 +1470068800158666615,0.0,-0.0116995642434,0.0,0.0,0.0,0.00343873581811 +1470068800232325816,0.0,-0.0112604747068,0.0,0.0,0.0,0.0 +1470068800307584203,0.0,-0.0108657384764,0.0,0.0,0.0,0.0 +1470068800388360294,0.0,-0.0104915867101,0.0,0.0,0.0,0.0 +1470068800465040893,0.0,-0.00990876355277,0.0,0.0,0.0,0.0 +1470068800541305996,0.0,-0.00953031280146,0.0,0.0,0.0,0.0 +1470068800614782214,0.0,-0.00919725992785,0.0,0.0,0.0,0.0 +1470068800688751003,0.0,-0.0088480258833,0.0,0.0,0.0,0.0 +1470068800770278366,0.0,-0.00829109796391,0.0,0.0,0.0,0.0 +1470068800844134725,0.0,-0.00798700996743,0.0,0.0,0.0,0.0 +1470068800916485057,0.0,-0.00769932889448,0.0,0.0,0.0,0.0 +1470068800992657707,0.0,-0.00723894410835,0.0,0.0,0.0,0.0 +1470068801069015843,0.0,-0.00697463997708,0.0,0.0,0.0,0.0 +1470068801150624789,0.0,-0.00668400847421,0.0,0.0,0.0,0.0 +1470068801229583838,0.0,-0.00641293623553,0.0,0.0,0.0,0.0 +1470068801307035515,0.0,-0.00604855814086,0.0,0.0,0.0,0.0 +1470068801388069691,0.0,-0.00580553510295,0.0,0.0,0.0,0.0 +1470068801464941847,0.0,-0.00557838105665,0.0,0.0,0.0,0.0 +1470068801543672404,0.0,-0.00526950904237,0.0,0.0,0.0,0.0030715253016 +1470068801621087878,0.0,-0.00505046271787,0.0,0.0,0.0,0.00317194622887 +1470068801698275444,0.0,-0.00484802373753,0.0,0.0,0.0,0.00347037672971 +1470068801773609315,0.0,-0.00456555881606,0.0,0.0,0.0,0.0033554286464 +1470068801849069163,0.0,-0.0043794157456,0.0,0.0,0.0,0.00366036127581 +1470068801921898007,0.0,-0.00419845827924,0.0,0.0,0.0,0.0 +1470068801996056710,0.0,-0.00392074682818,0.0,0.0,0.0,0.00344946360695 +1470068802068161662,0.0,-0.00377554842339,0.0,0.0,0.0,0.00360843627043 +1470068802140218401,0.0,-0.00362941497074,0.0,0.0,0.0,0.00506267697926 +1470068802211243756,0.0,-0.00343091064201,0.0,0.0,0.0,0.00457469889134 +1470068802291130818,0.0,-0.00331986867891,0.0,0.0,0.0,0.00392730983416 +1470068802368645244,0.0,-0.0031933645259,0.0,0.0,0.0,0.0 +1470068802442284648,0.0,-0.00313200079904,0.0,0.0,0.0,0.00316524555134 +1470068802518890003,0.0,-0.00305842557059,0.0,0.0,0.0,0.00573598852519 +1470068802597800086,0.0,-0.00297084921108,0.0,0.0,0.0,0.00378664165104 +1470068802672980011,0.0,-0.00287519865738,0.0,0.0,0.0,0.00492582556239 +1470068802750851048,0.0,-0.00281512909637,0.0,0.0,0.0,0.00281624045423 +1470068802827914873,0.0,-0.00276864641414,0.0,0.0,0.0,0.00302457076828 +1470068802899375048,0.0,-0.00268492871033,0.0,0.0,0.0,0.00474147014754 +1470068802979435800,0.0,-0.00263689854251,0.0,0.0,0.0,0.00424206975403 +1470068803052736655,0.0,-0.00261515923844,0.0,0.0,0.0,0.00367697495736 +1470068803125034445,0.0,-0.00256038443254,0.0,0.0,0.0,0.00341537535556 +1470068803203398983,0.0,-0.00253060557948,0.0,0.0,0.0,0.00459892933413 +1470068803279548636,0.0,-0.0025256319444,0.0,0.0,0.0,0.00461833591846 +1470068803354021488,0.0,-0.00252390862511,0.0,0.0,0.0,0.00506624855163 +1470068803431871038,0.0,-0.00251755067216,0.0,0.0,0.0,0.004802036054 +1470068803509378596,0.0,-0.00251018204795,0.0,0.0,0.0,0.00521769377595 +1470068803582819508,0.0,-0.00246003330754,0.0,0.0,0.0,0.00396953632566 +1470068803661476694,0.0,-0.00245449193822,0.0,0.0,0.0,0.00471175437871 +1470068803739233116,0.0,-0.00246483669685,0.0,0.0,0.0,0.00511733471094 +1470068803812657324,0.0,-0.0024413099985,0.0,0.0,0.0,0.0036042031988 +1470068803889954578,0.0,-0.00239656479166,0.0,0.0,0.0,0.0 +1470068803964748623,0.0,-0.00239242822932,0.0,0.0,0.0,0.0 +1470068804038925685,0.0,-0.00239423089729,0.0,0.0,0.0,0.0 +1470068804113815219,0.0,-0.00237475396202,0.0,0.0,0.0,0.0 +1470068804189698835,0.0,-0.00238477238522,0.0,0.0,0.0,0.0 +1470068804272478926,0.0,-0.00240216390298,0.0,0.0,0.0,0.0 +1470068804346981104,0.0,-0.00241913669811,0.0,0.0,0.0,0.0 +1470068804421602686,0.0,-0.00244070501135,0.0,0.0,0.0,0.00385762631896 +1470068804495082106,0.0,-0.0024551744114,0.0,0.0,0.0,0.00419520894057 +1470068804566743273,0.0,-0.00245551117764,0.0,0.0,0.0,0.00464649481225 +1470068804639190298,0.0,-0.00243949242936,0.0,0.0,0.0,0.00297270447554 +1470068804719217019,0.0,-0.00243655354784,0.0,0.0,0.0,0.00337794325703 +1470068804792777872,0.0,-0.00241433740662,0.0,0.0,0.0,0.0 +1470068804866985856,0.0,-0.00238435664283,0.0,0.0,0.0,0.0 +1470068804945231934,0.0,-0.00233958312379,0.0,0.0,0.0,0.00338634222009 +1470068805023309267,0.0,-0.00229722247527,0.0,0.0,0.0,0.00528997013305 +1470068805096415725,0.0,-0.00222116061555,0.0,0.0,0.0,0.0 +1470068805171669401,0.0,-0.00218656756984,0.0,0.0,0.0,0.0 +1470068805245946621,0.0,-0.00216026180492,0.0,0.0,0.0,0.0 +1470068805324429731,0.0,-0.00209237546728,0.0,0.0,0.0,0.00477276547286 +1470068805399016324,0.0,-0.00207467922078,0.0,0.0,0.0,0.00473052692971 +1470068805476062249,0.0,-0.00208132029579,0.0,0.0,0.0,0.00426708661795 +1470068805550997085,0.0,-0.00206251950072,0.0,0.0,0.0,0.0 +1470068805629161972,0.0,-0.00203220457838,0.0,0.0,0.0,0.0 +1470068805704012192,0.0,-0.00201584720121,0.0,0.0,0.0,0.0 +1470068805782739012,0.0,-0.00197535590337,0.0,0.0,0.0,0.00344905641753 +1470068805867162951,0.0,-0.00197419249521,0.0,0.0,0.0,0.00326906535866 +1470068805942857216,0.0,-0.00191289209829,0.0,0.0,0.0,0.00466487727662 +1470068806020334415,0.0,-0.00187376127647,0.0,0.0,0.0,0.0 +1470068806096772972,0.0,-0.0018516818534,0.0,0.0,0.0,0.0 +1470068806169751961,0.0,-0.0018247975509,0.0,0.0,0.0,0.0 +1470068806243319336,0.0,-0.00179846645401,0.0,0.0,0.0,0.0 +1470068806320154244,0.0,-0.00177054689334,0.0,0.0,0.0,0.00357398492315 +1470068806391720180,0.0,-0.00173127153025,0.0,0.0,0.0,0.00427194135854 +1470068806468587540,0.0,-0.00171058909105,0.0,0.0,0.0,0.00321277494496 +1470068806546061861,0.0,-0.00168972485767,0.0,0.0,0.0,0.0 +1470068806621836118,0.0,-0.00166545384632,0.0,0.0,0.0,0.0 +1470068806698952027,0.0,-0.00162781016038,0.0,0.0,0.0,0.0 +1470068806773217480,0.0,-0.00160446674631,0.0,0.0,0.0,0.00281365888873 +1470068806848478080,0.0,-0.00158803635345,0.0,0.0,0.0,0.00326662346029 +1470068806921482173,0.0,-0.00156159759568,0.0,0.0,0.0,0.00374127028508 +1470068806996736471,0.0,-0.00154180848108,0.0,0.0,0.0,0.0040387451583 +1470068807070876322,0.0,-0.00150556997464,0.0,0.0,0.0,0.0 +1470068807143861652,0.0,-0.00147938230143,0.0,0.0,0.0,0.0 +1470068807220049275,0.0,-0.00144287073122,0.0,0.0,0.0,0.0 +1470068807293307022,0.0,-0.00141774439321,0.0,0.0,0.0,0.00342784213435 +1470068807368835175,0.0,-0.00138505124555,0.0,0.0,0.0,0.00316433664084 +1470068807446388770,0.0,-0.00137004391359,0.0,0.0,0.0,0.00362646303386 +1470068807520009016,0.0,-0.00136162438498,0.0,0.0,0.0,0.00379383493805 +1470068807593746778,0.0,-0.00137708135949,0.0,0.0,0.0,0.0 +1470068807668275039,0.0,-0.00135855176554,0.0,0.0,0.0,0.00293140967978 +1470068807741073275,0.0,-0.00134240337716,0.0,0.0,0.0,0.00298001760213 +1470068807815424992,0.0,-0.0013371976565,0.0,0.0,0.0,0.0 +1470068807888783683,0.0,-0.00134135694311,0.0,0.0,0.0,0.0 +1470068807960836319,0.0,-0.00132391736911,0.0,0.0,0.0,0.0 +1470068808034338400,0.0,-0.0013141220908,0.0,0.0,0.0,0.0 +1470068808106867636,0.0,-0.00131523408995,0.0,0.0,0.0,0.0 +1470068808183622078,0.0,-0.00131533057497,0.0,0.0,0.0,0.0 +1470068808256867677,0.0,-0.00129405581461,0.0,0.0,0.0,0.0 +1470068808342459373,0.0,-0.00129205980407,0.0,0.0,0.0,0.0 +1470068808413755858,0.0,-0.00131161050008,0.0,0.0,0.0,0.0 +1470068808486695363,0.0,-0.00131195657955,0.0,0.0,0.0,0.0 +1470068808560191749,0.0,-0.00124462754534,0.0,0.0,0.0,0.0 +1470068808632504392,0.0,-0.00120620154844,0.0,0.0,0.0,0.00362599144443 +1470068808704569856,0.0,-0.00118457661079,0.0,0.0,0.0,0.00348100448912 +1470068808780505896,0.0,-0.00115659595536,0.0,0.0,0.0,0.00308267109579 +1470068808855311588,0.0,-0.00111666568623,0.0,0.0,0.0,0.0 +1470068808929777876,0.0,-0.00108621516333,0.0,0.0,0.0,0.0 +1470068809003574628,0.0,-0.00105593116091,0.0,0.0,0.0,0.0 +1470068809081302747,0.0,-0.00103601315127,0.0,0.0,0.0,0.00284057764795 +1470068809158823890,0.0,-0.00100667611764,0.0,0.0,0.0,0.00403338897742 +1470068809232509951,0.0,-0.000965717668398,0.0,0.0,0.0,0.0 +1470068809305687944,0.0,-0.000956278900369,0.0,0.0,0.0,0.0 +1470068809378556068,0.0,-0.000925001735552,0.0,0.0,0.0,0.0 +1470068809451414859,0.0,-0.000922670448883,0.0,0.0,0.0,0.0 +1470068809527630766,0.0,-0.000930772955282,0.0,0.0,0.0,0.0 +1470068809600955338,0.0,-0.000917947525843,0.0,0.0,0.0,0.0 +1470068809673504681,0.0,-0.000917431573136,0.0,0.0,0.0,0.0 +1470068809750139705,0.0,-0.000907879183753,0.0,0.0,0.0,0.0 +1470068809825652833,0.0,-0.000875807041986,0.0,0.0,0.0,0.0 +1470068809901374854,0.0,-0.000864650170072,0.0,0.0,0.0,0.00314267717504 +1470068809977136035,0.0,-0.000844797725542,0.0,0.0,0.0,0.00297894020598 +1470068810051628095,0.0,-0.000837242464288,0.0,0.0,0.0,0.00382018999572 +1470068810129801548,0.0,0.0,0.0,0.0,0.0,0.00350867416394 +1470068810203732255,0.006,0.0,0.0,0.0,0.0,0.0 +1470068810279926207,0.006,0.0,0.0,0.0,0.0,0.0 +1470068810356319313,0.006,0.0,0.0,0.0,0.0,0.0 +1470068810436515498,0.006,0.0,0.0,0.0,0.0,0.0 +1470068810513902845,0.006,0.0,0.0,0.0,0.0,0.0 +1470068810586967387,0.0,0.0,0.0,0.0,0.0,0.00339195038234 +1470068810663730501,0.0,0.0,0.0,0.0,0.0,0.00299109766573 +1470068810736588785,0.006,0.0,0.0,0.0,0.0,0.0 +1470068810809138482,0.006,0.0,0.0,0.0,0.0,0.0 +1470068810884821313,0.006,0.0,0.0,0.0,0.0,0.0 +1470068810959546130,0.0,-0.000878361473544,0.0,0.0,0.0,0.0 +1470068811031085444,0.0,-0.0012048138778,0.0,0.0,0.0,0.0 +1470068811108631505,0.0,-0.00155940526233,0.0,0.0,0.0,0.0 +1470068811197037443,0.0,-0.00165643454598,0.0,0.0,0.0,0.0 +1470068811271198909,0.0,-0.00172272385166,0.0,0.0,0.0,0.0 +1470068811343099188,0.0,-0.0017531453173,0.0,0.0,0.0,0.0 +1470068811416807796,0.0,-0.00177934789167,0.0,0.0,0.0,0.0 +1470068811497671654,0.0,-0.00179279320942,0.0,0.0,0.0,0.0 +1470068811573225201,0.0,-0.00183456749724,0.0,0.0,0.0,0.0 +1470068811647134463,0.0,-0.00194399380194,0.0,0.0,0.0,0.0 +1470068811721167382,0.0,-0.00202807881938,0.0,0.0,0.0,0.0 +1470068811797227484,0.0,-0.0022235507618,0.0,0.0,0.0,0.0 +1470068811869117980,0.0,-0.00236179069684,0.0,0.0,0.0,0.0 +1470068811940900504,0.0,-0.00240009152399,0.0,0.0,0.0,0.0 +1470068812014160930,0.0,-0.00233121723936,0.0,0.0,0.0,0.0 +1470068812088778157,0.0,-0.00231012017535,0.0,0.0,0.0,0.0 +1470068812163134958,0.0,-0.00232204929994,0.0,0.0,0.0,0.0 +1470068812238454065,0.0,-0.00228801318513,0.0,0.0,0.0,0.0 +1470068812313929603,0.0,-0.00224130065249,0.0,0.0,0.0,0.0 +1470068812387202825,0.0,-0.00217548371361,0.0,0.0,0.0,0.0 +1470068812462353105,0.0,-0.00213485830532,0.0,0.0,0.0,0.0 +1470068812538699098,0.0,-0.00208072462188,0.0,0.0,0.0,0.0 +1470068812616518205,0.0,-0.00201299586402,0.0,0.0,0.0,0.00322112168896 +1470068812690652530,0.0,-0.00193584510194,0.0,0.0,0.0,0.0 +1470068812762071905,0.0,-0.00187745341168,0.0,0.0,0.0,0.0 +1470068812834576558,0.0,-0.00181616717087,0.0,0.0,0.0,0.0 +1470068812907558996,0.0,-0.00175867849098,0.0,0.0,0.0,0.0 +1470068812989845332,0.0,-0.00167391360806,0.0,0.0,0.0,0.0 +1470068813065663713,0.0,-0.00162045904504,0.0,0.0,0.0,0.0 +1470068813149086207,0.0,-0.00156087600694,0.0,0.0,0.0,0.0 +1470068813226387533,0.0,-0.00150164500879,0.0,0.0,0.0,0.0 +1470068813310916116,0.0,-0.00145462104188,0.0,0.0,0.0,0.0 +1470068813394624539,0.0,-0.00136348069714,0.0,0.0,0.0,0.0 +1470068813470787026,0.0,-0.00131304138408,0.0,0.0,0.0,0.0 +1470068813543679083,0.0,-0.00124943987535,0.0,0.0,0.0,0.0 +1470068813612731209,0.0,-0.00120382220553,0.0,0.0,0.0,0.0 +1470068813683946526,0.0,-0.00115014598773,0.0,0.0,0.0,0.0 +1470068813759059247,0.0,-0.00108960555003,0.0,0.0,0.0,0.0 +1470068813831063463,0.0,-0.0010476192932,0.0,0.0,0.0,0.0 +1470068813907288184,0.0,-0.000999672571881,0.0,0.0,0.0,0.0 +1470068813982337493,0.0,-0.000954021374448,0.0,0.0,0.0,0.0 +1470068814059163465,0.0,-0.000904199341996,0.0,0.0,0.0,0.0 +1470068814132329181,0.0,-0.000873959670527,0.0,0.0,0.0,0.0 +1470068814209817488,0.0,-0.000830472121699,0.0,0.0,0.0,0.0 +1470068814284632584,0.0,-0.000805290649398,0.0,0.0,0.0,0.0 +1470068814361484991,0.006,0.0,0.0,0.0,0.0,0.0 +1470068814438741847,0.006,0.0,0.0,0.0,0.0,0.0 +1470068814511417438,0.006,0.0,0.0,0.0,0.0,0.0 +1470068814585794045,0.006,0.0,0.0,0.0,0.0,0.0 +1470068814670746677,0.006,0.0,0.0,0.0,0.0,0.0 +1470068814747488606,0.006,0.0,0.0,0.0,0.0,0.0 +1470068814823207537,0.006,0.0,0.0,0.0,0.0,0.0 +1470068814901186699,0.006,0.0,0.0,0.0,0.0,0.0 +1470068814975594517,0.006,0.0,0.0,0.0,0.0,0.0 +1470068815060382826,0.006,0.0,0.0,0.0,0.0,0.0 +1470068815137366893,0.006,0.0,0.0,0.0,0.0,0.0 +1470068815211636120,0.006,0.0,0.0,0.0,0.0,0.0 +1470068815291103411,0.006,0.0,0.0,0.0,0.0,0.0 +1470068815364202328,0.006,0.0,0.0,0.0,0.0,0.0 +1470068815437328124,0.0,0.000819193152027,0.0,0.0,0.0,0.0 +1470068815511703532,0.0,0.000858907540576,0.0,0.0,0.0,0.0 +1470068815586858455,0.0,0.000899869715111,0.0,0.0,0.0,0.0 +1470068815661416204,0.0,0.000901281786398,0.0,0.0,0.0,0.0 +1470068815749258830,0.0,0.000916682509021,0.0,0.0,0.0,0.0 +1470068815821704012,0.0,0.000921888602213,0.0,0.0,0.0,0.0 +1470068815902157179,0.0,0.000931989913122,0.0,0.0,0.0,0.0 +1470068815976332923,0.0,0.000924838100807,0.0,0.0,0.0,0.00305607721623 +1470068816047927640,0.0,0.000934017216103,0.0,0.0,0.0,0.0 +1470068816120126156,0.0,0.000995213118629,0.0,0.0,0.0,0.0 +1470068816194585937,0.0,0.0010657164727,0.0,0.0,0.0,0.0 +1470068816270064413,0.0,0.00118628642453,0.0,0.0,0.0,0.0 +1470068816346497889,0.0,0.00124341449632,0.0,0.0,0.0,0.0 +1470068816422469770,0.0,0.00109383626773,0.0,0.0,0.0,0.0 +1470068816496735872,0.0,0.00104669700308,0.0,0.0,0.0,0.0 +1470068816574316145,0.0,0.00104224267347,0.0,0.0,0.0,0.0 +1470068816647117537,0.0,0.00106443329646,0.0,0.0,0.0,0.0 +1470068816717260264,0.0,0.00101599763079,0.0,0.0,0.0,0.00466161189571 +1470068816788061799,0.0,0.000998135236339,0.0,0.0,0.0,0.0 +1470068816862697777,0.0,0.000968250398771,0.0,0.0,0.0,0.0 +1470068816938774077,0.0,0.000950794433491,0.0,0.0,0.0,0.0 +1470068817007810407,0.0,0.000920566310422,0.0,0.0,0.0,0.0 +1470068817079844237,0.0,0.000903959711329,0.0,0.0,0.0,0.0 +1470068817151716714,0.0,0.000876354378895,0.0,0.0,0.0,0.0 +1470068817222827706,0.0,0.000832364660935,0.0,0.0,0.0,0.0 +1470068817298300739,0.006,0.0,0.0,0.0,0.0,0.0 +1470068817379343484,0.006,0.0,0.0,0.0,0.0,0.0 +1470068817454495019,0.006,0.0,0.0,0.0,0.0,0.0 +1470068817532456615,0.006,0.0,0.0,0.0,0.0,0.0 +1470068817605378127,0.006,0.0,0.0,0.0,0.0,0.0 +1470068817682319987,0.006,0.0,0.0,0.0,0.0,0.0 +1470068817759635240,0.006,0.0,0.0,0.0,0.0,0.0 +1470068817835529746,0.006,0.0,0.0,0.0,0.0,0.0 +1470068817915980678,0.006,0.0,0.0,0.0,0.0,0.0 +1470068817990952731,0.0,0.0,0.0,0.0,0.0,0.00373647973173 +1470068818070688589,0.006,0.0,0.0,0.0,0.0,0.0 +1470068818151085361,0.006,0.0,0.0,0.0,0.0,0.0 +1470068818227787005,0.0,0.0,0.0,0.0,0.0,0.0029866795981 +1470068818304007259,0.006,0.0,0.0,0.0,0.0,0.0 +1470068818377833941,0.006,0.0,0.0,0.0,0.0,0.0 +1470068818459277890,0.0,0.0,0.0,0.0,0.0,0.00387023324008 +1470068818533555530,0.006,0.0,0.0,0.0,0.0,0.0 +1470068818610607451,0.0,0.0,0.0,0.0,0.0,0.00331062328553 +1470068818696346200,0.0,0.0,0.0,0.0,0.0,0.00335800911172 +1470068818772196146,0.006,0.0,0.0,0.0,0.0,0.0 +1470068818849381593,0.006,0.0,0.0,0.0,0.0,0.0 +1470068818924059287,0.0,0.0,0.0,0.0,0.0,0.00317826149878 +1470068819000188438,0.006,0.0,0.0,0.0,0.0,0.0 +1470068819073069850,0.006,0.0,0.0,0.0,0.0,0.0 +1470068819147279696,0.0,0.0,0.0,0.0,0.0,0.00345760116711 +1470068819221279368,0.006,0.0,0.0,0.0,0.0,0.0 +1470068819295674443,0.006,0.0,0.0,0.0,0.0,0.0 +1470068819374258291,0.006,0.0,0.0,0.0,0.0,0.0 +1470068819446757163,0.006,0.0,0.0,0.0,0.0,0.0 +1470068819529908763,0.0,0.0,0.0,0.0,0.0,0.00338917190756 +1470068819607987651,0.006,0.0,0.0,0.0,0.0,0.0 +1470068819696547317,0.006,0.0,0.0,0.0,0.0,0.0 +1470068819774299535,0.006,0.0,0.0,0.0,0.0,0.0 +1470068819861795931,0.006,0.0,0.0,0.0,0.0,0.0 +1470068819939113791,0.006,0.0,0.0,0.0,0.0,0.0 +1470068820011445101,0.006,0.0,0.0,0.0,0.0,0.0 +1470068820082714072,0.006,0.0,0.0,0.0,0.0,0.0 +1470068820153000836,0.006,0.0,0.0,0.0,0.0,0.0 +1470068820226565044,0.006,0.0,0.0,0.0,0.0,0.0 +1470068820302894687,0.0,0.0,0.0,0.0,0.0,0.00349414056654 +1470068820379250695,0.0,0.0,0.0,0.0,0.0,0.00386696947821 +1470068820453440033,0.006,0.0,0.0,0.0,0.0,0.0 +1470068820529518362,0.0,0.0,0.0,0.0,0.0,0.00335207703726 +1470068820603985757,0.006,0.0,0.0,0.0,0.0,0.0 +1470068820679843221,0.006,0.0,0.0,0.0,0.0,0.0 +1470068820753652745,0.006,0.0,0.0,0.0,0.0,0.0 +1470068820830269470,0.006,0.0,0.0,0.0,0.0,0.0 +1470068820905678824,0.0,0.0,0.0,0.0,0.0,0.00305303733936 +1470068820978525073,0.006,0.0,0.0,0.0,0.0,0.0 +1470068821051380541,0.006,0.0,0.0,0.0,0.0,0.0 +1470068821124814705,0.006,0.0,0.0,0.0,0.0,0.0 +1470068821200970132,0.006,0.0,0.0,0.0,0.0,0.0 +1470068821279781926,0.006,0.0,0.0,0.0,0.0,0.0 +1470068821354061195,0.006,0.0,0.0,0.0,0.0,0.0 +1470068821425635103,0.006,0.0,0.0,0.0,0.0,0.0 +1470068821497046362,0.006,0.0,0.0,0.0,0.0,0.0 +1470068821569253441,0.0,-0.00081092664109,0.0,0.0,0.0,0.0 +1470068821642542952,0.0,-0.000833486999138,0.0,0.0,0.0,0.00306025495103 +1470068821713282319,0.0,-0.000850784639581,0.0,0.0,0.0,0.0 +1470068821786007858,0.0,-0.000867540995343,0.0,0.0,0.0,0.0 +1470068821860256473,0.0,-0.000873154635294,0.0,0.0,0.0,0.0 +1470068821936957638,0.0,-0.000893171365126,0.0,0.0,0.0,0.0 +1470068822010893831,0.0,-0.000903742248877,0.0,0.0,0.0,0.0 +1470068822083681379,0.0,-0.00091938474284,0.0,0.0,0.0,0.0 +1470068822159192241,0.0,-0.000929703796967,0.0,0.0,0.0,0.0 +1470068822229030248,0.0,-0.000948807458146,0.0,0.0,0.0,0.0 +1470068822300487174,0.0,-0.00100801722215,0.0,0.0,0.0,0.0 +1470068822372362494,0.0,-0.00101671614753,0.0,0.0,0.0,0.0 +1470068822449974219,0.0,-0.00103195482002,0.0,0.0,0.0,0.0 +1470068822527787365,0.0,-0.000956118340357,0.0,0.0,0.0,0.0 +1470068822605259735,0.0,-0.000914182002409,0.0,0.0,0.0,0.0 +1470068822681754518,0.0,-0.000919323648079,0.0,0.0,0.0,0.0 +1470068822756683346,0.0,-0.000930187339647,0.0,0.0,0.0,0.0 +1470068822832534771,0.0,-0.00090866745518,0.0,0.0,0.0,0.0 +1470068822908484791,0.0,-0.000888378779157,0.0,0.0,0.0,0.0 +1470068822984593579,0.0,-0.000874684239491,0.0,0.0,0.0,0.0 +1470068823062923575,0.0,-0.000851229439242,0.0,0.0,0.0,0.0 +1470068823137278904,0.0,-0.000829839939936,0.0,0.0,0.0,0.0 +1470068823212239978,0.0,-0.000804258371456,0.0,0.0,0.0,0.0 +1470068823284862248,0.006,0.0,0.0,0.0,0.0,0.0 +1470068823363649320,0.006,0.0,0.0,0.0,0.0,0.0 +1470068823436671933,0.006,0.0,0.0,0.0,0.0,0.0 +1470068823513076292,0.0,0.0,0.0,0.0,0.0,0.00285536692843 +1470068823590104480,0.006,0.0,0.0,0.0,0.0,0.0 +1470068823666136311,0.006,0.0,0.0,0.0,0.0,0.0 +1470068823740760850,0.006,0.0,0.0,0.0,0.0,0.0 +1470068823814118210,0.006,0.0,0.0,0.0,0.0,0.0 +1470068823888182039,0.0,0.0,0.0,0.0,0.0,0.00298127935842 +1470068823970959031,0.006,0.0,0.0,0.0,0.0,0.0 +1470068824045707108,0.006,0.0,0.0,0.0,0.0,0.0 +1470068824121619852,0.006,0.0,0.0,0.0,0.0,0.0 +1470068824196823597,0.006,0.0,0.0,0.0,0.0,0.0 +1470068824267940744,0.006,0.0,0.0,0.0,0.0,0.0 +1470068824341476482,0.006,0.0,0.0,0.0,0.0,0.0 +1470068824413098010,0.006,0.0,0.0,0.0,0.0,0.0 +1470068824484081454,0.0,0.0,0.0,0.0,0.0,0.00397898620434 +1470068824560494216,0.006,0.0,0.0,0.0,0.0,0.0 +1470068824633136385,0.006,0.0,0.0,0.0,0.0,0.0 +1470068824710153091,0.006,0.0,0.0,0.0,0.0,0.0 +1470068824782733040,0.006,0.0,0.0,0.0,0.0,0.0 +1470068824856790750,0.006,0.0,0.0,0.0,0.0,0.0 +1470068824940845761,0.006,0.0,0.0,0.0,0.0,0.0 +1470068825019195752,0.006,0.0,0.0,0.0,0.0,0.0 +1470068825092848191,0.006,0.0,0.0,0.0,0.0,0.0 +1470068825166732329,0.006,0.0,0.0,0.0,0.0,0.0 +1470068825246894680,0.006,0.0,0.0,0.0,0.0,0.0 +1470068825327032769,0.006,0.0,0.0,0.0,0.0,0.0 +1470068825402001072,0.006,0.0,0.0,0.0,0.0,0.0 +1470068825477748531,0.006,0.0,0.0,0.0,0.0,0.0 +1470068825549455008,0.006,0.0,0.0,0.0,0.0,0.0 +1470068825623541551,0.006,0.0,0.0,0.0,0.0,0.0 +1470068825696173767,0.006,0.0,0.0,0.0,0.0,0.0 +1470068825779188866,0.006,0.0,0.0,0.0,0.0,0.0 +1470068825852326241,0.0,0.0,0.0,0.0,0.0,0.00338891283559 +1470068825927231518,0.006,0.0,0.0,0.0,0.0,0.0 +1470068826003572673,0.006,0.0,0.0,0.0,0.0,0.0 +1470068826079447296,0.006,0.0,0.0,0.0,0.0,0.0 +1470068826156479576,0.006,0.0,0.0,0.0,0.0,0.0 +1470068826232571298,0.0,0.0,0.0,0.0,0.0,0.00367600967387 +1470068826307547949,0.006,0.0,0.0,0.0,0.0,0.0 +1470068826379767548,0.006,0.0,0.0,0.0,0.0,0.0 +1470068826456300567,0.0,0.0,0.0,0.0,0.0,0.00324978605456 +1470068826532806058,0.006,0.0,0.0,0.0,0.0,0.0 +1470068826607424927,0.0,0.0,0.0,0.0,0.0,0.00328019666659 +1470068826680060347,0.0,0.0,0.0,0.0,0.0,0.00362919400475 +1470068826753475565,0.0,0.0,0.0,0.0,0.0,0.00400750467459 +1470068826830133757,0.0,0.0,0.0,0.0,0.0,0.00350256089564 +1470068826905984123,0.006,0.0,0.0,0.0,0.0,0.0 +1470068826979345187,0.006,0.0,0.0,0.0,0.0,0.0 +1470068827049021864,0.006,0.0,0.0,0.0,0.0,0.0 +1470068827123407243,0.006,0.0,0.0,0.0,0.0,0.0 +1470068827199560371,0.006,0.0,0.0,0.0,0.0,0.0 +1470068827269868739,0.006,0.0,0.0,0.0,0.0,0.0 +1470068827340999717,0.006,0.0,0.0,0.0,0.0,0.0 +1470068827413843142,0.0,0.0,0.0,0.0,0.0,0.00280112482293 +1470068827488119640,0.006,0.0,0.0,0.0,0.0,0.0 +1470068827564579793,0.0,0.0,0.0,0.0,0.0,0.00390430567503 +1470068827637322799,0.006,0.0,0.0,0.0,0.0,0.0 +1470068827711673842,0.006,0.0,0.0,0.0,0.0,0.0 +1470068827790217943,0.006,0.0,0.0,0.0,0.0,0.0 +1470068827868093625,0.006,0.0,0.0,0.0,0.0,0.0 +1470068827940302029,0.006,0.0,0.0,0.0,0.0,0.0 +1470068828010900900,0.0,0.0,0.0,0.0,0.0,0.00348723610467 +1470068828084087152,0.0,0.0,0.0,0.0,0.0,0.00321841912095 +1470068828157467346,0.0,0.0,0.0,0.0,0.0,0.00340788548305 +1470068828242555125,0.0,0.0,0.0,0.0,0.0,0.00321264367301 +1470068828313121931,0.006,0.0,0.0,0.0,0.0,0.0 +1470068828387444835,0.006,0.0,0.0,0.0,0.0,0.0 +1470068828458929296,0.0,0.0,0.0,0.0,0.0,0.00324702143555 +1470068828531534622,0.006,0.0,0.0,0.0,0.0,0.0 +1470068828616690253,0.006,0.0,0.0,0.0,0.0,0.0 +1470068828693658826,0.0,0.0,0.0,0.0,0.0,0.00359590564614 +1470068828768267423,0.0,0.0,0.0,0.0,0.0,0.00297224766784 +1470068828841604309,0.0,0.0,0.0,0.0,0.0,0.00320632914406 +1470068828912062316,0.0,0.0,0.0,0.0,0.0,0.00382792904765 +1470068828985368717,0.0,0.0,0.0,0.0,0.0,0.00382076699355 +1470068829061689963,0.0,0.0,0.0,0.0,0.0,0.00383076386284 +1470068829135565808,0.006,0.0,0.0,0.0,0.0,0.0 +1470068829208628577,0.006,0.0,0.0,0.0,0.0,0.0 +1470068829282107255,0.0,0.0,0.0,0.0,0.0,0.00280446216085 +1470068829358438919,0.0,0.0,0.0,0.0,0.0,0.00379640710279 +1470068829439486478,0.0,0.0,0.0,0.0,0.0,0.00304012274229 +1470068829511748082,0.006,0.0,0.0,0.0,0.0,0.0 +1470068829584107359,0.0,0.0,0.0,0.0,0.0,0.00304916671989 +1470068829660936648,0.0,0.0,0.0,0.0,0.0,0.00316558137843 +1470068829739222177,0.0,0.0,0.0,0.0,0.0,0.0028002519121 +1470068829811389394,0.0,0.0,0.0,0.0,0.0,0.00286664515777 +1470068829890335194,0.006,0.0,0.0,0.0,0.0,0.0 +1470068829964438634,0.006,0.0,0.0,0.0,0.0,0.0 +1470068830039341190,0.0,0.0,0.0,0.0,0.0,0.00290098004485 +1470068830109609990,0.006,0.0,0.0,0.0,0.0,0.0 +1470068830183134826,0.006,0.0,0.0,0.0,0.0,0.0 +1470068830259766417,0.006,0.0,0.0,0.0,0.0,0.0 +1470068830330088813,0.006,0.0,0.0,0.0,0.0,0.0 +1470068830401900619,0.0,0.0,0.0,0.0,0.0,0.00309400216214 +1470068830473661652,0.006,0.0,0.0,0.0,0.0,0.0 +1470068830543428474,0.0,0.0,0.0,0.0,0.0,0.00376885844029 +1470068830616240963,0.006,0.0,0.0,0.0,0.0,0.0 +1470068830687155667,0.006,0.0,0.0,0.0,0.0,0.0 +1470068830765993070,0.0,0.0,0.0,0.0,0.0,0.00317560324023 +1470068830843232114,0.006,0.0,0.0,0.0,0.0,0.0 +1470068830916745101,0.006,0.0,0.0,0.0,0.0,0.0 +1470068830990411510,0.006,0.0,0.0,0.0,0.0,0.0 +1470068831061625251,0.006,0.0,0.0,0.0,0.0,0.0 +1470068831131166199,0.006,0.0,0.0,0.0,0.0,0.0 +1470068831203689654,0.006,0.0,0.0,0.0,0.0,0.0 +1470068831277871177,0.006,0.0,0.0,0.0,0.0,0.0 +1470068831350013477,0.006,0.0,0.0,0.0,0.0,0.0 +1470068831420922593,0.006,0.0,0.0,0.0,0.0,0.0 +1470068831492202232,0.006,0.0,0.0,0.0,0.0,0.0 +1470068831564686649,0.006,0.0,0.0,0.0,0.0,0.0 +1470068831640296297,0.006,0.0,0.0,0.0,0.0,0.0 +1470068831716692034,0.006,0.0,0.0,0.0,0.0,0.0 +1470068831790954627,0.006,0.0,0.0,0.0,0.0,0.0 +1470068831866111877,0.006,0.0,0.0,0.0,0.0,0.0 +1470068831940662750,0.006,0.0,0.0,0.0,0.0,0.0 +1470068832014974288,0.006,0.0,0.0,0.0,0.0,0.0 +1470068832107329629,0.006,0.0,0.0,0.0,0.0,0.0 diff --git a/MobileRobot/docking_data/Vel.txt~ b/MobileRobot/docking_data/Vel.txt~ index 366267b45bca26e7c3cf87598908faa8290195ad..31ceac59f8990e3bea66b2aa886cb6fcf9a38a13 100644 --- a/MobileRobot/docking_data/Vel.txt~ +++ b/MobileRobot/docking_data/Vel.txt~ @@ -1,601 +1,755 @@ %time,field.linear.x,field.linear.y,field.linear.z,field.angular.x,field.angular.y,field.angular.z -1469728545735418830,0.1,-0.0654771863002,0.0,0.0,0.0,0.0319872913816 -1469728545827558596,0.1,-0.0654793866056,0.0,0.0,0.0,0.0320429756014 -1469728545908643233,0.1,-0.0654883317727,0.0,0.0,0.0,0.0319038744346 -1469728545999137907,0.1,-0.065467110135,0.0,0.0,0.0,0.0320977822724 -1469728546079799781,0.1,-0.0654771863002,0.0,0.0,0.0,0.0319872913816 -1469728546160877308,0.1,-0.065467110135,0.0,0.0,0.0,0.0320977822724 -1469728546243572195,0.1,-0.0654187102694,0.0,0.0,0.0,0.0316931206062 -1469728546323034635,0.1,-0.0654771863002,0.0,0.0,0.0,0.0319872913816 -1469728546403126653,0.1,-0.0654715792912,0.0,0.0,0.0,0.0332637942679 -1469728546481502907,0.1,-0.065186204471,0.0,0.0,0.0,0.0317247812752 -1469728546559461477,0.1,-0.0617774309296,0.0,0.0,0.0,0.0333137444868 -1469728546635369140,0.1,-0.058496185996,0.0,0.0,0.0,0.0316891227468 -1469728546707933572,0.1,-0.055481034078,0.0,0.0,0.0,0.0328512501114 -1469728546782655056,0.1,-0.0539152391333,0.0,0.0,0.0,0.037358721678 -1469728546858960951,0.1,-0.0532873980779,0.0,0.0,0.0,0.0346689953967 -1469728546936651755,0.1,-0.0526849325079,0.0,0.0,0.0,0.0308153598564 -1469728547011862602,0.1,-0.0519154322225,0.0,0.0,0.0,0.0333537153171 -1469728547096063739,0.1,-0.0510586394447,0.0,0.0,0.0,0.0351033302122 -1469728547178827145,0.1,-0.0507600079555,0.0,0.0,0.0,0.0396720823842 -1469728547261088571,0.1,-0.0499342182356,0.0,0.0,0.0,0.0338277305546 -1469728547337354488,0.1,-0.0491561566371,0.0,0.0,0.0,0.030974390941 -1469728547420640482,0.1,-0.0485182291347,0.0,0.0,0.0,0.0273786089304 -1469728547502750447,0.1,-0.0475235197026,0.0,0.0,0.0,0.0415707183168 -1469728547583074180,0.1,-0.0470460328537,0.0,0.0,0.0,0.0363968888903 -1469728547663247361,0.1,-0.046399156757,0.0,0.0,0.0,0.0282645076349 -1469728547745627987,0.1,-0.0464101548571,0.0,0.0,0.0,0.0308056756193 -1469728547827635389,0.1,-0.046251928218,0.0,0.0,0.0,0.0318074680446 -1469728547911367811,0.1,-0.0463223208565,0.0,0.0,0.0,0.0336140662677 -1469728547993960767,0.1,-0.04651145459,0.0,0.0,0.0,0.0370360832488 -1469728548072760358,0.1,-0.0461244338829,0.0,0.0,0.0,0.0298234540924 -1469728548154222676,0.1,-0.046089993276,0.0,0.0,0.0,0.0350327326509 -1469728548236775014,0.1,-0.0454465067464,0.0,0.0,0.0,0.0349301385098 -1469728548319713376,0.1,-0.0455773837942,0.0,0.0,0.0,0.0349509348112 -1469728548402555717,0.1,-0.0459351939041,0.0,0.0,0.0,0.0375076711008 -1469728548483711749,0.1,-0.0457695815045,0.0,0.0,0.0,0.0321924888062 -1469728548569170893,0.1,-0.0456934824664,0.0,0.0,0.0,0.0318226775374 -1469728548651024722,0.1,-0.0449867628592,0.0,0.0,0.0,0.030368021801 -1469728548727471594,0.1,-0.0449774372655,0.0,0.0,0.0,0.0308568676032 -1469728548813628243,0.1,-0.045110967018,0.0,0.0,0.0,0.030984577364 -1469728548901891090,0.1,-0.0453286738771,0.0,0.0,0.0,0.0342627240042 -1469728548985984558,0.1,-0.0452044046003,0.0,0.0,0.0,0.0320651030028 -1469728549063078820,0.1,-0.0449434661943,0.0,0.0,0.0,0.0296827977355 -1469728549141245997,0.1,-0.0448138092536,0.0,0.0,0.0,0.0395308647739 -1469728549226406026,0.1,-0.044845408656,0.0,0.0,0.0,0.036059737744 -1469728549311637002,0.1,-0.044797735371,0.0,0.0,0.0,0.0281243463437 -1469728549388440694,0.1,-0.0448379612047,0.0,0.0,0.0,0.0269101596685 -1469728549464839392,0.1,-0.0448386295218,0.0,0.0,0.0,0.0385164830527 -1469728549545252891,0.1,-0.0445127546865,0.0,0.0,0.0,0.0388284064281 -1469728549624603061,0.1,-0.0440934902507,0.0,0.0,0.0,0.0291803809744 -1469728549704126689,0.1,-0.0441413794536,0.0,0.0,0.0,0.031320630117 -1469728549787582166,0.1,-0.0441271631497,0.0,0.0,0.0,0.028099965267 -1469728549867219542,0.1,-0.0438477312106,0.0,0.0,0.0,0.0338353523628 -1469728549944681272,0.1,-0.043641759314,0.0,0.0,0.0,0.0295868562086 -1469728550023548286,0.1,-0.043702291705,0.0,0.0,0.0,0.0277189498134 -1469728550103515196,0.1,-0.0434388513941,0.0,0.0,0.0,0.0343810522559 -1469728550181146042,0.1,-0.0429961752969,0.0,0.0,0.0,0.0304343500821 -1469728550263205355,0.1,-0.043087518819,0.0,0.0,0.0,0.02958501502 -1469728550345533332,0.1,-0.0428485800404,0.0,0.0,0.0,0.033870900838 -1469728550424143961,0.1,-0.0422260169763,0.0,0.0,0.0,0.0272965094276 -1469728550501776217,0.1,-0.0421911171156,0.0,0.0,0.0,0.028894900019 -1469728550577205789,0.1,-0.0419040423709,0.0,0.0,0.0,0.0365256123294 -1469728550658441337,0.1,-0.0415194481689,0.0,0.0,0.0,0.0351658965928 -1469728550732707506,0.1,-0.0414207737226,0.0,0.0,0.0,0.0292798298358 -1469728550813218882,0.1,-0.0408702312488,0.0,0.0,0.0,0.030693448836 -1469728550891851885,0.1,-0.0403472748476,0.0,0.0,0.0,0.0232364060932 -1469728550971031742,0.1,-0.0402143037397,0.0,0.0,0.0,0.0300323983597 -1469728551064135004,0.1,-0.03985472516,0.0,0.0,0.0,0.0313127568073 -1469728551144535794,0.1,-0.0394144721407,0.0,0.0,0.0,0.0246603034782 -1469728551222694481,0.1,-0.0392823235768,0.0,0.0,0.0,0.0303829619764 -1469728551302197428,0.1,-0.0389392027337,0.0,0.0,0.0,0.0303631819002 -1469728551392525850,0.1,-0.0385376024324,0.0,0.0,0.0,0.0241256487515 -1469728551474124949,0.1,-0.0385829588849,0.0,0.0,0.0,0.0288884366832 -1469728551555507658,0.1,-0.038230858602,0.0,0.0,0.0,0.0325989017595 -1469728551640520456,0.1,-0.0379535892683,0.0,0.0,0.0,0.022425182235 -1469728551718827436,0.1,-0.0376819714982,0.0,0.0,0.0,0.0300513648745 -1469728551799641489,0.1,-0.0373920658308,0.0,0.0,0.0,0.0252859191842 -1469728551881967482,0.1,-0.0369820173162,0.0,0.0,0.0,0.0297869562983 -1469728551962751681,0.1,-0.0368200858015,0.0,0.0,0.0,0.0235207381536 -1469728552038165526,0.1,-0.0364161686677,0.0,0.0,0.0,0.0333614739412 -1469728552115512431,0.1,-0.0362847226936,0.0,0.0,0.0,0.026170260277 -1469728552198424535,0.1,-0.0356244939643,0.0,0.0,0.0,0.0231293103471 -1469728552278625250,0.1,-0.0354990971166,0.0,0.0,0.0,0.023130906601 -1469728552365163684,0.1,-0.0350413616079,0.0,0.0,0.0,0.0227081708888 -1469728552444867637,0.1,-0.0346727761704,0.0,0.0,0.0,0.030200840524 -1469728552531633596,0.1,-0.0344364661056,0.0,0.0,0.0,0.0224763790728 -1469728552612630085,0.1,-0.0337399666089,0.0,0.0,0.0,0.022853542519 -1469728552687453487,0.1,-0.033493042298,0.0,0.0,0.0,0.0289428793076 -1469728552766369312,0.1,-0.0329729065377,0.0,0.0,0.0,0.0203382526918 -1469728552847427347,0.1,-0.0324810800034,0.0,0.0,0.0,0.0292162918382 -1469728552927283865,0.1,-0.0319459053952,0.0,0.0,0.0,0.0260255425941 -1469728553005008595,0.1,-0.0315776763934,0.0,0.0,0.0,0.0235579602187 -1469728553081015709,0.1,-0.0311377009827,0.0,0.0,0.0,0.0243820580332 -1469728553158297662,0.1,-0.0306130755025,0.0,0.0,0.0,0.0278215030582 -1469728553237150052,0.1,-0.0300862976986,0.0,0.0,0.0,0.0205378846539 -1469728553311571291,0.1,-0.0297476357299,0.0,0.0,0.0,0.0293520564523 -1469728553391520807,0.1,-0.029174980529,0.0,0.0,0.0,0.028506092501 -1469728553465569697,0.1,-0.028680912562,0.0,0.0,0.0,0.0177468232694 -1469728553543038533,0.1,-0.0283512094695,0.0,0.0,0.0,0.0259028972179 -1469728553621787548,0.1,-0.0277204895097,0.0,0.0,0.0,0.0210249565792 -1469728553698268183,0.1,-0.0275543321747,0.0,0.0,0.0,0.0285736167557 -1469728553787567652,0.1,-0.0272418819446,0.0,0.0,0.0,0.0186062444081 -1469728553864125272,0.1,-0.0267718494016,0.0,0.0,0.0,0.0207012948865 -1469728553944365310,0.1,-0.0265486623425,0.0,0.0,0.0,0.0216330295807 -1469728554020195525,0.1,-0.0261677627343,0.0,0.0,0.0,0.0219908752276 -1469728554102382098,0.1,-0.0257530668456,0.0,0.0,0.0,0.0212428170144 -1469728554183230740,0.1,-0.02559935049,0.0,0.0,0.0,0.0237659155262 -1469728554259577541,0.1,-0.0250797802288,0.0,0.0,0.0,0.0242439961725 -1469728554344069871,0.1,-0.0249004519063,0.0,0.0,0.0,0.0223272785418 -1469728554425222377,0.1,-0.024707945742,0.0,0.0,0.0,0.0224339788239 -1469728554499904773,0.1,-0.0241689668674,0.0,0.0,0.0,0.0203843614374 -1469728554579058143,0.1,-0.0238333414573,0.0,0.0,0.0,0.0200589271864 -1469728554658073278,0.1,-0.0234790220189,0.0,0.0,0.0,0.0179982556318 -1469728554737482651,0.1,-0.0230624822605,0.0,0.0,0.0,0.0160841696911 -1469728554815416208,0.1,-0.0227870567966,0.0,0.0,0.0,0.0162510964067 -1469728554895382752,0.1,-0.0222075984705,0.0,0.0,0.0,0.0146937522019 -1469728554971626174,0.1,-0.0219632463235,0.0,0.0,0.0,0.017364390819 -1469728555047806751,0.1,-0.0216218168366,0.0,0.0,0.0,0.0145784157976 -1469728555129692671,0.1,-0.0212894558984,0.0,0.0,0.0,0.0171784161867 -1469728555207272719,0.1,-0.0209602069187,0.0,0.0,0.0,0.0145657894692 -1469728555281684112,0.1,-0.0205283918309,0.0,0.0,0.0,0.0162305255651 -1469728555361394040,0.0,-0.0203642343062,0.0,0.0,0.0,0.0207468744347 -1469728555442722637,0.0,-0.0199913956303,0.0,0.0,0.0,0.0146719520791 -1469728555518960533,0.0,-0.0193261905092,0.0,0.0,0.0,0.0153152236553 -1469728555598881335,0.0,-0.0191363096315,0.0,0.0,0.0,0.0186650972605 -1469728555673438371,0.0,-0.0187827133465,0.0,0.0,0.0,0.0159670983491 -1469728555749257502,0.0,-0.0182533342469,0.0,0.0,0.0,0.0156555520965 -1469728555832993572,0.0,-0.0179551654387,0.0,0.0,0.0,0.017525798734 -1469728555911736677,0.0,-0.0176412140656,0.0,0.0,0.0,0.0166293322855 -1469728555988409928,0.0,-0.0171133960861,0.0,0.0,0.0,0.0159558471407 -1469728556068844396,0.0,-0.0170059375543,0.0,0.0,0.0,0.0178793834287 -1469728556143328512,0.0,-0.0169869624901,0.0,0.0,0.0,0.0163375976732 -1469728556221317166,0.0,-0.0169812578041,0.0,0.0,0.0,0.017157073849 -1469728556296774524,0.0,-0.0169851186204,0.0,0.0,0.0,0.014259009948 -1469728556372267435,0.0,-0.0167625690329,0.0,0.0,0.0,0.0151355788998 -1469728556451306447,0.0,-0.016345400371,0.0,0.0,0.0,0.0144662212567 -1469728556526704304,0.0,-0.0161194903481,0.0,0.0,0.0,0.0141568330334 -1469728556600526662,0.0,-0.0159035331089,0.0,0.0,0.0,0.0139097995886 -1469728556692521731,0.0,-0.0154907376397,0.0,0.0,0.0,0.0120713991883 -1469728556767039657,0.0,-0.0152847400385,0.0,0.0,0.0,0.013124544356 -1469728556841214331,0.0,-0.0150769756812,0.0,0.0,0.0,0.0121268209062 -1469728556916607925,0.0,-0.0148701006997,0.0,0.0,0.0,0.0115067316928 -1469728556992123434,0.0,-0.0146460893828,0.0,0.0,0.0,0.0117392098616 -1469728557067002278,0.0,-0.014422091775,0.0,0.0,0.0,0.0128970258194 -1469728557149339359,0.0,-0.0142201075036,0.0,0.0,0.0,0.0117021504196 -1469728557224267863,0.0,-0.0140151363689,0.0,0.0,0.0,0.0107931109569 -1469728557312894297,0.0,-0.0138059359867,0.0,0.0,0.0,0.0105604692651 -1469728557391542261,0.0,-0.0135827455002,0.0,0.0,0.0,0.0106964092622 -1469728557472163080,0.0,-0.0133843033093,0.0,0.0,0.0,0.01049927749 -1469728557547179498,0.0,-0.0131757232625,0.0,0.0,0.0,0.00987724749104 -1469728557622524196,0.0,-0.0129742736447,0.0,0.0,0.0,0.00993076405233 -1469728557699235873,0.0,-0.0127359397787,0.0,0.0,0.0,0.0103340121466 -1469728557777073003,0.0,-0.0125344867337,0.0,0.0,0.0,0.0102776613015 -1469728557856866071,0.0,-0.0122475268024,0.0,0.0,0.0,0.00826987670095 -1469728557935546866,0.0,-0.0120781649727,0.0,0.0,0.0,0.0103785115883 -1469728558013044781,0.0,-0.0118796336729,0.0,0.0,0.0,0.010498416815 -1469728558086624044,0.0,-0.0115539147783,0.0,0.0,0.0,0.00730603689122 -1469728558166502184,0.0,-0.0114153880704,0.0,0.0,0.0,0.00896765010739 -1469728558251686918,0.0,-0.0112249468345,0.0,0.0,0.0,0.00867392778095 -1469728558326947558,0.0,-0.0109268551398,0.0,0.0,0.0,0.00710786258078 -1469728558409954263,0.0,-0.0107756698209,0.0,0.0,0.0,0.00790237268797 -1469728558498933052,0.0,-0.0105842963684,0.0,0.0,0.0,0.00714750517372 -1469728558577253368,0.0,-0.0103169249821,0.0,0.0,0.0,0.00690193616191 -1469728558655107361,0.0,-0.0101726344678,0.0,0.0,0.0,0.00736296172204 -1469728558734755194,0.0,-0.00998181965979,0.0,0.0,0.0,0.00736117884657 -1469728558812539490,0.0,-0.00975362107935,0.0,0.0,0.0,0.00756232578335 -1469728558890545870,0.0,-0.00951724761012,0.0,0.0,0.0,0.00689972344622 -1469728558965364193,0.0,-0.00927208491447,0.0,0.0,0.0,0.0108813065693 -1469728559053336504,0.0,-0.00910501078548,0.0,0.0,0.0,0.00625696370777 -1469728559127381454,0.0,-0.00889197357776,0.0,0.0,0.0,0.00848311718929 -1469728559204949393,0.0,-0.00871579919788,0.0,0.0,0.0,0.00894589361277 -1469728559285384419,0.0,-0.00856556580248,0.0,0.0,0.0,0.0111689571933 -1469728559363148717,0.0,-0.00831927382233,0.0,0.0,0.0,0.0105661926294 -1469728559444247715,0.0,-0.00817510583284,0.0,0.0,0.0,0.0123458548911 -1469728559524764434,0.0,-0.008028998867,0.0,0.0,0.0,0.00952627521173 -1469728559601592713,0.0,-0.00780251220646,0.0,0.0,0.0,0.00936464736142 -1469728559683236769,0.0,-0.00766413115742,0.0,0.0,0.0,0.0105035512645 -1469728559774297012,0.0,-0.0074631733525,0.0,0.0,0.0,0.0105144415854 -1469728559852343153,0.0,-0.00736957640233,0.0,0.0,0.0,0.00837887152965 -1469728559928352449,0.0,-0.00723411281439,0.0,0.0,0.0,0.00527404130512 -1469728560005025263,0.0,-0.00714460202339,0.0,0.0,0.0,0.00743273033284 -1469728560081740949,0.0,-0.00706726574185,0.0,0.0,0.0,0.0102847252844 -1469728560166076234,0.0,-0.00693555586817,0.0,0.0,0.0,0.00611409507798 -1469728560246803216,0.0,-0.00688309640469,0.0,0.0,0.0,0.00750579664155 -1469728560331523327,0.0,-0.00675881170514,0.0,0.0,0.0,0.00703157066873 -1469728560405173121,0.0,-0.00671187185528,0.0,0.0,0.0,0.00507988253022 -1469728560481611421,0.0,-0.00669573885235,0.0,0.0,0.0,0.00508079434758 -1469728560559426335,0.0,-0.00662061915579,0.0,0.0,0.0,0.00698006494124 -1469728560639111757,0.0,-0.00659908049586,0.0,0.0,0.0,0.0076929938117 -1469728560715017222,0.0,-0.0065365714285,0.0,0.0,0.0,0.00619781555312 -1469728560794324657,0.0,-0.00649839081647,0.0,0.0,0.0,0.00469582493247 -1469728560876424949,0.0,-0.00647796858879,0.0,0.0,0.0,0.00454124512356 -1469728560957739377,0.0,-0.00640276406737,0.0,0.0,0.0,0.00582358664987 -1469728561035874098,0.0,-0.00631942064347,0.0,0.0,0.0,0.0059055162742 -1469728561112178902,0.0,-0.00627735265376,0.0,0.0,0.0,0.00403524283873 -1469728561185940714,0.0,-0.00618925046953,0.0,0.0,0.0,0.00439316687788 -1469728561258832124,0.0,-0.00611425158414,0.0,0.0,0.0,0.0070950899503 -1469728561335789119,0.0,-0.00607048881086,0.0,0.0,0.0,0.0051483830394 -1469728561412228144,0.0,-0.00599991966816,0.0,0.0,0.0,0.00487564651556 -1469728561492962476,0.0,-0.00592356786909,0.0,0.0,0.0,0.00646015318739 -1469728561571435760,0.0,-0.00586255137654,0.0,0.0,0.0,0.00537472072992 -1469728561647947277,0.0,-0.00580730468812,0.0,0.0,0.0,0.00371271346422 -1469728561722892901,0.0,-0.00569631864163,0.0,0.0,0.0,0.00658094063093 -1469728561795505764,0.0,-0.00563414287599,0.0,0.0,0.0,0.00397493721661 -1469728561873872919,0.0,-0.00549355638059,0.0,0.0,0.0,0.00637035795118 -1469728561951725332,0.0,-0.00543189813229,0.0,0.0,0.0,0.00614894810585 -1469728562026820302,0.0,-0.00534867723318,0.0,0.0,0.0,0.00296825316773 -1469728562105940604,0.0,-0.00525422689351,0.0,0.0,0.0,0.00716918695731 -1469728562186058927,0.0,-0.00515624218466,0.0,0.0,0.0,0.00321177214861 -1469728562260074834,0.0,-0.0050817608166,0.0,0.0,0.0,0.00368239603817 -1469728562336983420,0.0,-0.00501054906132,0.0,0.0,0.0,0.00619259772789 -1469728562423096442,0.0,-0.00494236958059,0.0,0.0,0.0,0.00279859892772 -1469728562502875910,0.0,-0.00483251196178,0.0,0.0,0.0,0.0041116279885 -1469728562579695035,0.0,-0.00480415732446,0.0,0.0,0.0,0.00591633939268 -1469728562661164727,0.0,-0.00471870441767,0.0,0.0,0.0,0.00332521585582 -1469728562738458016,0.0,-0.00464391973647,0.0,0.0,0.0,0.00291745289057 -1469728562814712275,0.0,-0.00460409317943,0.0,0.0,0.0,0.00492310137445 -1469728562887696767,0.0,-0.0045439309332,0.0,0.0,0.0,0.00351976571832 -1469728562968821236,0.0,-0.00447032523187,0.0,0.0,0.0,0.0 -1469728563049718602,0.0,-0.0043945509273,0.0,0.0,0.0,0.00336734508196 -1469728563126806977,0.0,-0.00432958279582,0.0,0.0,0.0,0.00434306726698 -1469728563204294774,0.0,-0.00428614561292,0.0,0.0,0.0,0.00248513066668 -1469728563282345471,0.0,-0.00419377219709,0.0,0.0,0.0,0.00371372068954 -1469728563355890346,0.0,-0.00412761051985,0.0,0.0,0.0,0.00340300829637 -1469728563431084249,0.0,-0.00406553585859,0.0,0.0,0.0,0.0016440805416 -1469728563511906212,0.0,-0.00398004867914,0.0,0.0,0.0,0.0 -1469728563589290443,0.0,-0.00391770155015,0.0,0.0,0.0,0.00336206201134 -1469728563671153671,0.0,-0.00385098979654,0.0,0.0,0.0,0.00307317727622 -1469728563751903546,0.0,-0.00378789552333,0.0,0.0,0.0,0.00245178644922 -1469728563834006332,0.0,-0.00370090891453,0.0,0.0,0.0,0.00230477829036 -1469728563908426894,0.0,-0.00365782388332,0.0,0.0,0.0,0.00242707543797 -1469728563988626230,0.0,-0.00362261642548,0.0,0.0,0.0,0.00219291944985 -1469728564067762647,0.0,-0.00349648785623,0.0,0.0,0.0,0.0 -1469728564145960122,0.0,-0.00347214312138,0.0,0.0,0.0,0.00185850829035 -1469728564222086656,0.0,-0.00340386510672,0.0,0.0,0.0,0.00155252356181 -1469728564302148313,0.0,-0.00333605662765,0.0,0.0,0.0,0.0 -1469728564377521762,0.0,-0.00329924606564,0.0,0.0,0.0,0.00182910634503 -1469728564456961804,0.0,-0.00320579820158,0.0,0.0,0.0,0.0 -1469728564531878098,0.0,-0.00315860901805,0.0,0.0,0.0,0.0 -1469728564607040309,0.0,-0.00309991278531,0.0,0.0,0.0,0.0 -1469728564688340662,0.0,-0.00302329537305,0.0,0.0,0.0,0.0 -1469728564771048313,0.0,-0.00297271919283,0.0,0.0,0.0,0.0026062195785 -1469728564847476476,0.0,-0.00290241737696,0.0,0.0,0.0,0.0 -1469728564927005506,0.0,-0.00281815715911,0.0,0.0,0.0,0.0 -1469728565001843133,0.0,-0.00276391294631,0.0,0.0,0.0,0.0 -1469728565081550806,0.0,-0.00270977283674,0.0,0.0,0.0,0.0 -1469728565159721601,0.0,-0.00261105812001,0.0,0.0,0.0,0.0 -1469728565237487395,0.0,-0.00253041581097,0.0,0.0,0.0,0.00302365910807 -1469728565311986898,0.0,-0.00245035570892,0.0,0.0,0.0,0.0 -1469728565390513137,0.0,-0.0023404261175,0.0,0.0,0.0,0.0 -1469728565468072746,0.0,-0.00225765376198,0.0,0.0,0.0,0.0 -1469728565550976068,0.0,-0.00213760130885,0.0,0.0,0.0,0.00169437873844 -1469728565636775544,0.0,-0.00204976687985,0.0,0.0,0.0,0.0 -1469728565719290525,0.0,-0.00196189689296,0.0,0.0,0.0,0.0 -1469728565800304479,0.0,-0.00188718032869,0.0,0.0,0.0,0.00232557647581 -1469728565892649397,0.0,-0.00175850101592,0.0,0.0,0.0,0.0 -1469728565974157782,0.0,-0.0016997799355,0.0,0.0,0.0,0.00259831829861 -1469728566054335553,0.0,-0.00156965602966,0.0,0.0,0.0,0.00147359585292 -1469728566135895697,0.0,-0.00150817128676,0.0,0.0,0.0,0.00171649387624 -1469728566213318949,0.0,-0.00141090501877,0.0,0.0,0.0,0.00202257810877 -1469728566294171885,0.0,-0.00130685747447,0.0,0.0,0.0,0.0029667273888 -1469728566368854186,0.0,-0.00127335636722,0.0,0.0,0.0,0.00355804831288 -1469728566447631633,0.0,-0.00120811919528,0.0,0.0,0.0,0.0027595650594 -1469728566526700763,0.0,-0.00112823859634,0.0,0.0,0.0,0.00250450182621 -1469728566607278401,0.0,-0.00108090289714,0.0,0.0,0.0,0.00227281998079 -1469728566685068868,0.0,-0.0010360279757,0.0,0.0,0.0,0.00297631254358 -1469728566766665968,0.0,-0.0010136119354,0.0,0.0,0.0,0.00153765976956 -1469728566852059476,0.0,-0.000936588820391,0.0,0.0,0.0,0.00219001958474 -1469728566928890484,0.0,0.0,0.0,0.0,0.0,0.00213148840339 -1469728567005694950,0.0,0.0,0.0,0.0,0.0,0.0018875977268 -1469728567085723120,0.0,0.0,0.0,0.0,0.0,0.00145329311218 -1469728567165122872,0.0,0.0,0.0,0.0,0.0,0.00432899904425 -1469728567240826486,0.0,0.0,0.0,0.0,0.0,0.00305037911015 -1469728567316985752,0.0,0.0,0.0,0.0,0.0,0.00190377129579 -1469728567397868811,0.0,0.0,0.0,0.0,0.0,0.00340371090336 -1469728567476074283,0.0,0.0,0.0,0.0,0.0,0.00335664377134 -1469728567553144270,0.0,0.0,0.0,0.0,0.0,0.00288705372746 -1469728567628698807,0.0,0.0,0.0,0.0,0.0,0.00188518224307 -1469728567708351692,0.0,0.0,0.0,0.0,0.0,0.00424767012042 -1469728567783380882,0.0,0.0,0.0,0.0,0.0,0.00217593784203 -1469728567863376437,0.0,0.0,0.0,0.0,0.0,0.00305390745226 -1469728567938933058,0.0,0.0,0.0,0.0,0.0,0.00144915874812 -1469728568018497854,0.008,0.0,0.0,0.0,0.0,0.0 -1469728568094450930,0.008,0.0,0.0,0.0,0.0,0.0 -1469728568172877895,0.0,0.0,0.0,0.0,0.0,0.00213187060365 -1469728568250623646,0.0,0.0,0.0,0.0,0.0,0.00216002202807 -1469728568324064741,0.008,0.0,0.0,0.0,0.0,0.0 -1469728568403286086,0.008,0.0,0.0,0.0,0.0,0.0 -1469728568487170759,0.0,0.0,0.0,0.0,0.0,0.003412348159 -1469728568575405686,0.0,0.0,0.0,0.0,0.0,0.00400238772193 -1469728568655235714,0.0,0.0,0.0,0.0,0.0,0.00141096701853 -1469728568731554279,0.008,0.0,0.0,0.0,0.0,0.0 -1469728568811086382,0.0,-0.00101924721929,0.0,0.0,0.0,0.0 -1469728568886306864,0.0,-0.00111860026451,0.0,0.0,0.0,0.00376909101919 -1469728568959670868,0.0,-0.00130359257417,0.0,0.0,0.0,0.00502629938843 -1469728569033650385,0.0,-0.00135408864202,0.0,0.0,0.0,0.00176087056155 -1469728569111136849,0.0,-0.0013719661239,0.0,0.0,0.0,0.00149781766309 -1469728569185537034,0.0,-0.0013637244034,0.0,0.0,0.0,0.0 -1469728569260920959,0.0,-0.0013760488558,0.0,0.0,0.0,0.0 -1469728569340618935,0.0,-0.00142640826138,0.0,0.0,0.0,0.00204225433652 -1469728569418200972,0.0,-0.00142209461736,0.0,0.0,0.0,0.00222663953653 -1469728569497511332,0.0,-0.00141988531532,0.0,0.0,0.0,0.00140722873439 -1469728569588150658,0.0,-0.0013022705059,0.0,0.0,0.0,0.0 -1469728569666250902,0.0,-0.0011634212065,0.0,0.0,0.0,0.00179287260261 -1469728569746992088,0.0,-0.00117159738051,0.0,0.0,0.0,0.00235346987326 -1469728569822715001,0.0,-0.00113592852684,0.0,0.0,0.0,0.00194000080393 -1469728569898828799,0.0,-0.00115156500446,0.0,0.0,0.0,0.00237662008664 -1469728569977193703,0.0,-0.00120848205718,0.0,0.0,0.0,0.00262240893911 -1469728570054095435,0.0,-0.00133527808669,0.0,0.0,0.0,0.0018539417235 -1469728570134448847,0.0,-0.00134672130304,0.0,0.0,0.0,0.00191326461189 -1469728570211779475,0.0,-0.0013664627898,0.0,0.0,0.0,0.00144527534425 -1469728570297736104,0.0,-0.00134735363381,0.0,0.0,0.0,0.00141818875885 -1469728570374967396,0.0,-0.00130342249604,0.0,0.0,0.0,0.00304387950847 -1469728570458641042,0.0,-0.00126595175671,0.0,0.0,0.0,0.00376157910442 -1469728570536493157,0.0,-0.00123324706065,0.0,0.0,0.0,0.00234938390689 -1469728570615254699,0.0,-0.00119243345069,0.0,0.0,0.0,0.0020885048653 -1469728570692261924,0.0,-0.00119632682609,0.0,0.0,0.0,0.00205947150378 -1469728570769489387,0.0,-0.0012020606439,0.0,0.0,0.0,0.00209725510158 -1469728570843942380,0.0,-0.00125041209938,0.0,0.0,0.0,0.00202204166595 -1469728570923676677,0.0,-0.00131134119662,0.0,0.0,0.0,0.00322436233314 -1469728570999789946,0.0,-0.00132297119903,0.0,0.0,0.0,0.00193279684548 -1469728571078862619,0.0,-0.00132817721772,0.0,0.0,0.0,0.0 -1469728571166956570,0.0,-0.00132328565078,0.0,0.0,0.0,0.00233685477621 -1469728571246438524,0.0,-0.0013146309446,0.0,0.0,0.0,0.00189857541464 -1469728571323426903,0.0,-0.00127579058366,0.0,0.0,0.0,0.00294419974564 -1469728571400114095,0.0,-0.00120029131728,0.0,0.0,0.0,0.00245968298347 -1469728571477520152,0.0,-0.00121803556415,0.0,0.0,0.0,0.00225695034285 -1469728571558114245,0.0,-0.00123511749166,0.0,0.0,0.0,0.00240345078318 -1469728571634310177,0.0,-0.00125426777484,0.0,0.0,0.0,0.00295119985776 -1469728571713095620,0.0,-0.00125414053755,0.0,0.0,0.0,0.00287272390079 -1469728571791300873,0.0,-0.00128187998044,0.0,0.0,0.0,0.00350721974121 -1469728571866135230,0.0,-0.00125248773801,0.0,0.0,0.0,0.00348341620462 -1469728571947041736,0.0,-0.00121802442553,0.0,0.0,0.0,0.00234517030238 -1469728572027498600,0.0,-0.00123994908141,0.0,0.0,0.0,0.00264715639564 -1469728572104966416,0.0,-0.00125782056557,0.0,0.0,0.0,0.00328616581216 -1469728572185025314,0.0,-0.00126211621644,0.0,0.0,0.0,0.00371048416828 -1469728572259641354,0.0,-0.00115781376915,0.0,0.0,0.0,0.0 -1469728572342427474,0.0,-0.00112129195439,0.0,0.0,0.0,0.00141976558049 -1469728572416908227,0.0,-0.00113295965674,0.0,0.0,0.0,0.0 -1469728572495566559,0.0,-0.00103180986675,0.0,0.0,0.0,0.0040438897783 -1469728572572688060,0.0,-0.00100534879448,0.0,0.0,0.0,0.00282596325896 -1469728572654328543,0.0,-0.000988117352449,0.0,0.0,0.0,0.00201975436029 -1469728572734668101,0.0,-0.000985091932439,0.0,0.0,0.0,0.00259766455453 -1469728572821815563,0.0,-0.000970859349095,0.0,0.0,0.0,0.0017407724486 -1469728572904749672,0.0,-0.00104512394252,0.0,0.0,0.0,0.00564338608476 -1469728572979732888,0.0,-0.00114904767679,0.0,0.0,0.0,0.0 -1469728573061126060,0.0,-0.00134976600143,0.0,0.0,0.0,0.0 -1469728573138506177,0.0,-0.00155553740295,0.0,0.0,0.0,0.0 -1469728573218388938,0.0,-0.00161395217138,0.0,0.0,0.0,0.0 -1469728573300503211,0.0,-0.00171667336332,0.0,0.0,0.0,0.00165714809935 -1469728573381904880,0.0,-0.00171005402538,0.0,0.0,0.0,0.00261357209197 -1469728573460310183,0.0,-0.00149720874461,0.0,0.0,0.0,0.0 -1469728573535148403,0.0,-0.00122950834068,0.0,0.0,0.0,0.0 -1469728573613410423,0.0,-0.00118589808079,0.0,0.0,0.0,0.0019685011879 -1469728573691664008,0.0,-0.00119960457864,0.0,0.0,0.0,0.00241247042036 -1469728573775065637,0.0,-0.00130482253464,0.0,0.0,0.0,0.0 -1469728573853988313,0.0,-0.0015228635523,0.0,0.0,0.0,0.0 -1469728573930426592,0.0,-0.00184377099233,0.0,0.0,0.0,0.0 -1469728574010447600,0.0,-0.00189134788545,0.0,0.0,0.0,0.00408576502543 -1469728574092368331,0.0,-0.00185538300159,0.0,0.0,0.0,0.0 -1469728574168639714,0.0,-0.00183742797779,0.0,0.0,0.0,0.0 -1469728574250748621,0.0,-0.00181866883146,0.0,0.0,0.0,0.0 -1469728574327107798,0.0,-0.00174644217672,0.0,0.0,0.0,0.0 -1469728574405321982,0.0,-0.00175377481463,0.0,0.0,0.0,0.0 -1469728574482254620,0.0,-0.00176511778342,0.0,0.0,0.0,0.0 -1469728574561309976,0.0,-0.00174406665223,0.0,0.0,0.0,0.0 -1469728574637963972,0.0,-0.00170806149798,0.0,0.0,0.0,0.0 -1469728574717332200,0.0,-0.0016849570054,0.0,0.0,0.0,0.00243507403527 -1469728574796671119,0.0,-0.00167392848837,0.0,0.0,0.0,0.00402531995659 -1469728574875663286,0.0,-0.00164818414333,0.0,0.0,0.0,0.00155112335083 -1469728574951839528,0.0,-0.00158124704691,0.0,0.0,0.0,0.0 -1469728575028358972,0.0,-0.00154649155992,0.0,0.0,0.0,0.0 -1469728575104681495,0.0,-0.00148861444401,0.0,0.0,0.0,0.0 -1469728575186854537,0.0,-0.00143485775995,0.0,0.0,0.0,0.0 -1469728575261653433,0.0,-0.00138669480416,0.0,0.0,0.0,0.0 -1469728575340426970,0.0,-0.00132814251664,0.0,0.0,0.0,0.0 -1469728575417856917,0.0,-0.00125271393763,0.0,0.0,0.0,0.00224975851262 -1469728575494726672,0.0,-0.0012057852264,0.0,0.0,0.0,0.0 -1469728575571526948,0.0,-0.00115245823594,0.0,0.0,0.0,0.0 -1469728575656248752,0.0,-0.00110451076957,0.0,0.0,0.0,0.0 -1469728575735986446,0.0,-0.00107392283934,0.0,0.0,0.0,0.0017616239589 -1469728575812163681,0.0,-0.00104748961362,0.0,0.0,0.0,0.00294184752232 -1469728575893469336,0.0,-0.00101579767498,0.0,0.0,0.0,0.0057051580152 -1469728575969460244,0.0,-0.00098560345205,0.0,0.0,0.0,0.00275098390567 -1469728576055381666,0.0,-0.000953852821463,0.0,0.0,0.0,0.0 -1469728576133238705,0.008,0.0,0.0,0.0,0.0,0.0 -1469728576210982624,0.008,0.0,0.0,0.0,0.0,0.0 -1469728576286359611,0.0,0.0,0.0,0.0,0.0,0.00201754902503 -1469728576370544431,0.008,0.0,0.0,0.0,0.0,0.0 -1469728576446662208,0.008,0.0,0.0,0.0,0.0,0.0 -1469728576526616649,0.008,0.0,0.0,0.0,0.0,0.0 -1469728576612979601,0.008,0.0,0.0,0.0,0.0,0.0 -1469728576691578329,0.0,0.0,0.0,0.0,0.0,0.00214000458776 -1469728576780181557,0.0,0.0,0.0,0.0,0.0,0.00354465826363 -1469728576862487083,0.008,0.0,0.0,0.0,0.0,0.0 -1469728576940859902,0.0,0.0,0.0,0.0,0.0,0.00189603684688 -1469728577020776542,0.0,0.0,0.0,0.0,0.0,0.00251138980757 -1469728577099869208,0.0,0.0,0.0,0.0,0.0,0.00252914740924 -1469728577176428526,0.008,0.0,0.0,0.0,0.0,0.0 -1469728577256238583,0.0,0.0,0.0,0.0,0.0,-0.00284246988278 -1469728577335673293,0.0,0.0,0.0,0.0,0.0,-0.00440375465816 -1469728577412260888,0.0,0.0,0.0,0.0,0.0,-0.00196044055953 -1469728577491099027,0.0,0.0,0.0,0.0,0.0,0.00184545103775 -1469728577571953843,0.008,0.0,0.0,0.0,0.0,0.0 -1469728577648368212,0.008,0.0,0.0,0.0,0.0,0.0 -1469728577727661107,0.008,0.0,0.0,0.0,0.0,0.0 -1469728577812202235,0.008,0.0,0.0,0.0,0.0,0.0 -1469728577889988610,0.008,0.0,0.0,0.0,0.0,0.0 -1469728577979675491,0.008,0.0,0.0,0.0,0.0,0.0 -1469728578055319192,0.0,0.0,0.0,0.0,0.0,0.00262177922044 -1469728578135150937,0.008,0.0,0.0,0.0,0.0,0.0 -1469728578208592315,0.008,0.0,0.0,0.0,0.0,0.0 -1469728578285918852,0.0,0.0,0.0,0.0,0.0,-0.00155289363524 -1469728578365342751,0.0,0.0,0.0,0.0,0.0,-0.00372095061646 -1469728578439095346,0.0,0.0,0.0,0.0,0.0,-0.00371795809753 -1469728578520616868,0.0,0.0,0.0,0.0,0.0,0.00428853443923 -1469728578601964429,0.008,0.0,0.0,0.0,0.0,0.0 -1469728578683393545,0.008,0.0,0.0,0.0,0.0,0.0 -1469728578771109350,0.0,0.0,0.0,0.0,0.0,-0.00472778325692 -1469728578847664822,0.008,0.0,0.0,0.0,0.0,0.0 -1469728578929639011,0.0,0.0,0.0,0.0,0.0,0.00256911754757 -1469728579011674538,0.0,0.0,0.0,0.0,0.0,0.00321344571398 -1469728579087729805,0.008,0.0,0.0,0.0,0.0,0.0 -1469728579166671394,0.008,0.0,0.0,0.0,0.0,0.0 -1469728579250707100,0.008,0.0,0.0,0.0,0.0,0.0 -1469728579327596841,0.008,0.0,0.0,0.0,0.0,0.0 -1469728579408586942,0.008,0.0,0.0,0.0,0.0,0.0 -1469728579487659931,0.008,0.0,0.0,0.0,0.0,0.0 -1469728579564343244,0.008,0.0,0.0,0.0,0.0,0.0 -1469728579642981770,0.0,0.0,0.0,0.0,0.0,-0.00233560629732 -1469728579720894534,0.0,0.0,0.0,0.0,0.0,-0.00306831856701 -1469728579800025985,0.0,0.0,0.0,0.0,0.0,-0.00307396711236 -1469728579875260411,0.0,0.0,0.0,0.0,0.0,0.00272427490528 -1469728579949991205,0.0,0.0,0.0,0.0,0.0,0.00181739928262 -1469728580025186899,0.008,0.0,0.0,0.0,0.0,0.0 -1469728580103963094,0.008,0.0,0.0,0.0,0.0,0.0 -1469728580179848175,0.0,0.0,0.0,0.0,0.0,-0.00163752839682 -1469728580258856725,0.008,0.0,0.0,0.0,0.0,0.0 -1469728580338164708,0.008,0.0,0.0,0.0,0.0,0.0 -1469728580418477843,0.008,0.0,0.0,0.0,0.0,0.0 -1469728580490868132,0.008,0.0,0.0,0.0,0.0,0.0 -1469728580572506438,0.008,0.0,0.0,0.0,0.0,0.0 -1469728580648078011,0.008,0.0,0.0,0.0,0.0,0.0 -1469728580727541378,0.008,0.0,0.0,0.0,0.0,0.0 -1469728580801350077,0.008,0.0,0.0,0.0,0.0,0.0 -1469728580877878481,0.008,0.0,0.0,0.0,0.0,0.0 -1469728580960031489,0.008,0.0,0.0,0.0,0.0,0.0 -1469728581039154935,0.0,0.0,0.0,0.0,0.0,0.00197082453739 -1469728581117418879,0.008,0.0,0.0,0.0,0.0,0.0 -1469728581202121932,0.008,0.0,0.0,0.0,0.0,0.0 -1469728581278848832,0.008,0.0,0.0,0.0,0.0,0.0 -1469728581361492046,0.0,0.0,0.0,0.0,0.0,0.00267324619079 -1469728581442243119,0.0,0.0,0.0,0.0,0.0,0.00167692830687 -1469728581520031506,0.008,0.0,0.0,0.0,0.0,0.0 -1469728581596615696,0.008,0.0,0.0,0.0,0.0,0.0 -1469728581674735787,0.008,0.0,0.0,0.0,0.0,0.0 -1469728581749545416,0.008,0.0,0.0,0.0,0.0,0.0 -1469728581824988338,0.008,0.0,0.0,0.0,0.0,0.0 -1469728581904347356,0.008,0.0,0.0,0.0,0.0,0.0 -1469728581982749110,0.008,0.0,0.0,0.0,0.0,0.0 -1469728582060272975,0.008,0.0,0.0,0.0,0.0,0.0 -1469728582135512379,0.008,0.0,0.0,0.0,0.0,0.0 -1469728582216774507,0.008,0.0,0.0,0.0,0.0,0.0 -1469728582292627154,0.0,0.0,0.0,0.0,0.0,0.00200145697494 -1469728582372541001,0.008,0.0,0.0,0.0,0.0,0.0 -1469728582448772416,0.008,0.0,0.0,0.0,0.0,0.0 -1469728582538061882,0.0,0.0,0.0,0.0,0.0,0.00150801398003 -1469728582612149439,0.008,0.0,0.0,0.0,0.0,0.0 -1469728582687288285,0.008,0.0,0.0,0.0,0.0,0.0 -1469728582765296665,0.0,0.0,0.0,0.0,0.0,0.00260335169529 -1469728582844015098,0.008,0.0,0.0,0.0,0.0,0.0 -1469728582925093509,0.008,0.0,0.0,0.0,0.0,0.0 -1469728583010173718,0.008,0.0,0.0,0.0,0.0,0.0 -1469728583088200416,0.0,0.0,0.0,0.0,0.0,0.0028245466293 -1469728583167625168,0.008,0.0,0.0,0.0,0.0,0.0 -1469728583246271269,0.008,0.0,0.0,0.0,0.0,0.0 -1469728583325690567,0.008,0.0,0.0,0.0,0.0,0.0 -1469728583404080299,0.0,0.0,0.0,0.0,0.0,0.00140152876801 -1469728583479838800,0.008,0.0,0.0,0.0,0.0,0.0 -1469728583558745635,0.008,0.0,0.0,0.0,0.0,0.0 -1469728583633171296,0.0,0.0,0.0,0.0,0.0,0.00319311755007 -1469728583712042701,0.0,0.0,0.0,0.0,0.0,0.00200032938672 -1469728583787165991,0.008,0.0,0.0,0.0,0.0,0.0 -1469728583867614151,0.008,0.0,0.0,0.0,0.0,0.0 -1469728583943283895,0.0,0.0,0.0,0.0,0.0,0.00227159851076 -1469728584019006236,0.008,0.0,0.0,0.0,0.0,0.0 -1469728584096907601,0.008,0.0,0.0,0.0,0.0,0.0 -1469728584173918581,0.0,0.0,0.0,0.0,0.0,0.00198952287479 -1469728584251979168,0.008,0.0,0.0,0.0,0.0,0.0 -1469728584331418401,0.008,0.0,0.0,0.0,0.0,0.0 -1469728584406599637,0.008,0.0,0.0,0.0,0.0,0.0 -1469728584484269554,0.008,0.0,0.0,0.0,0.0,0.0 -1469728584558920558,0.008,0.0,0.0,0.0,0.0,0.0 -1469728584632832855,0.008,0.0,0.0,0.0,0.0,0.0 -1469728584713434552,0.008,0.0,0.0,0.0,0.0,0.0 -1469728584788298026,0.0,0.0,0.0,0.0,0.0,0.002497505945 -1469728584865580248,0.0,0.0,0.0,0.0,0.0,0.00153077387895 -1469728584941872919,0.008,0.0,0.0,0.0,0.0,0.0 -1469728585014998261,0.0,0.0,0.0,0.0,0.0,0.00271795972214 -1469728585089170633,0.008,0.0,0.0,0.0,0.0,0.0 -1469728585167702840,0.008,0.0,0.0,0.0,0.0,0.0 -1469728585243055519,0.008,0.0,0.0,0.0,0.0,0.0 -1469728585322773189,0.008,0.0,0.0,0.0,0.0,0.0 -1469728585399884550,0.0,0.0,0.0,0.0,0.0,0.00190511889681 -1469728585480253053,0.0,0.0,0.0,0.0,0.0,0.00158248028119 -1469728585554532638,0.008,0.0,0.0,0.0,0.0,0.0 -1469728585628342533,0.008,0.0,0.0,0.0,0.0,0.0 -1469728585706482875,0.008,0.0,0.0,0.0,0.0,0.0 -1469728585781760460,0.0,0.0,0.0,0.0,0.0,0.00249589883728 -1469728585862652279,0.008,0.0,0.0,0.0,0.0,0.0 -1469728585937375279,0.0,0.0,0.0,0.0,0.0,0.00249542924196 -1469728586012030810,0.008,0.0,0.0,0.0,0.0,0.0 -1469728586089832645,0.008,0.0,0.0,0.0,0.0,0.0 -1469728586175479787,0.0,0.0,0.0,0.0,0.0,0.00186836116265 -1469728586252110325,0.0,0.0,0.0,0.0,0.0,0.00152950452095 -1469728586330615463,0.008,0.0,0.0,0.0,0.0,0.0 -1469728586407630108,0.008,0.0,0.0,0.0,0.0,0.0 -1469728586485504516,0.008,0.0,0.0,0.0,0.0,0.0 -1469728586571495726,0.0,0.0,0.0,0.0,0.0,0.00261708212996 -1469728586646442407,0.0,0.0,0.0,0.0,0.0,0.00222684304784 -1469728586731582334,0.008,0.0,0.0,0.0,0.0,0.0 -1469728586812022059,0.0,0.0,0.0,0.0,0.0,0.00213627090637 -1469728586889484284,0.0,0.0,0.0,0.0,0.0,0.00210027310475 -1469728586969070798,0.0,0.0,0.0,0.0,0.0,0.00310882703895 -1469728587050905379,0.008,0.0,0.0,0.0,0.0,0.0 -1469728587128084220,0.0,0.0,0.0,0.0,0.0,0.00177024523162 -1469728587208262016,0.0,0.0,0.0,0.0,0.0,0.00155758621741 -1469728587284135463,0.0,0.0,0.0,0.0,0.0,0.00277196838232 -1469728587369342708,0.0,0.0,0.0,0.0,0.0,0.0020570183816 -1469728587447540893,0.0,0.0,0.0,0.0,0.0,0.00289662075999 -1469728587521857011,0.0,0.0,0.0,0.0,0.0,0.00263014044184 -1469728587594839003,0.0,0.0,0.0,0.0,0.0,0.00256131406645 -1469728587673451740,0.0,0.0,0.0,0.0,0.0,0.00383083360184 -1469728587755466211,0.0,0.0,0.0,0.0,0.0,0.00277787187355 -1469728587833492652,0.0,0.0,0.0,0.0,0.0,0.00218856737493 -1469728587912505547,0.0,0.0,0.0,0.0,0.0,0.00261320980021 -1469728587989860739,0.0,0.0,0.0,0.0,0.0,0.00232931565189 -1469728588072299616,0.0,0.0,0.0,0.0,0.0,0.00300372326784 -1469728588148017288,0.0,0.0,0.0,0.0,0.0,0.00277707409765 -1469728588225282348,0.0,0.0,0.0,0.0,0.0,0.00296756135607 -1469728588303259337,0.0,0.0,0.0,0.0,0.0,0.00298614359719 -1469728588380042274,0.0,0.0,0.0,0.0,0.0,0.00203398098147 -1469728588463209400,0.0,0.0,0.0,0.0,0.0,0.0019146308746 -1469728588543360304,0.0,0.0,0.0,0.0,0.0,0.00180803148223 -1469728588631621494,0.0,0.0,0.0,0.0,0.0,0.00274651152166 -1469728588709490064,0.0,0.0,0.0,0.0,0.0,0.00229452017891 -1469728588790709969,0.0,0.0,0.0,0.0,0.0,0.00180838498963 -1469728588867230727,0.0,0.0,0.0,0.0,0.0,0.00224176651287 -1469728588945114326,0.0,0.0,0.0,0.0,0.0,0.00228787348845 -1469728589021120979,0.008,0.0,0.0,0.0,0.0,0.0 -1469728589097070378,0.0,0.0,0.0,0.0,0.0,0.00179906438433 -1469728589175575323,0.0,0.0,0.0,0.0,0.0,0.00205736082902 -1469728589251175981,0.0,0.0,0.0,0.0,0.0,0.00252787767051 -1469728589329210280,0.008,0.0,0.0,0.0,0.0,0.0 -1469728589407379206,0.008,0.0,0.0,0.0,0.0,0.0 -1469728589491291500,0.008,0.0,0.0,0.0,0.0,0.0 -1469728589569840679,0.008,0.0,0.0,0.0,0.0,0.0 -1469728589647663668,0.008,0.0,0.0,0.0,0.0,0.0 -1469728589726460609,0.008,0.0,0.0,0.0,0.0,0.0 -1469728589801889360,0.008,0.0,0.0,0.0,0.0,0.0 -1469728589883614946,0.008,0.0,0.0,0.0,0.0,0.0 -1469728589961287388,0.008,0.0,0.0,0.0,0.0,0.0 -1469728590039679438,0.0,-0.00104485104638,0.0,0.0,0.0,0.0 -1469728590116588661,0.0,-0.00126352867889,0.0,0.0,0.0,0.00216641377663 -1469728590195126864,0.0,-0.00135406250911,0.0,0.0,0.0,0.0 -1469728590272108875,0.0,-0.00132468440416,0.0,0.0,0.0,0.0 -1469728590351525667,0.0,-0.00115391653808,0.0,0.0,0.0,-0.00146034000494 -1469728590434337578,0.0,-0.00106305369022,0.0,0.0,0.0,0.0 -1469728590509423482,0.008,0.0,0.0,0.0,0.0,0.0 -1469728590593047691,0.008,0.0,0.0,0.0,0.0,0.0 -1469728590671021647,0.008,0.0,0.0,0.0,0.0,0.0 -1469728590749165134,0.008,0.0,0.0,0.0,0.0,0.0 -1469728590823345374,0.008,0.0,0.0,0.0,0.0,0.0 -1469728590909094119,0.008,0.0,0.0,0.0,0.0,0.0 -1469728590985457424,0.008,0.0,0.0,0.0,0.0,0.0 -1469728591062448703,0.008,0.0,0.0,0.0,0.0,0.0 -1469728591140014183,0.008,0.0,0.0,0.0,0.0,0.0 -1469728591220749351,0.008,0.0,0.0,0.0,0.0,0.0 -1469728591300919308,0.008,0.0,0.0,0.0,0.0,0.0 -1469728591379882541,0.008,0.0,0.0,0.0,0.0,0.0 -1469728591458753784,0.008,0.0,0.0,0.0,0.0,0.0 -1469728591534001532,0.008,0.0,0.0,0.0,0.0,0.0 -1469728591613649556,0.008,0.0,0.0,0.0,0.0,0.0 -1469728591686499175,0.008,0.0,0.0,0.0,0.0,0.0 -1469728591763314507,0.008,0.0,0.0,0.0,0.0,0.0 -1469728591848534855,0.008,0.0,0.0,0.0,0.0,0.0 -1469728591925508257,0.008,0.0,0.0,0.0,0.0,0.0 -1469728592005455303,0.0,0.0,0.0,0.0,0.0,0.00144902614993 -1469728592083600677,0.008,0.0,0.0,0.0,0.0,0.0 -1469728592160684146,0.008,0.0,0.0,0.0,0.0,0.0 -1469728592237056481,0.008,0.0,0.0,0.0,0.0,0.0 -1469728592316990987,0.008,0.0,0.0,0.0,0.0,0.0 -1469728592393573342,0.008,0.0,0.0,0.0,0.0,0.0 -1469728592474969261,0.008,0.0,0.0,0.0,0.0,0.0 -1469728592557092270,0.0,0.0,0.0,0.0,0.0,0.00223874999328 -1469728592636804707,0.008,0.0,0.0,0.0,0.0,0.0 -1469728592719400112,0.008,0.0,0.0,0.0,0.0,0.0 -1469728592795755694,0.008,0.0,0.0,0.0,0.0,0.0 -1469728592871364145,0.008,0.0,0.0,0.0,0.0,0.0 -1469728592946846694,0.008,0.0,0.0,0.0,0.0,0.0 -1469728593026840639,0.008,0.0,0.0,0.0,0.0,0.0 +1470066232432953485,0.1,-0.0520511651884,0.0,0.0,0.0,0.0281848467053 +1470066232518175471,0.1,-0.0520511651884,0.0,0.0,0.0,0.0281848467053 +1470066232592237069,0.1,-0.0520511651884,0.0,0.0,0.0,0.0281848467053 +1470066232663750126,0.1,-0.0520511651884,0.0,0.0,0.0,0.0281848467053 +1470066232736742202,0.1,-0.0520511651884,0.0,0.0,0.0,0.0281848467053 +1470066232808265446,0.1,-0.0520511651884,0.0,0.0,0.0,0.0281848467053 +1470066232880693356,0.1,-0.0520511651884,0.0,0.0,0.0,0.0281848467053 +1470066232951603399,0.1,-0.0520511651884,0.0,0.0,0.0,0.0281848467053 +1470066233023343289,0.1,-0.0516482139479,0.0,0.0,0.0,0.0214510746338 +1470066233093293104,0.1,-0.0516760671984,0.0,0.0,0.0,0.0177945426614 +1470066233170388040,0.1,-0.0527417624842,0.0,0.0,0.0,0.0 +1470066233240910844,0.1,-0.052590861405,0.0,0.0,0.0,0.00404673695953 +1470066233316977907,0.1,-0.0522456491839,0.0,0.0,0.0,0.012124952671 +1470066233394734107,0.1,-0.0511224056135,0.0,0.0,0.0,0.0149591545737 +1470066233480334784,0.1,-0.0514804209124,0.0,0.0,0.0,0.0320673926807 +1470066233555511905,0.1,-0.0514805997263,0.0,0.0,0.0,0.0377072219645 +1470066233632797719,0.1,-0.052147969092,0.0,0.0,0.0,0.0305803081825 +1470066233707444053,0.1,-0.0525006259333,0.0,0.0,0.0,0.040239391397 +1470066233785230923,0.1,-0.0525228763472,0.0,0.0,0.0,0.0283418252388 +1470066233864935605,0.1,-0.0523251260172,0.0,0.0,0.0,0.0131892987342 +1470066233939191697,0.1,-0.0519037807833,0.0,0.0,0.0,0.0122919821992 +1470066234012992728,0.1,-0.0495837593924,0.0,0.0,0.0,0.0235517618661 +1470066234095277992,0.1,-0.0492970014464,0.0,0.0,0.0,0.0330212173083 +1470066234175498498,0.1,-0.0484423304449,0.0,0.0,0.0,0.0193795479242 +1470066234256261780,0.1,-0.0484344089876,0.0,0.0,0.0,0.0212352878545 +1470066234334854311,0.1,-0.0483997369658,0.0,0.0,0.0,0.0235594199228 +1470066234413476161,0.1,-0.0474769616972,0.0,0.0,0.0,0.0437181650625 +1470066234492067301,0.1,-0.0474943066488,0.0,0.0,0.0,0.0221957441419 +1470066234572219112,0.1,-0.0482263410936,0.0,0.0,0.0,0.0284188274019 +1470066234648282797,0.1,-0.0485630536924,0.0,0.0,0.0,0.0296043561021 +1470066234729338454,0.1,-0.0486281956087,0.0,0.0,0.0,0.0250737890321 +1470066234806128128,0.1,-0.0484134519945,0.0,0.0,0.0,0.0167444232268 +1470066234888601499,0.1,-0.0479383791338,0.0,0.0,0.0,0.0149962460742 +1470066234971758816,0.1,-0.0463275427471,0.0,0.0,0.0,0.00759134952223 +1470066235051807987,0.1,-0.0460409099709,0.0,0.0,0.0,0.00805250058327 +1470066235127743643,0.1,-0.0460650200497,0.0,0.0,0.0,0.0398112263752 +1470066235205105547,0.1,-0.0460813696037,0.0,0.0,0.0,0.03222971096 +1470066235282948483,0.1,-0.046077137674,0.0,0.0,0.0,0.0146369991589 +1470066235364444545,0.1,-0.0452538962017,0.0,0.0,0.0,0.0341791980388 +1470066235443794943,0.1,-0.0452368492733,0.0,0.0,0.0,0.0331797865558 +1470066235519142364,0.1,-0.0451822752606,0.0,0.0,0.0,0.0155400140096 +1470066235594708569,0.1,-0.0444570119034,0.0,0.0,0.0,0.00677456035613 +1470066235681271496,0.1,-0.0443647796761,0.0,0.0,0.0,0.0138119143663 +1470066235760701832,0.1,-0.0437926972757,0.0,0.0,0.0,0.005356324817 +1470066235840802317,0.1,-0.0436301524292,0.0,0.0,0.0,0.013001333547 +1470066235917460112,0.1,-0.0424260968815,0.0,0.0,0.0,0.0181463361736 +1470066235992414525,0.1,-0.0421865726362,0.0,0.0,0.0,0.0208995828072 +1470066236075566547,0.1,-0.0415773893248,0.0,0.0,0.0,0.0123193360361 +1470066236152374960,0.1,-0.0416613126646,0.0,0.0,0.0,0.0396208447812 +1470066236230515370,0.1,-0.0416795159231,0.0,0.0,0.0,0.0289580584118 +1470066236304768615,0.1,-0.0415650839459,0.0,0.0,0.0,0.0148940242424 +1470066236387649315,0.1,-0.0404841566931,0.0,0.0,0.0,0.0111494482691 +1470066236466117488,0.1,-0.0401855851065,0.0,0.0,0.0,0.0098678956305 +1470066236554562820,0.1,-0.0397747988354,0.0,0.0,0.0,0.0291584418358 +1470066236627136742,0.1,-0.0390098596464,0.0,0.0,0.0,0.00858988971437 +1470066236707107372,0.1,-0.038312696899,0.0,0.0,0.0,0.0190211830922 +1470066236795158278,0.1,-0.0377933944117,0.0,0.0,0.0,0.0249358619904 +1470066236875797699,0.1,-0.0371911371599,0.0,0.0,0.0,0.0289298614145 +1470066236949553885,0.1,-0.037037223066,0.0,0.0,0.0,0.0177962471774 +1470066237022276873,0.1,-0.0362317169558,0.0,0.0,0.0,0.0 +1470066237095426821,0.1,-0.0351603383671,0.0,0.0,0.0,0.00918170167741 +1470066237174710496,0.1,-0.0350366259466,0.0,0.0,0.0,0.00975501995704 +1470066237253460797,0.1,-0.034885256971,0.0,0.0,0.0,0.023733408556 +1470066237335009756,0.1,-0.0337118084084,0.0,0.0,0.0,0.0436760014048 +1470066237409162775,0.1,-0.0338236624847,0.0,0.0,0.0,0.0366888873381 +1470066237490704863,0.1,-0.0333393807064,0.0,0.0,0.0,0.00412773279303 +1470066237565965738,0.1,-0.0326181496035,0.0,0.0,0.0,0.00858658803676 +1470066237642760057,0.1,-0.0323677206884,0.0,0.0,0.0,0.00659056159558 +1470066237722997671,0.1,-0.0324959064375,0.0,0.0,0.0,0.00996564391747 +1470066237806627377,0.1,-0.0319946909796,0.0,0.0,0.0,0.0115526473758 +1470066237888916287,0.1,-0.0320282990585,0.0,0.0,0.0,0.0248863440426 +1470066237971811473,0.1,-0.0316567654263,0.0,0.0,0.0,-0.00629681152374 +1470066238051668161,0.1,-0.0310126180302,0.0,0.0,0.0,0.0379973608655 +1470066238128896283,0.1,-0.0309131199967,0.0,0.0,0.0,0.0101131952648 +1470066238209096078,0.1,-0.0308893764864,0.0,0.0,0.0,0.00786094434671 +1470066238290607608,0.1,-0.030096956576,0.0,0.0,0.0,0.0 +1470066238365630798,0.1,-0.0299059415709,0.0,0.0,0.0,0.0329872099985 +1470066238444256602,0.1,-0.0294373000513,0.0,0.0,0.0,-0.00318542379658 +1470066238520468297,0.1,-0.0288221830975,0.0,0.0,0.0,0.0169453031078 +1470066238593778122,0.1,-0.0283108974348,0.0,0.0,0.0,0.0138475849109 +1470066238668267260,0.1,-0.0278703475844,0.0,0.0,0.0,-0.00718208591722 +1470066238751232430,0.1,-0.0269363934647,0.0,0.0,0.0,-0.00818421047906 +1470066238828942075,0.1,-0.0267054195057,0.0,0.0,0.0,0.00805982037176 +1470066238902849603,0.1,-0.0261033053051,0.0,0.0,0.0,0.0 +1470066238982414693,0.1,-0.0254578317057,0.0,0.0,0.0,0.0169834457546 +1470066239067427498,0.1,-0.0249993676792,0.0,0.0,0.0,0.00671848014481 +1470066239145087589,0.1,-0.024237864698,0.0,0.0,0.0,-0.00754444338677 +1470066239226964551,0.1,-0.0234057629953,0.0,0.0,0.0,0.0386280130353 +1470066239303377054,0.1,-0.0230157400023,0.0,0.0,0.0,0.00810864354537 +1470066239379498023,0.1,-0.0223571653019,0.0,0.0,0.0,-0.00380228708583 +1470066239459122328,0.1,-0.0215663994204,0.0,0.0,0.0,0.0368214557096 +1470066239535270435,0.1,-0.0211322332274,0.0,0.0,0.0,0.00307076554968 +1470066239613812916,0.1,-0.0206312055241,0.0,0.0,0.0,0.00303764666054 +1470066239692053873,0.1,-0.0195821280132,0.0,0.0,0.0,0.0 +1470066239768737712,0.1,-0.0189126531135,0.0,0.0,0.0,0.0396322078558 +1470066239841485457,0.1,-0.0185479680549,0.0,0.0,0.0,0.0 +1470066239914506388,0.1,-0.0177157963167,0.0,0.0,0.0,0.00692851211012 +1470066239986939770,0.1,-0.017520769919,0.0,0.0,0.0,0.0120849090973 +1470066240063685613,0.1,-0.0169830793987,0.0,0.0,0.0,0.0183725201274 +1470066240137259559,0.1,-0.0165639484774,0.0,0.0,0.0,0.00489696452942 +1470066240214010725,0.1,-0.0160540068995,0.0,0.0,0.0,0.0094066471876 +1470066240291210755,0.1,-0.0159892673145,0.0,0.0,0.0,0.0102188971659 +1470066240369920419,0.1,-0.0154721746694,0.0,0.0,0.0,0.0 +1470066240444371514,0.1,-0.0150415281306,0.0,0.0,0.0,0.0 +1470066240520541794,0.1,-0.0146133775364,0.0,0.0,0.0,-0.00378217162098 +1470066240599934879,0.1,-0.0145734543453,0.0,0.0,0.0,0.0 +1470066240683857523,0.1,-0.0141634339939,0.0,0.0,0.0,0.015350265812 +1470066240763604801,0.1,-0.0137017930399,0.0,0.0,0.0,-0.00579795579953 +1470066240841430071,0.1,-0.0137391383301,0.0,0.0,0.0,0.00816545081205 +1470066240921496902,0.1,-0.01333991387,0.0,0.0,0.0,0.0 +1470066240997405197,0.1,-0.0132520178805,0.0,0.0,0.0,0.0 +1470066241076480453,0.1,-0.0130310470711,0.0,0.0,0.0,0.0 +1470066241155453247,0.1,-0.0127746904741,0.0,0.0,0.0,0.0 +1470066241232015998,0.1,-0.0125393653761,0.0,0.0,0.0,0.0 +1470066241312141728,0.1,-0.0122574070941,0.0,0.0,0.0,-0.00310612111129 +1470066241391637014,0.1,-0.0118568728219,0.0,0.0,0.0,0.0116126838075 +1470066241471500893,0.1,-0.0115691850434,0.0,0.0,0.0,-0.00581369809981 +1470066241546282926,0.1,-0.0113726670395,0.0,0.0,0.0,0.0 +1470066241627228444,0.1,-0.0108607838403,0.0,0.0,0.0,0.0 +1470066241703944040,0.1,-0.0105222756516,0.0,0.0,0.0,0.0116737363054 +1470066241783916774,0.1,-0.0101917619358,0.0,0.0,0.0,0.0 +1470066241864534079,0.1,-0.00967554249869,0.0,0.0,0.0,-0.00609126394444 +1470066241944790993,0.1,-0.00939198234187,0.0,0.0,0.0,-0.00862605170141 +1470066242025990453,0.1,-0.00915639200316,0.0,0.0,0.0,0.00921453642981 +1470066242104694781,0.1,-0.00871428796159,0.0,0.0,0.0,0.0 +1470066242184054714,0.1,-0.00840748348342,0.0,0.0,0.0,0.00431233358095 +1470066242261389955,0.1,-0.00798048474894,0.0,0.0,0.0,0.00852239209856 +1470066242341900779,0.1,-0.0077262314509,0.0,0.0,0.0,0.0 +1470066242419646206,0.1,-0.00745787718402,0.0,0.0,0.0,0.00747839847276 +1470066242495293847,0.1,-0.00709000923739,0.0,0.0,0.0,0.00420479171197 +1470066242566592235,0.1,-0.00689362161861,0.0,0.0,0.0,0.0 +1470066242644926438,0.1,-0.0065384285997,0.0,0.0,0.0,0.00542051341273 +1470066242721898465,0.1,-0.00631361403571,0.0,0.0,0.0,0.00321032867058 +1470066242797724768,0.1,-0.00612777420388,0.0,0.0,0.0,0.00940056311368 +1470066242875206373,0.1,-0.00595321157084,0.0,0.0,0.0,0.0111406778089 +1470066242952242199,0.0,-0.00576039501534,0.0,0.0,0.0,0.0102753641505 +1470066243028496760,0.0,-0.00565763437258,0.0,0.0,0.0,0.0102268570538 +1470066243103178135,0.0,-0.00560218566166,0.0,0.0,0.0,0.00350460340496 +1470066243175464016,0.0,-0.00553355314837,0.0,0.0,0.0,0.0 +1470066243251014271,0.0,-0.00549144544707,0.0,0.0,0.0,0.0 +1470066243327520439,0.0,-0.0055150578271,0.0,0.0,0.0,0.0103446085415 +1470066243403578503,0.0,-0.00547612407313,0.0,0.0,0.0,0.00414937083718 +1470066243476761236,0.0,-0.00545258694397,0.0,0.0,0.0,0.00999457826184 +1470066243549502035,0.0,-0.00546740614878,0.0,0.0,0.0,-0.00447465825806 +1470066243622757976,0.0,-0.00551175274955,0.0,0.0,0.0,0.0 +1470066243699087923,0.0,-0.00557005577789,0.0,0.0,0.0,0.0 +1470066243776560443,0.0,-0.00566268959151,0.0,0.0,0.0,0.0 +1470066243857091494,0.0,-0.00570568689214,0.0,0.0,0.0,0.00534392756735 +1470066243931220041,0.0,-0.00593058490263,0.0,0.0,0.0,-0.00441192008049 +1470066244004447644,0.0,-0.00616210871445,0.0,0.0,0.0,0.0 +1470066244079681885,0.0,-0.0061270134996,0.0,0.0,0.0,-0.00556523515146 +1470066244153734310,0.0,-0.00606782087193,0.0,0.0,0.0,-0.00573866461928 +1470066244229279741,0.0,-0.0060202563654,0.0,0.0,0.0,-0.00572614403739 +1470066244304419359,0.0,-0.0059448646854,0.0,0.0,0.0,-0.00521773678048 +1470066244378780526,0.0,-0.00582963251577,0.0,0.0,0.0,-0.00462034472671 +1470066244458680613,0.0,-0.00568472617374,0.0,0.0,0.0,-0.00444637491368 +1470066244531540842,0.0,-0.00550569840775,0.0,0.0,0.0,-0.0038260077051 +1470066244605191249,0.0,-0.00527930134044,0.0,0.0,0.0,0.0 +1470066244679128955,0.0,-0.00508893081055,0.0,0.0,0.0,0.0 +1470066244758922337,0.0,-0.0048743391882,0.0,0.0,0.0,0.0 +1470066244835773056,0.0,-0.00464164489017,0.0,0.0,0.0,0.0 +1470066244913700662,0.0,-0.0042412328075,0.0,0.0,0.0,0.0 +1470066244989318305,0.0,-0.00397394546376,0.0,0.0,0.0,0.00309648370965 +1470066245061964287,0.0,-0.00372966178761,0.0,0.0,0.0,0.00312473262153 +1470066245143577105,0.0,-0.00349061288939,0.0,0.0,0.0,0.00641365536459 +1470066245217440761,0.0,-0.00314061143504,0.0,0.0,0.0,0.0 +1470066245296991584,0.0,-0.00292753302561,0.0,0.0,0.0,0.0 +1470066245373144260,0.0,-0.00277038016425,0.0,0.0,0.0,0.00309415350885 +1470066245447541790,0.0,-0.00255484976874,0.0,0.0,0.0,0.0 +1470066245524976874,0.0,-0.00242202193545,0.0,0.0,0.0,0.00853165535006 +1470066245605375255,0.0,-0.00229033739374,0.0,0.0,0.0,0.00337589721906 +1470066245682994866,0.0,-0.00212945328162,0.0,0.0,0.0,0.0 +1470066245762184644,0.0,-0.00205000401543,0.0,0.0,0.0,0.0 +1470066245841237560,0.0,-0.00197200574981,0.0,0.0,0.0,0.00657836376982 +1470066245920150427,0.0,-0.00186173529433,0.0,0.0,0.0,-0.00437467054352 +1470066245995308940,0.0,-0.00179891684161,0.0,0.0,0.0,0.0 +1470066246075721994,0.0,-0.00175551944481,0.0,0.0,0.0,0.0 +1470066246152931184,0.0,-0.00168837220476,0.0,0.0,0.0,0.0 +1470066246228962629,0.0,-0.00163287581013,0.0,0.0,0.0,-0.00279464166072 +1470066246312981935,0.0,-0.0016145786743,0.0,0.0,0.0,0.0 +1470066246393631205,0.0,-0.00157833756016,0.0,0.0,0.0,0.0 +1470066246469462967,0.0,-0.00149707333253,0.0,0.0,0.0,0.0 +1470066246548550856,0.0,-0.00149083905922,0.0,0.0,0.0,-0.00372485601691 +1470066246627020537,0.0,-0.00152450897799,0.0,0.0,0.0,0.0 +1470066246702795053,0.0,-0.00147700035082,0.0,0.0,0.0,-0.00404954858768 +1470066246777386595,0.0,-0.00134846665965,0.0,0.0,0.0,-0.00293275863487 +1470066246848503776,0.0,-0.00121089466916,0.0,0.0,0.0,-0.00432868713269 +1470066246921886786,0.0,-0.00118378908442,0.0,0.0,0.0,-0.00354492502453 +1470066246998224584,0.0,-0.00113853649305,0.0,0.0,0.0,0.0 +1470066247076024233,0.0,-0.00106365108,0.0,0.0,0.0,-0.00373103031791 +1470066247155450511,0.0,-0.00101659544812,0.0,0.0,0.0,-0.0036389977504 +1470066247234234593,0.0,-0.000977552915676,0.0,0.0,0.0,-0.00325917313777 +1470066247310877694,0.0,-0.000915170321925,0.0,0.0,0.0,0.0 +1470066247392228424,0.0,-0.000811309973462,0.0,0.0,0.0,-0.00357657867817 +1470066247472412621,0.0,0.0,0.0,0.0,0.0,-0.0033203965898 +1470066247553144142,0.0,0.0,0.0,0.0,0.0,-0.00452256784648 +1470066247628342234,0.006,0.0,0.0,0.0,0.0,0.0 +1470066247702819768,0.0,0.0,0.0,0.0,0.0,-0.00303298935495 +1470066247791091584,0.006,0.0,0.0,0.0,0.0,0.0 +1470066247868650215,0.006,0.0,0.0,0.0,0.0,0.0 +1470066247946391116,0.006,0.0,0.0,0.0,0.0,0.0 +1470066248023141715,0.006,0.0,0.0,0.0,0.0,0.0 +1470066248101211470,0.0,0.0,0.0,0.0,0.0,-0.003129392346 +1470066248182845118,0.006,0.0,0.0,0.0,0.0,0.0 +1470066248265136930,0.0,0.0,0.0,0.0,0.0,-0.00287902924645 +1470066248346960347,0.006,0.0,0.0,0.0,0.0,0.0 +1470066248422172449,0.0,0.0,0.0,0.0,0.0,0.00303716248282 +1470066248497279350,0.0,0.00120306624963,0.0,0.0,0.0,0.0 +1470066248576836295,0.0,0.00149653120829,0.0,0.0,0.0,0.0 +1470066248656849985,0.0,0.00170959900065,0.0,0.0,0.0,0.0 +1470066248734121661,0.0,0.00175757682814,0.0,0.0,0.0,0.00740192730605 +1470066248813077877,0.0,0.00181224062039,0.0,0.0,0.0,0.0 +1470066248892825930,0.0,0.00183213534697,0.0,0.0,0.0,0.00448743274821 +1470066248974369968,0.0,0.00183240543051,0.0,0.0,0.0,0.0 +1470066249049180185,0.0,0.00182816660895,0.0,0.0,0.0,0.0 +1470066249131460052,0.0,0.00182202565415,0.0,0.0,0.0,0.0 +1470066249215170212,0.0,0.00186847890659,0.0,0.0,0.0,0.00509310954848 +1470066249291364250,0.0,0.00189998201026,0.0,0.0,0.0,0.00819931072748 +1470066249369242200,0.0,0.00175456623478,0.0,0.0,0.0,0.00642777576526 +1470066249443474405,0.0,0.00154159660383,0.0,0.0,0.0,0.0078031690654 +1470066249518453289,0.0,0.00139068174108,0.0,0.0,0.0,0.0 +1470066249593433922,0.0,0.00135917975499,0.0,0.0,0.0,0.0 +1470066249669252553,0.0,0.00131383887424,0.0,0.0,0.0,0.00789780795213 +1470066249741510057,0.0,0.00120798475041,0.0,0.0,0.0,0.0 +1470066249816308091,0.0,0.00115651837482,0.0,0.0,0.0,0.0 +1470066249895213585,0.0,0.00108793559416,0.0,0.0,0.0,0.00933191139866 +1470066249971304480,0.0,0.000965058197515,0.0,0.0,0.0,0.0 +1470066250055624064,0.0,0.000804265727536,0.0,0.0,0.0,0.0 +1470066250125208022,0.0,0.0,0.0,0.0,0.0,0.00731906645857 +1470066250196963985,0.006,0.0,0.0,0.0,0.0,0.0 +1470066250270934129,0.0,0.0,0.0,0.0,0.0,0.00364143061101 +1470066250343673630,0.006,0.0,0.0,0.0,0.0,0.0 +1470066250419044161,0.0,0.0,0.0,0.0,0.0,0.00436259452008 +1470066250495901815,0.0,0.0,0.0,0.0,0.0,0.00337473111882 +1470066250569590737,0.006,0.0,0.0,0.0,0.0,0.0 +1470066250644496771,0.0,0.0,0.0,0.0,0.0,0.00412128580935 +1470066250714727423,0.006,0.0,0.0,0.0,0.0,0.0 +1470066250791307821,0.006,0.0,0.0,0.0,0.0,0.0 +1470066250869225044,0.0,0.0,0.0,0.0,0.0,-0.00396732845734 +1470066250942434284,0.006,0.0,0.0,0.0,0.0,0.0 +1470066251024018522,0.0,0.0,0.0,0.0,0.0,-0.00425524293842 +1470066251100382963,0.0,0.0,0.0,0.0,0.0,-0.00455763523515 +1470066251171881070,0.0,0.0,0.0,0.0,0.0,-0.00345045511906 +1470066251250192525,0.0,0.0,0.0,0.0,0.0,0.00383832374706 +1470066251324002067,0.006,0.0,0.0,0.0,0.0,0.0 +1470066251397288417,0.006,0.0,0.0,0.0,0.0,0.0 +1470066251469531447,0.0,-0.000858442346318,0.0,0.0,0.0,0.0 +1470066251542492607,0.0,-0.000976921106441,0.0,0.0,0.0,0.00510761793654 +1470066251617896556,0.0,-0.00101891034351,0.0,0.0,0.0,0.0 +1470066251695285854,0.0,-0.00104915448533,0.0,0.0,0.0,0.0 +1470066251783996455,0.0,-0.00118241706,0.0,0.0,0.0,0.0 +1470066251861790224,0.0,-0.00120818191276,0.0,0.0,0.0,0.00282382551327 +1470066251939793262,0.0,-0.00116019272314,0.0,0.0,0.0,0.00527717160255 +1470066252014887847,0.0,-0.00108444155262,0.0,0.0,0.0,0.00660147253995 +1470066252089822931,0.0,-0.00100785181926,0.0,0.0,0.0,0.0 +1470066252170768687,0.0,-0.000841936330064,0.0,0.0,0.0,0.00305307094177 +1470066252247603778,0.0,0.0,0.0,0.0,0.0,0.0100845974819 +1470066252321372615,0.0,0.0,0.0,0.0,0.0,0.010009737817 +1470066252395007480,0.0,0.0,0.0,0.0,0.0,0.0074059679049 +1470066252473780722,0.0,0.0,0.0,0.0,0.0,0.00751216427051 +1470066252555615608,0.006,0.0,0.0,0.0,0.0,0.0 +1470066252635184215,0.006,0.0,0.0,0.0,0.0,0.0 +1470066252713431889,0.006,0.0,0.0,0.0,0.0,0.0 +1470066252790037025,0.0,0.0,0.0,0.0,0.0,0.00701820316039 +1470066252863512129,0.006,0.0,0.0,0.0,0.0,0.0 +1470066252936627506,0.0,-0.000825485820635,0.0,0.0,0.0,0.00683185707871 +1470066253017178863,0.0,-0.00101262056337,0.0,0.0,0.0,0.00569730417973 +1470066253093077582,0.0,-0.00109448270009,0.0,0.0,0.0,0.0 +1470066253172933099,0.0,-0.00117130228387,0.0,0.0,0.0,0.0 +1470066253244318635,0.0,-0.00135676809655,0.0,0.0,0.0,0.0 +1470066253316516019,0.0,-0.00143662937985,0.0,0.0,0.0,0.0 +1470066253392048779,0.0,-0.00159888477133,0.0,0.0,0.0,0.0 +1470066253470651088,0.0,-0.00181491100298,0.0,0.0,0.0,0.0 +1470066253548050811,0.0,-0.00205116891371,0.0,0.0,0.0,0.0 +1470066253623076061,0.0,-0.00208446667598,0.0,0.0,0.0,-0.00310918904353 +1470066253698898309,0.0,-0.00210529104875,0.0,0.0,0.0,-0.00505944875045 +1470066253772331180,0.0,-0.00209172950195,0.0,0.0,0.0,-0.00455567860522 +1470066253845680412,0.0,-0.00191981257008,0.0,0.0,0.0,-0.00485462939067 +1470066253918509737,0.0,-0.00182296284543,0.0,0.0,0.0,-0.0064383778555 +1470066253992900008,0.0,-0.00174080492066,0.0,0.0,0.0,-0.00364748648803 +1470066254070909633,0.0,-0.00166388214634,0.0,0.0,0.0,-0.00568674811973 +1470066254145962835,0.0,-0.0016244238715,0.0,0.0,0.0,-0.00539401582902 +1470066254219337709,0.0,-0.00155488462256,0.0,0.0,0.0,-0.00489750649158 +1470066254292331885,0.0,-0.00149215706693,0.0,0.0,0.0,-0.00515245627093 +1470066254371626560,0.0,-0.00141967893647,0.0,0.0,0.0,-0.00552679355882 +1470066254444038042,0.0,-0.00120772519217,0.0,0.0,0.0,-0.00538308982814 +1470066254521535890,0.0,-0.00112558738397,0.0,0.0,0.0,-0.00425881583093 +1470066254596673471,0.0,-0.00108240009354,0.0,0.0,0.0,-0.00380836481828 +1470066254671977350,0.0,-0.0010015232961,0.0,0.0,0.0,-0.00295510241773 +1470066254744806051,0.0,-0.000870665768846,0.0,0.0,0.0,0.0 +1470066254823177817,0.006,0.0,0.0,0.0,0.0,0.0 +1470066254901918903,0.0,0.0,0.0,0.0,0.0,-0.00327868887363 +1470066254974562764,0.0,0.0,0.0,0.0,0.0,-0.00311820046325 +1470066255052558146,0.006,0.0,0.0,0.0,0.0,0.0 +1470066255127293060,0.006,0.0,0.0,0.0,0.0,0.0 +1470066255201832114,0.006,0.0,0.0,0.0,0.0,0.0 +1470066255275789408,0.006,0.0,0.0,0.0,0.0,0.0 +1470066255355648141,0.006,0.0,0.0,0.0,0.0,0.0 +1470066255430571214,0.006,0.0,0.0,0.0,0.0,0.0 +1470066255507552955,0.0,0.0,0.0,0.0,0.0,0.00473002936577 +1470066255587287828,0.006,0.0,0.0,0.0,0.0,0.0 +1470066255662417818,0.006,0.0,0.0,0.0,0.0,0.0 +1470066255739644029,0.0,0.0,0.0,0.0,0.0,0.00438969069188 +1470066255813053959,0.0,0.00124055421843,0.0,0.0,0.0,0.00343470917279 +1470066255885442293,0.0,0.00142980548485,0.0,0.0,0.0,0.0 +1470066255958221144,0.0,0.00158507148667,0.0,0.0,0.0,0.0 +1470066256031672851,0.0,0.00177820580943,0.0,0.0,0.0,0.00440456186961 +1470066256116043213,0.0,0.00183311342193,0.0,0.0,0.0,0.0 +1470066256186806108,0.0,0.00184313482537,0.0,0.0,0.0,0.00360859992626 +1470066256265240388,0.0,0.00189104988171,0.0,0.0,0.0,0.0032571321046 +1470066256343653682,0.0,0.00198063510402,0.0,0.0,0.0,0.00458497726778 +1470066256418276246,0.0,0.00209015370278,0.0,0.0,0.0,0.00666920115514 +1470066256498445012,0.0,0.00214385637014,0.0,0.0,0.0,0.0 +1470066256575235692,0.0,0.00212525543688,0.0,0.0,0.0,0.0 +1470066256650969236,0.0,0.00214710957302,0.0,0.0,0.0,0.0 +1470066256728088930,0.0,0.00205823783694,0.0,0.0,0.0,0.00969474220736 +1470066256803832614,0.0,0.00194745003177,0.0,0.0,0.0,0.0 +1470066256878782552,0.0,0.0018997277592,0.0,0.0,0.0,0.00567120330734 +1470066256953172697,0.0,0.00185837815447,0.0,0.0,0.0,0.00975722722486 +1470066257032035870,0.0,0.0017011545126,0.0,0.0,0.0,0.00477831180407 +1470066257110928112,0.0,0.001615986367,0.0,0.0,0.0,0.0045321385936 +1470066257185426680,0.0,0.00152401341988,0.0,0.0,0.0,0.0 +1470066257265223723,0.0,0.00141653171672,0.0,0.0,0.0,0.00553777709776 +1470066257346654261,0.0,0.00132002434625,0.0,0.0,0.0,0.0 +1470066257425214935,0.0,0.00114545538022,0.0,0.0,0.0,0.0 +1470066257507188924,0.0,0.00107717825963,0.0,0.0,0.0,0.00707560017144 +1470066257584370366,0.0,0.000979980220334,0.0,0.0,0.0,0.0 +1470066257659396994,0.006,0.0,0.0,0.0,0.0,0.0 +1470066257733323806,0.006,0.0,0.0,0.0,0.0,0.0 +1470066257811120284,0.0,0.0,0.0,0.0,0.0,0.00834546125507 +1470066257896809151,0.0,0.0,0.0,0.0,0.0,0.00493069323584 +1470066257973560430,0.006,0.0,0.0,0.0,0.0,0.0 +1470066258051769624,0.0,0.0,0.0,0.0,0.0,0.00722219503964 +1470066258131910465,0.006,0.0,0.0,0.0,0.0,0.0 +1470066258204379944,0.006,0.0,0.0,0.0,0.0,0.0 +1470066258282338157,0.006,0.0,0.0,0.0,0.0,0.0 +1470066258366971178,0.006,0.0,0.0,0.0,0.0,0.0 +1470066258446201349,0.006,0.0,0.0,0.0,0.0,0.0 +1470066258521947680,0.0,0.0,0.0,0.0,0.0,0.00328598516314 +1470066258598714315,0.006,0.0,0.0,0.0,0.0,0.0 +1470066258676838188,0.0,-0.00083641992019,0.0,0.0,0.0,0.0 +1470066258751021462,0.0,-0.000965494896038,0.0,0.0,0.0,0.00288462470648 +1470066258824284406,0.0,-0.00111709856497,0.0,0.0,0.0,0.0 +1470066258899060336,0.0,-0.0012728536974,0.0,0.0,0.0,-0.00452672824026 +1470066258978118557,0.0,-0.00155366719769,0.0,0.0,0.0,-0.00285896606091 +1470066259052532696,0.0,-0.0016638046603,0.0,0.0,0.0,-0.00403997812213 +1470066259125462147,0.0,-0.00176389874028,0.0,0.0,0.0,0.0 +1470066259198381948,0.0,-0.00180410840617,0.0,0.0,0.0,0.0 +1470066259274895794,0.0,-0.00184159004198,0.0,0.0,0.0,0.00677155507398 +1470066259355363466,0.0,-0.00186974988387,0.0,0.0,0.0,0.00372491519155 +1470066259429520318,0.0,-0.00196340070175,0.0,0.0,0.0,0.0 +1470066259509434600,0.0,-0.00202254043029,0.0,0.0,0.0,0.00485558757082 +1470066259585275440,0.0,-0.00204605036484,0.0,0.0,0.0,0.0 +1470066259664337933,0.0,-0.0019853400539,0.0,0.0,0.0,0.0 +1470066259741779864,0.0,-0.00194832147167,0.0,0.0,0.0,0.0 +1470066259816921672,0.0,-0.00199625440942,0.0,0.0,0.0,0.0031801317307 +1470066259891787868,0.0,-0.00196463302778,0.0,0.0,0.0,0.0 +1470066259971162103,0.0,-0.00189220965908,0.0,0.0,0.0,0.0 +1470066260048182292,0.0,-0.0018317772548,0.0,0.0,0.0,0.0 +1470066260120540630,0.0,-0.00180652872728,0.0,0.0,0.0,0.0 +1470066260193607408,0.0,-0.00176790640758,0.0,0.0,0.0,0.00412108217949 +1470066260267100833,0.0,-0.00174545780824,0.0,0.0,0.0,0.0 +1470066260342360138,0.0,-0.00170788043247,0.0,0.0,0.0,0.0 +1470066260419521037,0.0,-0.0016678905587,0.0,0.0,0.0,0.0 +1470066260493104961,0.0,-0.00164237120257,0.0,0.0,0.0,0.0 +1470066260564861215,0.0,-0.00161047712968,0.0,0.0,0.0,0.0 +1470066260638873640,0.0,-0.00154623263584,0.0,0.0,0.0,0.0 +1470066260716114391,0.0,-0.00149903730558,0.0,0.0,0.0,0.0 +1470066260793246794,0.0,-0.00145256319152,0.0,0.0,0.0,0.0 +1470066260868558062,0.0,-0.0014077155392,0.0,0.0,0.0,0.0 +1470066260949947706,0.0,-0.00136964381741,0.0,0.0,0.0,0.00389277184389 +1470066261036608790,0.0,-0.00133341425167,0.0,0.0,0.0,0.00326277181028 +1470066261115799329,0.0,-0.00130143077181,0.0,0.0,0.0,0.0 +1470066261189790122,0.0,-0.00125543871032,0.0,0.0,0.0,0.0 +1470066261263796723,0.0,-0.00120095186935,0.0,0.0,0.0,0.0 +1470066261343451125,0.0,-0.0011653149973,0.0,0.0,0.0,0.00387052643186 +1470066261420679971,0.0,-0.00109950476394,0.0,0.0,0.0,0.0 +1470066261495868277,0.0,-0.00106336311506,0.0,0.0,0.0,0.0 +1470066261584358100,0.0,-0.00102805071579,0.0,0.0,0.0,0.0 +1470066261667916725,0.0,-0.000971128652556,0.0,0.0,0.0,0.00534157277347 +1470066261747323572,0.0,-0.000944252918227,0.0,0.0,0.0,0.00731224993984 +1470066261824011116,0.0,-0.00091873952256,0.0,0.0,0.0,0.0 +1470066261899148969,0.0,-0.000881564478143,0.0,0.0,0.0,0.0 +1470066261974040246,0.0,-0.000839415798648,0.0,0.0,0.0,0.0 +1470066262051370018,0.0,-0.000840689102872,0.0,0.0,0.0,0.0 +1470066262126414066,0.0,-0.000833644951447,0.0,0.0,0.0,0.0 +1470066262199225740,0.0,-0.000823542336686,0.0,0.0,0.0,0.0 +1470066262271031103,0.0,0.0,0.0,0.0,0.0,0.00293660223015 +1470066262343427922,0.006,0.0,0.0,0.0,0.0,0.0 +1470066262421274562,0.006,0.0,0.0,0.0,0.0,0.0 +1470066262500663865,0.006,0.0,0.0,0.0,0.0,0.0 +1470066262579773336,0.006,0.0,0.0,0.0,0.0,0.0 +1470066262657233359,0.006,0.0,0.0,0.0,0.0,0.0 +1470066262735426546,0.006,0.0,0.0,0.0,0.0,0.0 +1470066262810647368,0.006,0.0,0.0,0.0,0.0,0.0 +1470066262883700878,0.006,0.0,0.0,0.0,0.0,0.0 +1470066262956217740,0.006,0.0,0.0,0.0,0.0,0.0 +1470066263032904957,0.006,0.0,0.0,0.0,0.0,0.0 +1470066263109410519,0.006,0.0,0.0,0.0,0.0,0.0 +1470066263183533569,0.0,0.0,0.0,0.0,0.0,0.0074267240001 +1470066263260781718,0.006,0.0,0.0,0.0,0.0,0.0 +1470066263344255891,0.0,0.0,0.0,0.0,0.0,0.00666725209108 +1470066263422753385,0.006,0.0,0.0,0.0,0.0,0.0 +1470066263502521527,0.006,0.0,0.0,0.0,0.0,0.0 +1470066263581097698,0.006,0.0,0.0,0.0,0.0,0.0 +1470066263655627847,0.006,0.0,0.0,0.0,0.0,0.0 +1470066263732790694,0.0,0.0,0.0,0.0,0.0,-0.00402568172186 +1470066263806272188,0.0,0.0,0.0,0.0,0.0,-0.00559992192217 +1470066263879366997,0.006,0.0,0.0,0.0,0.0,0.0 +1470066263966142102,0.0,0.0,0.0,0.0,0.0,0.00495909960358 +1470066264046754364,0.006,0.0,0.0,0.0,0.0,0.0 +1470066264125650522,0.006,0.0,0.0,0.0,0.0,0.0 +1470066264200532442,0.006,0.0,0.0,0.0,0.0,0.0 +1470066264274783375,0.0,0.0,0.0,0.0,0.0,0.00479884907264 +1470066264347914613,0.006,0.0,0.0,0.0,0.0,0.0 +1470066264429105536,0.0,0.0,0.0,0.0,0.0,-0.00375292616299 +1470066264518128674,0.006,0.0,0.0,0.0,0.0,0.0 +1470066264596413399,0.0,0.0,0.0,0.0,0.0,0.00808332719825 +1470066264673387155,0.0,0.0,0.0,0.0,0.0,0.00811505060473 +1470066264747441418,0.0,0.0,0.0,0.0,0.0,0.00642893432728 +1470066264823099390,0.006,0.0,0.0,0.0,0.0,0.0 +1470066264897477775,0.006,0.0,0.0,0.0,0.0,0.0 +1470066264968825297,0.006,0.0,0.0,0.0,0.0,0.0 +1470066265043914096,0.006,0.0,0.0,0.0,0.0,0.0 +1470066265121997764,0.006,0.0,0.0,0.0,0.0,0.0 +1470066265202407052,0.006,0.0,0.0,0.0,0.0,0.0 +1470066265279625204,0.006,0.0,0.0,0.0,0.0,0.0 +1470066265355405835,0.0,0.0,0.0,0.0,0.0,0.00683001021647 +1470066265432594386,0.0,0.000833486718373,0.0,0.0,0.0,0.00877369655729 +1470066265509843184,0.0,0.000826162611382,0.0,0.0,0.0,0.00642800831986 +1470066265587763201,0.0,0.0,0.0,0.0,0.0,0.00308173869124 +1470066265663913688,0.0,0.0,0.0,0.0,0.0,0.00424613515899 +1470066265736707003,0.006,0.0,0.0,0.0,0.0,0.0 +1470066265810462690,0.0,0.0,0.0,0.0,0.0,0.00389671817907 +1470066265883865327,0.0,0.0,0.0,0.0,0.0,-0.003932221918 +1470066265960459811,0.0,0.0,0.0,0.0,0.0,-0.00571347222668 +1470066266034995196,0.0,0.0,0.0,0.0,0.0,-0.00365125094399 +1470066266122608680,0.006,0.0,0.0,0.0,0.0,0.0 +1470066266195025639,0.006,0.0,0.0,0.0,0.0,0.0 +1470066266270841869,0.006,0.0,0.0,0.0,0.0,0.0 +1470066266348366338,0.006,0.0,0.0,0.0,0.0,0.0 +1470066266434128225,0.006,0.0,0.0,0.0,0.0,0.0 +1470066266514247883,0.0,0.0,0.0,0.0,0.0,0.00675168101594 +1470066266590568793,0.0,0.0,0.0,0.0,0.0,0.00389570483899 +1470066266665477774,0.0,0.0,0.0,0.0,0.0,0.00318018395564 +1470066266745055071,0.006,0.0,0.0,0.0,0.0,0.0 +1470066266827324682,0.006,0.0,0.0,0.0,0.0,0.0 +1470066266904145891,0.006,0.0,0.0,0.0,0.0,0.0 +1470066266991120669,0.006,0.0,0.0,0.0,0.0,0.0 +1470066267070498424,0.0,0.0,0.0,0.0,0.0,-0.0040789684677 +1470066267150796383,0.0,0.0,0.0,0.0,0.0,-0.00522790553539 +1470066267224817231,0.0,0.0,0.0,0.0,0.0,-0.00384948401128 +1470066267300541727,0.006,0.0,0.0,0.0,0.0,0.0 +1470066267379012492,0.006,0.0,0.0,0.0,0.0,0.0 +1470066267455305145,0.006,0.0,0.0,0.0,0.0,0.0 +1470066267528350121,0.0,0.0,0.0,0.0,0.0,0.00329587676237 +1470066267607006540,0.006,0.0,0.0,0.0,0.0,0.0 +1470066267686675227,0.006,0.0,0.0,0.0,0.0,0.0 +1470066267764939742,0.0,0.0,0.0,0.0,0.0,-0.00347723700289 +1470066267839748267,0.0,0.0,0.0,0.0,0.0,-0.00418492497927 +1470066267933662367,0.0,0.0,0.0,0.0,0.0,-0.00383306741422 +1470066268010321705,0.006,0.0,0.0,0.0,0.0,0.0 +1470066268089174796,0.006,0.0,0.0,0.0,0.0,0.0 +1470066268165490118,0.006,0.0,0.0,0.0,0.0,0.0 +1470066268241851830,0.006,0.0,0.0,0.0,0.0,0.0 +1470066268320604541,0.006,0.0,0.0,0.0,0.0,0.0 +1470066268399216912,0.006,0.0,0.0,0.0,0.0,0.0 +1470066268478754876,0.006,0.0,0.0,0.0,0.0,0.0 +1470066268556533980,0.0,0.0,0.0,0.0,0.0,-0.00527633788782 +1470066268633027558,0.0,0.0,0.0,0.0,0.0,-0.00462498608335 +1470066268711776483,0.006,0.0,0.0,0.0,0.0,0.0 +1470066268788099561,0.0,0.0,0.0,0.0,0.0,0.00470788371124 +1470066268865579161,0.0,0.0,0.0,0.0,0.0,0.0085612526414 +1470066268942056127,0.0,0.0,0.0,0.0,0.0,0.00727068722453 +1470066269013465507,0.0,0.0,0.0,0.0,0.0,0.00564599446824 +1470066269086313783,0.006,0.0,0.0,0.0,0.0,0.0 +1470066269163849482,0.006,0.0,0.0,0.0,0.0,0.0 +1470066269240894018,0.006,0.0,0.0,0.0,0.0,0.0 +1470066269315049538,0.006,0.0,0.0,0.0,0.0,0.0 +1470066269388755961,0.006,0.0,0.0,0.0,0.0,0.0 +1470066269465406893,0.006,0.0,0.0,0.0,0.0,0.0 +1470066269543787658,0.0,0.0,0.0,0.0,0.0,0.00344302053654 +1470066269616482966,0.006,0.0,0.0,0.0,0.0,0.0 +1470066269696709280,0.006,0.0,0.0,0.0,0.0,0.0 +1470066269772531633,0.006,0.0,0.0,0.0,0.0,0.0 +1470066269851184100,0.0,0.0,0.0,0.0,0.0,0.00321807070758 +1470066269924477317,0.006,0.0,0.0,0.0,0.0,0.0 +1470066269999597298,0.006,0.0,0.0,0.0,0.0,0.0 +1470066270079336235,0.006,0.0,0.0,0.0,0.0,0.0 +1470066270155340498,0.0,-0.00083428868161,0.0,0.0,0.0,-0.00412573772476 +1470066270231279789,0.0,-0.000892242277725,0.0,0.0,0.0,-0.00512949605481 +1470066270307273812,0.0,-0.00096697234617,0.0,0.0,0.0,0.0 +1470066270381847440,0.0,-0.000998246903284,0.0,0.0,0.0,0.00304726964193 +1470066270468363025,0.0,-0.000990930805667,0.0,0.0,0.0,0.0 +1470066270546065699,0.0,-0.00100182206438,0.0,0.0,0.0,0.0 +1470066270621406488,0.0,-0.00103301019476,0.0,0.0,0.0,0.0 +1470066270697373370,0.0,-0.00104738646255,0.0,0.0,0.0,0.0 +1470066270775149475,0.0,-0.00105462097631,0.0,0.0,0.0,-0.00389851749037 +1470066270851801254,0.0,-0.00123484903084,0.0,0.0,0.0,0.0 +1470066270926409463,0.0,-0.00132996686803,0.0,0.0,0.0,0.0 +1470066271003112778,0.0,-0.00137081318603,0.0,0.0,0.0,0.0 +1470066271077378251,0.0,-0.00120967016624,0.0,0.0,0.0,0.0 +1470066271151501817,0.0,-0.000925633544786,0.0,0.0,0.0,0.0 +1470066271223723029,0.006,0.0,0.0,0.0,0.0,0.0 +1470066271300857749,0.006,0.0,0.0,0.0,0.0,0.0 +1470066271377243482,0.006,0.0,0.0,0.0,0.0,0.0 +1470066271450278360,0.006,0.0,0.0,0.0,0.0,0.0 +1470066271526148455,0.006,0.0,0.0,0.0,0.0,0.0 +1470066271604222628,0.006,0.0,0.0,0.0,0.0,0.0 +1470066271680825079,0.006,0.0,0.0,0.0,0.0,0.0 +1470066271754033199,0.0,0.0,0.0,0.0,0.0,0.00323770160952 +1470066271829535594,0.006,0.0,0.0,0.0,0.0,0.0 +1470066271912841566,0.006,0.0,0.0,0.0,0.0,0.0 +1470066271987884095,0.006,0.0,0.0,0.0,0.0,0.0 +1470066272063412729,0.0,0.0,0.0,0.0,0.0,0.00324888189754 +1470066272141352864,0.006,0.0,0.0,0.0,0.0,0.0 +1470066272217025267,0.006,0.0,0.0,0.0,0.0,0.0 +1470066272291406833,0.006,0.0,0.0,0.0,0.0,0.0 +1470066272375121740,0.0,0.0,0.0,0.0,0.0,-0.00286329146295 +1470066272452556352,0.0,0.0,0.0,0.0,0.0,-0.00440350660462 +1470066272527158815,0.0,0.0,0.0,0.0,0.0,-0.00373132518135 +1470066272602007603,0.006,0.0,0.0,0.0,0.0,0.0 +1470066272678533509,0.006,0.0,0.0,0.0,0.0,0.0 +1470066272755663706,0.0,0.0,0.0,0.0,0.0,0.00416223855904 +1470066272828391165,0.0,0.0,0.0,0.0,0.0,0.00315400402081 +1470066272902579017,0.0,0.0,0.0,0.0,0.0,-0.00301613621561 +1470066272988917970,0.0,0.0,0.0,0.0,0.0,-0.00401859611252 +1470066273066060082,0.0,0.0,0.0,0.0,0.0,-0.00521423066093 +1470066273139555215,0.0,0.0,0.0,0.0,0.0,-0.00558720241243 +1470066273218968703,0.0,0.0,0.0,0.0,0.0,0.00608342695897 +1470066273297704696,0.0,0.0,0.0,0.0,0.0,0.00401400096457 +1470066273374186541,0.006,0.0,0.0,0.0,0.0,0.0 +1470066273450389012,0.006,0.0,0.0,0.0,0.0,0.0 +1470066273526577137,0.0,0.0,0.0,0.0,0.0,0.00405898140109 +1470066273604914117,0.006,0.0,0.0,0.0,0.0,0.0 +1470066273681634961,0.006,0.0,0.0,0.0,0.0,0.0 +1470066273761796806,0.006,0.0,0.0,0.0,0.0,0.0 +1470066273837847638,0.006,0.0,0.0,0.0,0.0,0.0 +1470066273911717555,0.006,0.0,0.0,0.0,0.0,0.0 +1470066273993375206,0.006,0.0,0.0,0.0,0.0,0.0 +1470066274071524078,0.006,0.0,0.0,0.0,0.0,0.0 +1470066274160796752,0.0,0.0,0.0,0.0,0.0,0.00355979063411 +1470066274235081845,0.0,0.0,0.0,0.0,0.0,0.00497414931939 +1470066274314675602,0.006,0.0,0.0,0.0,0.0,0.0 +1470066274388985453,0.0,-0.000849162275656,0.0,0.0,0.0,0.00452339769473 +1470066274464106447,0.0,-0.00108672739075,0.0,0.0,0.0,0.0 +1470066274543271888,0.0,-0.00130970873938,0.0,0.0,0.0,0.00671285491035 +1470066274615860941,0.0,-0.00141135850058,0.0,0.0,0.0,-0.00310059070323 +1470066274700314140,0.0,-0.00143434018896,0.0,0.0,0.0,-0.00461231906552 +1470066274774992164,0.0,-0.00143129401909,0.0,0.0,0.0,-0.00643575057435 +1470066274854576477,0.0,-0.00142343812691,0.0,0.0,0.0,-0.0053779269436 +1470066274931740197,0.0,-0.00145807475851,0.0,0.0,0.0,0.0 +1470066275012042837,0.0,-0.00147421755896,0.0,0.0,0.0,0.0 +1470066275087482489,0.0,-0.00146646224962,0.0,0.0,0.0,0.0 +1470066275166404467,0.0,-0.00144877233611,0.0,0.0,0.0,0.0 +1470066275241738650,0.0,-0.00146297835813,0.0,0.0,0.0,0.0 +1470066275324426017,0.0,-0.00152682163821,0.0,0.0,0.0,-0.00302608947032 +1470066275400058335,0.0,-0.00153931998716,0.0,0.0,0.0,0.0 +1470066275477487574,0.0,-0.00153390602277,0.0,0.0,0.0,0.0 +1470066275556567185,0.0,-0.00142350294696,0.0,0.0,0.0,0.0 +1470066275635171551,0.0,-0.00135215469704,0.0,0.0,0.0,0.0 +1470066275711231902,0.0,-0.00131119289504,0.0,0.0,0.0,0.0 +1470066275785451779,0.0,-0.00123981745051,0.0,0.0,0.0,0.0 +1470066275863755479,0.0,-0.00120072239147,0.0,0.0,0.0,0.0 +1470066275943533793,0.0,-0.00114632309483,0.0,0.0,0.0,0.0 +1470066276023376691,0.0,-0.0010595793377,0.0,0.0,0.0,0.0 +1470066276101320694,0.0,-0.00103359283016,0.0,0.0,0.0,0.0 +1470066276179620523,0.0,-0.000992022315724,0.0,0.0,0.0,0.0 +1470066276251937320,0.0,-0.000925402204259,0.0,0.0,0.0,0.0 +1470066276331153184,0.0,-0.00090274647878,0.0,0.0,0.0,0.0 +1470066276404048517,0.0,-0.00086170942591,0.0,0.0,0.0,0.0 +1470066276481691928,0.006,0.0,0.0,0.0,0.0,0.0 +1470066276557015432,0.006,0.0,0.0,0.0,0.0,0.0 +1470066276638302347,0.006,0.0,0.0,0.0,0.0,0.0 +1470066276716062960,0.006,0.0,0.0,0.0,0.0,0.0 +1470066276793689456,0.006,0.0,0.0,0.0,0.0,0.0 +1470066276872216879,0.006,0.0,0.0,0.0,0.0,0.0 +1470066276944945373,0.006,0.0,0.0,0.0,0.0,0.0 +1470066277016774171,0.006,0.0,0.0,0.0,0.0,0.0 +1470066277104486696,0.006,0.0,0.0,0.0,0.0,0.0 +1470066277181158691,0.006,0.0,0.0,0.0,0.0,0.0 +1470066277256102630,0.006,0.0,0.0,0.0,0.0,0.0 +1470066277329080799,0.006,0.0,0.0,0.0,0.0,0.0 +1470066277403556015,0.006,0.0,0.0,0.0,0.0,0.0 +1470066277480561311,0.0,0.0,0.0,0.0,0.0,0.00352147715782 +1470066277557038174,0.0,0.00083497590317,0.0,0.0,0.0,0.0 +1470066277630938940,0.0,0.000888594565229,0.0,0.0,0.0,0.0 +1470066277704504531,0.0,0.00095192356898,0.0,0.0,0.0,-0.00355806260744 +1470066277782392596,0.0,0.000979227339165,0.0,0.0,0.0,-0.00449996074857 +1470066277860642700,0.0,0.000941391800777,0.0,0.0,0.0,0.0 +1470066277933852014,0.0,0.000940943275826,0.0,0.0,0.0,0.0 +1470066278014916964,0.0,0.00095042022808,0.0,0.0,0.0,0.0 +1470066278085792787,0.0,0.000965128605501,0.0,0.0,0.0,0.0 +1470066278164433087,0.0,0.000982142937617,0.0,0.0,0.0,0.0 +1470066278237655944,0.0,0.00108673400177,0.0,0.0,0.0,-0.00345233471322 +1470066278311914009,0.0,0.00117511409266,0.0,0.0,0.0,0.0 +1470066278385029782,0.0,0.00115098594619,0.0,0.0,0.0,0.0 +1470066278456547177,0.0,0.00114463637515,0.0,0.0,0.0,0.0 +1470066278543363306,0.0,0.00112978941693,0.0,0.0,0.0,0.0 +1470066278623457153,0.0,0.0010496096213,0.0,0.0,0.0,0.0 +1470066278702623990,0.0,0.00102039012058,0.0,0.0,0.0,0.0 +1470066278782357215,0.0,0.00102639472975,0.0,0.0,0.0,0.0 +1470066278859798630,0.0,0.000992734682993,0.0,0.0,0.0,0.0 +1470066278937050980,0.0,0.000984663282768,0.0,0.0,0.0,0.0 +1470066279015503455,0.0,0.000970172276036,0.0,0.0,0.0,0.0 +1470066279088220004,0.0,0.000930166197257,0.0,0.0,0.0,0.0 +1470066279162800295,0.0,0.000922087346451,0.0,0.0,0.0,0.0 +1470066279238935458,0.0,0.000881570530371,0.0,0.0,0.0,0.0 +1470066279318482918,0.0,0.000848810513751,0.0,0.0,0.0,0.0 +1470066279392312854,0.0,0.000825642002062,0.0,0.0,0.0,0.0 +1470066279466818893,0.006,0.0,0.0,0.0,0.0,0.0 +1470066279545063302,0.006,0.0,0.0,0.0,0.0,0.0 +1470066279619311982,0.006,0.0,0.0,0.0,0.0,0.0 +1470066279692261327,0.006,0.0,0.0,0.0,0.0,0.0 +1470066279765038148,0.006,0.0,0.0,0.0,0.0,0.0 +1470066279843976806,0.006,0.0,0.0,0.0,0.0,0.0 +1470066279919079427,0.006,0.0,0.0,0.0,0.0,0.0 +1470066279992965767,0.006,0.0,0.0,0.0,0.0,0.0 +1470066280068315502,0.006,0.0,0.0,0.0,0.0,0.0 +1470066280148226424,0.006,0.0,0.0,0.0,0.0,0.0 +1470066280221399189,0.0,0.0,0.0,0.0,0.0,-0.0039440914241 +1470066280302407631,0.006,0.0,0.0,0.0,0.0,0.0 +1470066280378765094,0.006,0.0,0.0,0.0,0.0,0.0 +1470066280461446641,0.006,0.0,0.0,0.0,0.0,0.0 +1470066280532992979,0.006,0.0,0.0,0.0,0.0,0.0 +1470066280607280583,0.006,0.0,0.0,0.0,0.0,0.0 +1470066280686322851,0.0,0.0,0.0,0.0,0.0,-0.00446596385198 +1470066280763295977,0.0,0.0,0.0,0.0,0.0,-0.00376028933311 +1470066280837021392,0.006,0.0,0.0,0.0,0.0,0.0 +1470066280921689830,0.006,0.0,0.0,0.0,0.0,0.0 +1470066280996916151,0.006,0.0,0.0,0.0,0.0,0.0 +1470066281069923504,0.006,0.0,0.0,0.0,0.0,0.0 +1470066281146465257,0.0,0.0,0.0,0.0,0.0,-0.004473378313 +1470066281217216477,0.006,0.0,0.0,0.0,0.0,0.0 +1470066281291239826,0.006,0.0,0.0,0.0,0.0,0.0 +1470066281365467584,0.006,0.0,0.0,0.0,0.0,0.0 +1470066281447353201,0.006,0.0,0.0,0.0,0.0,0.0 +1470066281523901488,0.0,0.0,0.0,0.0,0.0,-0.00281121323987 +1470066281598751452,0.0,0.0,0.0,0.0,0.0,-0.0030064366262 +1470066281671992134,0.006,0.0,0.0,0.0,0.0,0.0 +1470066281749304088,0.006,0.0,0.0,0.0,0.0,0.0 +1470066281825180156,0.006,0.0,0.0,0.0,0.0,0.0 +1470066281899955489,0.006,0.0,0.0,0.0,0.0,0.0 +1470066281973039093,0.0,0.0,0.0,0.0,0.0,-0.00391305476699 +1470066282044259004,0.006,0.0,0.0,0.0,0.0,0.0 +1470066282120514410,0.006,0.0,0.0,0.0,0.0,0.0 +1470066282195246868,0.006,0.0,0.0,0.0,0.0,0.0 +1470066282271532926,0.006,0.0,0.0,0.0,0.0,0.0 +1470066282344476020,0.006,0.0,0.0,0.0,0.0,0.0 +1470066282418919686,0.006,0.0,0.0,0.0,0.0,0.0 +1470066282497583803,0.0,0.0,0.0,0.0,0.0,-0.00318652099858 +1470066282571417451,0.006,0.0,0.0,0.0,0.0,0.0 +1470066282644533338,0.006,0.0,0.0,0.0,0.0,0.0 +1470066282721905189,0.006,0.0,0.0,0.0,0.0,0.0 +1470066282796762820,0.006,0.0,0.0,0.0,0.0,0.0 +1470066282872509846,0.006,0.0,0.0,0.0,0.0,0.0 +1470066282944590185,0.006,0.0,0.0,0.0,0.0,0.0 +1470066283016912302,0.006,0.0,0.0,0.0,0.0,0.0 +1470066283090540082,0.006,0.0,0.0,0.0,0.0,0.0 +1470066283166793597,0.0,0.0,0.0,0.0,0.0,-0.0028283844162 +1470066283243763009,0.006,0.0,0.0,0.0,0.0,0.0 +1470066283321156610,0.006,0.0,0.0,0.0,0.0,0.0 +1470066283392632225,0.006,0.0,0.0,0.0,0.0,0.0 +1470066283470394422,0.006,0.0,0.0,0.0,0.0,0.0 +1470066283543429572,0.006,0.0,0.0,0.0,0.0,0.0 +1470066283616255045,0.0,0.0,0.0,0.0,0.0,-0.00309289139304 +1470066283690157810,0.0,0.0,0.0,0.0,0.0,-0.00338709401229 +1470066283763101421,0.006,0.0,0.0,0.0,0.0,0.0 +1470066283836736192,0.006,0.0,0.0,0.0,0.0,0.0 +1470066283914004472,0.006,0.0,0.0,0.0,0.0,0.0 +1470066283989185182,0.0,0.0,0.0,0.0,0.0,-0.00297297233945 +1470066284069271310,0.006,0.0,0.0,0.0,0.0,0.0 +1470066284141134583,0.006,0.0,0.0,0.0,0.0,0.0 +1470066284214214775,0.006,0.0,0.0,0.0,0.0,0.0 +1470066284290135996,0.006,0.0,0.0,0.0,0.0,0.0 +1470066284363757348,0.0,0.0,0.0,0.0,0.0,-0.00317368717465 +1470066284440560347,0.006,0.0,0.0,0.0,0.0,0.0 +1470066284512571148,0.006,0.0,0.0,0.0,0.0,0.0 +1470066284586284703,0.006,0.0,0.0,0.0,0.0,0.0 +1470066284663168008,0.006,0.0,0.0,0.0,0.0,0.0 +1470066284734039281,0.0,0.0,0.0,0.0,0.0,-0.00357729961651 +1470066284814923396,0.006,0.0,0.0,0.0,0.0,0.0 +1470066284889610231,0.006,0.0,0.0,0.0,0.0,0.0 +1470066284960710553,0.006,0.0,0.0,0.0,0.0,0.0 +1470066285034353190,0.006,0.0,0.0,0.0,0.0,0.0 +1470066285108406418,0.006,0.0,0.0,0.0,0.0,0.0 +1470066285186609417,0.0,0.0,0.0,0.0,0.0,-0.00283459548928 +1470066285264984496,0.006,0.0,0.0,0.0,0.0,0.0 +1470066285339441456,0.006,0.0,0.0,0.0,0.0,0.0 +1470066285413770671,0.006,0.0,0.0,0.0,0.0,0.0 +1470066285490221735,0.006,0.0,0.0,0.0,0.0,0.0 +1470066285568581225,0.006,0.0,0.0,0.0,0.0,0.0 +1470066285643554735,0.006,0.0,0.0,0.0,0.0,0.0 +1470066285717393755,0.006,0.0,0.0,0.0,0.0,0.0 +1470066285794800534,0.006,0.0,0.0,0.0,0.0,0.0 +1470066285872839600,0.006,0.0,0.0,0.0,0.0,0.0 +1470066285948367881,0.006,0.0,0.0,0.0,0.0,0.0 +1470066286029120082,0.006,0.0,0.0,0.0,0.0,0.0 +1470066286105175608,0.006,0.0,0.0,0.0,0.0,0.0 +1470066286182455558,0.006,0.0,0.0,0.0,0.0,0.0 +1470066286255871266,0.006,0.0,0.0,0.0,0.0,0.0 +1470066286332286535,0.006,0.0,0.0,0.0,0.0,0.0 +1470066286409260220,0.0,0.0,0.0,0.0,0.0,0.00297317006188 +1470066286482605185,0.006,0.0,0.0,0.0,0.0,0.0 +1470066286561973164,0.006,0.0,0.0,0.0,0.0,0.0 +1470066286638066948,0.006,0.0,0.0,0.0,0.0,0.0 +1470066286712141324,0.006,0.0,0.0,0.0,0.0,0.0 +1470066286783890917,0.006,0.0,0.0,0.0,0.0,0.0 +1470066286863144303,0.006,0.0,0.0,0.0,0.0,0.0 +1470066286936447341,0.006,0.0,0.0,0.0,0.0,0.0 +1470066287010140169,0.006,0.0,0.0,0.0,0.0,0.0 +1470066287084020027,0.006,0.0,0.0,0.0,0.0,0.0 +1470066287160321846,0.006,0.0,0.0,0.0,0.0,0.0 +1470066287238287287,0.006,0.0,0.0,0.0,0.0,0.0 +1470066287312722837,0.006,0.0,0.0,0.0,0.0,0.0 +1470066287384506950,0.006,0.0,0.0,0.0,0.0,0.0 +1470066287455852598,0.006,0.0,0.0,0.0,0.0,0.0 +1470066287532147269,0.006,0.0,0.0,0.0,0.0,0.0 +1470066287608624187,0.006,0.0,0.0,0.0,0.0,0.0 +1470066287686788709,0.006,0.0,0.0,0.0,0.0,0.0 +1470066287763639973,0.006,0.0,0.0,0.0,0.0,0.0 +1470066287841271557,0.006,0.0,0.0,0.0,0.0,0.0 +1470066287914329135,0.006,0.0,0.0,0.0,0.0,0.0 +1470066287985810622,0.006,0.0,0.0,0.0,0.0,0.0 +1470066288068601761,0.006,0.0,0.0,0.0,0.0,0.0 +1470066288139194289,0.006,0.0,0.0,0.0,0.0,0.0 +1470066288212354746,0.006,0.0,0.0,0.0,0.0,0.0 +1470066288287614951,0.006,0.0,0.0,0.0,0.0,0.0 +1470066288363403481,0.006,0.0,0.0,0.0,0.0,0.0 +1470066288440210284,0.006,0.0,0.0,0.0,0.0,0.0 +1470066288512701583,0.006,0.0,0.0,0.0,0.0,0.0 +1470066288585162540,0.006,0.0,0.0,0.0,0.0,0.0 +1470066288661201017,0.006,0.0,0.0,0.0,0.0,0.0 +1470066288736558802,0.006,0.0,0.0,0.0,0.0,0.0 +1470066288811554218,0.006,0.0,0.0,0.0,0.0,0.0 +1470066288884384633,0.006,0.0,0.0,0.0,0.0,0.0 +1470066288960626619,0.006,0.0,0.0,0.0,0.0,0.0 +1470066289037155863,0.006,0.0,0.0,0.0,0.0,0.0 +1470066289112984446,0.006,0.0,0.0,0.0,0.0,0.0 +1470066289184838313,0.006,0.0,0.0,0.0,0.0,0.0 +1470066289263719826,0.006,0.0,0.0,0.0,0.0,0.0 +1470066289337325932,0.006,0.0,0.0,0.0,0.0,0.0 +1470066289411229888,0.006,0.0,0.0,0.0,0.0,0.0 +1470066289484023052,0.006,0.0,0.0,0.0,0.0,0.0 +1470066289557480491,0.006,0.0,0.0,0.0,0.0,0.0 +1470066289627273618,0.006,0.0,0.0,0.0,0.0,0.0 +1470066289698713241,0.006,0.0,0.0,0.0,0.0,0.0 +1470066289773808111,0.006,0.0,0.0,0.0,0.0,0.0 +1470066289850847074,0.006,0.0,0.0,0.0,0.0,0.0 +1470066289928956523,0.006,0.0,0.0,0.0,0.0,0.0 +1470066290001121652,0.006,0.0,0.0,0.0,0.0,0.0 +1470066290074087347,0.006,0.0,0.0,0.0,0.0,0.0 +1470066290146982324,0.006,0.0,0.0,0.0,0.0,0.0 +1470066290220141884,0.006,0.0,0.0,0.0,0.0,0.0 diff --git a/MobileRobot/docking_data/Vel2.txt b/MobileRobot/docking_data/Vel2.txt index b8099c23e97702977e04b8d5ea5b27d6d4cb0900..0f4905ce08aa9c391e7e2681af5a90a63598e41f 100644 --- a/MobileRobot/docking_data/Vel2.txt +++ b/MobileRobot/docking_data/Vel2.txt @@ -1,539 +1,496 @@ %time,field.linear.x,field.linear.y,field.linear.z,field.angular.x,field.angular.y,field.angular.z -1469733891362255521,0.1,-0.16968111919,0.0,0.0,0.0,0.0369899222517 -1469733891455961396,0.1,-0.0386866750329,0.0,0.0,0.0,0.0377572663344 -1469733891534184089,0.1,-0.0384394122567,0.0,0.0,0.0,0.0367335766653 -1469733891612312414,0.1,-0.0386100513869,0.0,0.0,0.0,0.0369205175669 -1469733891690652621,0.1,-0.0386447966983,0.0,0.0,0.0,0.0373576832061 -1469733891771473053,0.1,-0.0383827548491,0.0,0.0,0.0,0.0370077293843 -1469733891846744543,0.1,-0.0386443217783,0.0,0.0,0.0,0.0380601704372 -1469733891930118209,0.1,-0.0388450873028,0.0,0.0,0.0,0.0381591485975 -1469733892006072930,0.1,-0.0387266777627,0.0,0.0,0.0,0.0405740718233 -1469733892091350092,0.1,-0.0406519091197,0.0,0.0,0.0,0.0399359158675 -1469733892168950760,0.1,-0.0406146743057,0.0,0.0,0.0,0.0415144275547 -1469733892249021560,0.1,-0.0395219103495,0.0,0.0,0.0,0.0433011119646 -1469733892325194315,0.1,-0.0363135748497,0.0,0.0,0.0,0.0334100738941 -1469733892402827788,0.1,-0.035642841994,0.0,0.0,0.0,0.0300445997878 -1469733892482583595,0.1,-0.0346657075566,0.0,0.0,0.0,0.0440509735622 -1469733892558436355,0.1,-0.0336210308597,0.0,0.0,0.0,0.0384190257885 -1469733892638435207,0.1,-0.0323405758494,0.0,0.0,0.0,0.0265566493719 -1469733892722019430,0.1,-0.0343181565726,0.0,0.0,0.0,0.0320754058837 -1469733892803002616,0.1,-0.032399505177,0.0,0.0,0.0,0.0328708256149 -1469733892883392670,0.1,-0.0311901526794,0.0,0.0,0.0,0.0374050038136 -1469733892961240611,0.1,-0.0324633831546,0.0,0.0,0.0,0.0436078154039 -1469733893039871128,0.1,-0.0310339726743,0.0,0.0,0.0,0.0368027492047 -1469733893117949695,0.1,-0.0297461347392,0.0,0.0,0.0,0.032427133938 -1469733893193174982,0.1,-0.0290984840865,0.0,0.0,0.0,0.0359979967645 -1469733893271679522,0.1,-0.0296344170311,0.0,0.0,0.0,0.034465948623 -1469733893347160818,0.1,-0.0295598033642,0.0,0.0,0.0,0.0291616582619 -1469733893420334783,0.1,-0.02699877973,0.0,0.0,0.0,0.0397810761024 -1469733893503385930,0.1,-0.0273713168581,0.0,0.0,0.0,0.0335456108867 -1469733893580678745,0.1,-0.0270269032346,0.0,0.0,0.0,0.0311182135128 -1469733893660154501,0.1,-0.0278133318844,0.0,0.0,0.0,0.0415898720985 -1469733893740195132,0.1,-0.0280279908267,0.0,0.0,0.0,0.0412394413811 -1469733893817405365,0.1,-0.0247573971869,0.0,0.0,0.0,0.0383701016961 -1469733893903414469,0.1,-0.0251985728527,0.0,0.0,0.0,0.0322177338043 -1469733893980590819,0.1,-0.0230873759768,0.0,0.0,0.0,0.0333689287302 -1469733894055120579,0.1,-0.0233235816477,0.0,0.0,0.0,0.0300706551079 -1469733894134243346,0.1,-0.02272238018,0.0,0.0,0.0,0.0308201862895 -1469733894211653545,0.1,-0.0231832608874,0.0,0.0,0.0,0.0336893250245 -1469733894286748427,0.1,-0.0212893365087,0.0,0.0,0.0,0.0333888034427 -1469733894366323562,0.1,-0.0204747408095,0.0,0.0,0.0,0.0388039847241 -1469733894440365397,0.1,-0.0217224371831,0.0,0.0,0.0,0.0273008713442 -1469733894519355655,0.1,-0.0193458585825,0.0,0.0,0.0,0.0294863056206 -1469733894594002766,0.1,-0.0188466434953,0.0,0.0,0.0,0.0348667806372 -1469733894678563988,0.1,-0.0175720057379,0.0,0.0,0.0,0.0328103029521 -1469733894755251117,0.1,-0.0171902995106,0.0,0.0,0.0,0.0337933698555 -1469733894834931157,0.1,-0.0174929434375,0.0,0.0,0.0,0.0366718462798 -1469733894912162789,0.1,-0.0164969018431,0.0,0.0,0.0,0.0328926856328 -1469733894988173288,0.1,-0.0162910555758,0.0,0.0,0.0,0.0297010119503 -1469733895063554581,0.1,-0.0149997724848,0.0,0.0,0.0,0.0396601058998 -1469733895142648852,0.1,-0.0143842129711,0.0,0.0,0.0,0.0401014584567 -1469733895217996656,0.1,-0.0141600790474,0.0,0.0,0.0,0.0365925750592 -1469733895296744849,0.1,-0.0127074522987,0.0,0.0,0.0,0.0374843678955 -1469733895389456905,0.1,-0.0125570866739,0.0,0.0,0.0,0.0227531502173 -1469733895468028532,0.1,-0.0114494583437,0.0,0.0,0.0,0.0338339442959 -1469733895543826620,0.1,-0.0114228978791,0.0,0.0,0.0,0.0302863681131 -1469733895624312668,0.1,-0.0100930550575,0.0,0.0,0.0,0.0284817032695 -1469733895701294330,0.1,-0.00855055450689,0.0,0.0,0.0,0.0323422941274 -1469733895779407632,0.1,-0.00788771145489,0.0,0.0,0.0,0.0340085879729 -1469733895853188095,0.1,-0.00690167266631,0.0,0.0,0.0,0.0324655483014 -1469733895928159066,0.1,-0.00606914932937,0.0,0.0,0.0,0.0406651083602 -1469733896009312040,0.1,-0.0035529016337,0.0,0.0,0.0,0.0367695784794 -1469733896087036056,0.1,-0.00365937968395,0.0,0.0,0.0,0.0270189058366 -1469733896163107244,0.1,-0.0018394203698,0.0,0.0,0.0,0.0293692364417 -1469733896238713224,0.1,-0.00176209329996,0.0,0.0,0.0,0.0305473515062 -1469733896316246287,0.1,-0.00225017847567,0.0,0.0,0.0,0.0301849808814 -1469733896392913928,0.1,-0.000114573663884,0.0,0.0,0.0,0.0270634723901 -1469733896469723434,0.1,-0.00103540854432,0.0,0.0,0.0,0.0416198272344 -1469733896548282363,0.1,-0.00196370282028,0.0,0.0,0.0,0.0300841856558 -1469733896623602624,0.1,0.0,0.0,0.0,0.0,0.0262834309014 -1469733896698178785,0.1,-0.00804103706803,0.0,0.0,0.0,0.0356955436594 -1469733896778381130,0.1,-0.00564617655105,0.0,0.0,0.0,0.0306162408687 -1469733896867811430,0.1,-0.00441375797357,0.0,0.0,0.0,0.0338139088939 -1469733896945453698,0.1,-0.00739205527051,0.0,0.0,0.0,0.0330985133512 -1469733897023720212,0.1,-0.00806879953546,0.0,0.0,0.0,0.0257782515668 -1469733897099536506,0.1,-0.00922856983964,0.0,0.0,0.0,0.0294038092307 -1469733897173639939,0.1,-0.0107552379551,0.0,0.0,0.0,0.0315481990343 -1469733897247893880,0.1,-0.0113573884342,0.0,0.0,0.0,0.0267864280172 -1469733897326099910,0.1,-0.0123999087203,0.0,0.0,0.0,0.0355358736333 -1469733897402613403,0.1,-0.013374214932,0.0,0.0,0.0,0.0312918558607 -1469733897476631272,0.1,-0.0120325447431,0.0,0.0,0.0,0.0321446204866 -1469733897557772524,0.1,-0.0156182296408,0.0,0.0,0.0,0.0268465917057 -1469733897634848639,0.1,-0.0163891941941,0.0,0.0,0.0,0.0297348175386 -1469733897717546449,0.1,-0.0168041274018,0.0,0.0,0.0,0.03152724412 -1469733897799550575,0.1,-0.0177929248939,0.0,0.0,0.0,0.0310369972893 -1469733897877026590,0.1,-0.0184743168483,0.0,0.0,0.0,0.0259400031497 -1469733897955200756,0.1,-0.0171003252946,0.0,0.0,0.0,0.0244593852895 -1469733898029303052,0.1,-0.019075141164,0.0,0.0,0.0,0.0266690902539 -1469733898107850260,0.1,-0.0196796722381,0.0,0.0,0.0,0.0291630544305 -1469733898188356873,0.1,-0.0204434118509,0.0,0.0,0.0,0.0299765699386 -1469733898264616706,0.1,-0.0205038236761,0.0,0.0,0.0,0.0229108803978 -1469733898344648518,0.1,-0.021014469333,0.0,0.0,0.0,0.0272672095127 -1469733898432506467,0.1,-0.0218112017784,0.0,0.0,0.0,0.0296603587847 -1469733898509837479,0.1,-0.0212285839221,0.0,0.0,0.0,0.0291291904598 -1469733898587970175,0.1,-0.0219463337742,0.0,0.0,0.0,0.027084500191 -1469733898665757820,0.1,-0.0213981623141,0.0,0.0,0.0,0.0267504492709 -1469733898744873157,0.1,-0.0223159998133,0.0,0.0,0.0,0.0252398699476 -1469733898826498699,0.1,-0.0226582838794,0.0,0.0,0.0,0.0258422244722 -1469733898913959826,0.1,-0.0226103723941,0.0,0.0,0.0,0.028268842363 -1469733898989981811,0.1,-0.0226368681573,0.0,0.0,0.0,0.0270038170465 -1469733899069488233,0.1,-0.0223545323312,0.0,0.0,0.0,0.0233861207249 -1469733899151406085,0.1,-0.0226949573306,0.0,0.0,0.0,0.0239724868128 -1469733899228592856,0.1,-0.0228739739529,0.0,0.0,0.0,0.0219629694535 -1469733899308900307,0.1,-0.0228341486955,0.0,0.0,0.0,0.0196996273193 -1469733899388517918,0.1,-0.0226862478453,0.0,0.0,0.0,0.0229547652635 -1469733899467573464,0.1,-0.0230173079573,0.0,0.0,0.0,0.0262201905193 -1469733899547826534,0.1,-0.0226383442983,0.0,0.0,0.0,0.0241512298171 -1469733899637024691,0.1,-0.0224811260869,0.0,0.0,0.0,0.0223599700147 -1469733899718072546,0.1,-0.0228460143244,0.0,0.0,0.0,0.0229884456002 -1469733899799668001,0.1,-0.0224629002865,0.0,0.0,0.0,0.0230648577962 -1469733899879994655,0.1,-0.0219933567885,0.0,0.0,0.0,0.0228600007308 -1469733899958946906,0.1,-0.0221854273711,0.0,0.0,0.0,0.0219119708217 -1469733900035993150,0.1,-0.0219492108809,0.0,0.0,0.0,0.0228724495813 -1469733900115842475,0.1,-0.0214798696318,0.0,0.0,0.0,0.0216215178712 -1469733900202560323,0.1,-0.0213969616207,0.0,0.0,0.0,0.0232684441434 -1469733900297922832,0.0,-0.0210240149032,0.0,0.0,0.0,0.0213896989114 -1469733900375604711,0.0,-0.0208330051859,0.0,0.0,0.0,0.0203720834982 -1469733900451689851,0.0,-0.0207085050339,0.0,0.0,0.0,0.0206250611218 -1469733900529649276,0.0,-0.0205008129883,0.0,0.0,0.0,0.0200549048708 -1469733900607979069,0.0,-0.0200430259935,0.0,0.0,0.0,0.0204284506765 -1469733900688594043,0.0,-0.01972000279,0.0,0.0,0.0,0.0200373000436 -1469733900763238999,0.0,-0.0195806810766,0.0,0.0,0.0,0.0182568610823 -1469733900848765032,0.0,-0.0194677194675,0.0,0.0,0.0,0.0197847411352 -1469733900929202985,0.0,-0.0183160473682,0.0,0.0,0.0,0.0191316984135 -1469733901004018014,0.0,-0.0192378793275,0.0,0.0,0.0,0.0188804191992 -1469733901081824636,0.0,-0.020082817253,0.0,0.0,0.0,0.0172868307567 -1469733901159025122,0.0,-0.0199613689214,0.0,0.0,0.0,0.0171452766018 -1469733901240262111,0.0,-0.0214904162662,0.0,0.0,0.0,0.0187976754332 -1469733901318358310,0.0,-0.0195805313161,0.0,0.0,0.0,0.0158235291995 -1469733901397478790,0.0,-0.0187098213626,0.0,0.0,0.0,0.0176293478747 -1469733901472870200,0.0,-0.0189456466659,0.0,0.0,0.0,0.0183405359968 -1469733901555782520,0.0,-0.0184943688496,0.0,0.0,0.0,0.0167359340879 -1469733901636982780,0.0,-0.0179892479908,0.0,0.0,0.0,0.0170088545567 -1469733901714894862,0.0,-0.0180989488307,0.0,0.0,0.0,0.0159972824379 -1469733901793277008,0.0,-0.017857814554,0.0,0.0,0.0,0.0163986496366 -1469733901872299223,0.0,-0.0178721873866,0.0,0.0,0.0,0.014862460199 -1469733901954055875,0.0,-0.0175046219108,0.0,0.0,0.0,0.0156436536588 -1469733902033418746,0.0,-0.0173029932064,0.0,0.0,0.0,0.0161859873689 -1469733902111283372,0.0,-0.0165949932193,0.0,0.0,0.0,0.0144031280105 -1469733902188205539,0.0,-0.0166558497086,0.0,0.0,0.0,0.015184911527 -1469733902263050377,0.0,-0.0165293328416,0.0,0.0,0.0,0.0147864839519 -1469733902341225430,0.0,-0.0162599768659,0.0,0.0,0.0,0.0148092596733 -1469733902419220089,0.0,-0.01557636964,0.0,0.0,0.0,0.0136491239161 -1469733902499362588,0.0,-0.0158215070211,0.0,0.0,0.0,0.0130343510079 -1469733902582240784,0.0,-0.0156135362757,0.0,0.0,0.0,0.0141328715737 -1469733902660705346,0.0,-0.0155350879009,0.0,0.0,0.0,0.0127955998327 -1469733902741801464,0.0,-0.0152069394311,0.0,0.0,0.0,0.0130056758875 -1469733902820435144,0.0,-0.0150053324614,0.0,0.0,0.0,0.0130749934459 -1469733902910045868,0.0,-0.0148525945858,0.0,0.0,0.0,0.0143995398621 -1469733902989411719,0.0,-0.0144624782449,0.0,0.0,0.0,0.0121274326522 -1469733903066655275,0.0,-0.0139314371582,0.0,0.0,0.0,0.010976984346 -1469733903139407393,0.0,-0.0141217140068,0.0,0.0,0.0,0.0105895561207 -1469733903218483755,0.0,-0.0139008458186,0.0,0.0,0.0,0.0107976448544 -1469733903292051012,0.0,-0.0136766977424,0.0,0.0,0.0,0.0108946097359 -1469733903366743046,0.0,-0.0135177311421,0.0,0.0,0.0,0.0118611479601 -1469733903444249504,0.0,-0.0132016314909,0.0,0.0,0.0,0.0110996951552 -1469733903521668688,0.0,-0.0132793537793,0.0,0.0,0.0,0.0115778178006 -1469733903601309960,0.0,-0.0129350906664,0.0,0.0,0.0,0.0123397498324 -1469733903678496046,0.0,-0.0127067647767,0.0,0.0,0.0,0.0121323334205 -1469733903757914771,0.0,-0.0122560755528,0.0,0.0,0.0,0.0107355300631 -1469733903837013381,0.0,-0.0120498907321,0.0,0.0,0.0,0.0107297719082 -1469733903923547710,0.0,-0.0118886268441,0.0,0.0,0.0,0.00977619328424 -1469733904002808481,0.0,-0.0117152047675,0.0,0.0,0.0,0.00974029473058 -1469733904079861924,0.0,-0.0121864076125,0.0,0.0,0.0,0.0116652359436 -1469733904155823121,0.0,-0.0113664124999,0.0,0.0,0.0,0.0113197976712 -1469733904231071061,0.0,-0.0112776159567,0.0,0.0,0.0,0.0105978603786 -1469733904316609151,0.0,-0.0110159209939,0.0,0.0,0.0,0.0110786107942 -1469733904395516238,0.0,-0.0109204113552,0.0,0.0,0.0,0.0101351022731 -1469733904469755914,0.0,-0.0104238472161,0.0,0.0,0.0,0.00904348139498 -1469733904544190422,0.0,-0.0105662843494,0.0,0.0,0.0,0.0108121271325 -1469733904616962150,0.0,-0.0103223142682,0.0,0.0,0.0,0.0106755956617 -1469733904695871088,0.0,-0.0102155316488,0.0,0.0,0.0,0.00551495192302 -1469733904773930941,0.0,-0.0102979279211,0.0,0.0,0.0,0.0078765348901 -1469733904853118005,0.0,-0.0102853891103,0.0,0.0,0.0,0.00886587403272 -1469733904929701427,0.0,-0.0100753183217,0.0,0.0,0.0,0.0104172936649 -1469733905023848400,0.0,-0.0097014107837,0.0,0.0,0.0,0.0102965583416 -1469733905098848984,0.0,-0.00963749341052,0.0,0.0,0.0,0.00872620336906 -1469733905176166003,0.0,-0.00956654825222,0.0,0.0,0.0,0.0079820922663 -1469733905253411743,0.0,-0.00949521942572,0.0,0.0,0.0,0.00853740559419 -1469733905327896822,0.0,-0.00961304072625,0.0,0.0,0.0,0.0082871524776 -1469733905403762949,0.0,-0.00897708040506,0.0,0.0,0.0,0.00756972657816 -1469733905489747776,0.0,-0.00932500466607,0.0,0.0,0.0,0.00816606344651 -1469733905565838861,0.0,-0.00907811816091,0.0,0.0,0.0,0.00765022294937 -1469733905645744998,0.0,-0.00889803401969,0.0,0.0,0.0,0.00757547231884 -1469733905722312883,0.0,-0.00878967166305,0.0,0.0,0.0,0.00684160800505 -1469733905802458011,0.0,-0.00871155064458,0.0,0.0,0.0,0.00566416906181 -1469733905879507134,0.0,-0.00848170043538,0.0,0.0,0.0,0.00799059391308 -1469733905955929099,0.0,-0.00849179944474,0.0,0.0,0.0,0.00552925995442 -1469733906032131689,0.0,-0.00825428415665,0.0,0.0,0.0,0.00526877276721 -1469733906109714849,0.0,-0.00846448332174,0.0,0.0,0.0,0.00440902745387 -1469733906186864518,0.0,-0.00807439736131,0.0,0.0,0.0,0.00505457585905 -1469733906263661050,0.0,-0.00800973796478,0.0,0.0,0.0,0.00410157632519 -1469733906341251482,0.0,-0.00783638007035,0.0,0.0,0.0,0.00372231173891 -1469733906416707770,0.0,-0.00768497199763,0.0,0.0,0.0,0.00416872665668 -1469733906492938285,0.0,-0.00766099886825,0.0,0.0,0.0,0.00331177206093 -1469733906571645519,0.0,-0.00744767537992,0.0,0.0,0.0,0.00499236040857 -1469733906651349552,0.0,-0.00762520800775,0.0,0.0,0.0,0.00315987973698 -1469733906727028244,0.0,-0.00724058484049,0.0,0.0,0.0,0.00338652801043 -1469733906797674320,0.0,-0.00698383138989,0.0,0.0,0.0,0.00340418110616 -1469733906869778638,0.0,-0.00684408661827,0.0,0.0,0.0,0.00278250480084 -1469733906944131585,0.0,-0.00657360255751,0.0,0.0,0.0,0.00261160576086 -1469733907021396325,0.0,-0.00653727119833,0.0,0.0,0.0,0.00317104184966 -1469733907097897533,0.0,-0.00665960994457,0.0,0.0,0.0,0.00325613264545 -1469733907179359472,0.0,-0.0061647979516,0.0,0.0,0.0,0.00278253820607 -1469733907252875064,0.0,-0.00602656151696,0.0,0.0,0.0,0.00298615019069 -1469733907329351939,0.0,-0.00579965850031,0.0,0.0,0.0,0.00343734270249 -1469733907404277934,0.0,-0.00574651370983,0.0,0.0,0.0,0.00526078401212 -1469733907480942180,0.0,-0.00581723122286,0.0,0.0,0.0,0.00297450140746 -1469733907557364666,0.0,-0.00537248851443,0.0,0.0,0.0,0.00278058440486 -1469733907634969876,0.0,-0.00533310823145,0.0,0.0,0.0,0.00318125222303 -1469733907710222080,0.0,-0.0050955196383,0.0,0.0,0.0,0.00472679168284 -1469733907785619613,0.0,-0.00505651382794,0.0,0.0,0.0,0.00503669800858 -1469733907862715410,0.0,-0.00475762296088,0.0,0.0,0.0,0.00439927115274 -1469733907936069019,0.0,-0.00500800663983,0.0,0.0,0.0,0.00306180905206 -1469733908021222171,0.0,-0.0047098451102,0.0,0.0,0.0,0.00362706631647 -1469733908097497753,0.0,-0.00445081360202,0.0,0.0,0.0,0.00280414109447 -1469733908176438502,0.0,-0.00433560207835,0.0,0.0,0.0,0.00271159681548 -1469733908252689815,0.0,-0.00434810265981,0.0,0.0,0.0,0.00371515257873 -1469733908335597951,0.0,-0.00410990150162,0.0,0.0,0.0,0.00367923923241 -1469733908409514383,0.0,-0.00411619129772,0.0,0.0,0.0,0.00465773898913 -1469733908487638446,0.0,-0.00422470758257,0.0,0.0,0.0,0.00316303371575 -1469733908567389841,0.0,-0.00402650673548,0.0,0.0,0.0,0.00407539644541 -1469733908643084828,0.0,-0.00383140954127,0.0,0.0,0.0,0.00282224733878 -1469733908724343057,0.0,-0.00384344624362,0.0,0.0,0.0,0.00405299838833 -1469733908800760829,0.0,-0.00377463310668,0.0,0.0,0.0,0.003759276395 -1469733908881116358,0.0,-0.00369862064266,0.0,0.0,0.0,0.00404542569224 -1469733908958199385,0.0,-0.00361995114159,0.0,0.0,0.0,0.00469141136124 -1469733909033507352,0.0,-0.0037283829323,0.0,0.0,0.0,0.00353035340225 -1469733909111923373,0.0,-0.00356720813739,0.0,0.0,0.0,0.00274907593148 -1469733909192795584,0.0,-0.00345427687332,0.0,0.0,0.0,0.00370512804089 -1469733909270381910,0.0,-0.00333221807693,0.0,0.0,0.0,0.0035734746084 -1469733909348733200,0.0,-0.00327287228947,0.0,0.0,0.0,0.00257372129887 -1469733909427646383,0.0,-0.00324821823412,0.0,0.0,0.0,0.00426627895422 -1469733909509901115,0.0,-0.00324875467939,0.0,0.0,0.0,0.00436547665539 -1469733909580738297,0.0,-0.00318967797338,0.0,0.0,0.0,0.00307128473019 -1469733909655241276,0.0,-0.00305897594806,0.0,0.0,0.0,0.00341113674282 -1469733909732625066,0.0,-0.00320824219387,0.0,0.0,0.0,0.00343816291734 -1469733909809295139,0.0,-0.0032195713929,0.0,0.0,0.0,0.00404622861525 -1469733909896958474,0.0,-0.00308755108047,0.0,0.0,0.0,0.00410947188218 -1469733909971346918,0.0,-0.00309580172009,0.0,0.0,0.0,0.00280630478279 -1469733910049897271,0.0,-0.00304785616892,0.0,0.0,0.0,0.00266141042578 -1469733910123320768,0.0,-0.00288750152526,0.0,0.0,0.0,0.00305002843562 -1469733910195120752,0.0,-0.00286862757938,0.0,0.0,0.0,0.0042453274115 -1469733910275790197,0.0,-0.00288080900842,0.0,0.0,0.0,0.00304709493319 -1469733910351095139,0.0,-0.00288599587644,0.0,0.0,0.0,0.00252104227319 -1469733910431157495,0.0,-0.00277559284508,0.0,0.0,0.0,0.00258523675368 -1469733910507450932,0.0,-0.00282185097936,0.0,0.0,0.0,0.00240195974632 -1469733910584386728,0.0,-0.00279623137686,0.0,0.0,0.0,0.00389235012049 -1469733910661368891,0.0,-0.00272440374918,0.0,0.0,0.0,0.0039640590823 -1469733910736258548,0.0,-0.00283377120335,0.0,0.0,0.0,0.00382077479354 -1469733910815508447,0.0,-0.00275141050663,0.0,0.0,0.0,0.00447448059606 -1469733910891543353,0.0,-0.00271197606795,0.0,0.0,0.0,0.00270289252184 -1469733910971642245,0.0,-0.00266927422958,0.0,0.0,0.0,0.00212720451984 -1469733911047758206,0.0,-0.00267240796435,0.0,0.0,0.0,0.0014410021256 -1469733911118658422,0.0,-0.00264295489233,0.0,0.0,0.0,0.00161986853822 -1469733911197299015,0.0,-0.00256749177284,0.0,0.0,0.0,0.00252547880809 -1469733911273649859,0.0,-0.00263950453247,0.0,0.0,0.0,0.00322120207333 -1469733911350802156,0.0,-0.00254140514199,0.0,0.0,0.0,0.00392656015954 -1469733911427102186,0.0,-0.00232832569528,0.0,0.0,0.0,0.00233989007024 -1469733911502455542,0.0,-0.00236166135268,0.0,0.0,0.0,0.00164126029575 -1469733911577678451,0.0,-0.00235079939955,0.0,0.0,0.0,0.00268722493447 -1469733911657425941,0.0,-0.00238826758751,0.0,0.0,0.0,0.00291548843872 -1469733911733474713,0.0,-0.00249458460826,0.0,0.0,0.0,0.0029628569799 -1469733911816335773,0.0,-0.00244750275833,0.0,0.0,0.0,0.00265264067736 -1469733911893044800,0.0,-0.00235854058238,0.0,0.0,0.0,0.0031943313952 -1469733911971819689,0.0,-0.00230619525917,0.0,0.0,0.0,0.00349818148564 -1469733912059053281,0.0,-0.002300950448,0.0,0.0,0.0,0.00166047119719 -1469733912137514713,0.0,-0.00229689380564,0.0,0.0,0.0,0.0 -1469733912213373888,0.0,-0.00219803838719,0.0,0.0,0.0,0.0 -1469733912296408731,0.0,-0.00218242337854,0.0,0.0,0.0,0.00186901437469 -1469733912376423987,0.0,-0.00226521358228,0.0,0.0,0.0,0.002291352806 -1469733912451646980,0.0,-0.00222390469385,0.0,0.0,0.0,0.00299708633704 -1469733912532751009,0.0,-0.0021779067677,0.0,0.0,0.0,0.00322127124674 -1469733912620133401,0.0,-0.00219915211223,0.0,0.0,0.0,0.00380584754418 -1469733912692733134,0.0,-0.00210404700238,0.0,0.0,0.0,0.00333607773269 -1469733912772715012,0.0,-0.00217535599037,0.0,0.0,0.0,0.0036540041944 -1469733912850440752,0.0,-0.00202512417275,0.0,0.0,0.0,0.0 -1469733912937096581,0.0,-0.00222851824375,0.0,0.0,0.0,0.00219839160627 -1469733913013480134,0.0,-0.00244345735604,0.0,0.0,0.0,0.00334108218395 -1469733913088986536,0.0,-0.00223774010211,0.0,0.0,0.0,0.00390128137005 -1469733913169054901,0.0,-0.00211854348262,0.0,0.0,0.0,0.00346115924337 -1469733913252872816,0.0,-0.00221173571035,0.0,0.0,0.0,0.00382663226208 -1469733913330894605,0.0,-0.00196291074368,0.0,0.0,0.0,0.00202542197132 -1469733913417933904,0.0,-0.00201232249411,0.0,0.0,0.0,0.0 -1469733913495351047,0.0,-0.00185894116101,0.0,0.0,0.0,0.00297143611653 -1469733913576722729,0.0,-0.00200638133875,0.0,0.0,0.0,0.00269195287953 -1469733913652978601,0.0,-0.00206949127889,0.0,0.0,0.0,0.00324682760081 -1469733913732624364,0.0,-0.00205204231038,0.0,0.0,0.0,0.00302855800144 -1469733913815969722,0.0,-0.00199874123144,0.0,0.0,0.0,0.00316154025665 -1469733913897530157,0.0,-0.00200621703615,0.0,0.0,0.0,0.00286262814824 -1469733913975621250,0.0,-0.00193350146876,0.0,0.0,0.0,0.00216280489027 -1469733914048768769,0.0,-0.0019188152235,0.0,0.0,0.0,0.00224382551066 -1469733914129910194,0.0,-0.00198162006892,0.0,0.0,0.0,0.0 -1469733914209037078,0.0,-0.00193869954502,0.0,0.0,0.0,0.0 -1469733914289259454,0.0,-0.00197159298965,0.0,0.0,0.0,0.0 -1469733914363075013,0.0,-0.00197235821092,0.0,0.0,0.0,0.00150721004725 -1469733914441945528,0.0,-0.00200549411909,0.0,0.0,0.0,0.0 -1469733914519656308,0.0,-0.00197019990118,0.0,0.0,0.0,0.0 -1469733914595446348,0.0,-0.00199574571957,0.0,0.0,0.0,0.0 -1469733914679483070,0.0,-0.00201345440047,0.0,0.0,0.0,0.00200628948786 -1469733914758011564,0.0,-0.00184418904961,0.0,0.0,0.0,0.0 -1469733914836006001,0.0,-0.0019470257403,0.0,0.0,0.0,0.0 -1469733914912064141,0.0,-0.00204578874879,0.0,0.0,0.0,0.00170894246647 -1469733914991806605,0.0,-0.0019243865466,0.0,0.0,0.0,0.0 -1469733915066743281,0.0,-0.00184238196714,0.0,0.0,0.0,0.0 -1469733915142444320,0.0,-0.00175734740793,0.0,0.0,0.0,0.0 -1469733915217333572,0.0,-0.00171803881193,0.0,0.0,0.0,0.00182230215875 -1469733915292378174,0.0,-0.00155589391594,0.0,0.0,0.0,0.0 -1469733915368739825,0.0,-0.00153429359615,0.0,0.0,0.0,0.0 -1469733915447766431,0.0,-0.00148625953823,0.0,0.0,0.0,0.00139792443149 -1469733915523498224,0.0,-0.00153609490958,0.0,0.0,0.0,0.00216734226154 -1469733915604566605,0.0,-0.00134495175749,0.0,0.0,0.0,0.0 -1469733915684453174,0.0,-0.00126091812268,0.0,0.0,0.0,0.0 -1469733915761352292,0.0,-0.00129712943285,0.0,0.0,0.0,0.00164024897041 -1469733915845620549,0.0,-0.001219737648,0.0,0.0,0.0,0.0 -1469733915921809102,0.0,-0.00110471072118,0.0,0.0,0.0,0.0 -1469733916001510052,0.0,-0.00111705330534,0.0,0.0,0.0,0.0 -1469733916076719496,0.0,-0.00110567691868,0.0,0.0,0.0,0.0024417146983 -1469733916157184142,0.0,-0.00115491870218,0.0,0.0,0.0,0.001437154187 -1469733916235949330,0.0,-0.00099104325555,0.0,0.0,0.0,0.0 -1469733916313827521,0.0,-0.000990199923802,0.0,0.0,0.0,0.0 -1469733916392568645,0.0,-0.000910310671795,0.0,0.0,0.0,0.0 -1469733916470625904,0.0,-0.000933923363379,0.0,0.0,0.0,0.0 -1469733916550168391,0.0,-0.000907936410841,0.0,0.0,0.0,0.00154967342379 -1469733916627461250,0.0,-0.000902095680529,0.0,0.0,0.0,0.0026300593868 -1469733916704542010,0.0,-0.000864569397192,0.0,0.0,0.0,0.00211701517906 -1469733916781120962,0.008,0.0,0.0,0.0,0.0,0.0 -1469733916856004915,0.008,0.0,0.0,0.0,0.0,0.0 -1469733916930563091,0.0,0.0,0.0,0.0,0.0,0.00145630160834 -1469733917015633497,0.008,0.0,0.0,0.0,0.0,0.0 -1469733917093487526,0.0,0.0,0.0,0.0,0.0,0.00166505730853 -1469733917175923622,0.008,0.0,0.0,0.0,0.0,0.0 -1469733917256802331,0.0,0.0,0.0,0.0,0.0,-0.00164573540602 -1469733917334781178,0.008,0.0,0.0,0.0,0.0,0.0 -1469733917416956522,0.008,0.0,0.0,0.0,0.0,0.0 -1469733917491578373,0.008,0.0,0.0,0.0,0.0,0.0 -1469733917570628230,0.0,0.0,0.0,0.0,0.0,0.00397312163233 -1469733917646370889,0.008,0.0,0.0,0.0,0.0,0.0 -1469733917724806577,0.008,0.0,0.0,0.0,0.0,0.0 -1469733917802198912,0.0,0.0,0.0,0.0,0.0,0.00382800192897 -1469733917881053886,0.0,0.0,0.0,0.0,0.0,0.00169242010533 -1469733917959941255,0.008,0.0,0.0,0.0,0.0,0.0 -1469733918039616084,0.0,0.0,0.0,0.0,0.0,0.0016454407326 -1469733918115566439,0.008,0.0,0.0,0.0,0.0,0.0 -1469733918191639033,0.008,0.0,0.0,0.0,0.0,0.0 -1469733918267971712,0.0,0.0,0.0,0.0,0.0,0.00283900233475 -1469733918347530339,0.0,0.0,0.0,0.0,0.0,0.00251009063207 -1469733918425410398,0.008,0.0,0.0,0.0,0.0,0.0 -1469733918504352690,0.008,0.0,0.0,0.0,0.0,0.0 -1469733918581730642,0.008,0.0,0.0,0.0,0.0,0.0 -1469733918672732279,0.008,0.0,0.0,0.0,0.0,0.0 -1469733918750176692,0.0,0.0,0.0,0.0,0.0,0.00165369224449 -1469733918828011468,0.0,0.0,0.0,0.0,0.0,0.00347496225673 -1469733918903779597,0.0,0.0,0.0,0.0,0.0,0.00201638178955 -1469733918981048388,0.0,0.0,0.0,0.0,0.0,0.00200747629935 -1469733919058028724,0.0,0.0,0.0,0.0,0.0,0.00199834774527 -1469733919134570719,0.008,0.0,0.0,0.0,0.0,0.0 -1469733919212256829,0.008,0.0,0.0,0.0,0.0,0.0 -1469733919290168191,0.008,0.0,0.0,0.0,0.0,0.0 -1469733919368350754,0.0,0.0,0.0,0.0,0.0,0.00400368912837 -1469733919452878269,0.0,0.0,0.0,0.0,0.0,0.00267164311882 -1469733919532369492,0.0,0.0,0.0,0.0,0.0,0.0015005520079 -1469733919613568403,0.0,0.0,0.0,0.0,0.0,0.00402403982441 -1469733919689176837,0.0,0.0,0.0,0.0,0.0,0.00336041783808 -1469733919767874412,0.008,0.0,0.0,0.0,0.0,0.0 -1469733919851143691,0.008,0.0,0.0,0.0,0.0,0.0 -1469733919929869656,0.008,0.0,0.0,0.0,0.0,0.0 -1469733920007976686,0.0,0.0,0.0,0.0,0.0,0.00156212786816 -1469733920088258527,0.008,0.0,0.0,0.0,0.0,0.0 -1469733920171200197,0.008,0.0,0.0,0.0,0.0,0.0 -1469733920248633636,0.008,0.0,0.0,0.0,0.0,0.0 -1469733920331635856,0.008,0.0,0.0,0.0,0.0,0.0 -1469733920407264670,0.0,0.0,0.0,0.0,0.0,0.00207546597186 -1469733920483113338,0.0,0.0,0.0,0.0,0.0,0.00146893229803 -1469733920560763400,0.0,0.0,0.0,0.0,0.0,0.0038038033401 -1469733920637882469,0.0,0.0,0.0,0.0,0.0,0.00223050212624 -1469733920716128803,0.008,0.0,0.0,0.0,0.0,0.0 -1469733920792005249,0.008,0.0,0.0,0.0,0.0,0.0 -1469733920871264121,0.008,0.0,0.0,0.0,0.0,0.0 -1469733920949313226,0.0,0.0,0.0,0.0,0.0,0.00147790060041 -1469733921026419967,0.008,0.0,0.0,0.0,0.0,0.0 -1469733921106600157,0.008,0.0,0.0,0.0,0.0,0.0 -1469733921188122653,0.008,0.0,0.0,0.0,0.0,0.0 -1469733921267011556,0.008,0.0,0.0,0.0,0.0,0.0 -1469733921348627389,0.0,0.0,0.0,0.0,0.0,-0.00151588381812 -1469733921427709002,0.008,0.0,0.0,0.0,0.0,0.0 -1469733921507513293,0.008,0.0,0.0,0.0,0.0,0.0 -1469733921587270444,0.008,0.0,0.0,0.0,0.0,0.0 -1469733921665576745,0.0,0.0,0.0,0.0,0.0,0.00234924604366 -1469733921741421654,0.008,0.0,0.0,0.0,0.0,0.0 -1469733921820391498,0.0,-0.000971377250875,0.0,0.0,0.0,0.0 -1469733921908738709,0.0,-0.00103635452388,0.0,0.0,0.0,0.00153482933694 -1469733921988992572,0.0,-0.00106635263465,0.0,0.0,0.0,0.00198508391989 -1469733922067647329,0.0,-0.00105083779408,0.0,0.0,0.0,0.0 -1469733922145511945,0.0,-0.00109942244456,0.0,0.0,0.0,0.0 -1469733922222984015,0.0,-0.00110864374684,0.0,0.0,0.0,0.0 -1469733922299897668,0.0,-0.00112295548817,0.0,0.0,0.0,0.0 -1469733922391624148,0.0,-0.00107494031332,0.0,0.0,0.0,0.0 -1469733922471007793,0.0,-0.00119642203497,0.0,0.0,0.0,0.0 -1469733922550176571,0.0,-0.00135108562426,0.0,0.0,0.0,0.0 -1469733922628344470,0.0,-0.00133410139071,0.0,0.0,0.0,0.0 -1469733922707894883,0.0,-0.00142846639882,0.0,0.0,0.0,0.0 -1469733922783537205,0.0,-0.00136337044185,0.0,0.0,0.0,-0.00153484586674 -1469733922862393477,0.0,-0.000158191129196,0.0,0.0,0.0,0.0 -1469733922939152429,0.0,-0.000757112928326,0.0,0.0,0.0,0.0 -1469733923018466099,0.008,0.0,0.0,0.0,0.0,0.0 -1469733923097433283,0.008,0.0,0.0,0.0,0.0,0.0 -1469733923172303296,0.008,0.0,0.0,0.0,0.0,0.0 -1469733923255988323,0.008,0.0,0.0,0.0,0.0,0.0 -1469733923334620904,0.008,0.0,0.0,0.0,0.0,0.0 -1469733923409732801,0.008,0.0,0.0,0.0,0.0,0.0 -1469733923495795144,0.0,0.0,0.0,0.0,0.0,-0.00155069136517 -1469733923575103017,0.0,0.0,0.0,0.0,0.0,-0.00174929979485 -1469733923647773788,0.008,0.0,0.0,0.0,0.0,0.0 -1469733923735066005,0.008,0.0,0.0,0.0,0.0,0.0 -1469733923811821384,0.008,0.0,0.0,0.0,0.0,0.0 -1469733923890720145,0.008,0.0,0.0,0.0,0.0,0.0 -1469733923968535633,0.0,0.0,0.0,0.0,0.0,0.00162133231829 -1469733924049263649,0.008,0.0,0.0,0.0,0.0,0.0 -1469733924127512005,0.008,0.0,0.0,0.0,0.0,0.0 -1469733924202421262,0.008,0.0,0.0,0.0,0.0,0.0 -1469733924283629471,0.0,0.0,0.0,0.0,0.0,0.00147527004388 -1469733924364997532,0.0,0.0,0.0,0.0,0.0,0.00161241774412 -1469733924443195413,0.0,0.0,0.0,0.0,0.0,0.00144039443195 -1469733924520182939,0.0,0.0,0.0,0.0,0.0,0.0018508718291 -1469733924600253349,0.0,0.0,0.0,0.0,0.0,0.0021685402808 -1469733924679602927,0.008,0.0,0.0,0.0,0.0,0.0 -1469733924758483937,0.008,0.0,0.0,0.0,0.0,0.0 -1469733924834223714,0.008,0.0,0.0,0.0,0.0,0.0 -1469733924914626788,0.008,0.0,0.0,0.0,0.0,0.0 -1469733924991084445,0.008,0.0,0.0,0.0,0.0,0.0 -1469733925071385992,0.008,0.0,0.0,0.0,0.0,0.0 -1469733925151295495,0.008,0.0,0.0,0.0,0.0,0.0 -1469733925229453675,0.008,0.0,0.0,0.0,0.0,0.0 -1469733925304189383,0.008,0.0,0.0,0.0,0.0,0.0 -1469733925385230004,0.008,0.0,0.0,0.0,0.0,0.0 -1469733925467316900,0.0,0.0,0.0,0.0,0.0,0.00160338742224 -1469733925547959728,0.008,0.0,0.0,0.0,0.0,0.0 -1469733925623833195,0.008,0.0,0.0,0.0,0.0,0.0 -1469733925704510601,0.008,0.0,0.0,0.0,0.0,0.0 -1469733925786255946,0.008,0.0,0.0,0.0,0.0,0.0 -1469733925865537796,0.008,0.0,0.0,0.0,0.0,0.0 -1469733925942667984,0.008,0.0,0.0,0.0,0.0,0.0 -1469733926021004776,0.008,0.0,0.0,0.0,0.0,0.0 -1469733926099887862,0.0,0.0,0.0,0.0,0.0,0.00154155936623 -1469733926176974142,0.008,0.0,0.0,0.0,0.0,0.0 -1469733926257044183,0.008,0.0,0.0,0.0,0.0,0.0 -1469733926341944567,0.008,0.0,0.0,0.0,0.0,0.0 -1469733926418774227,0.008,0.0,0.0,0.0,0.0,0.0 -1469733926498717644,0.008,0.0,0.0,0.0,0.0,0.0 -1469733926574255055,0.0,0.0,0.0,0.0,0.0,0.0024525982575 -1469733926659860700,0.008,0.0,0.0,0.0,0.0,0.0 -1469733926740160255,0.008,0.0,0.0,0.0,0.0,0.0 -1469733926817554805,0.0,0.0,0.0,0.0,0.0,0.00152192008517 -1469733926897304049,0.008,0.0,0.0,0.0,0.0,0.0 -1469733926977553580,0.008,0.0,0.0,0.0,0.0,0.0 -1469733927061128909,0.008,0.0,0.0,0.0,0.0,0.0 -1469733927141951915,0.008,0.0,0.0,0.0,0.0,0.0 -1469733927221822519,0.008,0.0,0.0,0.0,0.0,0.0 -1469733927300673061,0.008,0.0,0.0,0.0,0.0,0.0 -1469733927377314907,0.0,0.0,0.0,0.0,0.0,0.00280485438778 -1469733927452960187,0.0,0.0,0.0,0.0,0.0,0.00195241589535 -1469733927530690195,0.008,0.0,0.0,0.0,0.0,0.0 -1469733927606637995,0.008,0.0,0.0,0.0,0.0,0.0 -1469733927681757580,0.0,0.0,0.0,0.0,0.0,0.00317734478204 -1469733927761443131,0.0,0.0,0.0,0.0,0.0,0.00297801966328 -1469733927840442767,0.0,0.0,0.0,0.0,0.0,0.00203867350074 -1469733927919456912,0.0,0.0,0.0,0.0,0.0,0.0022542746401 -1469733927998592078,0.0,0.0,0.0,0.0,0.0,0.00332634922989 -1469733928076305627,0.0,0.0,0.0,0.0,0.0,0.00284345900459 -1469733928158148937,0.0,0.0,0.0,0.0,0.0,0.00227802387013 -1469733928235415993,0.0,0.0,0.0,0.0,0.0,0.00209318834811 -1469733928314247956,0.0,0.0,0.0,0.0,0.0,0.00263301701714 -1469733928387280959,0.0,0.0,0.0,0.0,0.0,0.00272614978594 -1469733928470005068,0.0,0.0,0.0,0.0,0.0,0.00281783957944 -1469733928545608689,0.0,0.0,0.0,0.0,0.0,0.00217133382467 -1469733928622770745,0.0,0.0,0.0,0.0,0.0,0.00216453289061 -1469733928701497148,0.0,0.0,0.0,0.0,0.0,0.00305707775048 -1469733928779041724,0.0,0.0,0.0,0.0,0.0,0.00153531887076 -1469733928856409311,0.0,0.0,0.0,0.0,0.0,0.00217971784961 -1469733928938191672,0.0,0.0,0.0,0.0,0.0,0.00173109281052 -1469733929018352432,0.0,0.0,0.0,0.0,0.0,0.00210851732831 -1469733929096864783,0.0,0.0,0.0,0.0,0.0,0.0022331961076 -1469733929176090375,0.0,0.0,0.0,0.0,0.0,0.00313469491765 -1469733929251184069,0.0,0.0,0.0,0.0,0.0,0.00308100048436 -1469733929329981117,0.0,0.0,0.0,0.0,0.0,0.00178623583266 -1469733929405554339,0.008,0.0,0.0,0.0,0.0,0.0 -1469733929485283038,0.008,0.0,0.0,0.0,0.0,0.0 -1469733929562772955,0.0,0.0,0.0,0.0,0.0,0.00266917133014 -1469733929638409088,0.0,0.0,0.0,0.0,0.0,0.0030952863477 -1469733929716419154,0.0,0.0,0.0,0.0,0.0,0.00232168687074 -1469733929792462330,0.008,0.0,0.0,0.0,0.0,0.0 -1469733929872619729,0.0,0.0,0.0,0.0,0.0,0.00180111747129 -1469733929948455149,0.008,0.0,0.0,0.0,0.0,0.0 -1469733930028624855,0.0,0.0,0.0,0.0,0.0,0.00346952669494 -1469733930103783952,0.0,0.0,0.0,0.0,0.0,0.00185900339942 -1469733930180557043,0.0,0.0,0.0,0.0,0.0,0.00145425193598 -1469733930267767110,0.008,0.0,0.0,0.0,0.0,0.0 -1469733930344208995,0.008,0.0,0.0,0.0,0.0,0.0 -1469733930431066196,0.008,0.0,0.0,0.0,0.0,0.0 -1469733930508796131,0.0,0.0,0.0,0.0,0.0,0.00177453909203 -1469733930595907342,0.0,0.0,0.0,0.0,0.0,0.00185913053823 -1469733930671882093,0.0,0.0,0.0,0.0,0.0,0.00230420569972 -1469733930758307814,0.0,0.0,0.0,0.0,0.0,0.0024349790708 -1469733930837952396,0.0,0.0,0.0,0.0,0.0,0.00208437645252 -1469733930917815249,0.008,0.0,0.0,0.0,0.0,0.0 -1469733930998255361,0.0,0.0,0.0,0.0,0.0,0.00203420045078 -1469733931075263635,0.008,0.0,0.0,0.0,0.0,0.0 -1469733931153305951,0.008,0.0,0.0,0.0,0.0,0.0 -1469733931230143438,0.008,0.0,0.0,0.0,0.0,0.0 -1469733931310258465,0.0,0.0,0.0,0.0,0.0,0.0014927071489 -1469733931390816841,0.0,0.0,0.0,0.0,0.0,0.0017427978151 -1469733931469924180,0.008,0.0,0.0,0.0,0.0,0.0 -1469733931555243005,0.008,0.0,0.0,0.0,0.0,0.0 -1469733931639510110,0.008,0.0,0.0,0.0,0.0,0.0 -1469733931730376376,0.0,0.0,0.0,0.0,0.0,0.00181610515157 -1469733931808599798,0.0,0.0,0.0,0.0,0.0,0.00162854367848 -1469733931890682291,0.008,0.0,0.0,0.0,0.0,0.0 -1469733931968462801,0.0,0.0,0.0,0.0,0.0,0.00147413862321 -1469733932047309637,0.008,0.0,0.0,0.0,0.0,0.0 -1469733932128300196,0.008,0.0,0.0,0.0,0.0,0.0 -1469733932204108467,0.008,0.0,0.0,0.0,0.0,0.0 -1469733932283309296,0.008,0.0,0.0,0.0,0.0,0.0 -1469733932363440026,0.0,0.0,0.0,0.0,0.0,0.00192323221417 -1469733932450404639,0.008,0.0,0.0,0.0,0.0,0.0 -1469733932526256018,0.008,0.0,0.0,0.0,0.0,0.0 -1469733932604932986,0.008,0.0,0.0,0.0,0.0,0.0 -1469733932683141829,0.0,0.0,0.0,0.0,0.0,0.00199996675148 -1469733932760838937,0.008,0.0,0.0,0.0,0.0,0.0 -1469733932838079244,0.008,0.0,0.0,0.0,0.0,0.0 -1469733932917736029,0.008,0.0,0.0,0.0,0.0,0.0 -1469733932992686654,0.0,0.0,0.0,0.0,0.0,0.00192016102441 -1469733933069279336,0.008,0.0,0.0,0.0,0.0,0.0 -1469733933149253241,0.008,0.0,0.0,0.0,0.0,0.0 -1469733933237310825,0.0,0.0,0.0,0.0,0.0,0.00191273601317 -1469733933319530852,0.0,0.0,0.0,0.0,0.0,0.00149042863891 -1469733933399384572,0.0,0.0,0.0,0.0,0.0,0.00150571504473 -1469733933478968517,0.008,0.0,0.0,0.0,0.0,0.0 -1469733933556877861,0.0,0.0,0.0,0.0,0.0,0.00199464099604 -1469733933637831611,0.008,0.0,0.0,0.0,0.0,0.0 +1470074967879730430,0.15,-0.308832122796,0.0,0.0,0.0,0.0357206188539 +1470074967966650667,0.15,-0.122788675328,0.0,0.0,0.0,0.0357206188539 +1470074968055538104,0.15,-0.122788675328,0.0,0.0,0.0,0.0357206188539 +1470074968143197138,0.15,-0.122788675328,0.0,0.0,0.0,0.0357206188539 +1470074968220200325,0.15,-0.122788675328,0.0,0.0,0.0,0.0357206188539 +1470074968295893325,0.15,-0.122783678671,0.0,0.0,0.0,0.0368792204278 +1470074968371887115,0.15,-0.122788890203,0.0,0.0,0.0,0.0346220978702 +1470074968447361009,0.15,-0.122787564,0.0,0.0,0.0,0.0346220978702 +1470074968527972439,0.15,-0.118877061208,0.0,0.0,0.0,0.0268267716271 +1470074968604115557,0.15,-0.124602091213,0.0,0.0,0.0,0.0311929094633 +1470074968677864035,0.15,-0.120768422683,0.0,0.0,0.0,0.0416050924535 +1470074968749316105,0.15,-0.119668963453,0.0,0.0,0.0,0.0344864756547 +1470074968821567589,0.15,-0.109888935884,0.0,0.0,0.0,0.0370085152368 +1470074968892859975,0.15,-0.112473800977,0.0,0.0,0.0,0.030743318528 +1470074968966679880,0.15,-0.118710144063,0.0,0.0,0.0,0.0278805573422 +1470074969044067787,0.15,-0.10821350505,0.0,0.0,0.0,0.0322250457139 +1470074969117361463,0.15,-0.100320114692,0.0,0.0,0.0,0.0244408037889 +1470074969191264705,0.15,-0.103765863081,0.0,0.0,0.0,0.0379673694676 +1470074969262205545,0.15,-0.105100584229,0.0,0.0,0.0,0.0316983395684 +1470074969335238209,0.15,-0.0970837153995,0.0,0.0,0.0,0.0326927014531 +1470074969412982985,0.15,-0.0916341202461,0.0,0.0,0.0,0.0269216117823 +1470074969496116109,0.15,-0.0926100023591,0.0,0.0,0.0,0.0288184585439 +1470074969577129772,0.15,-0.0913786583149,0.0,0.0,0.0,0.0290376816964 +1470074969647402358,0.15,-0.0883381955826,0.0,0.0,0.0,0.0255744032119 +1470074969719798822,0.15,-0.0842768662178,0.0,0.0,0.0,0.0220567425907 +1470074969794941434,0.15,-0.0813511132204,0.0,0.0,0.0,0.0366793611641 +1470074969865115703,0.15,-0.0805029203498,0.0,0.0,0.0,0.0442878940024 +1470074969943315886,0.15,-0.0710797061526,0.0,0.0,0.0,0.0287853117947 +1470074970021609494,0.15,-0.0743361844623,0.0,0.0,0.0,0.0302977936035 +1470074970097808618,0.15,-0.0736471325659,0.0,0.0,0.0,0.031816583111 +1470074970175444776,0.15,-0.0716609220707,0.0,0.0,0.0,0.0313095372596 +1470074970251957453,0.15,-0.069018355062,0.0,0.0,0.0,0.021592796712 +1470074970325933307,0.15,-0.0614384110772,0.0,0.0,0.0,0.0262832082795 +1470074970400943359,0.15,-0.0648758912587,0.0,0.0,0.0,0.0273384620858 +1470074970477879091,0.15,-0.064410084387,0.0,0.0,0.0,0.0362337910736 +1470074970555116267,0.15,-0.0624061947071,0.0,0.0,0.0,0.0246240336315 +1470074970634060752,0.15,-0.054729937216,0.0,0.0,0.0,0.0185401125873 +1470074970705618389,0.15,-0.0587081805372,0.0,0.0,0.0,0.0258478602037 +1470074970777093457,0.15,-0.0572349642717,0.0,0.0,0.0,0.0276977904147 +1470074970850012988,0.15,-0.0531662539148,0.0,0.0,0.0,0.0275796260699 +1470074970926154315,0.15,-0.0542970327043,0.0,0.0,0.0,0.0263562522497 +1470074971002345263,0.15,-0.052882770946,0.0,0.0,0.0,0.0272211848089 +1470074971077371265,0.15,-0.0531806049251,0.0,0.0,0.0,0.0435828500059 +1470074971148556656,0.15,-0.0491039005422,0.0,0.0,0.0,0.0233781829518 +1470074971220118084,0.15,-0.0499114378297,0.0,0.0,0.0,0.0200980328809 +1470074971291071765,0.15,-0.048010558089,0.0,0.0,0.0,0.0269792494882 +1470074971364547137,0.15,-0.046949955424,0.0,0.0,0.0,0.0297920943617 +1470074971435856621,0.15,-0.0463270845019,0.0,0.0,0.0,0.0311591680186 +1470074971507338018,0.15,-0.0442490426206,0.0,0.0,0.0,0.0306111457474 +1470074971581479250,0.15,-0.0448778993392,0.0,0.0,0.0,0.0208692061336 +1470074971656267199,0.15,-0.0431721883022,0.0,0.0,0.0,0.0312325068917 +1470074971733601636,0.15,-0.0440646996104,0.0,0.0,0.0,0.0270144685021 +1470074971808443040,0.15,-0.0428348920249,0.0,0.0,0.0,0.01764022218 +1470074971892938315,0.15,-0.0420077869796,0.0,0.0,0.0,0.0363707716122 +1470074971969073610,0.15,-0.0404853173101,0.0,0.0,0.0,0.0176837107872 +1470074972048926230,0.15,-0.040657773813,0.0,0.0,0.0,0.0317016790811 +1470074972123230469,0.15,-0.0411837485933,0.0,0.0,0.0,0.0219229891244 +1470074972207048929,0.15,-0.0395492952072,0.0,0.0,0.0,0.0214054741805 +1470074972278805737,0.15,-0.0411475839221,0.0,0.0,0.0,0.0328244012227 +1470074972351175853,0.15,-0.0400861432159,0.0,0.0,0.0,0.0335894311296 +1470074972427835135,0.15,-0.0396497269475,0.0,0.0,0.0,0.0174846448389 +1470074972501755558,0.15,-0.0398214611911,0.0,0.0,0.0,0.0144439042672 +1470074972575089348,0.15,-0.038939499309,0.0,0.0,0.0,0.034000144417 +1470074972648855449,0.15,-0.038987736454,0.0,0.0,0.0,0.0254117638386 +1470074972720412435,0.15,-0.0382507455849,0.0,0.0,0.0,0.0263270307234 +1470074972791753520,0.15,-0.0368513641262,0.0,0.0,0.0,0.0202716269975 +1470074972864405299,0.15,-0.0375588329637,0.0,0.0,0.0,0.0222541789333 +1470074972940794892,0.15,-0.0369394597911,0.0,0.0,0.0,0.0199771955351 +1470074973016501946,0.15,-0.0368739019835,0.0,0.0,0.0,0.0184494729539 +1470074973090002425,0.15,-0.0364136738085,0.0,0.0,0.0,0.0217195741895 +1470074973165213643,0.15,-0.0358026946091,0.0,0.0,0.0,0.0201945073488 +1470074973240732321,0.15,-0.0356534041965,0.0,0.0,0.0,0.0231544157012 +1470074973312729662,0.15,-0.0351934832835,0.0,0.0,0.0,0.0206581325533 +1470074973388404317,0.15,-0.0348062249028,0.0,0.0,0.0,0.0230499591792 +1470074973463292711,0.15,-0.034202272644,0.0,0.0,0.0,0.012903179954 +1470074973534660681,0.15,-0.0340075166279,0.0,0.0,0.0,0.0153761743984 +1470074973609518078,0.15,-0.0325200588756,0.0,0.0,0.0,0.0155227728888 +1470074973688250598,0.15,-0.0327302013838,0.0,0.0,0.0,0.0158327136425 +1470074973763264746,0.15,-0.0312578118348,0.0,0.0,0.0,0.012917857308 +1470074973839182920,0.15,-0.0315157437825,0.0,0.0,0.0,0.0185006118711 +1470074973912955895,0.15,-0.0304938092583,0.0,0.0,0.0,0.0215015725758 +1470074973993516042,0.15,-0.0293749288225,0.0,0.0,0.0,0.0176074802721 +1470074974065652855,0.15,-0.0299460549408,0.0,0.0,0.0,0.0207535357417 +1470074974147812602,0.15,-0.0295837513858,0.0,0.0,0.0,0.0150586054156 +1470074974222944957,0.15,-0.0288204425329,0.0,0.0,0.0,0.0120072197235 +1470074974298389253,0.15,-0.0272495250159,0.0,0.0,0.0,0.0157464157989 +1470074974373284274,0.15,-0.0269553719216,0.0,0.0,0.0,0.0143987578174 +1470074974444858231,0.15,-0.026387366181,0.0,0.0,0.0,0.0137802319264 +1470074974517841133,0.15,-0.0242399061971,0.0,0.0,0.0,0.0105170597952 +1470074974594885864,0.15,-0.0247202950471,0.0,0.0,0.0,0.0122089749979 +1470074974666667805,0.15,-0.0240199095511,0.0,0.0,0.0,0.0189941834632 +1470074974744458069,0.15,-0.0232993693405,0.0,0.0,0.0,0.0113470963572 +1470074974817540109,0.15,-0.0228318720066,0.0,0.0,0.0,0.0129197942293 +1470074974892288308,0.15,-0.0225212456786,0.0,0.0,0.0,0.0094217436667 +1470074974969495730,0.15,-0.0218364672118,0.0,0.0,0.0,0.0112148800941 +1470074975044397373,0.15,-0.0215168993675,0.0,0.0,0.0,0.0118329920606 +1470074975119894998,0.0,-0.0204748049879,0.0,0.0,0.0,0.0104277254676 +1470074975192921856,0.0,-0.0198747364187,0.0,0.0,0.0,0.0112773629219 +1470074975265632804,0.0,-0.019857525205,0.0,0.0,0.0,0.0109097301898 +1470074975343210434,0.0,-0.0193563323968,0.0,0.0,0.0,0.0124454433611 +1470074975419875027,0.0,-0.0182329433167,0.0,0.0,0.0,0.0170073053056 +1470074975491856485,0.0,-0.0178215167427,0.0,0.0,0.0,0.0118188692008 +1470074975565931212,0.0,-0.017297398498,0.0,0.0,0.0,0.0130261177011 +1470074975640115258,0.0,-0.0172572115564,0.0,0.0,0.0,0.0172253023384 +1470074975712833657,0.0,-0.0162046517187,0.0,0.0,0.0,0.00994029356428 +1470074975788138324,0.0,-0.0165210892015,0.0,0.0,0.0,0.00980392899221 +1470074975863222346,0.0,-0.016667168563,0.0,0.0,0.0,0.0129274541516 +1470074975939376340,0.0,-0.0170016246044,0.0,0.0,0.0,0.00781560204709 +1470074976012528683,0.0,-0.0186878464126,0.0,0.0,0.0,0.0101843930198 +1470074976088679586,0.0,-0.0165509243065,0.0,0.0,0.0,0.0067083615204 +1470074976159470860,0.0,-0.0157887653762,0.0,0.0,0.0,0.0102961371419 +1470074976232967613,0.0,-0.0157999141269,0.0,0.0,0.0,0.0114248988606 +1470074976305229612,0.0,-0.0163511369133,0.0,0.0,0.0,0.0115595141115 +1470074976379749602,0.0,-0.0148035127425,0.0,0.0,0.0,0.00915459591297 +1470074976450661524,0.0,-0.0142004756385,0.0,0.0,0.0,0.0100178391942 +1470074976523211996,0.0,-0.01445107167,0.0,0.0,0.0,0.0100747972654 +1470074976602958030,0.0,-0.0138462150597,0.0,0.0,0.0,0.0090870804562 +1470074976676398586,0.0,-0.0128783411288,0.0,0.0,0.0,0.00891569694256 +1470074976748167960,0.0,-0.0125148199999,0.0,0.0,0.0,0.00996453170907 +1470074976821586382,0.0,-0.0121376772353,0.0,0.0,0.0,0.0095798160639 +1470074976896636467,0.0,-0.012221897518,0.0,0.0,0.0,0.00901265057269 +1470074976969602679,0.0,-0.0114662582182,0.0,0.0,0.0,0.00980369772123 +1470074977042728825,0.0,-0.0110504688078,0.0,0.0,0.0,0.00816215552796 +1470074977123295827,0.0,-0.0107051805162,0.0,0.0,0.0,0.00889692638764 +1470074977202912120,0.0,-0.0108096304664,0.0,0.0,0.0,0.00915536387041 +1470074977277513687,0.0,-0.0102399933838,0.0,0.0,0.0,0.00837479849642 +1470074977353561117,0.0,-0.00966769674207,0.0,0.0,0.0,0.00813341315782 +1470074977425591933,0.0,-0.00947865967985,0.0,0.0,0.0,0.00761422632507 +1470074977495719798,0.0,-0.00917802685286,0.0,0.0,0.0,0.00725197236737 +1470074977568021191,0.0,-0.00880741638477,0.0,0.0,0.0,0.00680021499077 +1470074977644789968,0.0,-0.00890872908171,0.0,0.0,0.0,0.00849492395561 +1470074977716233048,0.0,-0.00840233047839,0.0,0.0,0.0,0.00737820710922 +1470074977792787517,0.0,-0.00823401225145,0.0,0.0,0.0,0.00676368813672 +1470074977868313507,0.0,-0.00797090054835,0.0,0.0,0.0,0.00654634640767 +1470074977940671330,0.0,-0.00802985710438,0.0,0.0,0.0,0.00657303418545 +1470074978015765552,0.0,-0.00755921476866,0.0,0.0,0.0,0.00711007052773 +1470074978087150128,0.0,-0.00731714506979,0.0,0.0,0.0,0.00391020514068 +1470074978162524249,0.0,-0.00723161028112,0.0,0.0,0.0,0.00367114988148 +1470074978236136375,0.0,-0.00701264904226,0.0,0.0,0.0,0.00678974597546 +1470074978309796239,0.0,-0.00707963430668,0.0,0.0,0.0,0.00350216538041 +1470074978383797268,0.0,-0.00668761034842,0.0,0.0,0.0,0.0052829851718 +1470074978459579065,0.0,-0.0064707914495,0.0,0.0,0.0,0.00307848827206 +1470074978533117071,0.0,-0.00638663848276,0.0,0.0,0.0,0.00421157198318 +1470074978612037880,0.0,-0.00643003882255,0.0,0.0,0.0,0.00311846298216 +1470074978685813351,0.0,-0.00613059894528,0.0,0.0,0.0,0.0042503893769 +1470074978764336162,0.0,-0.00599446227188,0.0,0.0,0.0,0.00307430452015 +1470074978838945941,0.0,-0.00601025999869,0.0,0.0,0.0,0.00459846619425 +1470074978912736470,0.0,-0.00567507100637,0.0,0.0,0.0,0.00462637257433 +1470074978983581983,0.0,-0.00570649904545,0.0,0.0,0.0,0.00308120160012 +1470074979058170576,0.0,-0.00526616511281,0.0,0.0,0.0,0.00535946945806 +1470074979128819132,0.0,-0.00514486120428,0.0,0.0,0.0,0.0 +1470074979203746816,0.0,-0.00502926518555,0.0,0.0,0.0,0.00552622721445 +1470074979285835861,0.0,-0.00465192654516,0.0,0.0,0.0,0.00436793567191 +1470074979358931932,0.0,-0.00486250573184,0.0,0.0,0.0,0.00547444011514 +1470074979437828507,0.0,-0.00439577170993,0.0,0.0,0.0,0.00465165326492 +1470074979511286031,0.0,-0.0042904321232,0.0,0.0,0.0,0.0 +1470074979583497551,0.0,-0.00407782965685,0.0,0.0,0.0,0.0050885522844 +1470074979654803823,0.0,-0.00392899268653,0.0,0.0,0.0,0.0 +1470074979726931617,0.0,-0.00393620086248,0.0,0.0,0.0,0.00514645473272 +1470074979799154495,0.0,-0.00380445641811,0.0,0.0,0.0,0.0039993814573 +1470074979870242653,0.0,-0.00360208233233,0.0,0.0,0.0,0.0 +1470074979942327070,0.0,-0.00362592886548,0.0,0.0,0.0,0.00407975899773 +1470074980019371869,0.0,-0.00367764202292,0.0,0.0,0.0,0.00478580953437 +1470074980089441382,0.0,-0.00335672942336,0.0,0.0,0.0,0.00372700508351 +1470074980162129035,0.0,-0.00348113370474,0.0,0.0,0.0,0.0041688903917 +1470074980236235737,0.0,-0.0033104221278,0.0,0.0,0.0,0.00374037939771 +1470074980312125572,0.0,-0.0033566122071,0.0,0.0,0.0,0.00354198451291 +1470074980384228380,0.0,-0.00327860505666,0.0,0.0,0.0,0.00340477023811 +1470074980459521027,0.0,-0.00292463132526,0.0,0.0,0.0,0.00290413818309 +1470074980530797594,0.0,-0.00312991070907,0.0,0.0,0.0,0.00348968202688 +1470074980601095820,0.0,-0.00307868861939,0.0,0.0,0.0,0.00377953939516 +1470074980674018446,0.0,-0.00289149104963,0.0,0.0,0.0,0.00371378151329 +1470074980746069164,0.0,-0.00279348145585,0.0,0.0,0.0,0.0 +1470074980820208403,0.0,-0.00281287539165,0.0,0.0,0.0,0.00303002272169 +1470074980891720391,0.0,-0.00282807694162,0.0,0.0,0.0,0.00310216451415 +1470074980964453548,0.0,-0.00282561474825,0.0,0.0,0.0,0.00426477118745 +1470074981040251266,0.0,-0.00275267550136,0.0,0.0,0.0,0.00360065968273 +1470074981119611090,0.0,-0.00270575854342,0.0,0.0,0.0,0.00364432127888 +1470074981190981718,0.0,-0.00275198647167,0.0,0.0,0.0,0.00430637123827 +1470074981264939672,0.0,-0.0025640243047,0.0,0.0,0.0,0.0 +1470074981340872387,0.0,-0.00255921219821,0.0,0.0,0.0,0.00289734729233 +1470074981428729865,0.0,-0.00258480650719,0.0,0.0,0.0,0.0 +1470074981503498983,0.0,-0.00243908244531,0.0,0.0,0.0,0.0 +1470074981577915030,0.0,-0.00250279997821,0.0,0.0,0.0,0.00285329651555 +1470074981653388362,0.0,-0.00243391129534,0.0,0.0,0.0,0.0 +1470074981732108653,0.0,-0.00244256168018,0.0,0.0,0.0,0.0 +1470074981805116820,0.0,-0.00236909925352,0.0,0.0,0.0,0.00299696403531 +1470074981882231261,0.0,-0.00234679739337,0.0,0.0,0.0,0.00342034425017 +1470074981958741915,0.0,-0.00231952189814,0.0,0.0,0.0,0.00357371394361 +1470074982031782172,0.0,-0.00242179843943,0.0,0.0,0.0,0.00406780392095 +1470074982102703094,0.0,-0.00220492110933,0.0,0.0,0.0,0.0 +1470074982174234691,0.0,-0.00210676840852,0.0,0.0,0.0,0.0 +1470074982247282776,0.0,-0.00194148897539,0.0,0.0,0.0,0.0 +1470074982319993040,0.0,-0.00198831095706,0.0,0.0,0.0,0.00397480830767 +1470074982403526987,0.0,-0.00190631763424,0.0,0.0,0.0,0.0 +1470074982474794625,0.0,-0.00174829530875,0.0,0.0,0.0,0.0 +1470074982549697667,0.0,-0.00180361529227,0.0,0.0,0.0,0.0 +1470074982624100666,0.0,-0.00177694301467,0.0,0.0,0.0,0.0 +1470074982701535590,0.0,-0.00179021031941,0.0,0.0,0.0,0.0 +1470074982778466570,0.0,-0.00171946407641,0.0,0.0,0.0,0.00434487204104 +1470074982850705417,0.0,-0.0016590190434,0.0,0.0,0.0,0.00443346741737 +1470074982923463331,0.0,-0.00164481425072,0.0,0.0,0.0,0.0 +1470074982995849038,0.0,-0.00147981285463,0.0,0.0,0.0,0.0 +1470074983069307218,0.0,-0.00139521082278,0.0,0.0,0.0,0.0 +1470074983144349304,0.0,-0.00147601393397,0.0,0.0,0.0,0.00285394931803 +1470074983218425914,0.0,-0.00127883282836,0.0,0.0,0.0,0.00360400673185 +1470074983292737742,0.0,-0.0011938075849,0.0,0.0,0.0,0.0 +1470074983364736184,0.006,0.0,0.0,0.0,0.0,0.0 +1470074983440310223,0.006,0.0,0.0,0.0,0.0,0.0 +1470074983512208829,0.0,0.0,0.0,0.0,0.0,0.00346092687241 +1470074983587920947,0.006,0.0,0.0,0.0,0.0,0.0 +1470074983663302384,0.006,0.0,0.0,0.0,0.0,0.0 +1470074983738095541,0.006,0.0,0.0,0.0,0.0,0.0 +1470074983817661678,0.006,0.0,0.0,0.0,0.0,0.0 +1470074983893150360,0.006,0.0,0.0,0.0,0.0,0.0 +1470074983967400835,0.0,0.0,0.0,0.0,0.0,0.00396851326005 +1470074984040119250,0.006,0.0,0.0,0.0,0.0,0.0 +1470074984115220035,0.0,0.0,0.0,0.0,0.0,0.00315332707463 +1470074984190319330,0.0,0.0,0.0,0.0,0.0,0.00382984647692 +1470074984263432114,0.006,0.0,0.0,0.0,0.0,0.0 +1470074984335878406,0.0,0.0,0.0,0.0,0.0,0.00399107268821 +1470074984408180641,0.0,0.0,0.0,0.0,0.0,0.00476460283545 +1470074984483411863,0.0,0.0,0.0,0.0,0.0,0.00457992109429 +1470074984560208619,0.0,0.0,0.0,0.0,0.0,0.00385091655052 +1470074984637672692,0.0,0.0,0.0,0.0,0.0,0.00380994233769 +1470074984709272219,0.006,0.0,0.0,0.0,0.0,0.0 +1470074984782823998,0.006,0.0,0.0,0.0,0.0,0.0 +1470074984854123871,0.0,0.0,0.0,0.0,0.0,0.00293909967744 +1470074984929563085,0.006,0.0,0.0,0.0,0.0,0.0 +1470074985005026032,0.0,0.00594553655599,0.0,0.0,0.0,0.00473154214423 +1470074985080787051,0.0,0.00249358140518,0.0,0.0,0.0,0.0051118294666 +1470074985153566180,0.0,0.00205704547119,0.0,0.0,0.0,0.00735824023538 +1470074985234938783,0.0,0.00154113724482,0.0,0.0,0.0,0.00593357723391 +1470074985311569904,0.0,0.00161079022688,0.0,0.0,0.0,0.00695807510652 +1470074985388574822,0.0,0.0010906260426,0.0,0.0,0.0,0.00680154655072 +1470074985462791894,0.006,0.0,0.0,0.0,0.0,0.0 +1470074985536832415,0.006,0.0,0.0,0.0,0.0,0.0 +1470074985608781250,0.0,0.0,0.0,0.0,0.0,0.00374400579053 +1470074985694807150,0.006,0.0,0.0,0.0,0.0,0.0 +1470074985767366147,0.006,0.0,0.0,0.0,0.0,0.0 +1470074985839731924,0.006,0.0,0.0,0.0,0.0,0.0 +1470074985915549261,0.0,0.0,0.0,0.0,0.0,0.00322908504442 +1470074985991423532,0.006,0.0,0.0,0.0,0.0,0.0 +1470074986064450011,0.0,0.0,0.0,0.0,0.0,0.00433385596701 +1470074986139104885,0.0,0.0,0.0,0.0,0.0,0.00307229113198 +1470074986211808593,0.006,0.0,0.0,0.0,0.0,0.0 +1470074986289006820,0.0,-0.00558370531882,0.0,0.0,0.0,0.00343534677775 +1470074986362466209,0.0,-0.00231389454912,0.0,0.0,0.0,0.00490136138638 +1470074986440521056,0.0,-0.00388925980191,0.0,0.0,0.0,0.00433554414476 +1470074986517297640,0.0,-0.00328710447411,0.0,0.0,0.0,0.00308620965609 +1470074986594896217,0.0,-0.00346496693204,0.0,0.0,0.0,0.00320595154198 +1470074986667202690,0.0,-0.00364480748187,0.0,0.0,0.0,0.0 +1470074986739988462,0.0,-0.00339229635309,0.0,0.0,0.0,0.0 +1470074986821018956,0.0,-0.00323966953318,0.0,0.0,0.0,0.0 +1470074986896359368,0.0,-0.00285465213816,0.0,0.0,0.0,0.0 +1470074986972931932,0.0,-0.00295015796433,0.0,0.0,0.0,0.0 +1470074987048738951,0.0,-0.00294227294038,0.0,0.0,0.0,0.0 +1470074987126308826,0.0,-0.00321634234275,0.0,0.0,0.0,0.0 +1470074987199701508,0.0,-0.00407195770527,0.0,0.0,0.0,0.0 +1470074987273271609,0.0,-0.0040523504221,0.0,0.0,0.0,0.0 +1470074987347383801,0.0,-0.0037603126594,0.0,0.0,0.0,0.0 +1470074987423727618,0.0,-0.00344517103742,0.0,0.0,0.0,0.0 +1470074987500869368,0.0,-0.00328685359444,0.0,0.0,0.0,0.0 +1470074987575615655,0.0,-0.00332343659709,0.0,0.0,0.0,0.0 +1470074987647474194,0.0,-0.0031090523244,0.0,0.0,0.0,0.0 +1470074987721288660,0.0,-0.00300394432034,0.0,0.0,0.0,0.0 +1470074987797116165,0.0,-0.00279130853127,0.0,0.0,0.0,0.0 +1470074987874765414,0.0,-0.00266086814339,0.0,0.0,0.0,0.0 +1470074987952652979,0.0,-0.00258609868,0.0,0.0,0.0,0.0 +1470074988028504326,0.0,-0.00228734451692,0.0,0.0,0.0,0.0 +1470074988103043917,0.0,-0.00217856615196,0.0,0.0,0.0,0.0 +1470074988176403792,0.0,-0.00198729786436,0.0,0.0,0.0,0.0 +1470074988251846399,0.0,-0.00178633577536,0.0,0.0,0.0,0.0 +1470074988332410533,0.0,-0.00162005097951,0.0,0.0,0.0,0.0 +1470074988406034026,0.0,-0.00168909863915,0.0,0.0,0.0,0.0 +1470074988481719567,0.0,-0.0013934238569,0.0,0.0,0.0,0.0 +1470074988556321051,0.0,-0.00132324730392,0.0,0.0,0.0,0.0 +1470074988629798803,0.0,-0.00107947315435,0.0,0.0,0.0,0.0 +1470074988703342735,0.006,0.0,0.0,0.0,0.0,0.0 +1470074988775793496,0.006,0.0,0.0,0.0,0.0,0.0 +1470074988849401395,0.006,0.0,0.0,0.0,0.0,0.0 +1470074988925917201,0.006,0.0,0.0,0.0,0.0,0.0 +1470074989002585578,0.006,0.0,0.0,0.0,0.0,0.0 +1470074989080378770,0.006,0.0,0.0,0.0,0.0,0.0 +1470074989151986469,0.006,0.0,0.0,0.0,0.0,0.0 +1470074989228088561,0.006,0.0,0.0,0.0,0.0,0.0 +1470074989302305542,0.006,0.0,0.0,0.0,0.0,0.0 +1470074989380931948,0.006,0.0,0.0,0.0,0.0,0.0 +1470074989454963031,0.006,0.0,0.0,0.0,0.0,0.0 +1470074989530913014,0.006,0.0,0.0,0.0,0.0,0.0 +1470074989605439502,0.006,0.0,0.0,0.0,0.0,0.0 +1470074989683148391,0.0,0.00572543766004,0.0,0.0,0.0,0.0 +1470074989760751692,0.0,0.00185677055855,0.0,0.0,0.0,0.0 +1470074989834742477,0.0,0.00184772678305,0.0,0.0,0.0,0.00355937174451 +1470074989908621093,0.0,0.00183414835137,0.0,0.0,0.0,0.00340349778883 +1470074989988456288,0.0,0.0018197185791,0.0,0.0,0.0,0.00367100231393 +1470074990059805202,0.0,0.00182480376799,0.0,0.0,0.0,0.00406430099436 +1470074990133405943,0.0,0.00192559990686,0.0,0.0,0.0,0.0 +1470074990205701601,0.0,0.00191773519506,0.0,0.0,0.0,0.0 +1470074990277894129,0.0,0.00201050462787,0.0,0.0,0.0,0.0 +1470074990354212462,0.0,0.00205799327818,0.0,0.0,0.0,0.0 +1470074990429017691,0.0,0.00258380121206,0.0,0.0,0.0,0.0 +1470074990504150980,0.0,0.0030738132133,0.0,0.0,0.0,0.00342097837239 +1470074990576611083,0.0,0.00348289041434,0.0,0.0,0.0,0.00372904580904 +1470074990649423892,0.0,0.00313535884608,0.0,0.0,0.0,0.00421447364385 +1470074990721921704,0.0,0.00262695869085,0.0,0.0,0.0,0.0 +1470074990798463881,0.0,0.00230353523631,0.0,0.0,0.0,0.00392287248275 +1470074990872725186,0.0,0.00238779803392,0.0,0.0,0.0,0.00339782256126 +1470074990946682005,0.0,0.00207341514182,0.0,0.0,0.0,0.00389041391342 +1470074991017390073,0.0,0.00215892547396,0.0,0.0,0.0,0.002905868423 +1470074991092133384,0.0,0.00202892166217,0.0,0.0,0.0,0.00489459485149 +1470074991174177934,0.0,0.00178828742009,0.0,0.0,0.0,0.0 +1470074991247522223,0.0,0.00145080679682,0.0,0.0,0.0,0.00404311407733 +1470074991320038272,0.0,0.00154794219536,0.0,0.0,0.0,0.0 +1470074991395596542,0.0,0.00118496624407,0.0,0.0,0.0,0.0 +1470074991468466647,0.0,0.0,0.0,0.0,0.0,0.00418888930107 +1470074991545697609,0.0,0.0,0.0,0.0,0.0,0.00303071802698 +1470074991620736122,0.006,0.0,0.0,0.0,0.0,0.0 +1470074991695471752,0.006,0.0,0.0,0.0,0.0,0.0 +1470074991767088333,0.006,0.0,0.0,0.0,0.0,0.0 +1470074991842816322,0.006,0.0,0.0,0.0,0.0,0.0 +1470074991921859491,0.0,0.0,0.0,0.0,0.0,0.00420123816926 +1470074991999044325,0.006,0.0,0.0,0.0,0.0,0.0 +1470074992074576688,0.0,0.0,0.0,0.0,0.0,0.00289327636205 +1470074992148409133,0.006,0.0,0.0,0.0,0.0,0.0 +1470074992223902210,0.006,0.0,0.0,0.0,0.0,0.0 +1470074992299748340,0.006,0.0,0.0,0.0,0.0,0.0 +1470074992376977942,0.006,0.0,0.0,0.0,0.0,0.0 +1470074992450389425,0.006,0.0,0.0,0.0,0.0,0.0 +1470074992525572790,0.0,-0.00736396628778,0.0,0.0,0.0,0.0 +1470074992603685703,0.0,-0.00295248589824,0.0,0.0,0.0,0.0 +1470074992679525105,0.0,-0.00273345596503,0.0,0.0,0.0,0.0 +1470074992756489661,0.0,-0.0028709606954,0.0,0.0,0.0,0.0 +1470074992828430162,0.0,-0.00294389260347,0.0,0.0,0.0,0.0 +1470074992899873866,0.0,-0.00288534847434,0.0,0.0,0.0,0.0 +1470074992975028882,0.0,-0.00319243063565,0.0,0.0,0.0,0.0 +1470074993047713281,0.0,-0.00326785558249,0.0,0.0,0.0,0.0 +1470074993120051096,0.0,-0.00334685932259,0.0,0.0,0.0,0.0 +1470074993191729223,0.0,-0.0037202017137,0.0,0.0,0.0,0.0 +1470074993265733725,0.0,-0.00368719752292,0.0,0.0,0.0,-0.00317321477197 +1470074993344031741,0.0,-0.00393361804421,0.0,0.0,0.0,0.0 +1470074993419820265,0.0,-0.00360750736083,0.0,0.0,0.0,0.0 +1470074993495940105,0.0,-0.00308688697751,0.0,0.0,0.0,0.0 +1470074993573988087,0.0,-0.00323265822019,0.0,0.0,0.0,0.0 +1470074993650824451,0.0,-0.00316949128519,0.0,0.0,0.0,0.0 +1470074993725579210,0.0,-0.00298863302331,0.0,0.0,0.0,-0.0030000044117 +1470074993803373620,0.0,-0.00271699712957,0.0,0.0,0.0,0.0 +1470074993879670996,0.0,-0.00265610569502,0.0,0.0,0.0,0.0 +1470074993952810945,0.0,-0.0025337193289,0.0,0.0,0.0,0.0 +1470074994028849759,0.0,-0.00226761614318,0.0,0.0,0.0,0.0 +1470074994102299733,0.0,-0.0021849707828,0.0,0.0,0.0,0.0 +1470074994174762834,0.0,-0.00182590251203,0.0,0.0,0.0,0.0 +1470074994246887007,0.0,-0.00182842607956,0.0,0.0,0.0,0.0 +1470074994318745306,0.0,-0.00156595454897,0.0,0.0,0.0,0.0 +1470074994390112889,0.0,-0.00170999323364,0.0,0.0,0.0,0.0 +1470074994462422204,0.0,-0.00133958050396,0.0,0.0,0.0,0.0 +1470074994539840391,0.0,-0.0013151881599,0.0,0.0,0.0,0.0 +1470074994611204504,0.0,-0.00108118509288,0.0,0.0,0.0,0.0 +1470074994683078456,0.006,0.0,0.0,0.0,0.0,0.0 +1470074994759437566,0.006,0.0,0.0,0.0,0.0,0.0 +1470074994834760469,0.006,0.0,0.0,0.0,0.0,0.0 +1470074994913149203,0.006,0.0,0.0,0.0,0.0,0.0 +1470074994989960263,0.006,0.0,0.0,0.0,0.0,0.0 +1470074995064201559,0.006,0.0,0.0,0.0,0.0,0.0 +1470074995141012991,0.006,0.0,0.0,0.0,0.0,0.0 +1470074995215915247,0.006,0.0,0.0,0.0,0.0,0.0 +1470074995292395100,0.006,0.0,0.0,0.0,0.0,0.0 +1470074995365088165,0.006,0.0,0.0,0.0,0.0,0.0 +1470074995440629916,0.006,0.0,0.0,0.0,0.0,0.0 +1470074995515809262,0.006,0.0,0.0,0.0,0.0,0.0 +1470074995591520153,0.006,0.0,0.0,0.0,0.0,0.0 +1470074995662209486,0.006,0.0,0.0,0.0,0.0,0.0 +1470074995734074577,0.006,0.0,0.0,0.0,0.0,0.0 +1470074995807340091,0.006,0.0,0.0,0.0,0.0,0.0 +1470074995879613863,0.006,0.0,0.0,0.0,0.0,0.0 +1470074995953832292,0.006,0.0,0.0,0.0,0.0,0.0 +1470074996027485271,0.006,0.0,0.0,0.0,0.0,0.0 +1470074996104008680,0.006,0.0,0.0,0.0,0.0,0.0 +1470074996177071657,0.006,0.0,0.0,0.0,0.0,0.0 +1470074996253296822,0.006,0.0,0.0,0.0,0.0,0.0 +1470074996324681636,0.006,0.0,0.0,0.0,0.0,0.0 +1470074996398230027,0.006,0.0,0.0,0.0,0.0,0.0 +1470074996468537136,0.006,0.0,0.0,0.0,0.0,0.0 +1470074996539074861,0.006,0.0,0.0,0.0,0.0,0.0 +1470074996616687766,0.006,0.0,0.0,0.0,0.0,0.0 +1470074996692297403,0.006,0.0,0.0,0.0,0.0,0.0 +1470074996765428978,0.006,0.0,0.0,0.0,0.0,0.0 +1470074996839141413,0.006,0.0,0.0,0.0,0.0,0.0 +1470074996912533412,0.006,0.0,0.0,0.0,0.0,0.0 +1470074996982754892,0.006,0.0,0.0,0.0,0.0,0.0 +1470074997058880183,0.006,0.0,0.0,0.0,0.0,0.0 +1470074997133012630,0.006,0.0,0.0,0.0,0.0,0.0 +1470074997216984192,0.006,0.0,0.0,0.0,0.0,0.0 +1470074997292336929,0.006,0.0,0.0,0.0,0.0,0.0 +1470074997364437678,0.006,0.0,0.0,0.0,0.0,0.0 +1470074997443306356,0.006,0.0,0.0,0.0,0.0,0.0 +1470074997518640708,0.006,0.0,0.0,0.0,0.0,0.0 +1470074997592995643,0.006,0.0,0.0,0.0,0.0,0.0 +1470074997667654927,0.006,0.0,0.0,0.0,0.0,0.0 +1470074997744638589,0.006,0.0,0.0,0.0,0.0,0.0 +1470074997824674740,0.006,0.0,0.0,0.0,0.0,0.0 +1470074997899890837,0.006,0.0,0.0,0.0,0.0,0.0 +1470074997972066790,0.006,0.0,0.0,0.0,0.0,0.0 +1470074998049991109,0.006,0.0,0.0,0.0,0.0,0.0 +1470074998133370247,0.006,0.0,0.0,0.0,0.0,0.0 +1470074998206522589,0.006,0.0,0.0,0.0,0.0,0.0 +1470074998283181710,0.006,0.0,0.0,0.0,0.0,0.0 +1470074998357775928,0.006,0.0,0.0,0.0,0.0,0.0 +1470074998432069069,0.006,0.0,0.0,0.0,0.0,0.0 +1470074998504595931,0.006,0.0,0.0,0.0,0.0,0.0 +1470074998579411788,0.006,0.0,0.0,0.0,0.0,0.0 +1470074998651335278,0.006,0.0,0.0,0.0,0.0,0.0 +1470074998723918673,0.006,0.0,0.0,0.0,0.0,0.0 +1470074998800243363,0.0,0.0,0.0,0.0,0.0,0.00282367099154 +1470074998873522722,0.006,0.0,0.0,0.0,0.0,0.0 +1470074998949061813,0.006,0.0,0.0,0.0,0.0,0.0 +1470074999023788758,0.006,0.0,0.0,0.0,0.0,0.0 +1470074999095266937,0.0,0.0,0.0,0.0,0.0,0.00290296181382 +1470074999172329313,0.006,0.0,0.0,0.0,0.0,0.0 +1470074999247108102,0.006,0.0,0.0,0.0,0.0,0.0 +1470074999323330477,0.006,0.0,0.0,0.0,0.0,0.0 +1470074999399692473,0.006,0.0,0.0,0.0,0.0,0.0 +1470074999475131526,0.006,0.0,0.0,0.0,0.0,0.0 +1470074999550665576,0.006,0.0,0.0,0.0,0.0,0.0 +1470074999623777031,0.006,0.0,0.0,0.0,0.0,0.0 +1470074999700153492,0.006,0.0,0.0,0.0,0.0,0.0 +1470074999774039670,0.0,0.0,0.0,0.0,0.0,0.00291795182148 +1470074999848557353,0.006,0.0,0.0,0.0,0.0,0.0 +1470074999923823502,0.006,0.0,0.0,0.0,0.0,0.0 +1470074999994103805,0.006,0.0,0.0,0.0,0.0,0.0 +1470075000067513451,0.0,0.0,0.0,0.0,0.0,0.00282638717733 +1470075000136997800,0.006,0.0,0.0,0.0,0.0,0.0 +1470075000209323461,0.006,0.0,0.0,0.0,0.0,0.0 +1470075000281799412,0.006,0.0,0.0,0.0,0.0,0.0 +1470075000354613144,0.006,0.0,0.0,0.0,0.0,0.0 +1470075000429717631,0.006,0.0,0.0,0.0,0.0,0.0 +1470075000499523723,0.006,0.0,0.0,0.0,0.0,0.0 +1470075000573790898,0.006,0.0,0.0,0.0,0.0,0.0 +1470075000647380400,0.006,0.0,0.0,0.0,0.0,0.0 +1470075000725827486,0.006,0.0,0.0,0.0,0.0,0.0 +1470075000799405103,0.006,0.0,0.0,0.0,0.0,0.0 +1470075000872519543,0.006,0.0,0.0,0.0,0.0,0.0 +1470075000944606862,0.006,0.0,0.0,0.0,0.0,0.0 +1470075001021692610,0.006,0.0,0.0,0.0,0.0,0.0 +1470075001097213968,0.006,0.0,0.0,0.0,0.0,0.0 +1470075001172798764,0.006,0.0,0.0,0.0,0.0,0.0 +1470075001245750256,0.006,0.0,0.0,0.0,0.0,0.0 +1470075001318898867,0.006,0.0,0.0,0.0,0.0,0.0 +1470075001390492008,0.006,0.0,0.0,0.0,0.0,0.0 +1470075001465042133,0.0,0.0,0.0,0.0,0.0,0.00314002202309 +1470075001543227952,0.006,0.0,0.0,0.0,0.0,0.0 +1470075001619750517,0.0,0.0,0.0,0.0,0.0,0.00292446967764 +1470075001694720696,0.006,0.0,0.0,0.0,0.0,0.0 +1470075001778452827,0.006,0.0,0.0,0.0,0.0,0.0 +1470075001862247889,0.006,0.0,0.0,0.0,0.0,0.0 +1470075001939240480,0.006,0.0,0.0,0.0,0.0,0.0 +1470075002011958323,0.006,0.0,0.0,0.0,0.0,0.0 +1470075002085594965,0.006,0.0,0.0,0.0,0.0,0.0 +1470075002162163122,0.006,0.0,0.0,0.0,0.0,0.0 +1470075002234707338,0.006,0.0,0.0,0.0,0.0,0.0 +1470075002307790902,0.006,0.0,0.0,0.0,0.0,0.0 +1470075002389476526,0.006,0.0,0.0,0.0,0.0,0.0 +1470075002465373695,0.0,0.0,0.0,0.0,0.0,0.00789306321307 +1470075002541304382,0.006,0.0,0.0,0.0,0.0,0.0 +1470075002620420677,0.006,0.0,0.0,0.0,0.0,0.0 +1470075002698772361,0.006,0.0,0.0,0.0,0.0,0.0 +1470075002771375240,0.006,0.0,0.0,0.0,0.0,0.0 +1470075002847547515,0.006,0.0,0.0,0.0,0.0,0.0 +1470075002922863498,0.0,0.0,0.0,0.0,0.0,0.00365319138046 +1470075002997794378,0.0,0.0,0.0,0.0,0.0,0.00348053534741 +1470075003068748836,0.006,0.0,0.0,0.0,0.0,0.0 +1470075003145173275,0.006,0.0,0.0,0.0,0.0,0.0 +1470075003219274922,0.006,0.0,0.0,0.0,0.0,0.0 +1470075003293148744,0.006,0.0,0.0,0.0,0.0,0.0 +1470075003369115974,0.006,0.0,0.0,0.0,0.0,0.0 +1470075003440272142,0.006,0.0,0.0,0.0,0.0,0.0 +1470075003513438087,0.006,0.0,0.0,0.0,0.0,0.0 +1470075003585228820,0.0,0.0,0.0,0.0,0.0,0.00335359545184 +1470075003659551934,0.006,0.0,0.0,0.0,0.0,0.0 +1470075003737932106,0.006,0.0,0.0,0.0,0.0,0.0 +1470075003811383021,0.006,0.0,0.0,0.0,0.0,0.0 +1470075003885490718,0.006,0.0,0.0,0.0,0.0,0.0 +1470075003963072800,0.006,0.0,0.0,0.0,0.0,0.0 +1470075004038411960,0.006,0.0,0.0,0.0,0.0,0.0 +1470075004113005539,0.006,0.0,0.0,0.0,0.0,0.0 +1470075004189974259,0.006,0.0,0.0,0.0,0.0,0.0 +1470075004267141259,0.006,0.0,0.0,0.0,0.0,0.0 +1470075004340536452,0.006,0.0,0.0,0.0,0.0,0.0 +1470075004414501416,0.006,0.0,0.0,0.0,0.0,0.0 +1470075004490175396,0.006,0.0,0.0,0.0,0.0,0.0 +1470075004569392625,0.006,0.0,0.0,0.0,0.0,0.0 +1470075004641314402,0.006,0.0,0.0,0.0,0.0,0.0 +1470075004713848076,0.006,0.0,0.0,0.0,0.0,0.0 +1470075004784522668,0.006,0.0,0.0,0.0,0.0,0.0 +1470075004855819183,0.006,0.0,0.0,0.0,0.0,0.0 diff --git a/MobileRobot/docking_data/Vel2.txt~ b/MobileRobot/docking_data/Vel2.txt~ index 19b8f587b8408aadef141d31bfbc9164ae9d7f65..b8099c23e97702977e04b8d5ea5b27d6d4cb0900 100644 --- a/MobileRobot/docking_data/Vel2.txt~ +++ b/MobileRobot/docking_data/Vel2.txt~ @@ -1,629 +1,539 @@ %time,field.linear.x,field.linear.y,field.linear.z,field.angular.x,field.angular.y,field.angular.z -1469731593563251853,0.1,-0.0921696443534,0.0,0.0,0.0,0.0392907118771 -1469731593659248030,0.1,-0.0356730979348,0.0,0.0,0.0,0.0388707042988 -1469731593756303675,0.1,-0.035586198088,0.0,0.0,0.0,0.0392078859004 -1469731593848885207,0.1,-0.0355790319705,0.0,0.0,0.0,0.0390960998508 -1469731593925685817,0.1,-0.0356165673995,0.0,0.0,0.0,0.0392078859004 -1469731594003273530,0.1,-0.0356022876168,0.0,0.0,0.0,0.0392078859004 -1469731594095969410,0.1,-0.0356022876168,0.0,0.0,0.0,0.0392078859004 -1469731594176633939,0.1,-0.0356022876168,0.0,0.0,0.0,0.0392078859004 -1469731594256010211,0.1,-0.035152853992,0.0,0.0,0.0,0.0326432347653 -1469731594336956951,0.1,-0.035910658952,0.0,0.0,0.0,0.031923998381 -1469731594420314414,0.1,-0.0346508909428,0.0,0.0,0.0,0.0320569289522 -1469731594507311029,0.1,-0.0344961939419,0.0,0.0,0.0,0.0307348079554 -1469731594579830402,0.1,-0.0334199861849,0.0,0.0,0.0,0.032916453404 -1469731594657716932,0.1,-0.0312566271091,0.0,0.0,0.0,0.0342551683198 -1469731594737149610,0.1,-0.0315142099226,0.0,0.0,0.0,0.0403194652574 -1469731594832963161,0.1,-0.030563882258,0.0,0.0,0.0,0.0346858426315 -1469731594911494629,0.1,-0.0300327243322,0.0,0.0,0.0,0.036659272609 -1469731594989423047,0.1,-0.0293443467135,0.0,0.0,0.0,0.0343058658833 -1469731595068087162,0.1,-0.0289928509707,0.0,0.0,0.0,0.0295521060287 -1469731595147754711,0.1,-0.0287321899498,0.0,0.0,0.0,0.0427670121715 -1469731595227838909,0.1,-0.0280996481741,0.0,0.0,0.0,0.0374410264007 -1469731595305707469,0.1,-0.0278744580263,0.0,0.0,0.0,0.0351888157522 -1469731595381345111,0.1,-0.0275458923394,0.0,0.0,0.0,0.0321749651383 -1469731595462912797,0.1,-0.0277056495512,0.0,0.0,0.0,0.0337928442093 -1469731595539456870,0.1,-0.0274854685033,0.0,0.0,0.0,0.0387094982798 -1469731595612600288,0.1,-0.026518629309,0.0,0.0,0.0,0.0336181330973 -1469731595696140398,0.1,-0.0263788918072,0.0,0.0,0.0,0.0400778013073 -1469731595777053968,0.1,-0.0245841007346,0.0,0.0,0.0,0.0324279417609 -1469731595851666203,0.1,-0.0249154770786,0.0,0.0,0.0,0.0311632075401 -1469731595930611068,0.1,-0.0246993959362,0.0,0.0,0.0,0.0338270326097 -1469731596011796420,0.1,-0.0227491084898,0.0,0.0,0.0,0.0355073387665 -1469731596087613866,0.1,-0.0230971706325,0.0,0.0,0.0,0.0353651994936 -1469731596161771814,0.1,-0.0229727856481,0.0,0.0,0.0,0.0302913177664 -1469731596235328331,0.1,-0.0211851942206,0.0,0.0,0.0,0.0408026720091 -1469731596310662954,0.1,-0.0216692098642,0.0,0.0,0.0,0.0369576353207 -1469731596384390658,0.1,-0.0203005012536,0.0,0.0,0.0,0.0319879657886 -1469731596472179044,0.1,-0.0200290114099,0.0,0.0,0.0,0.0297997680694 -1469731596551751527,0.1,-0.0198600551153,0.0,0.0,0.0,0.03014096769 -1469731596627274299,0.1,-0.0190166101271,0.0,0.0,0.0,0.0398003369898 -1469731596706362909,0.1,-0.0189089577312,0.0,0.0,0.0,0.0380206436106 -1469731596787369929,0.1,-0.0174259322548,0.0,0.0,0.0,0.039922488733 -1469731596862352561,0.1,-0.0175586025828,0.0,0.0,0.0,0.0372773821844 -1469731596939120167,0.1,-0.0160441238472,0.0,0.0,0.0,0.033389300341 -1469731597011866623,0.1,-0.0163588660249,0.0,0.0,0.0,0.0369049897061 -1469731597086288391,0.1,-0.0151887845287,0.0,0.0,0.0,0.0363986532866 -1469731597159580544,0.1,-0.0141708325261,0.0,0.0,0.0,0.0292341952269 -1469731597238830333,0.1,-0.0142933842951,0.0,0.0,0.0,0.0339907789431 -1469731597315332133,0.1,-0.0132797021458,0.0,0.0,0.0,0.03240435972 -1469731597392111886,0.1,-0.0131994827131,0.0,0.0,0.0,0.0323837586198 -1469731597469982840,0.1,-0.0110649804437,0.0,0.0,0.0,0.028343182503 -1469731597545246149,0.1,-0.011379587915,0.0,0.0,0.0,0.0356524325661 -1469731597622213924,0.1,-0.0103228804136,0.0,0.0,0.0,0.0350404574966 -1469731597698835492,0.1,-0.00876235885936,0.0,0.0,0.0,0.0320649336252 -1469731597777440364,0.1,-0.00842050550896,0.0,0.0,0.0,0.0346662685676 -1469731597865693343,0.1,-0.00782042036223,0.0,0.0,0.0,0.0286932438438 -1469731597948243589,0.1,-0.00696241021547,0.0,0.0,0.0,0.0322877621664 -1469731598026838866,0.1,-0.00530282626319,0.0,0.0,0.0,0.0330305501143 -1469731598105615983,0.1,-0.00533809138852,0.0,0.0,0.0,0.0330471761667 -1469731598186564278,0.1,-0.00455856785569,0.0,0.0,0.0,0.0343868113048 -1469731598266647587,0.1,-0.00339465691866,0.0,0.0,0.0,0.0318424678379 -1469731598347869461,0.1,0.00172431730939,0.0,0.0,0.0,0.0362927729368 -1469731598427183429,0.1,0.00183232819703,0.0,0.0,0.0,0.035430033058 -1469731598501315808,0.1,0.00117803865503,0.0,0.0,0.0,0.0330650815128 -1469731598576979856,0.1,-0.000842613862649,0.0,0.0,0.0,0.032642340566 -1469731598658443944,0.1,0.0,0.0,0.0,0.0,0.0314587050953 -1469731598733607179,0.1,0.0,0.0,0.0,0.0,0.0312021301148 -1469731598816276211,0.1,-0.00608403499779,0.0,0.0,0.0,0.0303261169794 -1469731598895964566,0.1,-0.00350938273203,0.0,0.0,0.0,0.0317256009213 -1469731598983654330,0.1,-0.00438833141309,0.0,0.0,0.0,0.0293457540628 -1469731599063304468,0.1,-0.00658846601453,0.0,0.0,0.0,0.0315199444228 -1469731599139111200,0.1,-0.00681436430272,0.0,0.0,0.0,0.0324705553362 -1469731599218371018,0.1,-0.00870357449707,0.0,0.0,0.0,0.0305714576944 -1469731599295259107,0.1,-0.00922093577293,0.0,0.0,0.0,0.0291695055415 -1469731599375512134,0.1,-0.011590040732,0.0,0.0,0.0,0.0319954602759 -1469731599456997624,0.1,-0.0115817933118,0.0,0.0,0.0,0.0347017140512 -1469731599535316137,0.1,-0.0125053646749,0.0,0.0,0.0,0.03178139266 -1469731599617479741,0.1,-0.0147713361269,0.0,0.0,0.0,0.0306332019546 -1469731599695034175,0.1,-0.0148293870276,0.0,0.0,0.0,0.030274009873 -1469731599776555621,0.1,-0.0156773324644,0.0,0.0,0.0,0.0318843116889 -1469731599857775670,0.1,-0.0171782294994,0.0,0.0,0.0,0.0285566545973 -1469731599932786730,0.1,-0.0173074847793,0.0,0.0,0.0,0.0294824401476 -1469731600014377727,0.1,-0.0187294478303,0.0,0.0,0.0,0.0301055290044 -1469731600089850707,0.1,-0.0188816402441,0.0,0.0,0.0,0.0305142380195 -1469731600183681647,0.1,-0.0194215505904,0.0,0.0,0.0,0.0334466614698 -1469731600258196758,0.1,-0.0206159373706,0.0,0.0,0.0,0.0296195156924 -1469731600336437051,0.1,-0.020453563962,0.0,0.0,0.0,0.0286204472549 -1469731600413590460,0.1,-0.0215769658571,0.0,0.0,0.0,0.0299931320778 -1469731600492795118,0.1,-0.0215381726956,0.0,0.0,0.0,0.0302562304893 -1469731600574752134,0.1,-0.0222657123542,0.0,0.0,0.0,0.0286089261375 -1469731600652205704,0.1,-0.0222676899618,0.0,0.0,0.0,0.0282537819794 -1469731600733201098,0.1,-0.0225530662721,0.0,0.0,0.0,0.0299344764431 -1469731600810729570,0.1,-0.0230393463707,0.0,0.0,0.0,0.0276225495467 -1469731600887621369,0.1,-0.0229312694406,0.0,0.0,0.0,0.0268550094325 -1469731600964255505,0.1,-0.023133484829,0.0,0.0,0.0,0.028981589805 -1469731601044574348,0.1,-0.0234903913325,0.0,0.0,0.0,0.028832894204 -1469731601122659945,0.1,-0.0235422096735,0.0,0.0,0.0,0.0282965561424 -1469731601208328245,0.1,-0.0236279003656,0.0,0.0,0.0,0.0284163453745 -1469731601289615366,0.1,-0.0237194646483,0.0,0.0,0.0,0.0260308029854 -1469731601373914085,0.1,-0.0235572497135,0.0,0.0,0.0,0.0272255835994 -1469731601452709106,0.1,-0.0237671378588,0.0,0.0,0.0,0.0274962782024 -1469731601528553789,0.1,-0.0238923846519,0.0,0.0,0.0,0.0272026960093 -1469731601608310748,0.1,-0.0236530135905,0.0,0.0,0.0,0.0259493297465 -1469731601683864447,0.1,-0.0236470555103,0.0,0.0,0.0,0.0269545068321 -1469731601767651128,0.0,-0.0235816862023,0.0,0.0,0.0,0.0270342219717 -1469731601845296759,0.0,-0.0233140378779,0.0,0.0,0.0,0.0251813708602 -1469731601928595433,0.0,-0.0233261560237,0.0,0.0,0.0,0.0258243582041 -1469731602013370458,0.0,-0.0233013630992,0.0,0.0,0.0,0.0252460271168 -1469731602090193483,0.0,-0.0229588157272,0.0,0.0,0.0,0.0250570559647 -1469731602167701143,0.0,-0.0228457450455,0.0,0.0,0.0,0.0247322827443 -1469731602244833238,0.0,-0.0227613074666,0.0,0.0,0.0,0.0256212639475 -1469731602332863320,0.0,-0.0223654293602,0.0,0.0,0.0,0.0247730823712 -1469731602413701190,0.0,-0.0218468811696,0.0,0.0,0.0,0.025210732852 -1469731602494905785,0.0,-0.0222243996298,0.0,0.0,0.0,0.0247665823266 -1469731602572499380,0.0,-0.0223824022299,0.0,0.0,0.0,0.0239659647365 -1469731602652884715,0.0,-0.0232922095394,0.0,0.0,0.0,0.0242764180521 -1469731602736053708,0.0,-0.0238814292437,0.0,0.0,0.0,0.0232299341062 -1469731602812495561,0.0,-0.0228388707673,0.0,0.0,0.0,0.0227331065491 -1469731602891949108,0.0,-0.0228715684598,0.0,0.0,0.0,0.0228378305324 -1469731602968993533,0.0,-0.0226272327041,0.0,0.0,0.0,0.0220416908228 -1469731603045362352,0.0,-0.0220969797259,0.0,0.0,0.0,0.0215960774187 -1469731603123323664,0.0,-0.0221887480056,0.0,0.0,0.0,0.0210984201669 -1469731603204817456,0.0,-0.0217694378978,0.0,0.0,0.0,0.020534516495 -1469731603284266611,0.0,-0.0217900961971,0.0,0.0,0.0,0.0202477263488 -1469731603366361826,0.0,-0.0216901852524,0.0,0.0,0.0,0.0208505063287 -1469731603447929528,0.0,-0.021412328813,0.0,0.0,0.0,0.0204283307128 -1469731603523332668,0.0,-0.0210965095794,0.0,0.0,0.0,0.0199889760009 -1469731603600541114,0.0,-0.0210242990738,0.0,0.0,0.0,0.0198035949505 -1469731603676618905,0.0,-0.0205262622571,0.0,0.0,0.0,0.0188277823889 -1469731603755647505,0.0,-0.0205414790249,0.0,0.0,0.0,0.0188407059433 -1469731603831207141,0.0,-0.0200441744512,0.0,0.0,0.0,0.0185580748746 -1469731603912575797,0.0,-0.0200177532023,0.0,0.0,0.0,0.0185832555465 -1469731603994976273,0.0,-0.0198023823982,0.0,0.0,0.0,0.0182817098745 -1469731604072938818,0.0,-0.0196099534219,0.0,0.0,0.0,0.0188296124896 -1469731604157160810,0.0,-0.0190473908519,0.0,0.0,0.0,0.0176013794129 -1469731604235427989,0.0,-0.0189976475721,0.0,0.0,0.0,0.0177221841927 -1469731604311186760,0.0,-0.0186696655637,0.0,0.0,0.0,0.018589879147 -1469731604390323548,0.0,-0.0185446810311,0.0,0.0,0.0,0.0177881062575 -1469731604467497756,0.0,-0.0182791488206,0.0,0.0,0.0,0.0175191449595 -1469731604547007090,0.0,-0.0179092973804,0.0,0.0,0.0,0.017011515433 -1469731604637956099,0.0,-0.0178285282439,0.0,0.0,0.0,0.0172421819632 -1469731604727015880,0.0,-0.0176453669703,0.0,0.0,0.0,0.0177639611105 -1469731604803651456,0.0,-0.0169580521023,0.0,0.0,0.0,0.0152870294715 -1469731604877008946,0.0,-0.0170882556176,0.0,0.0,0.0,0.0152629912144 -1469731604957720163,0.0,-0.016873699013,0.0,0.0,0.0,0.0154494266986 -1469731605033360286,0.0,-0.0165981678998,0.0,0.0,0.0,0.015815487955 -1469731605112296506,0.0,-0.0160170944369,0.0,0.0,0.0,0.0145669711348 -1469731605193679510,0.0,-0.0160978501624,0.0,0.0,0.0,0.0141455626706 -1469731605272410292,0.0,-0.0160053945666,0.0,0.0,0.0,0.0142354124555 -1469731605354045603,0.0,-0.0155971831417,0.0,0.0,0.0,0.0144650727241 -1469731605432917356,0.0,-0.0155064694172,0.0,0.0,0.0,0.0130576219377 -1469731605512042187,0.0,-0.0152840798682,0.0,0.0,0.0,0.0141265634569 -1469731605590970231,0.0,-0.015100006271,0.0,0.0,0.0,0.0135992703035 -1469731605671312753,0.0,-0.0149006151741,0.0,0.0,0.0,0.0126048988315 -1469731605752522740,0.0,-0.0146806606239,0.0,0.0,0.0,0.0135486627449 -1469731605831941495,0.0,-0.014509840492,0.0,0.0,0.0,0.0123933159282 -1469731605911164665,0.0,-0.0142713795936,0.0,0.0,0.0,0.0131300691623 -1469731605989967608,0.0,-0.014107955057,0.0,0.0,0.0,0.0127590802256 -1469731606071659370,0.0,-0.0139133499151,0.0,0.0,0.0,0.0119539925213 -1469731606147572118,0.0,-0.0136715349143,0.0,0.0,0.0,0.0127270788612 -1469731606224693456,0.0,-0.0135262806302,0.0,0.0,0.0,0.0117590295497 -1469731606306977598,0.0,-0.0133358189052,0.0,0.0,0.0,0.0114307159877 -1469731606387887122,0.0,-0.0130897211617,0.0,0.0,0.0,0.0128867263526 -1469731606463105568,0.0,-0.0129539466983,0.0,0.0,0.0,0.0112122176928 -1469731606541094774,0.0,-0.0128986770993,0.0,0.0,0.0,0.0113250998464 -1469731606618851758,0.0,-0.0124057939982,0.0,0.0,0.0,0.0104622811419 -1469731606696166212,0.0,-0.0126929823643,0.0,0.0,0.0,0.0124638872418 -1469731606769482044,0.0,-0.0120322487092,0.0,0.0,0.0,0.0105460604501 -1469731606846218211,0.0,-0.0122463351077,0.0,0.0,0.0,0.0122400421711 -1469731606927079106,0.0,-0.0119340359753,0.0,0.0,0.0,0.0112193822649 -1469731607003253349,0.0,-0.0112819030469,0.0,0.0,0.0,0.00920355785693 -1469731607080589913,0.0,-0.0115713837331,0.0,0.0,0.0,0.0110828150064 -1469731607156295223,0.0,-0.0114370697325,0.0,0.0,0.0,0.00749896627296 -1469731607246732234,0.0,-0.0112828814572,0.0,0.0,0.0,0.00901904701712 -1469731607325161272,0.0,-0.011100790832,0.0,0.0,0.0,0.0103501650695 -1469731607401481827,0.0,-0.0109851914978,0.0,0.0,0.0,0.0100614739669 -1469731607479461364,0.0,-0.0106984458452,0.0,0.0,0.0,0.00963216079482 -1469731607556481772,0.0,-0.010561878938,0.0,0.0,0.0,0.0104231666549 -1469731607636973520,0.0,-0.010530861724,0.0,0.0,0.0,0.00841281635817 -1469731607715639811,0.0,-0.0103344291782,0.0,0.0,0.0,0.00855009110092 -1469731607790229238,0.0,-0.0101856921202,0.0,0.0,0.0,0.00973127805342 -1469731607865024024,0.0,-0.0101006751841,0.0,0.0,0.0,0.00646900397139 -1469731607949538449,0.0,-0.00980663250741,0.0,0.0,0.0,0.00602276883208 -1469731608030787741,0.0,-0.00984457257745,0.0,0.0,0.0,0.00882452250689 -1469731608107906393,0.0,-0.00950889933464,0.0,0.0,0.0,0.00783638023737 -1469731608187434415,0.0,-0.00950327649322,0.0,0.0,0.0,0.00525507501845 -1469731608271978564,0.0,-0.00942739478853,0.0,0.0,0.0,0.00586987881823 -1469731608354389311,0.0,-0.00914857685176,0.0,0.0,0.0,0.00665831572445 -1469731608437042289,0.0,-0.00916307750699,0.0,0.0,0.0,0.00584856328177 -1469731608510875912,0.0,-0.00900796375778,0.0,0.0,0.0,0.00676494972461 -1469731608587860669,0.0,-0.00873327690718,0.0,0.0,0.0,0.0057880352239 -1469731608665075436,0.0,-0.00881463702378,0.0,0.0,0.0,0.00470861696588 -1469731608739461060,0.0,-0.00844997703639,0.0,0.0,0.0,0.00476576195137 -1469731608818725819,0.0,-0.00840138565359,0.0,0.0,0.0,0.00582167488413 -1469731608895914420,0.0,-0.00830905738828,0.0,0.0,0.0,0.00393170900424 -1469731608975326976,0.0,-0.00794793005642,0.0,0.0,0.0,0.00424813313623 -1469731609051685770,0.0,-0.00798242736217,0.0,0.0,0.0,0.0047668371268 -1469731609131314745,0.0,-0.00775957326946,0.0,0.0,0.0,0.00499532032772 -1469731609210312800,0.0,-0.00747319936362,0.0,0.0,0.0,0.00452698719775 -1469731609290187983,0.0,-0.00747004057822,0.0,0.0,0.0,0.00416856795458 -1469731609370569379,0.0,-0.00731781866011,0.0,0.0,0.0,0.00484500458113 -1469731609447667494,0.0,-0.00703771091607,0.0,0.0,0.0,0.00430532646531 -1469731609527575290,0.0,-0.0069398991352,0.0,0.0,0.0,0.00517015933658 -1469731609606318324,0.0,-0.00683195862529,0.0,0.0,0.0,0.00423634624031 -1469731609688027996,0.0,-0.00649208962527,0.0,0.0,0.0,0.00428523272395 -1469731609763045513,0.0,-0.0064731792694,0.0,0.0,0.0,0.00383801174185 -1469731609842694901,0.0,-0.00636546033975,0.0,0.0,0.0,0.005806098904 -1469731609923516522,0.0,-0.00604690178838,0.0,0.0,0.0,0.00525878905978 -1469731610001714629,0.0,-0.00596926647779,0.0,0.0,0.0,0.0038586851504 -1469731610081152637,0.0,-0.00573844674584,0.0,0.0,0.0,0.00357455266915 -1469731610156092370,0.0,-0.0057303385025,0.0,0.0,0.0,0.00520689673113 -1469731610235783309,0.0,-0.00553366895375,0.0,0.0,0.0,0.00527632229866 -1469731610311726482,0.0,-0.00529700357077,0.0,0.0,0.0,0.00478569730806 -1469731610386746583,0.0,-0.005361631695,0.0,0.0,0.0,0.00570162649756 -1469731610468451754,0.0,-0.00504137135652,0.0,0.0,0.0,0.00607298478958 -1469731610545997511,0.0,-0.00501936498639,0.0,0.0,0.0,0.00407354083527 -1469731610632874493,0.0,-0.00496074448881,0.0,0.0,0.0,0.00656964885708 -1469731610713909013,0.0,-0.00483844987658,0.0,0.0,0.0,0.00509159189838 -1469731610791302002,0.0,-0.00467243630049,0.0,0.0,0.0,0.00564754972817 -1469731610871691799,0.0,-0.00461059841868,0.0,0.0,0.0,0.0048031874936 -1469731610955243425,0.0,-0.00455884925631,0.0,0.0,0.0,0.00669142188485 -1469731611033672042,0.0,-0.00439902763423,0.0,0.0,0.0,0.00555498650876 -1469731611112799339,0.0,-0.00428150910494,0.0,0.0,0.0,0.00686429937398 -1469731611189497688,0.0,-0.0042658393046,0.0,0.0,0.0,0.00489151838811 -1469731611266780051,0.0,-0.00423560160753,0.0,0.0,0.0,0.00567326010717 -1469731611353821558,0.0,-0.0041244809663,0.0,0.0,0.0,0.00698648148976 -1469731611433284808,0.0,-0.00413362469134,0.0,0.0,0.0,0.00506281293919 -1469731611509901616,0.0,-0.00398123744485,0.0,0.0,0.0,0.00545754503702 -1469731611587175835,0.0,-0.00404535509256,0.0,0.0,0.0,0.00526841116594 -1469731611663678286,0.0,-0.00400064140168,0.0,0.0,0.0,0.00529281873569 -1469731611740009437,0.0,-0.0038923817834,0.0,0.0,0.0,0.00376994229936 -1469731611815098425,0.0,-0.00387303392944,0.0,0.0,0.0,0.00455346388451 -1469731611902098008,0.0,-0.00383598219213,0.0,0.0,0.0,0.00513900276579 -1469731611981370107,0.0,-0.00380053713527,0.0,0.0,0.0,0.00485575347998 -1469731612066926287,0.0,-0.0038452533966,0.0,0.0,0.0,0.00575910471759 -1469731612147969203,0.0,-0.00387068625149,0.0,0.0,0.0,0.0057842959034 -1469731612227403457,0.0,-0.00379239480552,0.0,0.0,0.0,0.0050158078197 -1469731612307123964,0.0,-0.00385199464467,0.0,0.0,0.0,0.00489741218016 -1469731612386654835,0.0,-0.00381332147476,0.0,0.0,0.0,0.00517823686378 -1469731612460103151,0.0,-0.00381627622601,0.0,0.0,0.0,0.00545889160259 -1469731612539194065,0.0,-0.00378522723523,0.0,0.0,0.0,0.00527543647898 -1469731612619551834,0.0,-0.0037798718324,0.0,0.0,0.0,0.00571505399115 -1469731612696750531,0.0,-0.00378872405347,0.0,0.0,0.0,0.00459761440809 -1469731612776238918,0.0,-0.00368080090341,0.0,0.0,0.0,0.0049668857333 -1469731612855463419,0.0,-0.00372983239201,0.0,0.0,0.0,0.00337921178359 -1469731612931153114,0.0,-0.0037096459007,0.0,0.0,0.0,0.00324695101296 -1469731613011509342,0.0,-0.00367130022106,0.0,0.0,0.0,0.00325345517824 -1469731613089498590,0.0,-0.00369944069144,0.0,0.0,0.0,0.00355624505077 -1469731613171710357,0.0,-0.00369199342635,0.0,0.0,0.0,0.00362671967407 -1469731613249494770,0.0,-0.00364381488022,0.0,0.0,0.0,0.00243845707909 -1469731613329962988,0.0,-0.00366657491383,0.0,0.0,0.0,0.00266980846763 -1469731613408416015,0.0,-0.003639840368,0.0,0.0,0.0,0.00396250116336 -1469731613483167202,0.0,-0.00363087776658,0.0,0.0,0.0,0.00270113504329 -1469731613561408627,0.0,-0.00365931596217,0.0,0.0,0.0,0.00295377994749 -1469731613636263812,0.0,-0.00366414449719,0.0,0.0,0.0,0.00262658590119 -1469731613717475912,0.0,-0.00368942092714,0.0,0.0,0.0,0.00326191201349 -1469731613792308713,0.0,-0.00366095803288,0.0,0.0,0.0,0.00256831220249 -1469731613872766509,0.0,-0.00363359760103,0.0,0.0,0.0,0.00354965256333 -1469731613955070425,0.0,-0.00359040349332,0.0,0.0,0.0,0.00214392179324 -1469731614032631743,0.0,-0.00356970183161,0.0,0.0,0.0,0.00316511611808 -1469731614111233690,0.0,-0.0035226650497,0.0,0.0,0.0,0.00360451357195 -1469731614197257878,0.0,-0.00351442377624,0.0,0.0,0.0,0.0028251960729 -1469731614272855087,0.0,-0.00347718506661,0.0,0.0,0.0,0.00263492542505 -1469731614354187520,0.0,-0.00335134967771,0.0,0.0,0.0,0.00174956617116 -1469731614428743948,0.0,-0.00332983471063,0.0,0.0,0.0,0.00298705500043 -1469731614506956462,0.0,-0.0032925651556,0.0,0.0,0.0,0.00340099926336 -1469731614582882495,0.0,-0.00317426293698,0.0,0.0,0.0,0.0022417014017 -1469731614663880597,0.0,-0.00320477969554,0.0,0.0,0.0,0.00174098920188 -1469731614741091615,0.0,-0.00305112439749,0.0,0.0,0.0,0.00285611162538 -1469731614817130235,0.0,-0.00307170662639,0.0,0.0,0.0,0.00379608565156 -1469731614896936078,0.0,-0.00303762502578,0.0,0.0,0.0,0.00215309473038 -1469731614978101182,0.0,-0.00288374807295,0.0,0.0,0.0,0.00176464367696 -1469731615060687411,0.0,-0.00292831636575,0.0,0.0,0.0,0.00270676682161 -1469731615136382842,0.0,-0.00287772658822,0.0,0.0,0.0,0.00266544296125 -1469731615217419551,0.0,-0.00281512921286,0.0,0.0,0.0,0.00240609543427 -1469731615295472228,0.0,-0.00283379202318,0.0,0.0,0.0,0.0 -1469731615373180499,0.0,-0.00277723395807,0.0,0.0,0.0,0.0 -1469731615451440735,0.0,-0.00264241775107,0.0,0.0,0.0,0.00297382205019 -1469731615541309720,0.0,-0.00264341007528,0.0,0.0,0.0,0.00396906835404 -1469731615620770942,0.0,-0.00266583531705,0.0,0.0,0.0,0.00358698660567 -1469731615697227219,0.0,-0.00258926361409,0.0,0.0,0.0,0.00150675170127 -1469731615773244132,0.0,-0.00255233412218,0.0,0.0,0.0,0.0 -1469731615851650115,0.0,-0.00245742167887,0.0,0.0,0.0,0.00181266554893 -1469731615926174484,0.0,-0.00246612060425,0.0,0.0,0.0,0.00264369743562 -1469731616010457900,0.0,-0.00238703978789,0.0,0.0,0.0,0.0 -1469731616093453773,0.0,-0.00237676759791,0.0,0.0,0.0,0.0 -1469731616169525244,0.0,-0.0023270432612,0.0,0.0,0.0,0.0 -1469731616247260180,0.0,-0.00224268730339,0.0,0.0,0.0,0.00214090767144 -1469731616326384894,0.0,-0.0022746018095,0.0,0.0,0.0,0.0037024680264 -1469731616403959388,0.0,-0.0022044175638,0.0,0.0,0.0,0.0 -1469731616481811953,0.0,-0.00217054998112,0.0,0.0,0.0,0.0 -1469731616563609868,0.0,-0.00215157495421,0.0,0.0,0.0,0.0 -1469731616645099414,0.0,-0.00213693001848,0.0,0.0,0.0,0.0 -1469731616720717268,0.0,-0.00204229054582,0.0,0.0,0.0,0.0 -1469731616802561601,0.0,-0.00205742269364,0.0,0.0,0.0,0.00340540601931 -1469731616879598256,0.0,-0.00199548218009,0.0,0.0,0.0,0.0024563495314 -1469731616959762940,0.0,-0.00194277885911,0.0,0.0,0.0,0.0 -1469731617040600299,0.0,-0.00189648316783,0.0,0.0,0.0,0.00143554465484 -1469731617117520613,0.0,-0.00180921878275,0.0,0.0,0.0,0.00142948956451 -1469731617200399857,0.0,-0.00177122495678,0.0,0.0,0.0,0.00153834421251 -1469731617281275050,0.0,-0.00171356765163,0.0,0.0,0.0,0.0 -1469731617360993567,0.0,-0.00156729792786,0.0,0.0,0.0,0.00174070491185 -1469731617441766593,0.0,-0.00160970860702,0.0,0.0,0.0,0.00194531828293 -1469731617522260209,0.0,-0.00146838057396,0.0,0.0,0.0,0.0 -1469731617600327226,0.0,-0.0014433334915,0.0,0.0,0.0,0.00141064205275 -1469731617681061577,0.0,-0.00140475816634,0.0,0.0,0.0,0.00353596733269 -1469731617761384861,0.0,-0.00137460689601,0.0,0.0,0.0,0.00248390539231 -1469731617839198980,0.0,-0.00138255094719,0.0,0.0,0.0,0.00148689806039 -1469731617916874033,0.0,-0.00125469896552,0.0,0.0,0.0,0.0 -1469731617994158655,0.0,-0.0012519631682,0.0,0.0,0.0,0.0 -1469731618072528121,0.0,-0.00122446233016,0.0,0.0,0.0,0.0 -1469731618151141259,0.0,-0.00120043584687,0.0,0.0,0.0,0.00144385380561 -1469731618229515919,0.0,-0.00119893004727,0.0,0.0,0.0,0.0 -1469731618312472277,0.0,-0.00114611351472,0.0,0.0,0.0,0.0 -1469731618390232085,0.0,-0.00108034940046,0.0,0.0,0.0,0.0 -1469731618471418457,0.0,-0.00108214342576,0.0,0.0,0.0,0.0 -1469731618551602350,0.0,-0.00117065118235,0.0,0.0,0.0,0.0 -1469731618633256587,0.0,-0.00114534733427,0.0,0.0,0.0,0.0 -1469731618711765701,0.0,-0.00114743476343,0.0,0.0,0.0,0.0 -1469731618791381234,0.0,-0.00112389584613,0.0,0.0,0.0,0.0 -1469731618871339679,0.0,-0.00106198368204,0.0,0.0,0.0,0.0 -1469731618953417505,0.0,-0.000991283986539,0.0,0.0,0.0,0.0018842420814 -1469731619034851459,0.0,-0.001002011556,0.0,0.0,0.0,0.0 -1469731619114820683,0.0,-0.000922976132304,0.0,0.0,0.0,0.0 -1469731619195712069,0.0,-0.000909491587251,0.0,0.0,0.0,0.0 -1469731619279292819,0.0,-0.000926671527147,0.0,0.0,0.0,0.0 -1469731619357408195,0.0,-0.000817524824113,0.0,0.0,0.0,0.0 -1469731619437625478,0.008,0.0,0.0,0.0,0.0,0.0 -1469731619517339410,0.0,0.0,0.0,0.0,0.0,0.002654278498 -1469731619595857708,0.0,0.0,0.0,0.0,0.0,0.00324019535915 -1469731619678136863,0.0,0.0,0.0,0.0,0.0,-0.00184237492729 -1469731619758510666,0.008,0.0,0.0,0.0,0.0,0.0 -1469731619839663514,0.008,0.0,0.0,0.0,0.0,0.0 -1469731619928437852,0.008,0.0,0.0,0.0,0.0,0.0 -1469731620007463299,0.008,0.0,0.0,0.0,0.0,0.0 -1469731620084111014,0.008,0.0,0.0,0.0,0.0,0.0 -1469731620164829406,0.008,0.0,0.0,0.0,0.0,0.0 -1469731620243899795,0.008,0.0,0.0,0.0,0.0,0.0 -1469731620324772348,0.008,0.0,0.0,0.0,0.0,0.0 -1469731620404724419,0.008,0.0,0.0,0.0,0.0,0.0 -1469731620485216874,0.0,0.0,0.0,0.0,0.0,0.00277970480798 -1469731620562069376,0.0,0.0,0.0,0.0,0.0,0.00158866313765 -1469731620644150771,0.0,0.0,0.0,0.0,0.0,0.00330055211834 -1469731620726807595,0.0,0.0,0.0,0.0,0.0,0.00166029868454 -1469731620809215478,0.008,0.0,0.0,0.0,0.0,0.0 -1469731620891427066,0.008,0.0,0.0,0.0,0.0,0.0 -1469731620965526824,0.0,0.0,0.0,0.0,0.0,0.00189790781577 -1469731621045223797,0.0,0.0,0.0,0.0,0.0,0.00263859495668 -1469731621120808375,0.008,0.0,0.0,0.0,0.0,0.0 -1469731621204971695,0.0,0.0,0.0,0.0,0.0,0.00246543497229 -1469731621281235353,0.0,0.0,0.0,0.0,0.0,0.00228786726451 -1469731621358930512,0.0,0.0,0.0,0.0,0.0,0.00172698245682 -1469731621436217042,0.0,0.0,0.0,0.0,0.0,0.00185077369673 -1469731621514686239,0.0,0.0,0.0,0.0,0.0,0.00150255888646 -1469731621590414744,0.0,0.0,0.0,0.0,0.0,0.00155572880206 -1469731621670748685,0.0,0.0,0.0,0.0,0.0,0.00328021498091 -1469731621747413532,0.0,0.0,0.0,0.0,0.0,0.00281534285418 -1469731621833417266,0.0,0.0,0.0,0.0,0.0,0.00207458504915 -1469731621912570009,0.0,0.0,0.0,0.0,0.0,0.00229936090745 -1469731621992337230,0.008,0.0,0.0,0.0,0.0,0.0 -1469731622071131706,0.0,0.0,0.0,0.0,0.0,0.00278112330968 -1469731622159659131,0.0,0.0,0.0,0.0,0.0,0.00174938864303 -1469731622239329788,0.008,0.0,0.0,0.0,0.0,0.0 -1469731622321456896,0.008,0.0,0.0,0.0,0.0,0.0 -1469731622398865167,0.008,0.0,0.0,0.0,0.0,0.0 -1469731622476465660,0.008,0.0,0.0,0.0,0.0,0.0 -1469731622550481522,0.008,0.0,0.0,0.0,0.0,0.0 -1469731622632095358,0.0,0.0,0.0,0.0,0.0,0.00159423735867 -1469731622708814866,0.008,0.0,0.0,0.0,0.0,0.0 -1469731622785055580,0.008,0.0,0.0,0.0,0.0,0.0 -1469731622860522974,0.008,0.0,0.0,0.0,0.0,0.0 -1469731622936620823,0.0,0.0,0.0,0.0,0.0,0.00637720505522 -1469731623016445862,0.0,-0.00101887583342,0.0,0.0,0.0,0.0 -1469731623093698083,0.0,-0.00181851453689,0.0,0.0,0.0,0.0 -1469731623174120274,0.0,-0.0021030546127,0.0,0.0,0.0,0.0 -1469731623252168311,0.0,-0.00189918214065,0.0,0.0,0.0,-0.00383527455044 -1469731623329174796,0.0,-0.00186232827213,0.0,0.0,0.0,-0.00315285575756 -1469731623407453000,0.0,-0.00200690263492,0.0,0.0,0.0,0.00147224862152 -1469731623484800170,0.0,-0.00188963615876,0.0,0.0,0.0,0.0 -1469731623560596580,0.0,-0.00190186790732,0.0,0.0,0.0,0.0 -1469731623641396808,0.0,-0.00191077593324,0.0,0.0,0.0,-0.00217208179232 -1469731623716909244,0.0,-0.00215646763873,0.0,0.0,0.0,-0.00418684706688 -1469731623801008856,0.0,-0.00259565507603,0.0,0.0,0.0,-0.00409516474978 -1469731623887681190,0.0,-0.00245338331518,0.0,0.0,0.0,-0.00254977173399 -1469731623965934540,0.0,-0.00181807463598,0.0,0.0,0.0,-0.00254641965301 -1469731624042150833,0.0,-0.00166128288564,0.0,0.0,0.0,-0.00343555116824 -1469731624119878851,0.0,-0.00181856160593,0.0,0.0,0.0,-0.00350769618996 -1469731624197083262,0.0,-0.00187211963889,0.0,0.0,0.0,-0.00307308202212 -1469731624276934929,0.0,-0.00150122060981,0.0,0.0,0.0,-0.00221733256785 -1469731624353309287,0.0,-0.00166714654845,0.0,0.0,0.0,-0.00305072302947 -1469731624432937955,0.0,-0.00130911171046,0.0,0.0,0.0,-0.00242277542791 -1469731624511553472,0.0,-0.00116865006816,0.0,0.0,0.0,-0.00331883261077 -1469731624590275019,0.0,-0.00109653642011,0.0,0.0,0.0,-0.00251005011135 -1469731624672382221,0.0,-0.000945655382991,0.0,0.0,0.0,-0.00167881108672 -1469731624753302496,0.0,-0.000736142299891,0.0,0.0,0.0,0.0 -1469731624832071350,0.0,-0.000778480689794,0.0,0.0,0.0,0.0 -1469731624911947164,0.008,0.0,0.0,0.0,0.0,0.0 -1469731624988772964,0.0,0.0,0.0,0.0,0.0,-0.00146391099389 -1469731625068461690,0.008,0.0,0.0,0.0,0.0,0.0 -1469731625142584674,0.008,0.0,0.0,0.0,0.0,0.0 -1469731625218633302,0.008,0.0,0.0,0.0,0.0,0.0 -1469731625296633842,0.008,0.0,0.0,0.0,0.0,0.0 -1469731625371344921,0.008,0.0,0.0,0.0,0.0,0.0 -1469731625450243525,0.008,0.0,0.0,0.0,0.0,0.0 -1469731625527715784,0.008,0.0,0.0,0.0,0.0,0.0 -1469731625607569395,0.008,0.0,0.0,0.0,0.0,0.0 -1469731625683214454,0.008,0.0,0.0,0.0,0.0,0.0 -1469731625763294174,0.0,0.0,0.0,0.0,0.0,0.00189155039123 -1469731625839587322,0.0,0.00409651655163,0.0,0.0,0.0,0.00256297122303 -1469731625918186721,0.0,0.00206980305183,0.0,0.0,0.0,0.00313128400228 -1469731625996869740,0.0,0.00180320836063,0.0,0.0,0.0,0.0 -1469731626077681667,0.0,0.00188173585962,0.0,0.0,0.0,0.0 -1469731626152475386,0.0,0.00173665335792,0.0,0.0,0.0,0.00187923867852 -1469731626232846025,0.0,0.00184598660487,0.0,0.0,0.0,0.00246605775302 -1469731626316038782,0.0,0.0018667856736,0.0,0.0,0.0,0.00256640741803 -1469731626391737397,0.0,0.00190194270033,0.0,0.0,0.0,0.00235457713237 -1469731626469937956,0.0,0.00212234089541,0.0,0.0,0.0,0.00250080328536 -1469731626546340708,0.0,0.00225646219607,0.0,0.0,0.0,0.00180276357397 -1469731626620863312,0.0,0.00216773794423,0.0,0.0,0.0,0.0 -1469731626699492739,0.0,0.00220743352006,0.0,0.0,0.0,0.0 -1469731626776029336,0.0,0.00176068625803,0.0,0.0,0.0,0.00334210216587 -1469731626855155023,0.0,0.0018856470419,0.0,0.0,0.0,0.0 -1469731626935506640,0.0,0.00181493874098,0.0,0.0,0.0,0.0 -1469731627013977494,0.0,0.00166101177613,0.0,0.0,0.0,0.00178765505023 -1469731627091453781,0.0,0.00150599899161,0.0,0.0,0.0,0.0 -1469731627173146070,0.0,0.00127230441588,0.0,0.0,0.0,0.0017462683895 -1469731627255936429,0.0,0.00127253681812,0.0,0.0,0.0,0.00213877943252 -1469731627336434651,0.0,0.00101710189524,0.0,0.0,0.0,0.0 -1469731627417571909,0.0,0.00100734013523,0.0,0.0,0.0,0.0 -1469731627494548165,0.0,0.00106584219652,0.0,0.0,0.0,0.0 -1469731627576792641,0.0,0.000785802988514,0.0,0.0,0.0,0.0 -1469731627651258856,0.0,0.000822143707603,0.0,0.0,0.0,0.0 -1469731627730680689,0.008,0.0,0.0,0.0,0.0,0.0 -1469731627804922560,0.008,0.0,0.0,0.0,0.0,0.0 -1469731627881499686,0.008,0.0,0.0,0.0,0.0,0.0 -1469731627960071709,0.0,0.0,0.0,0.0,0.0,0.00216055533636 -1469731628037863263,0.008,0.0,0.0,0.0,0.0,0.0 -1469731628121636507,0.008,0.0,0.0,0.0,0.0,0.0 -1469731628201701707,0.0,0.0,0.0,0.0,0.0,0.00232928970832 -1469731628282540648,0.008,0.0,0.0,0.0,0.0,0.0 -1469731628361462062,0.008,0.0,0.0,0.0,0.0,0.0 -1469731628436766039,0.008,0.0,0.0,0.0,0.0,0.0 -1469731628512332726,0.0,0.0,0.0,0.0,0.0,-0.0015853066748 -1469731628591906492,0.0,0.0,0.0,0.0,0.0,0.00190195952577 -1469731628671221227,0.008,0.0,0.0,0.0,0.0,0.0 -1469731628752077650,0.008,0.0,0.0,0.0,0.0,0.0 -1469731628832360952,0.0,0.0,0.0,0.0,0.0,0.00273730896174 -1469731628912280686,0.0,0.0,0.0,0.0,0.0,0.00197966232723 -1469731628996659600,0.008,0.0,0.0,0.0,0.0,0.0 -1469731629077460975,0.008,0.0,0.0,0.0,0.0,0.0 -1469731629152502546,0.008,0.0,0.0,0.0,0.0,0.0 -1469731629230705748,0.008,0.0,0.0,0.0,0.0,0.0 -1469731629310087347,0.0,0.0,0.0,0.0,0.0,0.00252121710987 -1469731629388663829,0.008,0.0,0.0,0.0,0.0,0.0 -1469731629468034799,0.0,0.0,0.0,0.0,0.0,0.0026049676251 -1469731629547745928,0.008,0.0,0.0,0.0,0.0,0.0 -1469731629629938801,0.008,0.0,0.0,0.0,0.0,0.0 -1469731629713010400,0.0,0.0,0.0,0.0,0.0,0.00143738811941 -1469731629793112361,0.0,-0.00379560627584,0.0,0.0,0.0,0.0 -1469731629871390301,0.0,-0.000972286756903,0.0,0.0,0.0,0.00184130369419 -1469731629951782994,0.0,-0.00101704772171,0.0,0.0,0.0,0.0 -1469731630029074364,0.0,-0.0010681059545,0.0,0.0,0.0,0.0 -1469731630108436578,0.0,-0.00103779179585,0.0,0.0,0.0,0.00215778144943 -1469731630185324205,0.0,-0.00100817629677,0.0,0.0,0.0,0.0 -1469731630263358213,0.0,-0.00102026551571,0.0,0.0,0.0,0.0 -1469731630339235444,0.0,-0.0010256306788,0.0,0.0,0.0,0.0 -1469731630411195695,0.0,-0.00102713351679,0.0,0.0,0.0,0.0 -1469731630488876886,0.0,-0.00120978014153,0.0,0.0,0.0,-0.00245684161726 -1469731630568531097,0.0,-0.00132895147038,0.0,0.0,0.0,0.0 -1469731630653659261,0.0,-0.00126563390327,0.0,0.0,0.0,0.0 -1469731630733474421,0.0,-0.0014644915944,0.0,0.0,0.0,0.0 -1469731630816078062,0.0,-0.001138613276,0.0,0.0,0.0,-0.00173891438269 -1469731630890087295,0.0,-0.00110701132175,0.0,0.0,0.0,0.0 -1469731630974376950,0.0,-0.00122468897682,0.0,0.0,0.0,0.0 -1469731631053267399,0.0,-0.0011209808251,0.0,0.0,0.0,0.0 -1469731631137416694,0.0,-0.00111559927073,0.0,0.0,0.0,0.0 -1469731631214689051,0.0,-0.00108991873991,0.0,0.0,0.0,0.0 -1469731631293359889,0.0,-0.0010406627467,0.0,0.0,0.0,0.0 -1469731631371424113,0.0,-0.00101189132389,0.0,0.0,0.0,0.0 -1469731631449777512,0.0,-0.00101972860825,0.0,0.0,0.0,0.0 -1469731631529374670,0.0,-0.000895331200033,0.0,0.0,0.0,0.0 -1469731631607302885,0.0,-0.000926003545344,0.0,0.0,0.0,0.0 -1469731631683104217,0.0,-0.000860079373986,0.0,0.0,0.0,0.0 -1469731631758313131,0.0,-0.000842394396484,0.0,0.0,0.0,0.0 -1469731631845188919,0.008,0.0,0.0,0.0,0.0,0.0 -1469731631924312088,0.0,0.0,0.0,0.0,0.0,0.0018798673002 -1469731632003547794,0.0,0.0,0.0,0.0,0.0,0.00146964213454 -1469731632092327996,0.008,0.0,0.0,0.0,0.0,0.0 -1469731632178481538,0.008,0.0,0.0,0.0,0.0,0.0 -1469731632256808458,0.008,0.0,0.0,0.0,0.0,0.0 -1469731632331768956,0.008,0.0,0.0,0.0,0.0,0.0 -1469731632410327552,0.008,0.0,0.0,0.0,0.0,0.0 -1469731632489489001,0.0,0.0,0.0,0.0,0.0,0.002156785259 -1469731632569026940,0.008,0.0,0.0,0.0,0.0,0.0 -1469731632650437037,0.008,0.0,0.0,0.0,0.0,0.0 -1469731632726833749,0.0,0.0,0.0,0.0,0.0,0.00159241871614 -1469731632805455413,0.008,0.0,0.0,0.0,0.0,0.0 -1469731632881363088,0.008,0.0,0.0,0.0,0.0,0.0 -1469731632957158450,0.0,0.0,0.0,0.0,0.0,0.00204830766599 -1469731633038428494,0.008,0.0,0.0,0.0,0.0,0.0 -1469731633116371144,0.0,0.0,0.0,0.0,0.0,-0.00154914223308 -1469731633196987202,0.0,0.0,0.0,0.0,0.0,0.00187512805073 -1469731633276187783,0.008,0.0,0.0,0.0,0.0,0.0 -1469731633352860158,0.008,0.0,0.0,0.0,0.0,0.0 -1469731633431930478,0.008,0.0,0.0,0.0,0.0,0.0 -1469731633508511813,0.008,0.0,0.0,0.0,0.0,0.0 -1469731633588134340,0.008,0.0,0.0,0.0,0.0,0.0 -1469731633662449356,0.008,0.0,0.0,0.0,0.0,0.0 -1469731633740281332,0.008,0.0,0.0,0.0,0.0,0.0 -1469731633828088074,0.008,0.0,0.0,0.0,0.0,0.0 -1469731633903578528,0.008,0.0,0.0,0.0,0.0,0.0 -1469731633982482572,0.0,0.0,0.0,0.0,0.0,0.0020025255048 -1469731634056487032,0.008,0.0,0.0,0.0,0.0,0.0 -1469731634130218622,0.0,0.0,0.0,0.0,0.0,0.00181022488907 -1469731634207542410,0.008,0.0,0.0,0.0,0.0,0.0 -1469731634297186512,0.008,0.0,0.0,0.0,0.0,0.0 -1469731634382934339,0.008,0.0,0.0,0.0,0.0,0.0 -1469731634461857758,0.0,0.0,0.0,0.0,0.0,-0.00157302409679 -1469731634542121018,0.0,0.0,0.0,0.0,0.0,-0.00208667231079 -1469731634620523111,0.0,0.0,0.0,0.0,0.0,0.0030577343541 -1469731634698347704,0.008,0.0,0.0,0.0,0.0,0.0 -1469731634777470715,0.008,0.0,0.0,0.0,0.0,0.0 -1469731634852403772,0.008,0.0,0.0,0.0,0.0,0.0 -1469731634933948333,0.008,0.0,0.0,0.0,0.0,0.0 -1469731635007229849,0.008,0.0,0.0,0.0,0.0,0.0 -1469731635089044041,0.008,0.0,0.0,0.0,0.0,0.0 -1469731635165932411,0.0,0.0,0.0,0.0,0.0,0.0018776397676 -1469731635244832094,0.008,0.0,0.0,0.0,0.0,0.0 -1469731635320573879,0.008,0.0,0.0,0.0,0.0,0.0 -1469731635399925360,0.008,0.0,0.0,0.0,0.0,0.0 -1469731635478363378,0.008,0.0,0.0,0.0,0.0,0.0 -1469731635569611747,0.008,0.0,0.0,0.0,0.0,0.0 -1469731635650502094,0.0,0.0,0.0,0.0,0.0,0.00181089690708 -1469731635732383863,0.008,0.0,0.0,0.0,0.0,0.0 -1469731635811680689,0.008,0.0,0.0,0.0,0.0,0.0 -1469731635889078686,0.0,0.0,0.0,0.0,0.0,0.00147126521945 -1469731635973609179,0.008,0.0,0.0,0.0,0.0,0.0 -1469731636051103860,0.0,0.0,0.0,0.0,0.0,0.00143542087396 -1469731636132820504,0.0,0.0,0.0,0.0,0.0,0.00239292965242 -1469731636212197898,0.008,0.0,0.0,0.0,0.0,0.0 -1469731636288670920,0.008,0.0,0.0,0.0,0.0,0.0 -1469731636367450182,0.0,0.0,0.0,0.0,0.0,0.00169194000775 -1469731636447210861,0.0,0.0,0.0,0.0,0.0,0.00205195386225 -1469731636528613590,0.0,0.0,0.0,0.0,0.0,0.00153388578102 -1469731636609830756,0.008,0.0,0.0,0.0,0.0,0.0 -1469731636690089565,0.008,0.0,0.0,0.0,0.0,0.0 -1469731636781320084,0.0,0.0,0.0,0.0,0.0,0.00328081499073 -1469731636856943119,0.0,0.0,0.0,0.0,0.0,0.00322073034527 -1469731636932603169,0.0,0.0,0.0,0.0,0.0,0.00244754834874 -1469731637012362449,0.008,0.0,0.0,0.0,0.0,0.0 -1469731637091089283,0.008,0.0,0.0,0.0,0.0,0.0 -1469731637169114945,0.008,0.0,0.0,0.0,0.0,0.0 -1469731637251151065,0.008,0.0,0.0,0.0,0.0,0.0 -1469731637329467973,0.0,0.0,0.0,0.0,0.0,0.00177144852735 -1469731637409969832,0.008,0.0,0.0,0.0,0.0,0.0 -1469731637490711364,0.008,0.0,0.0,0.0,0.0,0.0 -1469731637569030773,0.0,0.0,0.0,0.0,0.0,0.00251561003683 -1469731637646326893,0.008,0.0,0.0,0.0,0.0,0.0 -1469731637727301607,0.008,0.0,0.0,0.0,0.0,0.0 -1469731637803536644,0.0,0.0,0.0,0.0,0.0,0.00201735157702 -1469731637877875976,0.0,0.0,0.0,0.0,0.0,0.00145614740843 -1469731637958631398,0.008,0.0,0.0,0.0,0.0,0.0 -1469731638037433078,0.0,0.0,0.0,0.0,0.0,0.0031599453586 -1469731638116494799,0.0,0.0,0.0,0.0,0.0,0.00199240338226 -1469731638193537600,0.0,0.0,0.0,0.0,0.0,0.00223635864235 -1469731638271720397,0.0,0.0,0.0,0.0,0.0,0.00259754339929 -1469731638352349464,0.0,0.0,0.0,0.0,0.0,0.00202362680928 -1469731638432458193,0.0,0.0,0.0,0.0,0.0,0.00150454211474 -1469731638509618775,0.008,0.0,0.0,0.0,0.0,0.0 -1469731638588233416,0.008,0.0,0.0,0.0,0.0,0.0 -1469731638666664367,0.0,0.0,0.0,0.0,0.0,0.00145275065396 -1469731638752151524,0.0,0.0,0.0,0.0,0.0,0.00171492129208 -1469731638831971038,0.0,0.0,0.0,0.0,0.0,0.00268016611827 -1469731638912207925,0.0,0.0,0.0,0.0,0.0,0.00161256119058 -1469731638988177876,0.0,0.0,0.0,0.0,0.0,0.00158958239197 -1469731639064702482,0.0,0.0,0.0,0.0,0.0,0.00195928398981 -1469731639143837317,0.0,0.0,0.0,0.0,0.0,0.00314284884823 -1469731639218410020,0.0,0.0,0.0,0.0,0.0,0.00248548666626 -1469731639294047460,0.0,0.0,0.0,0.0,0.0,0.0025231019825 -1469731639374370061,0.0,0.0,0.0,0.0,0.0,0.00189126176961 -1469731639453348879,0.008,0.0,0.0,0.0,0.0,0.0 -1469731639543342691,0.008,0.0,0.0,0.0,0.0,0.0 -1469731639620942795,0.008,0.0,0.0,0.0,0.0,0.0 -1469731639698873389,0.008,0.0,0.0,0.0,0.0,0.0 -1469731639779847701,0.0,0.0,0.0,0.0,0.0,0.00155063778492 -1469731639858258368,0.0,0.0,0.0,0.0,0.0,0.00187193712041 -1469731639937141908,0.0,0.0,0.0,0.0,0.0,0.00141842536494 -1469731640014246382,0.0,0.0,0.0,0.0,0.0,0.00229765902026 -1469731640091200359,0.0,0.0,0.0,0.0,0.0,0.00200565420772 -1469731640170356102,0.008,0.0,0.0,0.0,0.0,0.0 -1469731640247284357,0.0,0.0,0.0,0.0,0.0,0.00153340912178 -1469731640323244527,0.008,0.0,0.0,0.0,0.0,0.0 -1469731640401608825,0.0,0.0,0.0,0.0,0.0,0.00186955467763 -1469731640480890123,0.008,0.0,0.0,0.0,0.0,0.0 -1469731640562445831,0.008,0.0,0.0,0.0,0.0,0.0 -1469731640641497553,0.008,0.0,0.0,0.0,0.0,0.0 -1469731640718800060,0.008,0.0,0.0,0.0,0.0,0.0 -1469731640808686883,0.0,0.0,0.0,0.0,0.0,0.00153741765494 -1469731640887398008,0.008,0.0,0.0,0.0,0.0,0.0 -1469731640960989615,0.0,0.0,0.0,0.0,0.0,0.00153443272468 -1469731641041290854,0.008,0.0,0.0,0.0,0.0,0.0 -1469731641122529835,0.008,0.0,0.0,0.0,0.0,0.0 -1469731641203684637,0.008,0.0,0.0,0.0,0.0,0.0 -1469731641280961378,0.0,0.0,0.0,0.0,0.0,0.00212250108994 -1469731641357104439,0.008,0.0,0.0,0.0,0.0,0.0 -1469731641440849142,0.008,0.0,0.0,0.0,0.0,0.0 -1469731641519771652,0.008,0.0,0.0,0.0,0.0,0.0 -1469731641596068951,0.0,0.0,0.0,0.0,0.0,0.00249180722452 -1469731641676429066,0.0,0.0,0.0,0.0,0.0,0.00211788948443 -1469731641755883649,0.008,0.0,0.0,0.0,0.0,0.0 -1469731641833305361,0.0,0.0,0.0,0.0,0.0,0.00157384918235 -1469731641912443964,0.0,0.0,0.0,0.0,0.0,0.00246223674466 -1469731641988060566,0.008,0.0,0.0,0.0,0.0,0.0 -1469731642067000639,0.0,0.0,0.0,0.0,0.0,0.00195914545934 -1469731642145265125,0.008,0.0,0.0,0.0,0.0,0.0 -1469731642221973603,0.008,0.0,0.0,0.0,0.0,0.0 -1469731642299723754,0.008,0.0,0.0,0.0,0.0,0.0 -1469731642375970293,0.0,0.0,0.0,0.0,0.0,0.00188763795413 -1469731642452711316,0.008,0.0,0.0,0.0,0.0,0.0 -1469731642529505831,0.008,0.0,0.0,0.0,0.0,0.0 -1469731642608373716,0.008,0.0,0.0,0.0,0.0,0.0 -1469731642688238318,0.008,0.0,0.0,0.0,0.0,0.0 -1469731642765182235,0.008,0.0,0.0,0.0,0.0,0.0 -1469731642841372945,0.0,0.0,0.0,0.0,0.0,0.00201759471734 -1469731642923588689,0.0,0.0,0.0,0.0,0.0,0.00146596878343 -1469731643000828079,0.008,0.0,0.0,0.0,0.0,0.0 -1469731643080306979,0.008,0.0,0.0,0.0,0.0,0.0 -1469731643157208525,0.008,0.0,0.0,0.0,0.0,0.0 -1469731643238631150,0.008,0.0,0.0,0.0,0.0,0.0 +1469733891362255521,0.1,-0.16968111919,0.0,0.0,0.0,0.0369899222517 +1469733891455961396,0.1,-0.0386866750329,0.0,0.0,0.0,0.0377572663344 +1469733891534184089,0.1,-0.0384394122567,0.0,0.0,0.0,0.0367335766653 +1469733891612312414,0.1,-0.0386100513869,0.0,0.0,0.0,0.0369205175669 +1469733891690652621,0.1,-0.0386447966983,0.0,0.0,0.0,0.0373576832061 +1469733891771473053,0.1,-0.0383827548491,0.0,0.0,0.0,0.0370077293843 +1469733891846744543,0.1,-0.0386443217783,0.0,0.0,0.0,0.0380601704372 +1469733891930118209,0.1,-0.0388450873028,0.0,0.0,0.0,0.0381591485975 +1469733892006072930,0.1,-0.0387266777627,0.0,0.0,0.0,0.0405740718233 +1469733892091350092,0.1,-0.0406519091197,0.0,0.0,0.0,0.0399359158675 +1469733892168950760,0.1,-0.0406146743057,0.0,0.0,0.0,0.0415144275547 +1469733892249021560,0.1,-0.0395219103495,0.0,0.0,0.0,0.0433011119646 +1469733892325194315,0.1,-0.0363135748497,0.0,0.0,0.0,0.0334100738941 +1469733892402827788,0.1,-0.035642841994,0.0,0.0,0.0,0.0300445997878 +1469733892482583595,0.1,-0.0346657075566,0.0,0.0,0.0,0.0440509735622 +1469733892558436355,0.1,-0.0336210308597,0.0,0.0,0.0,0.0384190257885 +1469733892638435207,0.1,-0.0323405758494,0.0,0.0,0.0,0.0265566493719 +1469733892722019430,0.1,-0.0343181565726,0.0,0.0,0.0,0.0320754058837 +1469733892803002616,0.1,-0.032399505177,0.0,0.0,0.0,0.0328708256149 +1469733892883392670,0.1,-0.0311901526794,0.0,0.0,0.0,0.0374050038136 +1469733892961240611,0.1,-0.0324633831546,0.0,0.0,0.0,0.0436078154039 +1469733893039871128,0.1,-0.0310339726743,0.0,0.0,0.0,0.0368027492047 +1469733893117949695,0.1,-0.0297461347392,0.0,0.0,0.0,0.032427133938 +1469733893193174982,0.1,-0.0290984840865,0.0,0.0,0.0,0.0359979967645 +1469733893271679522,0.1,-0.0296344170311,0.0,0.0,0.0,0.034465948623 +1469733893347160818,0.1,-0.0295598033642,0.0,0.0,0.0,0.0291616582619 +1469733893420334783,0.1,-0.02699877973,0.0,0.0,0.0,0.0397810761024 +1469733893503385930,0.1,-0.0273713168581,0.0,0.0,0.0,0.0335456108867 +1469733893580678745,0.1,-0.0270269032346,0.0,0.0,0.0,0.0311182135128 +1469733893660154501,0.1,-0.0278133318844,0.0,0.0,0.0,0.0415898720985 +1469733893740195132,0.1,-0.0280279908267,0.0,0.0,0.0,0.0412394413811 +1469733893817405365,0.1,-0.0247573971869,0.0,0.0,0.0,0.0383701016961 +1469733893903414469,0.1,-0.0251985728527,0.0,0.0,0.0,0.0322177338043 +1469733893980590819,0.1,-0.0230873759768,0.0,0.0,0.0,0.0333689287302 +1469733894055120579,0.1,-0.0233235816477,0.0,0.0,0.0,0.0300706551079 +1469733894134243346,0.1,-0.02272238018,0.0,0.0,0.0,0.0308201862895 +1469733894211653545,0.1,-0.0231832608874,0.0,0.0,0.0,0.0336893250245 +1469733894286748427,0.1,-0.0212893365087,0.0,0.0,0.0,0.0333888034427 +1469733894366323562,0.1,-0.0204747408095,0.0,0.0,0.0,0.0388039847241 +1469733894440365397,0.1,-0.0217224371831,0.0,0.0,0.0,0.0273008713442 +1469733894519355655,0.1,-0.0193458585825,0.0,0.0,0.0,0.0294863056206 +1469733894594002766,0.1,-0.0188466434953,0.0,0.0,0.0,0.0348667806372 +1469733894678563988,0.1,-0.0175720057379,0.0,0.0,0.0,0.0328103029521 +1469733894755251117,0.1,-0.0171902995106,0.0,0.0,0.0,0.0337933698555 +1469733894834931157,0.1,-0.0174929434375,0.0,0.0,0.0,0.0366718462798 +1469733894912162789,0.1,-0.0164969018431,0.0,0.0,0.0,0.0328926856328 +1469733894988173288,0.1,-0.0162910555758,0.0,0.0,0.0,0.0297010119503 +1469733895063554581,0.1,-0.0149997724848,0.0,0.0,0.0,0.0396601058998 +1469733895142648852,0.1,-0.0143842129711,0.0,0.0,0.0,0.0401014584567 +1469733895217996656,0.1,-0.0141600790474,0.0,0.0,0.0,0.0365925750592 +1469733895296744849,0.1,-0.0127074522987,0.0,0.0,0.0,0.0374843678955 +1469733895389456905,0.1,-0.0125570866739,0.0,0.0,0.0,0.0227531502173 +1469733895468028532,0.1,-0.0114494583437,0.0,0.0,0.0,0.0338339442959 +1469733895543826620,0.1,-0.0114228978791,0.0,0.0,0.0,0.0302863681131 +1469733895624312668,0.1,-0.0100930550575,0.0,0.0,0.0,0.0284817032695 +1469733895701294330,0.1,-0.00855055450689,0.0,0.0,0.0,0.0323422941274 +1469733895779407632,0.1,-0.00788771145489,0.0,0.0,0.0,0.0340085879729 +1469733895853188095,0.1,-0.00690167266631,0.0,0.0,0.0,0.0324655483014 +1469733895928159066,0.1,-0.00606914932937,0.0,0.0,0.0,0.0406651083602 +1469733896009312040,0.1,-0.0035529016337,0.0,0.0,0.0,0.0367695784794 +1469733896087036056,0.1,-0.00365937968395,0.0,0.0,0.0,0.0270189058366 +1469733896163107244,0.1,-0.0018394203698,0.0,0.0,0.0,0.0293692364417 +1469733896238713224,0.1,-0.00176209329996,0.0,0.0,0.0,0.0305473515062 +1469733896316246287,0.1,-0.00225017847567,0.0,0.0,0.0,0.0301849808814 +1469733896392913928,0.1,-0.000114573663884,0.0,0.0,0.0,0.0270634723901 +1469733896469723434,0.1,-0.00103540854432,0.0,0.0,0.0,0.0416198272344 +1469733896548282363,0.1,-0.00196370282028,0.0,0.0,0.0,0.0300841856558 +1469733896623602624,0.1,0.0,0.0,0.0,0.0,0.0262834309014 +1469733896698178785,0.1,-0.00804103706803,0.0,0.0,0.0,0.0356955436594 +1469733896778381130,0.1,-0.00564617655105,0.0,0.0,0.0,0.0306162408687 +1469733896867811430,0.1,-0.00441375797357,0.0,0.0,0.0,0.0338139088939 +1469733896945453698,0.1,-0.00739205527051,0.0,0.0,0.0,0.0330985133512 +1469733897023720212,0.1,-0.00806879953546,0.0,0.0,0.0,0.0257782515668 +1469733897099536506,0.1,-0.00922856983964,0.0,0.0,0.0,0.0294038092307 +1469733897173639939,0.1,-0.0107552379551,0.0,0.0,0.0,0.0315481990343 +1469733897247893880,0.1,-0.0113573884342,0.0,0.0,0.0,0.0267864280172 +1469733897326099910,0.1,-0.0123999087203,0.0,0.0,0.0,0.0355358736333 +1469733897402613403,0.1,-0.013374214932,0.0,0.0,0.0,0.0312918558607 +1469733897476631272,0.1,-0.0120325447431,0.0,0.0,0.0,0.0321446204866 +1469733897557772524,0.1,-0.0156182296408,0.0,0.0,0.0,0.0268465917057 +1469733897634848639,0.1,-0.0163891941941,0.0,0.0,0.0,0.0297348175386 +1469733897717546449,0.1,-0.0168041274018,0.0,0.0,0.0,0.03152724412 +1469733897799550575,0.1,-0.0177929248939,0.0,0.0,0.0,0.0310369972893 +1469733897877026590,0.1,-0.0184743168483,0.0,0.0,0.0,0.0259400031497 +1469733897955200756,0.1,-0.0171003252946,0.0,0.0,0.0,0.0244593852895 +1469733898029303052,0.1,-0.019075141164,0.0,0.0,0.0,0.0266690902539 +1469733898107850260,0.1,-0.0196796722381,0.0,0.0,0.0,0.0291630544305 +1469733898188356873,0.1,-0.0204434118509,0.0,0.0,0.0,0.0299765699386 +1469733898264616706,0.1,-0.0205038236761,0.0,0.0,0.0,0.0229108803978 +1469733898344648518,0.1,-0.021014469333,0.0,0.0,0.0,0.0272672095127 +1469733898432506467,0.1,-0.0218112017784,0.0,0.0,0.0,0.0296603587847 +1469733898509837479,0.1,-0.0212285839221,0.0,0.0,0.0,0.0291291904598 +1469733898587970175,0.1,-0.0219463337742,0.0,0.0,0.0,0.027084500191 +1469733898665757820,0.1,-0.0213981623141,0.0,0.0,0.0,0.0267504492709 +1469733898744873157,0.1,-0.0223159998133,0.0,0.0,0.0,0.0252398699476 +1469733898826498699,0.1,-0.0226582838794,0.0,0.0,0.0,0.0258422244722 +1469733898913959826,0.1,-0.0226103723941,0.0,0.0,0.0,0.028268842363 +1469733898989981811,0.1,-0.0226368681573,0.0,0.0,0.0,0.0270038170465 +1469733899069488233,0.1,-0.0223545323312,0.0,0.0,0.0,0.0233861207249 +1469733899151406085,0.1,-0.0226949573306,0.0,0.0,0.0,0.0239724868128 +1469733899228592856,0.1,-0.0228739739529,0.0,0.0,0.0,0.0219629694535 +1469733899308900307,0.1,-0.0228341486955,0.0,0.0,0.0,0.0196996273193 +1469733899388517918,0.1,-0.0226862478453,0.0,0.0,0.0,0.0229547652635 +1469733899467573464,0.1,-0.0230173079573,0.0,0.0,0.0,0.0262201905193 +1469733899547826534,0.1,-0.0226383442983,0.0,0.0,0.0,0.0241512298171 +1469733899637024691,0.1,-0.0224811260869,0.0,0.0,0.0,0.0223599700147 +1469733899718072546,0.1,-0.0228460143244,0.0,0.0,0.0,0.0229884456002 +1469733899799668001,0.1,-0.0224629002865,0.0,0.0,0.0,0.0230648577962 +1469733899879994655,0.1,-0.0219933567885,0.0,0.0,0.0,0.0228600007308 +1469733899958946906,0.1,-0.0221854273711,0.0,0.0,0.0,0.0219119708217 +1469733900035993150,0.1,-0.0219492108809,0.0,0.0,0.0,0.0228724495813 +1469733900115842475,0.1,-0.0214798696318,0.0,0.0,0.0,0.0216215178712 +1469733900202560323,0.1,-0.0213969616207,0.0,0.0,0.0,0.0232684441434 +1469733900297922832,0.0,-0.0210240149032,0.0,0.0,0.0,0.0213896989114 +1469733900375604711,0.0,-0.0208330051859,0.0,0.0,0.0,0.0203720834982 +1469733900451689851,0.0,-0.0207085050339,0.0,0.0,0.0,0.0206250611218 +1469733900529649276,0.0,-0.0205008129883,0.0,0.0,0.0,0.0200549048708 +1469733900607979069,0.0,-0.0200430259935,0.0,0.0,0.0,0.0204284506765 +1469733900688594043,0.0,-0.01972000279,0.0,0.0,0.0,0.0200373000436 +1469733900763238999,0.0,-0.0195806810766,0.0,0.0,0.0,0.0182568610823 +1469733900848765032,0.0,-0.0194677194675,0.0,0.0,0.0,0.0197847411352 +1469733900929202985,0.0,-0.0183160473682,0.0,0.0,0.0,0.0191316984135 +1469733901004018014,0.0,-0.0192378793275,0.0,0.0,0.0,0.0188804191992 +1469733901081824636,0.0,-0.020082817253,0.0,0.0,0.0,0.0172868307567 +1469733901159025122,0.0,-0.0199613689214,0.0,0.0,0.0,0.0171452766018 +1469733901240262111,0.0,-0.0214904162662,0.0,0.0,0.0,0.0187976754332 +1469733901318358310,0.0,-0.0195805313161,0.0,0.0,0.0,0.0158235291995 +1469733901397478790,0.0,-0.0187098213626,0.0,0.0,0.0,0.0176293478747 +1469733901472870200,0.0,-0.0189456466659,0.0,0.0,0.0,0.0183405359968 +1469733901555782520,0.0,-0.0184943688496,0.0,0.0,0.0,0.0167359340879 +1469733901636982780,0.0,-0.0179892479908,0.0,0.0,0.0,0.0170088545567 +1469733901714894862,0.0,-0.0180989488307,0.0,0.0,0.0,0.0159972824379 +1469733901793277008,0.0,-0.017857814554,0.0,0.0,0.0,0.0163986496366 +1469733901872299223,0.0,-0.0178721873866,0.0,0.0,0.0,0.014862460199 +1469733901954055875,0.0,-0.0175046219108,0.0,0.0,0.0,0.0156436536588 +1469733902033418746,0.0,-0.0173029932064,0.0,0.0,0.0,0.0161859873689 +1469733902111283372,0.0,-0.0165949932193,0.0,0.0,0.0,0.0144031280105 +1469733902188205539,0.0,-0.0166558497086,0.0,0.0,0.0,0.015184911527 +1469733902263050377,0.0,-0.0165293328416,0.0,0.0,0.0,0.0147864839519 +1469733902341225430,0.0,-0.0162599768659,0.0,0.0,0.0,0.0148092596733 +1469733902419220089,0.0,-0.01557636964,0.0,0.0,0.0,0.0136491239161 +1469733902499362588,0.0,-0.0158215070211,0.0,0.0,0.0,0.0130343510079 +1469733902582240784,0.0,-0.0156135362757,0.0,0.0,0.0,0.0141328715737 +1469733902660705346,0.0,-0.0155350879009,0.0,0.0,0.0,0.0127955998327 +1469733902741801464,0.0,-0.0152069394311,0.0,0.0,0.0,0.0130056758875 +1469733902820435144,0.0,-0.0150053324614,0.0,0.0,0.0,0.0130749934459 +1469733902910045868,0.0,-0.0148525945858,0.0,0.0,0.0,0.0143995398621 +1469733902989411719,0.0,-0.0144624782449,0.0,0.0,0.0,0.0121274326522 +1469733903066655275,0.0,-0.0139314371582,0.0,0.0,0.0,0.010976984346 +1469733903139407393,0.0,-0.0141217140068,0.0,0.0,0.0,0.0105895561207 +1469733903218483755,0.0,-0.0139008458186,0.0,0.0,0.0,0.0107976448544 +1469733903292051012,0.0,-0.0136766977424,0.0,0.0,0.0,0.0108946097359 +1469733903366743046,0.0,-0.0135177311421,0.0,0.0,0.0,0.0118611479601 +1469733903444249504,0.0,-0.0132016314909,0.0,0.0,0.0,0.0110996951552 +1469733903521668688,0.0,-0.0132793537793,0.0,0.0,0.0,0.0115778178006 +1469733903601309960,0.0,-0.0129350906664,0.0,0.0,0.0,0.0123397498324 +1469733903678496046,0.0,-0.0127067647767,0.0,0.0,0.0,0.0121323334205 +1469733903757914771,0.0,-0.0122560755528,0.0,0.0,0.0,0.0107355300631 +1469733903837013381,0.0,-0.0120498907321,0.0,0.0,0.0,0.0107297719082 +1469733903923547710,0.0,-0.0118886268441,0.0,0.0,0.0,0.00977619328424 +1469733904002808481,0.0,-0.0117152047675,0.0,0.0,0.0,0.00974029473058 +1469733904079861924,0.0,-0.0121864076125,0.0,0.0,0.0,0.0116652359436 +1469733904155823121,0.0,-0.0113664124999,0.0,0.0,0.0,0.0113197976712 +1469733904231071061,0.0,-0.0112776159567,0.0,0.0,0.0,0.0105978603786 +1469733904316609151,0.0,-0.0110159209939,0.0,0.0,0.0,0.0110786107942 +1469733904395516238,0.0,-0.0109204113552,0.0,0.0,0.0,0.0101351022731 +1469733904469755914,0.0,-0.0104238472161,0.0,0.0,0.0,0.00904348139498 +1469733904544190422,0.0,-0.0105662843494,0.0,0.0,0.0,0.0108121271325 +1469733904616962150,0.0,-0.0103223142682,0.0,0.0,0.0,0.0106755956617 +1469733904695871088,0.0,-0.0102155316488,0.0,0.0,0.0,0.00551495192302 +1469733904773930941,0.0,-0.0102979279211,0.0,0.0,0.0,0.0078765348901 +1469733904853118005,0.0,-0.0102853891103,0.0,0.0,0.0,0.00886587403272 +1469733904929701427,0.0,-0.0100753183217,0.0,0.0,0.0,0.0104172936649 +1469733905023848400,0.0,-0.0097014107837,0.0,0.0,0.0,0.0102965583416 +1469733905098848984,0.0,-0.00963749341052,0.0,0.0,0.0,0.00872620336906 +1469733905176166003,0.0,-0.00956654825222,0.0,0.0,0.0,0.0079820922663 +1469733905253411743,0.0,-0.00949521942572,0.0,0.0,0.0,0.00853740559419 +1469733905327896822,0.0,-0.00961304072625,0.0,0.0,0.0,0.0082871524776 +1469733905403762949,0.0,-0.00897708040506,0.0,0.0,0.0,0.00756972657816 +1469733905489747776,0.0,-0.00932500466607,0.0,0.0,0.0,0.00816606344651 +1469733905565838861,0.0,-0.00907811816091,0.0,0.0,0.0,0.00765022294937 +1469733905645744998,0.0,-0.00889803401969,0.0,0.0,0.0,0.00757547231884 +1469733905722312883,0.0,-0.00878967166305,0.0,0.0,0.0,0.00684160800505 +1469733905802458011,0.0,-0.00871155064458,0.0,0.0,0.0,0.00566416906181 +1469733905879507134,0.0,-0.00848170043538,0.0,0.0,0.0,0.00799059391308 +1469733905955929099,0.0,-0.00849179944474,0.0,0.0,0.0,0.00552925995442 +1469733906032131689,0.0,-0.00825428415665,0.0,0.0,0.0,0.00526877276721 +1469733906109714849,0.0,-0.00846448332174,0.0,0.0,0.0,0.00440902745387 +1469733906186864518,0.0,-0.00807439736131,0.0,0.0,0.0,0.00505457585905 +1469733906263661050,0.0,-0.00800973796478,0.0,0.0,0.0,0.00410157632519 +1469733906341251482,0.0,-0.00783638007035,0.0,0.0,0.0,0.00372231173891 +1469733906416707770,0.0,-0.00768497199763,0.0,0.0,0.0,0.00416872665668 +1469733906492938285,0.0,-0.00766099886825,0.0,0.0,0.0,0.00331177206093 +1469733906571645519,0.0,-0.00744767537992,0.0,0.0,0.0,0.00499236040857 +1469733906651349552,0.0,-0.00762520800775,0.0,0.0,0.0,0.00315987973698 +1469733906727028244,0.0,-0.00724058484049,0.0,0.0,0.0,0.00338652801043 +1469733906797674320,0.0,-0.00698383138989,0.0,0.0,0.0,0.00340418110616 +1469733906869778638,0.0,-0.00684408661827,0.0,0.0,0.0,0.00278250480084 +1469733906944131585,0.0,-0.00657360255751,0.0,0.0,0.0,0.00261160576086 +1469733907021396325,0.0,-0.00653727119833,0.0,0.0,0.0,0.00317104184966 +1469733907097897533,0.0,-0.00665960994457,0.0,0.0,0.0,0.00325613264545 +1469733907179359472,0.0,-0.0061647979516,0.0,0.0,0.0,0.00278253820607 +1469733907252875064,0.0,-0.00602656151696,0.0,0.0,0.0,0.00298615019069 +1469733907329351939,0.0,-0.00579965850031,0.0,0.0,0.0,0.00343734270249 +1469733907404277934,0.0,-0.00574651370983,0.0,0.0,0.0,0.00526078401212 +1469733907480942180,0.0,-0.00581723122286,0.0,0.0,0.0,0.00297450140746 +1469733907557364666,0.0,-0.00537248851443,0.0,0.0,0.0,0.00278058440486 +1469733907634969876,0.0,-0.00533310823145,0.0,0.0,0.0,0.00318125222303 +1469733907710222080,0.0,-0.0050955196383,0.0,0.0,0.0,0.00472679168284 +1469733907785619613,0.0,-0.00505651382794,0.0,0.0,0.0,0.00503669800858 +1469733907862715410,0.0,-0.00475762296088,0.0,0.0,0.0,0.00439927115274 +1469733907936069019,0.0,-0.00500800663983,0.0,0.0,0.0,0.00306180905206 +1469733908021222171,0.0,-0.0047098451102,0.0,0.0,0.0,0.00362706631647 +1469733908097497753,0.0,-0.00445081360202,0.0,0.0,0.0,0.00280414109447 +1469733908176438502,0.0,-0.00433560207835,0.0,0.0,0.0,0.00271159681548 +1469733908252689815,0.0,-0.00434810265981,0.0,0.0,0.0,0.00371515257873 +1469733908335597951,0.0,-0.00410990150162,0.0,0.0,0.0,0.00367923923241 +1469733908409514383,0.0,-0.00411619129772,0.0,0.0,0.0,0.00465773898913 +1469733908487638446,0.0,-0.00422470758257,0.0,0.0,0.0,0.00316303371575 +1469733908567389841,0.0,-0.00402650673548,0.0,0.0,0.0,0.00407539644541 +1469733908643084828,0.0,-0.00383140954127,0.0,0.0,0.0,0.00282224733878 +1469733908724343057,0.0,-0.00384344624362,0.0,0.0,0.0,0.00405299838833 +1469733908800760829,0.0,-0.00377463310668,0.0,0.0,0.0,0.003759276395 +1469733908881116358,0.0,-0.00369862064266,0.0,0.0,0.0,0.00404542569224 +1469733908958199385,0.0,-0.00361995114159,0.0,0.0,0.0,0.00469141136124 +1469733909033507352,0.0,-0.0037283829323,0.0,0.0,0.0,0.00353035340225 +1469733909111923373,0.0,-0.00356720813739,0.0,0.0,0.0,0.00274907593148 +1469733909192795584,0.0,-0.00345427687332,0.0,0.0,0.0,0.00370512804089 +1469733909270381910,0.0,-0.00333221807693,0.0,0.0,0.0,0.0035734746084 +1469733909348733200,0.0,-0.00327287228947,0.0,0.0,0.0,0.00257372129887 +1469733909427646383,0.0,-0.00324821823412,0.0,0.0,0.0,0.00426627895422 +1469733909509901115,0.0,-0.00324875467939,0.0,0.0,0.0,0.00436547665539 +1469733909580738297,0.0,-0.00318967797338,0.0,0.0,0.0,0.00307128473019 +1469733909655241276,0.0,-0.00305897594806,0.0,0.0,0.0,0.00341113674282 +1469733909732625066,0.0,-0.00320824219387,0.0,0.0,0.0,0.00343816291734 +1469733909809295139,0.0,-0.0032195713929,0.0,0.0,0.0,0.00404622861525 +1469733909896958474,0.0,-0.00308755108047,0.0,0.0,0.0,0.00410947188218 +1469733909971346918,0.0,-0.00309580172009,0.0,0.0,0.0,0.00280630478279 +1469733910049897271,0.0,-0.00304785616892,0.0,0.0,0.0,0.00266141042578 +1469733910123320768,0.0,-0.00288750152526,0.0,0.0,0.0,0.00305002843562 +1469733910195120752,0.0,-0.00286862757938,0.0,0.0,0.0,0.0042453274115 +1469733910275790197,0.0,-0.00288080900842,0.0,0.0,0.0,0.00304709493319 +1469733910351095139,0.0,-0.00288599587644,0.0,0.0,0.0,0.00252104227319 +1469733910431157495,0.0,-0.00277559284508,0.0,0.0,0.0,0.00258523675368 +1469733910507450932,0.0,-0.00282185097936,0.0,0.0,0.0,0.00240195974632 +1469733910584386728,0.0,-0.00279623137686,0.0,0.0,0.0,0.00389235012049 +1469733910661368891,0.0,-0.00272440374918,0.0,0.0,0.0,0.0039640590823 +1469733910736258548,0.0,-0.00283377120335,0.0,0.0,0.0,0.00382077479354 +1469733910815508447,0.0,-0.00275141050663,0.0,0.0,0.0,0.00447448059606 +1469733910891543353,0.0,-0.00271197606795,0.0,0.0,0.0,0.00270289252184 +1469733910971642245,0.0,-0.00266927422958,0.0,0.0,0.0,0.00212720451984 +1469733911047758206,0.0,-0.00267240796435,0.0,0.0,0.0,0.0014410021256 +1469733911118658422,0.0,-0.00264295489233,0.0,0.0,0.0,0.00161986853822 +1469733911197299015,0.0,-0.00256749177284,0.0,0.0,0.0,0.00252547880809 +1469733911273649859,0.0,-0.00263950453247,0.0,0.0,0.0,0.00322120207333 +1469733911350802156,0.0,-0.00254140514199,0.0,0.0,0.0,0.00392656015954 +1469733911427102186,0.0,-0.00232832569528,0.0,0.0,0.0,0.00233989007024 +1469733911502455542,0.0,-0.00236166135268,0.0,0.0,0.0,0.00164126029575 +1469733911577678451,0.0,-0.00235079939955,0.0,0.0,0.0,0.00268722493447 +1469733911657425941,0.0,-0.00238826758751,0.0,0.0,0.0,0.00291548843872 +1469733911733474713,0.0,-0.00249458460826,0.0,0.0,0.0,0.0029628569799 +1469733911816335773,0.0,-0.00244750275833,0.0,0.0,0.0,0.00265264067736 +1469733911893044800,0.0,-0.00235854058238,0.0,0.0,0.0,0.0031943313952 +1469733911971819689,0.0,-0.00230619525917,0.0,0.0,0.0,0.00349818148564 +1469733912059053281,0.0,-0.002300950448,0.0,0.0,0.0,0.00166047119719 +1469733912137514713,0.0,-0.00229689380564,0.0,0.0,0.0,0.0 +1469733912213373888,0.0,-0.00219803838719,0.0,0.0,0.0,0.0 +1469733912296408731,0.0,-0.00218242337854,0.0,0.0,0.0,0.00186901437469 +1469733912376423987,0.0,-0.00226521358228,0.0,0.0,0.0,0.002291352806 +1469733912451646980,0.0,-0.00222390469385,0.0,0.0,0.0,0.00299708633704 +1469733912532751009,0.0,-0.0021779067677,0.0,0.0,0.0,0.00322127124674 +1469733912620133401,0.0,-0.00219915211223,0.0,0.0,0.0,0.00380584754418 +1469733912692733134,0.0,-0.00210404700238,0.0,0.0,0.0,0.00333607773269 +1469733912772715012,0.0,-0.00217535599037,0.0,0.0,0.0,0.0036540041944 +1469733912850440752,0.0,-0.00202512417275,0.0,0.0,0.0,0.0 +1469733912937096581,0.0,-0.00222851824375,0.0,0.0,0.0,0.00219839160627 +1469733913013480134,0.0,-0.00244345735604,0.0,0.0,0.0,0.00334108218395 +1469733913088986536,0.0,-0.00223774010211,0.0,0.0,0.0,0.00390128137005 +1469733913169054901,0.0,-0.00211854348262,0.0,0.0,0.0,0.00346115924337 +1469733913252872816,0.0,-0.00221173571035,0.0,0.0,0.0,0.00382663226208 +1469733913330894605,0.0,-0.00196291074368,0.0,0.0,0.0,0.00202542197132 +1469733913417933904,0.0,-0.00201232249411,0.0,0.0,0.0,0.0 +1469733913495351047,0.0,-0.00185894116101,0.0,0.0,0.0,0.00297143611653 +1469733913576722729,0.0,-0.00200638133875,0.0,0.0,0.0,0.00269195287953 +1469733913652978601,0.0,-0.00206949127889,0.0,0.0,0.0,0.00324682760081 +1469733913732624364,0.0,-0.00205204231038,0.0,0.0,0.0,0.00302855800144 +1469733913815969722,0.0,-0.00199874123144,0.0,0.0,0.0,0.00316154025665 +1469733913897530157,0.0,-0.00200621703615,0.0,0.0,0.0,0.00286262814824 +1469733913975621250,0.0,-0.00193350146876,0.0,0.0,0.0,0.00216280489027 +1469733914048768769,0.0,-0.0019188152235,0.0,0.0,0.0,0.00224382551066 +1469733914129910194,0.0,-0.00198162006892,0.0,0.0,0.0,0.0 +1469733914209037078,0.0,-0.00193869954502,0.0,0.0,0.0,0.0 +1469733914289259454,0.0,-0.00197159298965,0.0,0.0,0.0,0.0 +1469733914363075013,0.0,-0.00197235821092,0.0,0.0,0.0,0.00150721004725 +1469733914441945528,0.0,-0.00200549411909,0.0,0.0,0.0,0.0 +1469733914519656308,0.0,-0.00197019990118,0.0,0.0,0.0,0.0 +1469733914595446348,0.0,-0.00199574571957,0.0,0.0,0.0,0.0 +1469733914679483070,0.0,-0.00201345440047,0.0,0.0,0.0,0.00200628948786 +1469733914758011564,0.0,-0.00184418904961,0.0,0.0,0.0,0.0 +1469733914836006001,0.0,-0.0019470257403,0.0,0.0,0.0,0.0 +1469733914912064141,0.0,-0.00204578874879,0.0,0.0,0.0,0.00170894246647 +1469733914991806605,0.0,-0.0019243865466,0.0,0.0,0.0,0.0 +1469733915066743281,0.0,-0.00184238196714,0.0,0.0,0.0,0.0 +1469733915142444320,0.0,-0.00175734740793,0.0,0.0,0.0,0.0 +1469733915217333572,0.0,-0.00171803881193,0.0,0.0,0.0,0.00182230215875 +1469733915292378174,0.0,-0.00155589391594,0.0,0.0,0.0,0.0 +1469733915368739825,0.0,-0.00153429359615,0.0,0.0,0.0,0.0 +1469733915447766431,0.0,-0.00148625953823,0.0,0.0,0.0,0.00139792443149 +1469733915523498224,0.0,-0.00153609490958,0.0,0.0,0.0,0.00216734226154 +1469733915604566605,0.0,-0.00134495175749,0.0,0.0,0.0,0.0 +1469733915684453174,0.0,-0.00126091812268,0.0,0.0,0.0,0.0 +1469733915761352292,0.0,-0.00129712943285,0.0,0.0,0.0,0.00164024897041 +1469733915845620549,0.0,-0.001219737648,0.0,0.0,0.0,0.0 +1469733915921809102,0.0,-0.00110471072118,0.0,0.0,0.0,0.0 +1469733916001510052,0.0,-0.00111705330534,0.0,0.0,0.0,0.0 +1469733916076719496,0.0,-0.00110567691868,0.0,0.0,0.0,0.0024417146983 +1469733916157184142,0.0,-0.00115491870218,0.0,0.0,0.0,0.001437154187 +1469733916235949330,0.0,-0.00099104325555,0.0,0.0,0.0,0.0 +1469733916313827521,0.0,-0.000990199923802,0.0,0.0,0.0,0.0 +1469733916392568645,0.0,-0.000910310671795,0.0,0.0,0.0,0.0 +1469733916470625904,0.0,-0.000933923363379,0.0,0.0,0.0,0.0 +1469733916550168391,0.0,-0.000907936410841,0.0,0.0,0.0,0.00154967342379 +1469733916627461250,0.0,-0.000902095680529,0.0,0.0,0.0,0.0026300593868 +1469733916704542010,0.0,-0.000864569397192,0.0,0.0,0.0,0.00211701517906 +1469733916781120962,0.008,0.0,0.0,0.0,0.0,0.0 +1469733916856004915,0.008,0.0,0.0,0.0,0.0,0.0 +1469733916930563091,0.0,0.0,0.0,0.0,0.0,0.00145630160834 +1469733917015633497,0.008,0.0,0.0,0.0,0.0,0.0 +1469733917093487526,0.0,0.0,0.0,0.0,0.0,0.00166505730853 +1469733917175923622,0.008,0.0,0.0,0.0,0.0,0.0 +1469733917256802331,0.0,0.0,0.0,0.0,0.0,-0.00164573540602 +1469733917334781178,0.008,0.0,0.0,0.0,0.0,0.0 +1469733917416956522,0.008,0.0,0.0,0.0,0.0,0.0 +1469733917491578373,0.008,0.0,0.0,0.0,0.0,0.0 +1469733917570628230,0.0,0.0,0.0,0.0,0.0,0.00397312163233 +1469733917646370889,0.008,0.0,0.0,0.0,0.0,0.0 +1469733917724806577,0.008,0.0,0.0,0.0,0.0,0.0 +1469733917802198912,0.0,0.0,0.0,0.0,0.0,0.00382800192897 +1469733917881053886,0.0,0.0,0.0,0.0,0.0,0.00169242010533 +1469733917959941255,0.008,0.0,0.0,0.0,0.0,0.0 +1469733918039616084,0.0,0.0,0.0,0.0,0.0,0.0016454407326 +1469733918115566439,0.008,0.0,0.0,0.0,0.0,0.0 +1469733918191639033,0.008,0.0,0.0,0.0,0.0,0.0 +1469733918267971712,0.0,0.0,0.0,0.0,0.0,0.00283900233475 +1469733918347530339,0.0,0.0,0.0,0.0,0.0,0.00251009063207 +1469733918425410398,0.008,0.0,0.0,0.0,0.0,0.0 +1469733918504352690,0.008,0.0,0.0,0.0,0.0,0.0 +1469733918581730642,0.008,0.0,0.0,0.0,0.0,0.0 +1469733918672732279,0.008,0.0,0.0,0.0,0.0,0.0 +1469733918750176692,0.0,0.0,0.0,0.0,0.0,0.00165369224449 +1469733918828011468,0.0,0.0,0.0,0.0,0.0,0.00347496225673 +1469733918903779597,0.0,0.0,0.0,0.0,0.0,0.00201638178955 +1469733918981048388,0.0,0.0,0.0,0.0,0.0,0.00200747629935 +1469733919058028724,0.0,0.0,0.0,0.0,0.0,0.00199834774527 +1469733919134570719,0.008,0.0,0.0,0.0,0.0,0.0 +1469733919212256829,0.008,0.0,0.0,0.0,0.0,0.0 +1469733919290168191,0.008,0.0,0.0,0.0,0.0,0.0 +1469733919368350754,0.0,0.0,0.0,0.0,0.0,0.00400368912837 +1469733919452878269,0.0,0.0,0.0,0.0,0.0,0.00267164311882 +1469733919532369492,0.0,0.0,0.0,0.0,0.0,0.0015005520079 +1469733919613568403,0.0,0.0,0.0,0.0,0.0,0.00402403982441 +1469733919689176837,0.0,0.0,0.0,0.0,0.0,0.00336041783808 +1469733919767874412,0.008,0.0,0.0,0.0,0.0,0.0 +1469733919851143691,0.008,0.0,0.0,0.0,0.0,0.0 +1469733919929869656,0.008,0.0,0.0,0.0,0.0,0.0 +1469733920007976686,0.0,0.0,0.0,0.0,0.0,0.00156212786816 +1469733920088258527,0.008,0.0,0.0,0.0,0.0,0.0 +1469733920171200197,0.008,0.0,0.0,0.0,0.0,0.0 +1469733920248633636,0.008,0.0,0.0,0.0,0.0,0.0 +1469733920331635856,0.008,0.0,0.0,0.0,0.0,0.0 +1469733920407264670,0.0,0.0,0.0,0.0,0.0,0.00207546597186 +1469733920483113338,0.0,0.0,0.0,0.0,0.0,0.00146893229803 +1469733920560763400,0.0,0.0,0.0,0.0,0.0,0.0038038033401 +1469733920637882469,0.0,0.0,0.0,0.0,0.0,0.00223050212624 +1469733920716128803,0.008,0.0,0.0,0.0,0.0,0.0 +1469733920792005249,0.008,0.0,0.0,0.0,0.0,0.0 +1469733920871264121,0.008,0.0,0.0,0.0,0.0,0.0 +1469733920949313226,0.0,0.0,0.0,0.0,0.0,0.00147790060041 +1469733921026419967,0.008,0.0,0.0,0.0,0.0,0.0 +1469733921106600157,0.008,0.0,0.0,0.0,0.0,0.0 +1469733921188122653,0.008,0.0,0.0,0.0,0.0,0.0 +1469733921267011556,0.008,0.0,0.0,0.0,0.0,0.0 +1469733921348627389,0.0,0.0,0.0,0.0,0.0,-0.00151588381812 +1469733921427709002,0.008,0.0,0.0,0.0,0.0,0.0 +1469733921507513293,0.008,0.0,0.0,0.0,0.0,0.0 +1469733921587270444,0.008,0.0,0.0,0.0,0.0,0.0 +1469733921665576745,0.0,0.0,0.0,0.0,0.0,0.00234924604366 +1469733921741421654,0.008,0.0,0.0,0.0,0.0,0.0 +1469733921820391498,0.0,-0.000971377250875,0.0,0.0,0.0,0.0 +1469733921908738709,0.0,-0.00103635452388,0.0,0.0,0.0,0.00153482933694 +1469733921988992572,0.0,-0.00106635263465,0.0,0.0,0.0,0.00198508391989 +1469733922067647329,0.0,-0.00105083779408,0.0,0.0,0.0,0.0 +1469733922145511945,0.0,-0.00109942244456,0.0,0.0,0.0,0.0 +1469733922222984015,0.0,-0.00110864374684,0.0,0.0,0.0,0.0 +1469733922299897668,0.0,-0.00112295548817,0.0,0.0,0.0,0.0 +1469733922391624148,0.0,-0.00107494031332,0.0,0.0,0.0,0.0 +1469733922471007793,0.0,-0.00119642203497,0.0,0.0,0.0,0.0 +1469733922550176571,0.0,-0.00135108562426,0.0,0.0,0.0,0.0 +1469733922628344470,0.0,-0.00133410139071,0.0,0.0,0.0,0.0 +1469733922707894883,0.0,-0.00142846639882,0.0,0.0,0.0,0.0 +1469733922783537205,0.0,-0.00136337044185,0.0,0.0,0.0,-0.00153484586674 +1469733922862393477,0.0,-0.000158191129196,0.0,0.0,0.0,0.0 +1469733922939152429,0.0,-0.000757112928326,0.0,0.0,0.0,0.0 +1469733923018466099,0.008,0.0,0.0,0.0,0.0,0.0 +1469733923097433283,0.008,0.0,0.0,0.0,0.0,0.0 +1469733923172303296,0.008,0.0,0.0,0.0,0.0,0.0 +1469733923255988323,0.008,0.0,0.0,0.0,0.0,0.0 +1469733923334620904,0.008,0.0,0.0,0.0,0.0,0.0 +1469733923409732801,0.008,0.0,0.0,0.0,0.0,0.0 +1469733923495795144,0.0,0.0,0.0,0.0,0.0,-0.00155069136517 +1469733923575103017,0.0,0.0,0.0,0.0,0.0,-0.00174929979485 +1469733923647773788,0.008,0.0,0.0,0.0,0.0,0.0 +1469733923735066005,0.008,0.0,0.0,0.0,0.0,0.0 +1469733923811821384,0.008,0.0,0.0,0.0,0.0,0.0 +1469733923890720145,0.008,0.0,0.0,0.0,0.0,0.0 +1469733923968535633,0.0,0.0,0.0,0.0,0.0,0.00162133231829 +1469733924049263649,0.008,0.0,0.0,0.0,0.0,0.0 +1469733924127512005,0.008,0.0,0.0,0.0,0.0,0.0 +1469733924202421262,0.008,0.0,0.0,0.0,0.0,0.0 +1469733924283629471,0.0,0.0,0.0,0.0,0.0,0.00147527004388 +1469733924364997532,0.0,0.0,0.0,0.0,0.0,0.00161241774412 +1469733924443195413,0.0,0.0,0.0,0.0,0.0,0.00144039443195 +1469733924520182939,0.0,0.0,0.0,0.0,0.0,0.0018508718291 +1469733924600253349,0.0,0.0,0.0,0.0,0.0,0.0021685402808 +1469733924679602927,0.008,0.0,0.0,0.0,0.0,0.0 +1469733924758483937,0.008,0.0,0.0,0.0,0.0,0.0 +1469733924834223714,0.008,0.0,0.0,0.0,0.0,0.0 +1469733924914626788,0.008,0.0,0.0,0.0,0.0,0.0 +1469733924991084445,0.008,0.0,0.0,0.0,0.0,0.0 +1469733925071385992,0.008,0.0,0.0,0.0,0.0,0.0 +1469733925151295495,0.008,0.0,0.0,0.0,0.0,0.0 +1469733925229453675,0.008,0.0,0.0,0.0,0.0,0.0 +1469733925304189383,0.008,0.0,0.0,0.0,0.0,0.0 +1469733925385230004,0.008,0.0,0.0,0.0,0.0,0.0 +1469733925467316900,0.0,0.0,0.0,0.0,0.0,0.00160338742224 +1469733925547959728,0.008,0.0,0.0,0.0,0.0,0.0 +1469733925623833195,0.008,0.0,0.0,0.0,0.0,0.0 +1469733925704510601,0.008,0.0,0.0,0.0,0.0,0.0 +1469733925786255946,0.008,0.0,0.0,0.0,0.0,0.0 +1469733925865537796,0.008,0.0,0.0,0.0,0.0,0.0 +1469733925942667984,0.008,0.0,0.0,0.0,0.0,0.0 +1469733926021004776,0.008,0.0,0.0,0.0,0.0,0.0 +1469733926099887862,0.0,0.0,0.0,0.0,0.0,0.00154155936623 +1469733926176974142,0.008,0.0,0.0,0.0,0.0,0.0 +1469733926257044183,0.008,0.0,0.0,0.0,0.0,0.0 +1469733926341944567,0.008,0.0,0.0,0.0,0.0,0.0 +1469733926418774227,0.008,0.0,0.0,0.0,0.0,0.0 +1469733926498717644,0.008,0.0,0.0,0.0,0.0,0.0 +1469733926574255055,0.0,0.0,0.0,0.0,0.0,0.0024525982575 +1469733926659860700,0.008,0.0,0.0,0.0,0.0,0.0 +1469733926740160255,0.008,0.0,0.0,0.0,0.0,0.0 +1469733926817554805,0.0,0.0,0.0,0.0,0.0,0.00152192008517 +1469733926897304049,0.008,0.0,0.0,0.0,0.0,0.0 +1469733926977553580,0.008,0.0,0.0,0.0,0.0,0.0 +1469733927061128909,0.008,0.0,0.0,0.0,0.0,0.0 +1469733927141951915,0.008,0.0,0.0,0.0,0.0,0.0 +1469733927221822519,0.008,0.0,0.0,0.0,0.0,0.0 +1469733927300673061,0.008,0.0,0.0,0.0,0.0,0.0 +1469733927377314907,0.0,0.0,0.0,0.0,0.0,0.00280485438778 +1469733927452960187,0.0,0.0,0.0,0.0,0.0,0.00195241589535 +1469733927530690195,0.008,0.0,0.0,0.0,0.0,0.0 +1469733927606637995,0.008,0.0,0.0,0.0,0.0,0.0 +1469733927681757580,0.0,0.0,0.0,0.0,0.0,0.00317734478204 +1469733927761443131,0.0,0.0,0.0,0.0,0.0,0.00297801966328 +1469733927840442767,0.0,0.0,0.0,0.0,0.0,0.00203867350074 +1469733927919456912,0.0,0.0,0.0,0.0,0.0,0.0022542746401 +1469733927998592078,0.0,0.0,0.0,0.0,0.0,0.00332634922989 +1469733928076305627,0.0,0.0,0.0,0.0,0.0,0.00284345900459 +1469733928158148937,0.0,0.0,0.0,0.0,0.0,0.00227802387013 +1469733928235415993,0.0,0.0,0.0,0.0,0.0,0.00209318834811 +1469733928314247956,0.0,0.0,0.0,0.0,0.0,0.00263301701714 +1469733928387280959,0.0,0.0,0.0,0.0,0.0,0.00272614978594 +1469733928470005068,0.0,0.0,0.0,0.0,0.0,0.00281783957944 +1469733928545608689,0.0,0.0,0.0,0.0,0.0,0.00217133382467 +1469733928622770745,0.0,0.0,0.0,0.0,0.0,0.00216453289061 +1469733928701497148,0.0,0.0,0.0,0.0,0.0,0.00305707775048 +1469733928779041724,0.0,0.0,0.0,0.0,0.0,0.00153531887076 +1469733928856409311,0.0,0.0,0.0,0.0,0.0,0.00217971784961 +1469733928938191672,0.0,0.0,0.0,0.0,0.0,0.00173109281052 +1469733929018352432,0.0,0.0,0.0,0.0,0.0,0.00210851732831 +1469733929096864783,0.0,0.0,0.0,0.0,0.0,0.0022331961076 +1469733929176090375,0.0,0.0,0.0,0.0,0.0,0.00313469491765 +1469733929251184069,0.0,0.0,0.0,0.0,0.0,0.00308100048436 +1469733929329981117,0.0,0.0,0.0,0.0,0.0,0.00178623583266 +1469733929405554339,0.008,0.0,0.0,0.0,0.0,0.0 +1469733929485283038,0.008,0.0,0.0,0.0,0.0,0.0 +1469733929562772955,0.0,0.0,0.0,0.0,0.0,0.00266917133014 +1469733929638409088,0.0,0.0,0.0,0.0,0.0,0.0030952863477 +1469733929716419154,0.0,0.0,0.0,0.0,0.0,0.00232168687074 +1469733929792462330,0.008,0.0,0.0,0.0,0.0,0.0 +1469733929872619729,0.0,0.0,0.0,0.0,0.0,0.00180111747129 +1469733929948455149,0.008,0.0,0.0,0.0,0.0,0.0 +1469733930028624855,0.0,0.0,0.0,0.0,0.0,0.00346952669494 +1469733930103783952,0.0,0.0,0.0,0.0,0.0,0.00185900339942 +1469733930180557043,0.0,0.0,0.0,0.0,0.0,0.00145425193598 +1469733930267767110,0.008,0.0,0.0,0.0,0.0,0.0 +1469733930344208995,0.008,0.0,0.0,0.0,0.0,0.0 +1469733930431066196,0.008,0.0,0.0,0.0,0.0,0.0 +1469733930508796131,0.0,0.0,0.0,0.0,0.0,0.00177453909203 +1469733930595907342,0.0,0.0,0.0,0.0,0.0,0.00185913053823 +1469733930671882093,0.0,0.0,0.0,0.0,0.0,0.00230420569972 +1469733930758307814,0.0,0.0,0.0,0.0,0.0,0.0024349790708 +1469733930837952396,0.0,0.0,0.0,0.0,0.0,0.00208437645252 +1469733930917815249,0.008,0.0,0.0,0.0,0.0,0.0 +1469733930998255361,0.0,0.0,0.0,0.0,0.0,0.00203420045078 +1469733931075263635,0.008,0.0,0.0,0.0,0.0,0.0 +1469733931153305951,0.008,0.0,0.0,0.0,0.0,0.0 +1469733931230143438,0.008,0.0,0.0,0.0,0.0,0.0 +1469733931310258465,0.0,0.0,0.0,0.0,0.0,0.0014927071489 +1469733931390816841,0.0,0.0,0.0,0.0,0.0,0.0017427978151 +1469733931469924180,0.008,0.0,0.0,0.0,0.0,0.0 +1469733931555243005,0.008,0.0,0.0,0.0,0.0,0.0 +1469733931639510110,0.008,0.0,0.0,0.0,0.0,0.0 +1469733931730376376,0.0,0.0,0.0,0.0,0.0,0.00181610515157 +1469733931808599798,0.0,0.0,0.0,0.0,0.0,0.00162854367848 +1469733931890682291,0.008,0.0,0.0,0.0,0.0,0.0 +1469733931968462801,0.0,0.0,0.0,0.0,0.0,0.00147413862321 +1469733932047309637,0.008,0.0,0.0,0.0,0.0,0.0 +1469733932128300196,0.008,0.0,0.0,0.0,0.0,0.0 +1469733932204108467,0.008,0.0,0.0,0.0,0.0,0.0 +1469733932283309296,0.008,0.0,0.0,0.0,0.0,0.0 +1469733932363440026,0.0,0.0,0.0,0.0,0.0,0.00192323221417 +1469733932450404639,0.008,0.0,0.0,0.0,0.0,0.0 +1469733932526256018,0.008,0.0,0.0,0.0,0.0,0.0 +1469733932604932986,0.008,0.0,0.0,0.0,0.0,0.0 +1469733932683141829,0.0,0.0,0.0,0.0,0.0,0.00199996675148 +1469733932760838937,0.008,0.0,0.0,0.0,0.0,0.0 +1469733932838079244,0.008,0.0,0.0,0.0,0.0,0.0 +1469733932917736029,0.008,0.0,0.0,0.0,0.0,0.0 +1469733932992686654,0.0,0.0,0.0,0.0,0.0,0.00192016102441 +1469733933069279336,0.008,0.0,0.0,0.0,0.0,0.0 +1469733933149253241,0.008,0.0,0.0,0.0,0.0,0.0 +1469733933237310825,0.0,0.0,0.0,0.0,0.0,0.00191273601317 +1469733933319530852,0.0,0.0,0.0,0.0,0.0,0.00149042863891 +1469733933399384572,0.0,0.0,0.0,0.0,0.0,0.00150571504473 +1469733933478968517,0.008,0.0,0.0,0.0,0.0,0.0 +1469733933556877861,0.0,0.0,0.0,0.0,0.0,0.00199464099604 +1469733933637831611,0.008,0.0,0.0,0.0,0.0,0.0 diff --git a/MobileRobot/docking_data/Vel3.txt b/MobileRobot/docking_data/Vel3.txt index 872c8ff7ab0d80c51d0baff2eec710e30219585f..c5bffef9ff2e16f85efb068f145ad59df9ea4c0b 100644 --- a/MobileRobot/docking_data/Vel3.txt +++ b/MobileRobot/docking_data/Vel3.txt @@ -1,417 +1,448 @@ %time,field.linear.x,field.linear.y,field.linear.z,field.angular.x,field.angular.y,field.angular.z -1468862314290390483,0.1,-0.0811338515978,0.0,0.0,0.0,0.116269085006 -1468862314391971834,0.1,-0.0912920625257,0.0,0.0,0.0,0.101644788692 -1468862314480424422,0.1,-0.0932678232957,0.0,0.0,0.0,0.0864949761431 -1468862314582563416,0.1,-0.0997760768445,0.0,0.0,0.0,0.0907218494437 -1468862314672201409,0.1,-0.11103312415,0.0,0.0,0.0,0.0900886721153 -1468862314774911920,0.1,-0.120529324695,0.0,0.0,0.0,0.081740288579 -1468862314866165519,0.1,-0.131736484158,0.0,0.0,0.0,0.0816141955926 -1468862314959043115,0.1,-0.146027412131,0.0,0.0,0.0,0.0773602502535 -1468862315044526229,0.1,-0.154696055997,0.0,0.0,0.0,0.0651943932547 -1468862315138327328,0.1,-0.162019819307,0.0,0.0,0.0,0.0542555652314 -1468862315244648090,0.1,-0.165069721571,0.0,0.0,0.0,0.0171192759865 -1468862315332176907,0.1,-0.162297938255,0.0,0.0,0.0,0.0 -1468862315436576441,0.1,-0.166365216373,0.0,0.0,0.0,0.0118096958584 -1468862315524013948,0.1,-0.167773205801,0.0,0.0,0.0,0.0215922440877 -1468862315634218247,0.1,-0.164649374242,0.0,0.0,0.0,0.0244868665081 -1468862315727393399,0.1,-0.162203043573,0.0,0.0,0.0,0.026755913117 -1468862315813685962,0.1,-0.15731294676,0.0,0.0,0.0,0.0260911692091 -1468862315909338361,0.1,-0.15074817431,0.0,0.0,0.0,0.0245011261785 -1468862316004416025,0.1,-0.146239250526,0.0,0.0,0.0,0.0268648457404 -1468862316114781843,0.1,-0.124068038989,0.0,0.0,0.0,0.0219597471083 -1468862316214227458,0.1,-0.123819926149,0.0,0.0,0.0,0.0132617218144 -1468862316306266736,0.1,-0.108525827638,0.0,0.0,0.0,0.00579119515117 -1468862316400602874,0.1,-0.0960677450409,0.0,0.0,0.0,0.00496282295074 -1468862316497148655,0.1,-0.0858980358359,0.0,0.0,0.0,0.0 -1468862316591763161,0.1,-0.0747542256925,0.0,0.0,0.0,0.00551992589683 -1468862316676396964,0.1,-0.0648378923152,0.0,0.0,0.0,0.0 -1468862316786084763,0.1,-0.0541324238765,0.0,0.0,0.0,0.0167852618019 -1468862316894218048,0.1,-0.0458377205315,0.0,0.0,0.0,0.0 -1468862316987243034,0.1,-0.043411513286,0.0,0.0,0.0,0.0 -1468862317073184173,0.1,-0.0304697134538,0.0,0.0,0.0,0.0163407958583 -1468862317166732316,0.1,-0.021804483123,0.0,0.0,0.0,0.0 -1468862317278404013,0.1,-0.0161845052373,0.0,0.0,0.0,0.0 -1468862317371000190,0.1,-0.00795264852737,0.0,0.0,0.0,0.00981515606177 -1468862317456844753,0.1,-0.00362522005912,0.0,0.0,0.0,0.00608329393871 -1468862317552737284,0.1,0.00230462808576,0.0,0.0,0.0,0.0259944210098 -1468862317660326581,0.1,0.00285273763497,0.0,0.0,0.0,0.0 -1468862317761701643,0.1,0.0123862217111,0.0,0.0,0.0,0.0 -1468862317864193821,0.1,0.0136910512566,0.0,0.0,0.0,0.0 -1468862317966456561,0.1,0.0143164574006,0.0,0.0,0.0,0.00720693940916 -1468862318055311166,0.1,0.0188996434183,0.0,0.0,0.0,0.0273856872593 -1468862318141474056,0.1,0.0212336000269,0.0,0.0,0.0,0.00890819204468 -1468862318236016666,0.1,0.0219878840257,0.0,0.0,0.0,0.021263823165 -1468862318338707030,0.1,0.0224744967643,0.0,0.0,0.0,0.0168221515692 -1468862318418008861,0.1,0.0226290513843,0.0,0.0,0.0,0.0194607415355 -1468862318524867489,0.1,0.0225906178805,0.0,0.0,0.0,0.0247389193119 -1468862318619708034,0.1,0.0225661256977,0.0,0.0,0.0,0.0173981735434 -1468862318704640253,0.1,0.0218194561931,0.0,0.0,0.0,0.0218566479192 -1468862318806874459,0.1,0.0209523536218,0.0,0.0,0.0,0.0203138756201 -1468862318910116765,0.1,0.020356483181,0.0,0.0,0.0,0.0210533958801 -1468862319002207607,0.1,0.0187841723031,0.0,0.0,0.0,0.0172930520193 -1468862319100856040,0.1,0.0168646333774,0.0,0.0,0.0,0.0249689598898 -1468862319209483321,0.1,0.0142359386949,0.0,0.0,0.0,0.0218960397056 -1468862319305088134,0.1,0.0112776416824,0.0,0.0,0.0,0.0134987289066 -1468862319401794628,0.1,0.00849742954818,0.0,0.0,0.0,0.0233077013636 -1468862319496462971,0.1,0.00605169891877,0.0,0.0,0.0,0.0120337802697 -1468862319605585451,0.1,0.00356587125993,0.0,0.0,0.0,0.020154014418 -1468862319701306630,0.1,0.00117927070125,0.0,0.0,0.0,0.0234911911388 -1468862319795837572,0.1,-0.000995510316118,0.0,0.0,0.0,0.0158330035219 -1468862319883390093,0.1,0.0,0.0,0.0,0.0,0.0107074132786 -1468862319984083882,0.1,-0.00651562042608,0.0,0.0,0.0,0.0130341033637 -1468862320071995723,0.1,-0.00845857797689,0.0,0.0,0.0,0.0132148518221 -1468862320197754716,0.1,-0.00890451768277,0.0,0.0,0.0,0.0120544301833 -1468862320289678198,0.1,-0.00924972720911,0.0,0.0,0.0,0.00736055482524 -1468862320381114173,0.0,-0.0114265365211,0.0,0.0,0.0,0.0 -1468862320470876366,0.0,-0.0124872007375,0.0,0.0,0.0,0.0 -1468862320579074997,0.0,-0.0133633809596,0.0,0.0,0.0,0.0 -1468862320672579946,0.0,-0.0137690534059,0.0,0.0,0.0,0.0 -1468862320756926988,0.0,-0.0139747574192,0.0,0.0,0.0,-0.0108930537505 -1468862320841886483,0.0,-0.0144461976969,0.0,0.0,0.0,-0.00905349792709 -1468862320941507703,0.0,-0.014278967781,0.0,0.0,0.0,-0.0146253255243 -1468862321032633665,0.0,-0.0138714431056,0.0,0.0,0.0,-0.0158252525657 -1468862321142159371,0.0,-0.0132307132176,0.0,0.0,0.0,-0.0192669297085 -1468862321243177059,0.0,-0.0131478829227,0.0,0.0,0.0,-0.0244070915239 -1468862321332073714,0.0,-0.0127797439717,0.0,0.0,0.0,-0.0302229743235 -1468862321425859727,0.0,-0.0141236980733,0.0,0.0,0.0,-0.0279905709666 -1468862321512944630,0.0,-0.0133974038843,0.0,0.0,0.0,-0.0354732870592 -1468862321608546512,0.0,-0.00857775355545,0.0,0.0,0.0,-0.0336372178727 -1468862321719090358,0.0,-0.00900930373643,0.0,0.0,0.0,-0.0301910007666 -1468862321819066754,0.0,-0.00661528815981,0.0,0.0,0.0,-0.0351277437503 -1468862321910631983,0.0,-0.0053912021457,0.0,0.0,0.0,-0.0325077331494 -1468862322010876118,0.0,-0.00351971544484,0.0,0.0,0.0,-0.0348087349239 -1468862322099551460,0.0,-0.000914122845402,0.0,0.0,0.0,-0.0291106362834 -1468862322194182111,0.0,0.00159180378339,0.0,0.0,0.0,-0.0289794481653 -1468862322279974771,0.0,0.00417440508111,0.0,0.0,0.0,-0.024005472024 -1468862322381401693,0.0,0.00715276330396,0.0,0.0,0.0,-0.0202580113079 -1468862322471321262,0.0,0.00938401054189,0.0,0.0,0.0,-0.0219250546641 -1468862322558971036,0.0,0.00982381639764,0.0,0.0,0.0,-0.0153601244238 -1468862322652015845,0.0,0.0127726775625,0.0,0.0,0.0,-0.0125754334293 -1468862322756697298,0.0,0.0150179336515,0.0,0.0,0.0,0.0 -1468862322845234240,0.0,0.0158563717938,0.0,0.0,0.0,0.0 -1468862322954356240,0.0,0.0192437495813,0.0,0.0,0.0,0.0 -1468862323056459987,0.0,0.0193686245897,0.0,0.0,0.0,0.00487354682292 -1468862323144459812,0.0,0.0196519467736,0.0,0.0,0.0,0.00652052528649 -1468862323247798834,0.0,0.0206371837344,0.0,0.0,0.0,0.0071809981539 -1468862323334709819,0.0,0.0245334613628,0.0,0.0,0.0,0.00937925972614 -1468862323419897044,0.0,0.025256257907,0.0,0.0,0.0,0.013265645617 -1468862323504254902,0.0,0.0271926840905,0.0,0.0,0.0,0.0189571036679 -1468862323600532109,0.0,0.0252603535042,0.0,0.0,0.0,0.0173532873356 -1468862323696962032,0.0,0.0242436146993,0.0,0.0,0.0,0.0193760668817 -1468862323793392126,0.0,0.0228034949724,0.0,0.0,0.0,0.0224818697616 -1468862323896445374,0.0,0.021689681826,0.0,0.0,0.0,0.0232954740685 -1468862323983711547,0.0,0.0200802655739,0.0,0.0,0.0,0.0235898565239 -1468862324068449499,0.0,0.0168180861464,0.0,0.0,0.0,0.0200238203222 -1468862324170830686,0.0,0.0155746066795,0.0,0.0,0.0,0.0211228747256 -1468862324261308022,0.0,0.0134781659196,0.0,0.0,0.0,0.017088648508 -1468862324355598677,0.0,0.00801889015768,0.0,0.0,0.0,0.0176148803289 -1468862324458823455,0.0,0.00723815401745,0.0,0.0,0.0,0.0184990835961 -1468862324549131214,0.0,0.00497431836461,0.0,0.0,0.0,0.0154924428338 -1468862324659365446,0.0,0.00258493930457,0.0,0.0,0.0,0.0132643560668 -1468862324767405924,0.0,-0.00223445723646,0.0,0.0,0.0,0.0105572228499 -1468862324860972612,0.0,0.0,0.0,0.0,0.0,0.0126857570545 -1468862324969998529,0.0,-0.00754224804551,0.0,0.0,0.0,0.00971817286223 -1468862325071987470,0.0,-0.00879015372552,0.0,0.0,0.0,0.0042651930653 -1468862325159306485,0.0,-0.00841034407943,0.0,0.0,0.0,0.0 -1468862325270927372,0.0,-0.0114481560292,0.0,0.0,0.0,0.0 -1468862325367049398,0.0,-0.0108011679601,0.0,0.0,0.0,0.0 -1468862325466650533,0.0,-0.0138286644735,0.0,0.0,0.0,0.0 -1468862325554974026,0.0,-0.013330023954,0.0,0.0,0.0,-0.0105311342523 -1468862325642153995,0.0,-0.0133841651524,0.0,0.0,0.0,-0.00943233472273 -1468862325749854238,0.0,-0.0142248716895,0.0,0.0,0.0,-0.012395258092 -1468862325841158070,0.0,-0.0139816009043,0.0,0.0,0.0,-0.0111140997946 -1468862325928920339,0.0,-0.013580343191,0.0,0.0,0.0,-0.0131108455593 -1468862326034981093,0.0,-0.01186780032,0.0,0.0,0.0,-0.0171792178695 -1468862326122408343,0.0,-0.0116602341985,0.0,0.0,0.0,-0.0133010682675 -1468862326245025841,0.0,-0.0113592272991,0.0,0.0,0.0,-0.0137788605639 -1468862326335476332,0.0,-0.00881902828433,0.0,0.0,0.0,-0.0234537007376 -1468862326439252685,0.0,-0.00842316663518,0.0,0.0,0.0,-0.0161771085532 -1468862326529238722,0.0,-0.0073206532549,0.0,0.0,0.0,-0.0171529077369 -1468862326637298769,0.0,-0.00556325990944,0.0,0.0,0.0,-0.0191147596914 -1468862326741429074,0.0,-0.00288906137844,0.0,0.0,0.0,-0.0125720563814 -1468862326845639674,0.0,-0.00249840813306,0.0,0.0,0.0,-0.0112019691559 -1468862326935962612,0.0,0.000463428174513,0.0,0.0,0.0,-0.0127094983023 -1468862327020042873,0.0,0.0,0.0,0.0,0.0,-0.00982154026332 -1468862327131248844,0.0,0.00543773811061,0.0,0.0,0.0,-0.0121135622441 -1468862327225937885,0.0,0.00404592809838,0.0,0.0,0.0,0.0 -1468862327318794170,0.0,0.00676246623923,0.0,0.0,0.0,0.0 -1468862327403958197,0.0,0.00681382190166,0.0,0.0,0.0,0.0 -1468862327505687385,0.0,0.00771088138877,0.0,0.0,0.0,0.0 -1468862327594069947,0.0,0.00850653027727,0.0,0.0,0.0,0.0 -1468862327699133109,0.0,0.0092036868795,0.0,0.0,0.0,0.0 -1468862327790805671,0.0,0.00948953183532,0.0,0.0,0.0,0.00423488744794 -1468862327881680144,0.0,0.0100645999666,0.0,0.0,0.0,0.0 -1468862327994602133,0.0,0.0100794067931,0.0,0.0,0.0,0.00534517078101 -1468862328084637285,0.0,0.010545598732,0.0,0.0,0.0,0.00851015934958 -1468862328171222561,0.0,0.0103295224563,0.0,0.0,0.0,0.00590016166318 -1468862328265093462,0.0,0.00983408681031,0.0,0.0,0.0,0.00963286788916 -1468862328348281433,0.0,0.00915652905885,0.0,0.0,0.0,0.00939233322469 -1468862328436413829,0.0,0.00722619161059,0.0,0.0,0.0,0.0097498120317 -1468862328528527683,0.0,0.00716708663044,0.0,0.0,0.0,0.0075703087257 -1468862328617277373,0.0,0.00635364461584,0.0,0.0,0.0,0.00848710162551 -1468862328721998962,0.0,0.00485345016649,0.0,0.0,0.0,0.00986234059939 -1468862328810005436,0.0,0.00457248448274,0.0,0.0,0.0,0.0111549829192 -1468862328904864753,0.0,0.00355162349238,0.0,0.0,0.0,0.01197412171 -1468862329006433944,0.0,0.00267193998687,0.0,0.0,0.0,0.00988183066873 -1468862329096597548,0.0,0.0017491503647,0.0,0.0,0.0,0.00948324278094 -1468862329192988761,0.0,-0.000273333489958,0.0,0.0,0.0,0.0076968371978 -1468862329287996039,0.0,0.0,0.0,0.0,0.0,0.00699974760744 -1468862329381369693,0.0,0.0,0.0,0.0,0.0,0.00520547890873 -1468862329469485250,0.0,0.0,0.0,0.0,0.0,0.00706029222434 -1468862329560093166,0.0,-0.00697107095955,0.0,0.0,0.0,0.0045057570962 -1468862329647565337,0.0,-0.00394846567278,0.0,0.0,0.0,0.0 -1468862329733513277,0.0,-0.00432378257779,0.0,0.0,0.0,0.0 -1468862329834199776,0.0,-0.00516684486885,0.0,0.0,0.0,0.0 -1468862329936323109,0.0,-0.00604832881015,0.0,0.0,0.0,0.0 -1468862330033309560,0.0,-0.00594208747643,0.0,0.0,0.0,0.0 -1468862330133163524,0.0,-0.00627031857918,0.0,0.0,0.0,0.0 -1468862330224500861,0.0,-0.0064030337614,0.0,0.0,0.0,0.0 -1468862330348419087,0.0,-0.00644752649957,0.0,0.0,0.0,0.0 -1468862330441796161,0.0,-0.00701397202224,0.0,0.0,0.0,0.0 -1468862330535316490,0.0,-0.00685723467626,0.0,0.0,0.0,-0.0100290261385 -1468862330640989669,0.0,-0.00699021448925,0.0,0.0,0.0,-0.00884927171565 -1468862330739997621,0.0,-0.00624480246208,0.0,0.0,0.0,-0.0104291217178 -1468862330842186449,0.0,-0.00448165107934,0.0,0.0,0.0,-0.0151921554435 -1468862330930532715,0.0,-0.00451553177705,0.0,0.0,0.0,-0.00892201825585 -1468862331014534774,0.0,-0.00453054954079,0.0,0.0,0.0,-0.00911815594442 -1468862331100934998,0.0,-0.00329880825747,0.0,0.0,0.0,-0.00913605700225 -1468862331193482721,0.0,-0.00314682633828,0.0,0.0,0.0,0.0 -1468862331279786891,0.0,-0.00210889359388,0.0,0.0,0.0,-0.00992410575354 -1468862331389585896,0.0,-0.00171870343338,0.0,0.0,0.0,0.0 -1468862331499319969,0.0,-0.00112951371687,0.0,0.0,0.0,0.0 -1468862331592667485,0.0,0.0,0.0,0.0,0.0,-0.0104545612543 -1468862331717134995,0.008,0.0,0.0,0.0,0.0,0.0 -1468862331810640213,0.008,0.0,0.0,0.0,0.0,0.0 -1468862331901936339,0.0,0.00546977708614,0.0,0.0,0.0,0.0 -1468862331990381250,0.0,0.00273443777784,0.0,0.0,0.0,0.0 -1468862332081454193,0.0,0.0036594163572,0.0,0.0,0.0,0.0 -1468862332167098906,0.0,0.00358479800493,0.0,0.0,0.0,0.0 -1468862332252687990,0.0,0.00381833971859,0.0,0.0,0.0,0.0 -1468862332361830868,0.0,0.00390010078767,0.0,0.0,0.0,0.00565105227955 -1468862332471679063,0.0,0.00380236609707,0.0,0.0,0.0,0.00498613898514 -1468862332562753982,0.0,0.00419801444376,0.0,0.0,0.0,0.00434943729843 -1468862332651172075,0.0,0.00366573123152,0.0,0.0,0.0,0.0 -1468862332745110690,0.0,0.00280112454828,0.0,0.0,0.0,0.003894910541 -1468862332839038723,0.0,0.00113994152148,0.0,0.0,0.0,0.00742014350554 -1468862332925958464,0.0,0.000879803647668,0.0,0.0,0.0,0.0 -1468862333027692960,0.0,0.00095191436877,0.0,0.0,0.0,0.0 -1468862333115338575,0.0,0.00110303235007,0.0,0.0,0.0,0.0 -1468862333200794898,0.0,0.000712007026138,0.0,0.0,0.0,0.0 -1468862333302442342,0.008,0.0,0.0,0.0,0.0,0.0 -1468862333395200317,0.008,0.0,0.0,0.0,0.0,0.0 -1468862333495759476,0.008,0.0,0.0,0.0,0.0,0.0 -1468862333585232563,0.008,0.0,0.0,0.0,0.0,0.0 -1468862333680473554,0.008,0.0,0.0,0.0,0.0,0.0 -1468862333773139645,0.008,0.0,0.0,0.0,0.0,0.0 -1468862333872776492,0.008,0.0,0.0,0.0,0.0,0.0 -1468862333980875169,0.008,0.0,0.0,0.0,0.0,0.0 -1468862334082654740,0.0,-0.00476586160064,0.0,0.0,0.0,0.0 -1468862334171376954,0.0,-0.00180220903479,0.0,0.0,0.0,0.0 -1468862334281491176,0.008,0.0,0.0,0.0,0.0,0.0 -1468862334390529426,0.008,0.0,0.0,0.0,0.0,0.0 -1468862334490501870,0.008,0.0,0.0,0.0,0.0,0.0 -1468862334579118476,0.008,0.0,0.0,0.0,0.0,0.0 -1468862334662364209,0.008,0.0,0.0,0.0,0.0,0.0 -1468862334749296880,0.008,0.0,0.0,0.0,0.0,0.0 -1468862334852222890,0.008,0.0,0.0,0.0,0.0,0.0 -1468862334942074485,0.008,0.0,0.0,0.0,0.0,0.0 -1468862335034344299,0.008,0.0,0.0,0.0,0.0,0.0 -1468862335138346083,0.008,0.0,0.0,0.0,0.0,0.0 -1468862335228636712,0.008,0.0,0.0,0.0,0.0,0.0 -1468862335326091950,0.008,0.0,0.0,0.0,0.0,0.0 -1468862335427579077,0.008,0.0,0.0,0.0,0.0,0.0 -1468862335516965884,0.008,0.0,0.0,0.0,0.0,0.0 -1468862335609478231,0.008,0.0,0.0,0.0,0.0,0.0 -1468862335707551963,0.008,0.0,0.0,0.0,0.0,0.0 -1468862335804225817,0.008,0.0,0.0,0.0,0.0,0.0 -1468862335906233841,0.008,0.0,0.0,0.0,0.0,0.0 -1468862336008739843,0.008,0.0,0.0,0.0,0.0,0.0 -1468862336101523163,0.008,0.0,0.0,0.0,0.0,0.0 -1468862336188536886,0.008,0.0,0.0,0.0,0.0,0.0 -1468862336284841305,0.008,0.0,0.0,0.0,0.0,0.0 -1468862336380701359,0.008,0.0,0.0,0.0,0.0,0.0 -1468862336482622366,0.008,0.0,0.0,0.0,0.0,0.0 -1468862336570984636,0.008,0.0,0.0,0.0,0.0,0.0 -1468862336677687952,0.008,0.0,0.0,0.0,0.0,0.0 -1468862336792121423,0.008,0.0,0.0,0.0,0.0,0.0 -1468862336884806935,0.008,0.0,0.0,0.0,0.0,0.0 -1468862336986902227,0.008,0.0,0.0,0.0,0.0,0.0 -1468862337075235118,0.008,0.0,0.0,0.0,0.0,0.0 -1468862337173289387,0.008,0.0,0.0,0.0,0.0,0.0 -1468862337269236602,0.008,0.0,0.0,0.0,0.0,0.0 -1468862337393578171,0.008,0.0,0.0,0.0,0.0,0.0 -1468862337497471223,0.008,0.0,0.0,0.0,0.0,0.0 -1468862337599735095,0.008,0.0,0.0,0.0,0.0,0.0 -1468862337686935041,0.008,0.0,0.0,0.0,0.0,0.0 -1468862337771780546,0.008,0.0,0.0,0.0,0.0,0.0 -1468862337867768626,0.008,0.0,0.0,0.0,0.0,0.0 -1468862337963630150,0.008,0.0,0.0,0.0,0.0,0.0 -1468862338050016873,0.008,0.0,0.0,0.0,0.0,0.0 -1468862338140704030,0.008,0.0,0.0,0.0,0.0,0.0 -1468862338241046562,0.008,0.0,0.0,0.0,0.0,0.0 -1468862338337168552,0.008,0.0,0.0,0.0,0.0,0.0 -1468862338437964022,0.008,0.0,0.0,0.0,0.0,0.0 -1468862338548370541,0.008,0.0,0.0,0.0,0.0,0.0 -1468862338648006051,0.008,0.0,0.0,0.0,0.0,0.0 -1468862338750667323,0.008,0.0,0.0,0.0,0.0,0.0 -1468862338840764512,0.0,0.00434570987225,0.0,0.0,0.0,0.0 -1468862338949769037,0.0,0.00104722711288,0.0,0.0,0.0,0.0 -1468862339057132393,0.0,0.00104442702831,0.0,0.0,0.0,0.0 -1468862339147606086,0.0,0.00110597133765,0.0,0.0,0.0,0.0 -1468862339236112813,0.0,0.00118382795232,0.0,0.0,0.0,0.0 -1468862339331396774,0.0,0.00114699491646,0.0,0.0,0.0,0.0 -1468862339417515098,0.0,0.00129721263085,0.0,0.0,0.0,0.0 -1468862339508840845,0.0,0.00130975266245,0.0,0.0,0.0,0.0 -1468862339600256962,0.0,0.00128791852121,0.0,0.0,0.0,0.0 -1468862339692105234,0.0,0.00120195487393,0.0,0.0,0.0,0.0 -1468862339803256788,0.0,0.00121795197031,0.0,0.0,0.0,0.0 -1468862339894612684,0.0,0.00109353604644,0.0,0.0,0.0,0.0 -1468862339979102432,0.008,0.0,0.0,0.0,0.0,0.0 -1468862340089867474,0.008,0.0,0.0,0.0,0.0,0.0 -1468862340189843182,0.008,0.0,0.0,0.0,0.0,0.0 -1468862340287338458,0.0,0.0,0.0,0.0,0.0,-0.00932236318443 -1468862340376074636,0.008,0.0,0.0,0.0,0.0,0.0 -1468862340468417026,0.008,0.0,0.0,0.0,0.0,0.0 -1468862340555947060,0.008,0.0,0.0,0.0,0.0,0.0 -1468862340647903278,0.008,0.0,0.0,0.0,0.0,0.0 -1468862340735618450,0.008,0.0,0.0,0.0,0.0,0.0 -1468862340831965161,0.008,0.0,0.0,0.0,0.0,0.0 -1468862340936116764,0.0,0.0,0.0,0.0,0.0,-0.0109307945053 -1468862341025499003,0.008,0.0,0.0,0.0,0.0,0.0 -1468862341120241849,0.008,0.0,0.0,0.0,0.0,0.0 -1468862341213521893,0.008,0.0,0.0,0.0,0.0,0.0 -1468862341300146673,0.0,-0.00474440061786,0.0,0.0,0.0,0.0 -1468862341409148063,0.0,-0.00200862898603,0.0,0.0,0.0,0.0 -1468862341503464836,0.0,-0.00209653444774,0.0,0.0,0.0,0.0 -1468862341600413569,0.0,-0.00192767637058,0.0,0.0,0.0,0.0 -1468862341703328244,0.0,-0.00185755577376,0.0,0.0,0.0,-0.00917762355687 -1468862341791713746,0.0,-0.00201235381318,0.0,0.0,0.0,0.0 -1468862341901701349,0.0,-0.00227381943201,0.0,0.0,0.0,0.0 -1468862341994795840,0.0,-0.00236755396825,0.0,0.0,0.0,-0.010925501103 -1468862342121255333,0.0,-0.00255051065702,0.0,0.0,0.0,0.0 -1468862342231485254,0.0,-0.0024230591696,0.0,0.0,0.0,0.0 -1468862342321118723,0.0,-0.00242940256151,0.0,0.0,0.0,-0.0093931964698 -1468862342428297930,0.0,-0.00243995359206,0.0,0.0,0.0,0.0 -1468862342529814101,0.0,-0.00240114505605,0.0,0.0,0.0,-0.00896342509795 -1468862342621863504,0.0,-0.00235355748498,0.0,0.0,0.0,-0.0102807392789 -1468862342713234913,0.0,-0.00229828634515,0.0,0.0,0.0,0.0 -1468862342800537141,0.0,-0.00228234902434,0.0,0.0,0.0,0.0 -1468862342882368974,0.0,-0.00224297878711,0.0,0.0,0.0,0.0 -1468862342968724117,0.0,-0.00223009871116,0.0,0.0,0.0,0.0 -1468862343077352402,0.0,-0.00215330039216,0.0,0.0,0.0,0.0 -1468862343199345715,0.0,-0.00213869495769,0.0,0.0,0.0,-0.0091679196582 -1468862343296606141,0.0,-0.00202693504151,0.0,0.0,0.0,0.0 -1468862343388722412,0.0,-0.00200040432621,0.0,0.0,0.0,0.0 -1468862343464592535,0.0,-0.00194709907885,0.0,0.0,0.0,0.0 -1468862343556367050,0.0,-0.00186332772257,0.0,0.0,0.0,0.0 -1468862343649571238,0.0,-0.00184469996462,0.0,0.0,0.0,-0.0100982686981 -1468862343761581499,0.0,-0.00183890338541,0.0,0.0,0.0,-0.0105630942317 -1468862343856407207,0.0,-0.0018672591167,0.0,0.0,0.0,0.0 -1468862343957338872,0.0,-0.00188601600737,0.0,0.0,0.0,0.0 -1468862344048088089,0.0,-0.00188192204378,0.0,0.0,0.0,-0.0102282738389 -1468862344152588077,0.0,-0.00187321042537,0.0,0.0,0.0,0.0 -1468862344240225170,0.0,-0.00190346594295,0.0,0.0,0.0,0.0 -1468862344342623761,0.0,-0.00181154321669,0.0,0.0,0.0,0.0 -1468862344431056480,0.0,-0.0016885281918,0.0,0.0,0.0,-0.0103279080472 -1468862344513895326,0.0,-0.00170991676164,0.0,0.0,0.0,0.0 -1468862344599611329,0.0,-0.00171696122263,0.0,0.0,0.0,-0.00935635207074 -1468862344702167582,0.0,-0.00158075351785,0.0,0.0,0.0,-0.00957952286687 -1468862344792753748,0.0,-0.00122353834304,0.0,0.0,0.0,0.0 -1468862344894786755,0.0,-0.0013562137338,0.0,0.0,0.0,0.0 -1468862344984499476,0.0,-0.00129126683669,0.0,0.0,0.0,0.0 -1468862345078252595,0.0,-0.00133873268717,0.0,0.0,0.0,0.0 -1468862345165506271,0.0,-0.00135865287453,0.0,0.0,0.0,0.0 -1468862345258707573,0.0,-0.00134662845828,0.0,0.0,0.0,0.0 -1468862345345068760,0.0,-0.00125372852206,0.0,0.0,0.0,0.0 -1468862345440407554,0.0,0.0,0.0,0.0,0.0,-0.00921753104221 -1468862345541240033,0.008,0.0,0.0,0.0,0.0,0.0 -1468862345632362137,0.008,0.0,0.0,0.0,0.0,0.0 -1468862345740707758,0.008,0.0,0.0,0.0,0.0,0.0 -1468862345851707246,0.008,0.0,0.0,0.0,0.0,0.0 -1468862345942029625,0.008,0.0,0.0,0.0,0.0,0.0 -1468862346030473117,0.008,0.0,0.0,0.0,0.0,0.0 -1468862346136992077,0.008,0.0,0.0,0.0,0.0,0.0 -1468862346245778879,0.008,0.0,0.0,0.0,0.0,0.0 -1468862346337494442,0.008,0.0,0.0,0.0,0.0,0.0 -1468862346424403430,0.008,0.0,0.0,0.0,0.0,0.0 -1468862346535207147,0.008,0.0,0.0,0.0,0.0,0.0 -1468862346627719327,0.0,-0.00175028946317,0.0,0.0,0.0,0.0 -1468862346712657677,0.0,-0.0015651433502,0.0,0.0,0.0,0.0 -1468862346820908329,0.0,-0.00162444369157,0.0,0.0,0.0,0.0 -1468862346921686709,0.0,-0.00159030958128,0.0,0.0,0.0,0.0 -1468862347020432034,0.0,-0.00181964376305,0.0,0.0,0.0,0.0 -1468862347107003630,0.0,-0.00175204969968,0.0,0.0,0.0,0.0 -1468862347191366804,0.0,-0.0018092103802,0.0,0.0,0.0,0.0 -1468862347276896520,0.0,-0.00175368289063,0.0,0.0,0.0,0.0 -1468862347385423874,0.0,-0.00161514158817,0.0,0.0,0.0,0.0 -1468862347488838681,0.0,-0.00148286418179,0.0,0.0,0.0,0.0 -1468862347577077159,0.0,-0.00162616004736,0.0,0.0,0.0,0.0 -1468862347672509539,0.0,-0.00161913685329,0.0,0.0,0.0,0.0 -1468862347801954244,0.0,-0.00186221478879,0.0,0.0,0.0,0.0 -1468862347900820854,0.0,-0.00223657068647,0.0,0.0,0.0,-0.00978581749385 -1468862347993424457,0.0,-0.00203911536036,0.0,0.0,0.0,-0.0110702390706 -1468862348078280384,0.0,-0.00204847565671,0.0,0.0,0.0,0.0 -1468862348163376057,0.0,-0.00207032912282,0.0,0.0,0.0,-0.0120352108079 -1468862348249428592,0.0,-0.00209715257142,0.0,0.0,0.0,-0.0119622726056 -1468862348350665016,0.0,-0.00208649734642,0.0,0.0,0.0,-0.012690204866 -1468862348438299793,0.0,-0.00212190272662,0.0,0.0,0.0,-0.0119504344148 -1468862348522581558,0.0,-0.00209600291039,0.0,0.0,0.0,-0.0132659144979 -1468862348608143960,0.0,-0.00213266368585,0.0,0.0,0.0,-0.0121864781765 -1468862348709195854,0.0,-0.0021382403245,0.0,0.0,0.0,-0.0150859960041 -1468862348805160610,0.0,-0.00199242563323,0.0,0.0,0.0,-0.0120033090426 -1468862348883544772,0.0,-0.0020301626014,0.0,0.0,0.0,-0.0108608725743 -1468862348958122623,0.0,-0.00193209976762,0.0,0.0,0.0,-0.0103572796342 -1468862349051691708,0.0,-0.00176461821175,0.0,0.0,0.0,-0.00928753874388 -1468862349137627892,0.0,-0.00184780094727,0.0,0.0,0.0,-0.0100425830702 -1468862349245203262,0.0,-0.00173446855908,0.0,0.0,0.0,-0.0121502163338 -1468862349347825460,0.0,-0.0016840104614,0.0,0.0,0.0,-0.0130083626144 -1468862349436820466,0.0,-0.00152958915447,0.0,0.0,0.0,-0.0102814909231 -1468862349538566455,0.0,-0.0010940053637,0.0,0.0,0.0,-0.0122091678766 -1468862349628019235,0.0,0.0,0.0,0.0,0.0,-0.00941676139325 -1468862349737157337,0.008,0.0,0.0,0.0,0.0,0.0 -1468862349824504650,0.008,0.0,0.0,0.0,0.0,0.0 -1468862349914648722,0.008,0.0,0.0,0.0,0.0,0.0 -1468862350002007103,0.008,0.0,0.0,0.0,0.0,0.0 -1468862350109289660,0.008,0.0,0.0,0.0,0.0,0.0 -1468862350200915272,0.008,0.0,0.0,0.0,0.0,0.0 -1468862350287692977,0.008,0.0,0.0,0.0,0.0,0.0 -1468862350391946562,0.008,0.0,0.0,0.0,0.0,0.0 -1468862350478176863,0.008,0.0,0.0,0.0,0.0,0.0 -1468862350561693223,0.008,0.0,0.0,0.0,0.0,0.0 -1468862350653283633,0.008,0.0,0.0,0.0,0.0,0.0 -1468862350741403231,0.008,0.0,0.0,0.0,0.0,0.0 -1468862350829165230,0.008,0.0,0.0,0.0,0.0,0.0 -1468862350921226794,0.008,0.0,0.0,0.0,0.0,0.0 -1468862351007321967,0.008,0.0,0.0,0.0,0.0,0.0 -1468862351117568240,0.008,0.0,0.0,0.0,0.0,0.0 -1468862351226913406,0.008,0.0,0.0,0.0,0.0,0.0 -1468862351318755949,0.008,0.0,0.0,0.0,0.0,0.0 -1468862351405648556,0.008,0.0,0.0,0.0,0.0,0.0 -1468862351505223274,0.008,0.0,0.0,0.0,0.0,0.0 -1468862351595054634,0.008,0.0,0.0,0.0,0.0,0.0 -1468862351698072476,0.008,0.0,0.0,0.0,0.0,0.0 -1468862351786403314,0.008,0.0,0.0,0.0,0.0,0.0 -1468862351870242644,0.008,0.0,0.0,0.0,0.0,0.0 -1468862351957224112,0.0,0.0,0.0,0.0,0.0,0.0037949044159 -1468862352080675376,0.008,0.0,0.0,0.0,0.0,0.0 -1468862352178516043,0.0,0.0,0.0,0.0,0.0,0.00324409562578 -1468862352266296383,0.008,0.0,0.0,0.0,0.0,0.0 -1468862352352475792,0.0,0.0,0.0,0.0,0.0,0.00447672870896 -1468862352455201949,0.008,0.0,0.0,0.0,0.0,0.0 -1468862352535965722,0.0,0.0,0.0,0.0,0.0,0.00326298554622 -1468862352614968906,0.008,0.0,0.0,0.0,0.0,0.0 -1468862352691242114,0.008,0.0,0.0,0.0,0.0,0.0 -1468862352797497645,0.008,0.0,0.0,0.0,0.0,0.0 -1468862352890491092,0.008,0.0,0.0,0.0,0.0,0.0 -1468862352971597748,0.008,0.0,0.0,0.0,0.0,0.0 -1468862353061512444,0.008,0.0,0.0,0.0,0.0,0.0 -1468862353163101015,0.008,0.0,0.0,0.0,0.0,0.0 -1468862353251400806,0.008,0.0,0.0,0.0,0.0,0.0 -1468862353354355974,0.008,0.0,0.0,0.0,0.0,0.0 -1468862353444584069,0.008,0.0,0.0,0.0,0.0,0.0 -1468862353536540843,0.008,0.0,0.0,0.0,0.0,0.0 -1468862353624699921,0.008,0.0,0.0,0.0,0.0,0.0 -1468862353726501292,0.008,0.0,0.0,0.0,0.0,0.0 -1468862353822807843,0.008,0.0,0.0,0.0,0.0,0.0 -1468862353912825841,0.0,-0.00119658777822,0.0,0.0,0.0,0.0 -1468862354013663383,0.0,0.0,0.0,0.0,0.0,0.00393276346659 +1470076134103313750,0.15,-0.651112749731,0.0,0.0,0.0,0.032814681371 +1470076134184604640,0.15,-0.300929293576,0.0,0.0,0.0,0.0314467952154 +1470076134262064125,0.15,-0.300778096262,0.0,0.0,0.0,0.035873367533 +1470076134343406684,0.15,-0.300695889535,0.0,0.0,0.0,0.0328316105027 +1470076134423813296,0.15,-0.30145448679,0.0,0.0,0.0,0.0343912551289 +1470076134503393184,0.15,-0.300991632882,0.0,0.0,0.0,0.032814681371 +1470076134582053737,0.15,-0.301164659205,0.0,0.0,0.0,0.0343912551289 +1470076134658918391,0.15,-0.300558484736,0.0,0.0,0.0,0.0342482074128 +1470076134730296486,0.15,-0.303318929616,0.0,0.0,0.0,0.0316828813386 +1470076134804172671,0.15,-0.305134950223,0.0,0.0,0.0,0.0276803625106 +1470076134878079501,0.15,-0.297601201478,0.0,0.0,0.0,0.0254932727671 +1470076134953118406,0.15,-0.278488876763,0.0,0.0,0.0,0.0309506247224 +1470076135024150463,0.15,-0.256229257527,0.0,0.0,0.0,0.0308161701552 +1470076135101202636,0.15,-0.229871621075,0.0,0.0,0.0,0.0251059852439 +1470076135175163435,0.15,-0.241489471736,0.0,0.0,0.0,0.0332104307753 +1470076135246053525,0.15,-0.212379303518,0.0,0.0,0.0,0.0226822533986 +1470076135322138633,0.15,-0.205645186248,0.0,0.0,0.0,0.0310709153552 +1470076135397897774,0.15,-0.188373912516,0.0,0.0,0.0,0.027847958981 +1470076135469375831,0.15,-0.158732185605,0.0,0.0,0.0,0.037191979229 +1470076135540972043,0.15,-0.15360917801,0.0,0.0,0.0,0.0253033802667 +1470076135612328336,0.15,-0.137469072285,0.0,0.0,0.0,0.0338549114347 +1470076135685311687,0.15,-0.128752754274,0.0,0.0,0.0,0.0300040405851 +1470076135768369694,0.15,-0.103034705165,0.0,0.0,0.0,0.0240500204721 +1470076135842410142,0.15,-0.102486840728,0.0,0.0,0.0,0.0182494505444 +1470076135915457695,0.15,-0.0911718087821,0.0,0.0,0.0,0.0262186461519 +1470076135985694614,0.15,-0.0843029052942,0.0,0.0,0.0,0.0284769068001 +1470076136055784331,0.15,-0.0720270415573,0.0,0.0,0.0,0.0288770190219 +1470076136132383438,0.15,-0.0518763189941,0.0,0.0,0.0,0.0224872382289 +1470076136203207320,0.15,-0.0576360248952,0.0,0.0,0.0,0.0391589388894 +1470076136273442101,0.15,-0.0497914446323,0.0,0.0,0.0,0.0350610621947 +1470076136349235338,0.15,-0.0446906649499,0.0,0.0,0.0,0.0227228664312 +1470076136423520184,0.15,-0.0393323325543,0.0,0.0,0.0,0.0205248291171 +1470076136500391584,0.15,-0.0323912873297,0.0,0.0,0.0,0.0328888089129 +1470076136583634923,0.15,-0.0326730758129,0.0,0.0,0.0,0.0375659966345 +1470076136663715368,0.15,-0.0265673100381,0.0,0.0,0.0,0.0212639555184 +1470076136739605358,0.15,-0.0267780368953,0.0,0.0,0.0,0.0262370266872 +1470076136819373131,0.15,-0.0229252044289,0.0,0.0,0.0,0.0210995270711 +1470076136891872873,0.15,-0.0210640629559,0.0,0.0,0.0,0.00601696042953 +1470076136963202017,0.15,-0.0206770797252,0.0,0.0,0.0,0.0363527752913 +1470076137048380671,0.15,-0.0201866214155,0.0,0.0,0.0,0.00869146617543 +1470076137132143451,0.15,-0.0210278690039,0.0,0.0,0.0,0.0116729381959 +1470076137213244597,0.15,-0.0200350888251,0.0,0.0,0.0,0.0261488499262 +1470076137287684112,0.15,-0.0217361752867,0.0,0.0,0.0,0.0384899497334 +1470076137368301944,0.15,-0.0221624550401,0.0,0.0,0.0,0.0120660500762 +1470076137439011075,0.15,-0.0236916564583,0.0,0.0,0.0,0.0312044666719 +1470076137511575299,0.15,-0.0231820430784,0.0,0.0,0.0,0.00733194710756 +1470076137583190022,0.15,-0.0261306798636,0.0,0.0,0.0,0.0 +1470076137656871781,0.15,-0.0267011347591,0.0,0.0,0.0,0.0181246534605 +1470076137732563443,0.15,-0.0261795425593,0.0,0.0,0.0,0.0108928901852 +1470076137812490185,0.15,-0.0257037408083,0.0,0.0,0.0,0.0123389154041 +1470076137885087939,0.15,-0.0282699871241,0.0,0.0,0.0,0.0145720710989 +1470076137964036701,0.15,-0.025433899182,0.0,0.0,0.0,0.0323792337662 +1470076138041987458,0.15,-0.0279431501209,0.0,0.0,0.0,0.0 +1470076138118690311,0.15,-0.0299053784638,0.0,0.0,0.0,0.00858347057513 +1470076138193237891,0.15,-0.0280158338128,0.0,0.0,0.0,0.0169533924461 +1470076138268233117,0.15,-0.0287989024251,0.0,0.0,0.0,0.0192185162398 +1470076138343364708,0.15,-0.0282717634915,0.0,0.0,0.0,0.00901792396434 +1470076138423466900,0.15,-0.0279854465454,0.0,0.0,0.0,0.00671323147172 +1470076138501227082,0.15,-0.0280478629648,0.0,0.0,0.0,0.0168545592739 +1470076138575370095,0.15,-0.0261682928531,0.0,0.0,0.0,0.010814796913 +1470076138649557747,0.15,-0.0265524652778,0.0,0.0,0.0,0.00604301911306 +1470076138730119708,0.15,-0.0253505110918,0.0,0.0,0.0,-0.00843692934535 +1470076138807657867,0.15,-0.0251392264842,0.0,0.0,0.0,0.0239279551498 +1470076138882363006,0.15,-0.0236204021602,0.0,0.0,0.0,0.0115464946307 +1470076138965173665,0.15,-0.0226770912288,0.0,0.0,0.0,0.00590818567876 +1470076139043035245,0.15,-0.0237834672808,0.0,0.0,0.0,0.0172064621395 +1470076139117372285,0.15,-0.0218276770591,0.0,0.0,0.0,0.00695322071616 +1470076139191438972,0.15,-0.0207815712868,0.0,0.0,0.0,0.0157901849436 +1470076139265817252,0.15,-0.0218222984104,0.0,0.0,0.0,0.00873690092335 +1470076139345392599,0.15,-0.0202690071045,0.0,0.0,0.0,0.00839183433038 +1470076139421501126,0.15,-0.0190913930713,0.0,0.0,0.0,0.0 +1470076139495574561,0.15,-0.0202340351223,0.0,0.0,0.0,0.0331682649495 +1470076139571567056,0.15,-0.0186715093433,0.0,0.0,0.0,-0.00418502277883 +1470076139645753864,0.15,-0.0178587374269,0.0,0.0,0.0,-0.00399922299551 +1470076139718041854,0.15,-0.0189023412569,0.0,0.0,0.0,0.015004236139 +1470076139791973851,0.15,-0.0170285027652,0.0,0.0,0.0,0.00609917444814 +1470076139864140606,0.15,-0.0166612391352,0.0,0.0,0.0,0.00502154837827 +1470076139936798389,0.15,-0.0161739045559,0.0,0.0,0.0,0.0133933079428 +1470076140010040860,0.15,-0.0168121018811,0.0,0.0,0.0,0.0100182170731 +1470076140086268543,0.15,-0.0152980864971,0.0,0.0,0.0,0.0141861335485 +1470076140166252856,0.15,-0.0150147386818,0.0,0.0,0.0,0.0 +1470076140243318674,0.15,-0.0144479918285,0.0,0.0,0.0,0.0170177389364 +1470076140320979371,0.15,-0.0135331835403,0.0,0.0,0.0,0.00970191787847 +1470076140394458644,0.15,-0.0129248960866,0.0,0.0,0.0,0.0188413435533 +1470076140467603329,0.15,-0.0118365658625,0.0,0.0,0.0,0.0 +1470076140544050708,0.15,-0.0111650619461,0.0,0.0,0.0,0.0153011368423 +1470076140618350073,0.15,-0.0110906671538,0.0,0.0,0.0,0.0159527919857 +1470076140692545086,0.15,-0.0108824538245,0.0,0.0,0.0,0.0130413983906 +1470076140765040481,0.15,-0.0109522021367,0.0,0.0,0.0,0.00799474886543 +1470076140838660793,0.15,-0.010177429448,0.0,0.0,0.0,0.0176131396603 +1470076140917404223,0.15,-0.010376088935,0.0,0.0,0.0,0.0 +1470076140992085372,0.15,-0.0102295324384,0.0,0.0,0.0,0.0122593531034 +1470076141064783222,0.15,-0.0104328772603,0.0,0.0,0.0,0.0 +1470076141137192468,0.15,-0.0107596185981,0.0,0.0,0.0,0.0156706945135 +1470076141211475527,0.15,-0.0107368529021,0.0,0.0,0.0,0.0 +1470076141283360660,0.15,-0.0111052788972,0.0,0.0,0.0,0.0139924396532 +1470076141354973227,0.0,-0.0114935461237,0.0,0.0,0.0,0.0136112707761 +1470076141429498330,0.0,-0.0117762741252,0.0,0.0,0.0,0.0 +1470076141503785063,0.0,-0.0121346732407,0.0,0.0,0.0,0.0 +1470076141576801127,0.0,-0.0124308591514,0.0,0.0,0.0,0.0 +1470076141650039136,0.0,-0.0125795959114,0.0,0.0,0.0,0.0100351755698 +1470076141723465382,0.0,-0.0125843492328,0.0,0.0,0.0,0.00639609613777 +1470076141794909650,0.0,-0.0125353921382,0.0,0.0,0.0,0.00622126691608 +1470076141868969354,0.0,-0.0125779351397,0.0,0.0,0.0,0.00500310185518 +1470076141939564930,0.0,-0.0126331459536,0.0,0.0,0.0,0.00958653141558 +1470076142014518615,0.0,-0.0122689522981,0.0,0.0,0.0,0.0 +1470076142085069326,0.0,-0.012615750338,0.0,0.0,0.0,0.00403145440342 +1470076142167534826,0.0,-0.0134027050613,0.0,0.0,0.0,0.0 +1470076142241158262,0.0,-0.0132250245093,0.0,0.0,0.0,0.0 +1470076142318340537,0.0,-0.0122975093304,0.0,0.0,0.0,0.0 +1470076142392648640,0.0,-0.0111348890691,0.0,0.0,0.0,0.0 +1470076142466535958,0.0,-0.0113587749555,0.0,0.0,0.0,0.0 +1470076142544277640,0.0,-0.0111994924574,0.0,0.0,0.0,0.0 +1470076142615590872,0.0,-0.0100074897512,0.0,0.0,0.0,0.0 +1470076142692082913,0.0,-0.00951257714916,0.0,0.0,0.0,0.0 +1470076142768085309,0.0,-0.00878282440741,0.0,0.0,0.0,0.0 +1470076142844856715,0.0,-0.00788104837675,0.0,0.0,0.0,0.0 +1470076142922565053,0.0,-0.00676678771067,0.0,0.0,0.0,0.0 +1470076142999210231,0.0,-0.00687142623503,0.0,0.0,0.0,0.0 +1470076143072764211,0.0,-0.00565294841219,0.0,0.0,0.0,0.0 +1470076143149655761,0.0,-0.0048344024821,0.0,0.0,0.0,0.0 +1470076143223356878,0.0,-0.00406468070958,0.0,0.0,0.0,0.0 +1470076143299842632,0.0,-0.00323225160975,0.0,0.0,0.0,0.0 +1470076143372807033,0.0,-0.0033937273166,0.0,0.0,0.0,0.0 +1470076143448177447,0.0,-0.00230363232929,0.0,0.0,0.0,0.00306467203639 +1470076143522250300,0.0,-0.0017789659268,0.0,0.0,0.0,0.0 +1470076143606434179,0.0,-0.00131721274842,0.0,0.0,0.0,0.0 +1470076143682946285,0.006,0.0,0.0,0.0,0.0,0.0 +1470076143755341989,0.006,0.0,0.0,0.0,0.0,0.0 +1470076143831302110,0.006,0.0,0.0,0.0,0.0,0.0 +1470076143905394961,0.006,0.0,0.0,0.0,0.0,0.0 +1470076143979477603,0.006,0.0,0.0,0.0,0.0,0.0 +1470076144052727737,0.006,0.0,0.0,0.0,0.0,0.0 +1470076144126724700,0.0,0.0,0.0,0.0,0.0,0.00293258338852 +1470076144202140689,0.0,0.0,0.0,0.0,0.0,0.00351383440654 +1470076144276608067,0.006,0.0,0.0,0.0,0.0,0.0 +1470076144348972343,0.0,0.0,0.0,0.0,0.0,0.00595573096224 +1470076144423685845,0.006,0.0,0.0,0.0,0.0,0.0 +1470076144495298671,0.006,0.0,0.0,0.0,0.0,0.0 +1470076144567653123,0.0,0.0,0.0,0.0,0.0,0.0052995663337 +1470076144640967332,0.0,0.0,0.0,0.0,0.0,0.003699200676 +1470076144715658792,0.006,0.0,0.0,0.0,0.0,0.0 +1470076144787537456,0.006,0.0,0.0,0.0,0.0,0.0 +1470076144864251170,0.006,0.0,0.0,0.0,0.0,0.0 +1470076144938099527,0.006,0.0,0.0,0.0,0.0,0.0 +1470076145010985898,0.006,0.0,0.0,0.0,0.0,0.0 +1470076145084176834,0.006,0.0,0.0,0.0,0.0,0.0 +1470076145155098780,0.006,0.0,0.0,0.0,0.0,0.0 +1470076145225727601,0.006,0.0,0.0,0.0,0.0,0.0 +1470076145299378080,0.0,0.0,0.0,0.0,0.0,0.00719685003837 +1470076145371846690,0.006,0.0,0.0,0.0,0.0,0.0 +1470076145446467698,0.006,0.0,0.0,0.0,0.0,0.0 +1470076145525072403,0.0,0.0,0.0,0.0,0.0,0.00446263704866 +1470076145602764279,0.006,0.0,0.0,0.0,0.0,0.0 +1470076145676073275,0.0,0.0,0.0,0.0,0.0,0.00439621796067 +1470076145752788332,0.006,0.0,0.0,0.0,0.0,0.0 +1470076145828359585,0.006,0.0,0.0,0.0,0.0,0.0 +1470076145905550345,0.0,0.0,0.0,0.0,0.0,0.00452359527778 +1470076145988621220,0.0,0.0,0.0,0.0,0.0,0.00441385737483 +1470076146066080176,0.006,0.0,0.0,0.0,0.0,0.0 +1470076146140536374,0.006,0.0,0.0,0.0,0.0,0.0 +1470076146215644029,0.006,0.0,0.0,0.0,0.0,0.0 +1470076146293319649,0.006,0.0,0.0,0.0,0.0,0.0 +1470076146376051128,0.0,0.0,0.0,0.0,0.0,0.00328809565263 +1470076146450270640,0.006,0.0,0.0,0.0,0.0,0.0 +1470076146521894826,0.0,0.0,0.0,0.0,0.0,0.00516680877662 +1470076146599157196,0.0,0.0,0.0,0.0,0.0,0.00346535475874 +1470076146670994758,0.006,0.0,0.0,0.0,0.0,0.0 +1470076146747448015,0.0,0.0,0.0,0.0,0.0,0.00568302593887 +1470076146821416153,0.006,0.0,0.0,0.0,0.0,0.0 +1470076146899591959,0.006,0.0,0.0,0.0,0.0,0.0 +1470076146970807843,0.006,0.0,0.0,0.0,0.0,0.0 +1470076147040217268,0.006,0.0,0.0,0.0,0.0,0.0 +1470076147112050256,0.0,0.0,0.0,0.0,0.0,0.00283302739304 +1470076147184773037,0.0,0.0,0.0,0.0,0.0,0.00357214405116 +1470076147261345629,0.0,0.0,0.0,0.0,0.0,0.00359170341865 +1470076147338826455,0.0,0.0,0.0,0.0,0.0,0.00453231089943 +1470076147412914590,0.0,0.0,0.0,0.0,0.0,0.00282594033671 +1470076147488731771,0.0,0.0,0.0,0.0,0.0,0.00293085205553 +1470076147569166380,0.006,0.0,0.0,0.0,0.0,0.0 +1470076147645057854,0.006,0.0,0.0,0.0,0.0,0.0 +1470076147720371033,0.006,0.0,0.0,0.0,0.0,0.0 +1470076147796783318,0.006,0.0,0.0,0.0,0.0,0.0 +1470076147874761238,0.0,0.0,0.0,0.0,0.0,0.00322689515563 +1470076147948014434,0.006,0.0,0.0,0.0,0.0,0.0 +1470076148023457235,0.0,0.0,0.0,0.0,0.0,0.00322355342314 +1470076148104064539,0.006,0.0,0.0,0.0,0.0,0.0 +1470076148181643206,0.0,0.0,0.0,0.0,0.0,0.00337905675015 +1470076148255765626,0.0,0.0,0.0,0.0,0.0,0.00285719669855 +1470076148331398012,0.0,0.0,0.0,0.0,0.0,0.00477266194931 +1470076148404344403,0.006,0.0,0.0,0.0,0.0,0.0 +1470076148477157965,0.006,0.0,0.0,0.0,0.0,0.0 +1470076148550490374,0.0,-0.00156214980323,0.0,0.0,0.0,0.0 +1470076148623902288,0.0,-0.00239935388703,0.0,0.0,0.0,0.0 +1470076148698540736,0.0,-0.00212392739866,0.0,0.0,0.0,0.0 +1470076148771248565,0.0,-0.00208417618561,0.0,0.0,0.0,0.0 +1470076148843826029,0.0,-0.00169373575512,0.0,0.0,0.0,0.0 +1470076148918097701,0.0,-0.00183922428552,0.0,0.0,0.0,0.0 +1470076148992373020,0.0,-0.00197391757656,0.0,0.0,0.0,0.0 +1470076149064629461,0.0,-0.00283680010501,0.0,0.0,0.0,0.0 +1470076149136876782,0.0,-0.00263113537718,0.0,0.0,0.0,0.0 +1470076149209215373,0.0,-0.00298262955535,0.0,0.0,0.0,0.0 +1470076149281385701,0.0,-0.00317336633716,0.0,0.0,0.0,0.0 +1470076149355816714,0.0,-0.00359169056553,0.0,0.0,0.0,0.0 +1470076149430496107,0.0,-0.00326568851162,0.0,0.0,0.0,0.0 +1470076149498982301,0.0,-0.0029555933914,0.0,0.0,0.0,0.0 +1470076149571616452,0.0,-0.00305758086879,0.0,0.0,0.0,0.0 +1470076149643997530,0.0,-0.00302639828909,0.0,0.0,0.0,0.0 +1470076149721918059,0.0,-0.00277978747997,0.0,0.0,0.0,0.0 +1470076149795577719,0.0,-0.00259293338198,0.0,0.0,0.0,0.0 +1470076149869355951,0.0,-0.00260374799285,0.0,0.0,0.0,0.0 +1470076149942975328,0.0,-0.002229220233,0.0,0.0,0.0,0.0 +1470076150014942454,0.0,-0.00209461171094,0.0,0.0,0.0,0.0 +1470076150089872457,0.0,-0.00185418119568,0.0,0.0,0.0,0.0 +1470076150165415374,0.0,-0.00160338206131,0.0,0.0,0.0,0.0 +1470076150245981717,0.0,-0.0016552064373,0.0,0.0,0.0,0.0 +1470076150319547219,0.006,0.0,0.0,0.0,0.0,0.0 +1470076150393434194,0.006,0.0,0.0,0.0,0.0,0.0 +1470076150469794709,0.006,0.0,0.0,0.0,0.0,0.0 +1470076150544540504,0.006,0.0,0.0,0.0,0.0,0.0 +1470076150622124123,0.006,0.0,0.0,0.0,0.0,0.0 +1470076150700223312,0.006,0.0,0.0,0.0,0.0,0.0 +1470076150772106651,0.006,0.0,0.0,0.0,0.0,0.0 +1470076150844562513,0.006,0.0,0.0,0.0,0.0,0.0 +1470076150920277805,0.006,0.0,0.0,0.0,0.0,0.0 +1470076150993031416,0.006,0.0,0.0,0.0,0.0,0.0 +1470076151068304245,0.0,0.0,0.0,0.0,0.0,0.0028263494275 +1470076151146230481,0.006,0.0,0.0,0.0,0.0,0.0 +1470076151223781592,0.0,0.00655645774763,0.0,0.0,0.0,0.00296354343809 +1470076151298920793,0.0,0.002908254872,0.0,0.0,0.0,0.0 +1470076151372643971,0.0,0.00263600456614,0.0,0.0,0.0,0.0 +1470076151444184995,0.0,0.00276769050483,0.0,0.0,0.0,0.0 +1470076151516906040,0.0,0.0028426757184,0.0,0.0,0.0,0.0 +1470076151589525577,0.0,0.00277017320592,0.0,0.0,0.0,0.0 +1470076151663546970,0.0,0.00282924058002,0.0,0.0,0.0,0.0 +1470076151742959087,0.0,0.00293478530917,0.0,0.0,0.0,0.0 +1470076151824161096,0.0,0.00304741359402,0.0,0.0,0.0,0.0 +1470076151899574773,0.0,0.00352378641341,0.0,0.0,0.0,0.0 +1470076151973644818,0.0,0.00380401373927,0.0,0.0,0.0,0.0 +1470076152051406875,0.0,0.00362542784859,0.0,0.0,0.0,0.0 +1470076152127606150,0.0,0.00287482835438,0.0,0.0,0.0,0.00316294958308 +1470076152201931957,0.0,0.00253501636993,0.0,0.0,0.0,0.0 +1470076152272842956,0.0,0.00271797714841,0.0,0.0,0.0,0.00301119477373 +1470076152352907773,0.0,0.00255968622949,0.0,0.0,0.0,0.0 +1470076152429753688,0.0,0.00229351717133,0.0,0.0,0.0,0.0 +1470076152505166311,0.0,0.00211965452034,0.0,0.0,0.0,0.0 +1470076152581858088,0.0,0.00210049517538,0.0,0.0,0.0,0.0 +1470076152659651992,0.0,0.00181783051316,0.0,0.0,0.0,0.0 +1470076152738052205,0.0,0.0015447444291,0.0,0.0,0.0,0.0 +1470076152812154097,0.006,0.0,0.0,0.0,0.0,0.0 +1470076152884304973,0.006,0.0,0.0,0.0,0.0,0.0 +1470076152960747461,0.006,0.0,0.0,0.0,0.0,0.0 +1470076153037202041,0.006,0.0,0.0,0.0,0.0,0.0 +1470076153112017623,0.006,0.0,0.0,0.0,0.0,0.0 +1470076153184282932,0.006,0.0,0.0,0.0,0.0,0.0 +1470076153260377225,0.006,0.0,0.0,0.0,0.0,0.0 +1470076153337804942,0.006,0.0,0.0,0.0,0.0,0.0 +1470076153413128269,0.006,0.0,0.0,0.0,0.0,0.0 +1470076153484903032,0.006,0.0,0.0,0.0,0.0,0.0 +1470076153562609550,0.006,0.0,0.0,0.0,0.0,0.0 +1470076153639461155,0.006,0.0,0.0,0.0,0.0,0.0 +1470076153712504584,0.006,0.0,0.0,0.0,0.0,0.0 +1470076153784238338,0.006,0.0,0.0,0.0,0.0,0.0 +1470076153857075542,0.006,0.0,0.0,0.0,0.0,0.0 +1470076153931629129,0.006,0.0,0.0,0.0,0.0,0.0 +1470076154001936522,0.006,0.0,0.0,0.0,0.0,0.0 +1470076154076258338,0.006,0.0,0.0,0.0,0.0,0.0 +1470076154152511714,0.0,-0.00586418677036,0.0,0.0,0.0,0.0 +1470076154231218352,0.0,-0.00183626221407,0.0,0.0,0.0,0.0 +1470076154304302171,0.0,-0.00185815360311,0.0,0.0,0.0,0.0 +1470076154382823584,0.0,-0.00191947590474,0.0,0.0,0.0,0.0 +1470076154455935365,0.0,-0.00196266775865,0.0,0.0,0.0,0.0 +1470076154529838793,0.0,-0.00193983005274,0.0,0.0,0.0,0.0 +1470076154601887012,0.0,-0.00193509006787,0.0,0.0,0.0,0.0 +1470076154679368315,0.0,-0.00196452909995,0.0,0.0,0.0,0.0 +1470076154754321093,0.0,-0.00205695304934,0.0,0.0,0.0,0.0 +1470076154826033013,0.0,-0.00214487964202,0.0,0.0,0.0,0.0 +1470076154900006606,0.0,-0.00268210541371,0.0,0.0,0.0,0.0 +1470076154971993179,0.0,-0.00277470299888,0.0,0.0,0.0,0.0 +1470076155044183188,0.0,-0.00252188337881,0.0,0.0,0.0,0.0 +1470076155118681201,0.0,-0.00200725175355,0.0,0.0,0.0,0.0 +1470076155192806899,0.0,-0.00213569281537,0.0,0.0,0.0,0.0 +1470076155280223347,0.0,-0.00214267160658,0.0,0.0,0.0,0.0 +1470076155355699650,0.0,-0.00204567899842,0.0,0.0,0.0,0.0 +1470076155428290900,0.0,-0.00180626699615,0.0,0.0,0.0,0.0 +1470076155501519906,0.0,-0.00186282033015,0.0,0.0,0.0,0.0 +1470076155575415788,0.0,-0.00164179503832,0.0,0.0,0.0,0.0 +1470076155647038170,0.006,0.0,0.0,0.0,0.0,0.0 +1470076155719263364,0.006,0.0,0.0,0.0,0.0,0.0 +1470076155792773146,0.006,0.0,0.0,0.0,0.0,0.0 +1470076155869307964,0.006,0.0,0.0,0.0,0.0,0.0 +1470076155942189616,0.006,0.0,0.0,0.0,0.0,0.0 +1470076156017988060,0.006,0.0,0.0,0.0,0.0,0.0 +1470076156092267192,0.006,0.0,0.0,0.0,0.0,0.0 +1470076156169340768,0.006,0.0,0.0,0.0,0.0,0.0 +1470076156242571991,0.006,0.0,0.0,0.0,0.0,0.0 +1470076156316400245,0.006,0.0,0.0,0.0,0.0,0.0 +1470076156388493206,0.006,0.0,0.0,0.0,0.0,0.0 +1470076156464662012,0.006,0.0,0.0,0.0,0.0,0.0 +1470076156539605175,0.006,0.0,0.0,0.0,0.0,0.0 +1470076156613052427,0.006,0.0,0.0,0.0,0.0,0.0 +1470076156685825418,0.006,0.0,0.0,0.0,0.0,0.0 +1470076156772479633,0.006,0.0,0.0,0.0,0.0,0.0 +1470076156850171649,0.006,0.0,0.0,0.0,0.0,0.0 +1470076156925874126,0.006,0.0,0.0,0.0,0.0,0.0 +1470076157001648191,0.006,0.0,0.0,0.0,0.0,0.0 +1470076157076218326,0.006,0.0,0.0,0.0,0.0,0.0 +1470076157151902399,0.0,0.0,0.0,0.0,0.0,0.00373404688041 +1470076157225027172,0.006,0.0,0.0,0.0,0.0,0.0 +1470076157297008983,0.006,0.0,0.0,0.0,0.0,0.0 +1470076157370299880,0.006,0.0,0.0,0.0,0.0,0.0 +1470076157441464147,0.006,0.0,0.0,0.0,0.0,0.0 +1470076157514185614,0.006,0.0,0.0,0.0,0.0,0.0 +1470076157586672135,0.006,0.0,0.0,0.0,0.0,0.0 +1470076157661180500,0.006,0.0,0.0,0.0,0.0,0.0 +1470076157736939953,0.006,0.0,0.0,0.0,0.0,0.0 +1470076157812508948,0.006,0.0,0.0,0.0,0.0,0.0 +1470076157885659834,0.0,0.0,0.0,0.0,0.0,0.00293181848232 +1470076157960133799,0.006,0.0,0.0,0.0,0.0,0.0 +1470076158030711082,0.006,0.0,0.0,0.0,0.0,0.0 +1470076158102909619,0.006,0.0,0.0,0.0,0.0,0.0 +1470076158176114631,0.006,0.0,0.0,0.0,0.0,0.0 +1470076158255278463,0.0,0.0,0.0,0.0,0.0,0.00328994917771 +1470076158329701506,0.006,0.0,0.0,0.0,0.0,0.0 +1470076158404968862,0.006,0.0,0.0,0.0,0.0,0.0 +1470076158478731717,0.006,0.0,0.0,0.0,0.0,0.0 +1470076158552591660,0.006,0.0,0.0,0.0,0.0,0.0 +1470076158626989199,0.006,0.0,0.0,0.0,0.0,0.0 +1470076158700989013,0.006,0.0,0.0,0.0,0.0,0.0 +1470076158777174083,0.006,0.0,0.0,0.0,0.0,0.0 +1470076158850681963,0.006,0.0,0.0,0.0,0.0,0.0 +1470076158919839696,0.006,0.0,0.0,0.0,0.0,0.0 +1470076158991664898,0.006,0.0,0.0,0.0,0.0,0.0 +1470076159062799115,0.006,0.0,0.0,0.0,0.0,0.0 +1470076159139079900,0.006,0.0,0.0,0.0,0.0,0.0 +1470076159213260306,0.0,0.0,0.0,0.0,0.0,0.00301754874287 +1470076159303171159,0.006,0.0,0.0,0.0,0.0,0.0 +1470076159378495571,0.006,0.0,0.0,0.0,0.0,0.0 +1470076159452029864,0.006,0.0,0.0,0.0,0.0,0.0 +1470076159527416046,0.0,0.0,0.0,0.0,0.0,0.00365658022963 +1470076159601845217,0.006,0.0,0.0,0.0,0.0,0.0 +1470076159679128810,0.006,0.0,0.0,0.0,0.0,0.0 +1470076159752233722,0.006,0.0,0.0,0.0,0.0,0.0 +1470076159831897571,0.0,0.0,0.0,0.0,0.0,0.00517947398625 +1470076159904708030,0.006,0.0,0.0,0.0,0.0,0.0 +1470076159981993145,0.006,0.0,0.0,0.0,0.0,0.0 +1470076160057564112,0.006,0.0,0.0,0.0,0.0,0.0 +1470076160129755518,0.0,0.0,0.0,0.0,0.0,0.00320267065427 +1470076160206275507,0.006,0.0,0.0,0.0,0.0,0.0 +1470076160283031780,0.006,0.0,0.0,0.0,0.0,0.0 +1470076160358943543,0.006,0.0,0.0,0.0,0.0,0.0 +1470076160432297522,0.006,0.0,0.0,0.0,0.0,0.0 +1470076160507060323,0.0,0.0,0.0,0.0,0.0,0.00314035796423 +1470076160578978698,0.006,0.0,0.0,0.0,0.0,0.0 +1470076160650048337,0.006,0.0,0.0,0.0,0.0,0.0 +1470076160726131318,0.0,0.0,0.0,0.0,0.0,0.00304133249591 +1470076160802802381,0.0,0.0,0.0,0.0,0.0,0.00582155309755 +1470076160875108450,0.0,0.0,0.0,0.0,0.0,0.00410444182714 +1470076160946760010,0.006,0.0,0.0,0.0,0.0,0.0 +1470076161016949490,0.0,0.0,0.0,0.0,0.0,0.00379587493031 +1470076161090249221,0.006,0.0,0.0,0.0,0.0,0.0 +1470076161163172436,0.0,0.0,0.0,0.0,0.0,0.00389113343793 +1470076161238123266,0.0,0.0,0.0,0.0,0.0,0.00373890756763 +1470076161311511043,0.006,0.0,0.0,0.0,0.0,0.0 +1470076161384883470,0.006,0.0,0.0,0.0,0.0,0.0 +1470076161459116054,0.006,0.0,0.0,0.0,0.0,0.0 +1470076161533648970,0.006,0.0,0.0,0.0,0.0,0.0 +1470076161605865649,0.006,0.0,0.0,0.0,0.0,0.0 +1470076161680187519,0.006,0.0,0.0,0.0,0.0,0.0 +1470076161754562866,0.006,0.0,0.0,0.0,0.0,0.0 +1470076161831290202,0.006,0.0,0.0,0.0,0.0,0.0 +1470076161904562634,0.0,0.0,0.0,0.0,0.0,0.00471291859591 +1470076161978294248,0.006,0.0,0.0,0.0,0.0,0.0 +1470076162049399737,0.006,0.0,0.0,0.0,0.0,0.0 +1470076162122574604,0.006,0.0,0.0,0.0,0.0,0.0 +1470076162199689391,0.006,0.0,0.0,0.0,0.0,0.0 +1470076162277181471,0.006,0.0,0.0,0.0,0.0,0.0 +1470076162360248123,0.006,0.0,0.0,0.0,0.0,0.0 +1470076162434975587,0.006,0.0,0.0,0.0,0.0,0.0 +1470076162508376713,0.006,0.0,0.0,0.0,0.0,0.0 +1470076162586151550,0.006,0.0,0.0,0.0,0.0,0.0 +1470076162663421197,0.006,0.0,0.0,0.0,0.0,0.0 +1470076162736006817,0.006,0.0,0.0,0.0,0.0,0.0 +1470076162809540664,0.006,0.0,0.0,0.0,0.0,0.0 +1470076162885514364,0.006,0.0,0.0,0.0,0.0,0.0 +1470076162961679040,0.0,0.0,0.0,0.0,0.0,0.00349458657879 +1470076163041474803,0.006,0.0,0.0,0.0,0.0,0.0 +1470076163115392218,0.0,0.0,0.0,0.0,0.0,0.00306178993638 +1470076163189099444,0.0,0.0,0.0,0.0,0.0,0.00328755457592 +1470076163263485024,0.006,0.0,0.0,0.0,0.0,0.0 +1470076163342387473,0.006,0.0,0.0,0.0,0.0,0.0 +1470076163419812103,0.006,0.0,0.0,0.0,0.0,0.0 +1470076163490788863,0.006,0.0,0.0,0.0,0.0,0.0 +1470076163564383215,0.006,0.0,0.0,0.0,0.0,0.0 +1470076163642442754,0.006,0.0,0.0,0.0,0.0,0.0 +1470076163715677579,0.006,0.0,0.0,0.0,0.0,0.0 +1470076163789387836,0.006,0.0,0.0,0.0,0.0,0.0 +1470076163860933805,0.006,0.0,0.0,0.0,0.0,0.0 +1470076163940951958,0.006,0.0,0.0,0.0,0.0,0.0 +1470076164016083117,0.006,0.0,0.0,0.0,0.0,0.0 +1470076164088819865,0.0,0.0,0.0,0.0,0.0,0.00326918921506 +1470076164163745430,0.006,0.0,0.0,0.0,0.0,0.0 +1470076164238753927,0.006,0.0,0.0,0.0,0.0,0.0 +1470076164310504104,0.006,0.0,0.0,0.0,0.0,0.0 +1470076164385831588,0.006,0.0,0.0,0.0,0.0,0.0 +1470076164469101170,0.006,0.0,0.0,0.0,0.0,0.0 +1470076164546437502,0.006,0.0,0.0,0.0,0.0,0.0 +1470076164626630789,0.006,0.0,0.0,0.0,0.0,0.0 +1470076164704242276,0.006,0.0,0.0,0.0,0.0,0.0 +1470076164784747011,0.006,0.0,0.0,0.0,0.0,0.0 +1470076164861640694,0.006,0.0,0.0,0.0,0.0,0.0 +1470076164935281424,0.0,0.0,0.0,0.0,0.0,0.00308465550572 +1470076165013371684,0.0,0.0,0.0,0.0,0.0,0.00364079916127 +1470076165085677391,0.006,0.0,0.0,0.0,0.0,0.0 +1470076165160098891,0.0,0.0,0.0,0.0,0.0,0.0031029428785 +1470076165232897458,0.0,0.0,0.0,0.0,0.0,0.00334957986177 +1470076165303713569,0.0,0.0,0.0,0.0,0.0,0.00359683715384 +1470076165375778482,0.0,0.0,0.0,0.0,0.0,0.00376253044476 +1470076165454029226,0.006,0.0,0.0,0.0,0.0,0.0 +1470076165531366487,0.006,0.0,0.0,0.0,0.0,0.0 +1470076165603024647,0.0,0.0,0.0,0.0,0.0,0.00306814890062 +1470076165679014394,0.0,0.0,0.0,0.0,0.0,0.00418118311151 +1470076165755879336,0.0,0.0,0.0,0.0,0.0,0.00500863535051 +1470076165829613048,0.0,0.0,0.0,0.0,0.0,0.00490770864326 +1470076165901601685,0.0,0.0,0.0,0.0,0.0,0.00329665104846 +1470076165975479599,0.0,0.0,0.0,0.0,0.0,0.00334766442257 +1470076166047065559,0.006,0.0,0.0,0.0,0.0,0.0 +1470076166122810779,0.006,0.0,0.0,0.0,0.0,0.0 +1470076166195800327,0.006,0.0,0.0,0.0,0.0,0.0 +1470076166279785269,0.006,0.0,0.0,0.0,0.0,0.0 +1470076166355074132,0.006,0.0,0.0,0.0,0.0,0.0 +1470076166429898908,0.0,0.0,0.0,0.0,0.0,0.00281681787505 +1470076166502948436,0.0,0.0,0.0,0.0,0.0,0.00330328955752 +1470076166579668646,0.006,0.0,0.0,0.0,0.0,0.0 +1470076166658636228,0.006,0.0,0.0,0.0,0.0,0.0 +1470076166732453171,0.006,0.0,0.0,0.0,0.0,0.0 +1470076166804209582,0.006,0.0,0.0,0.0,0.0,0.0 +1470076166881553927,0.0,0.0,0.0,0.0,0.0,0.00323685336515 +1470076166960013310,0.006,0.0,0.0,0.0,0.0,0.0 +1470076167028861723,0.006,0.0,0.0,0.0,0.0,0.0 +1470076167102354619,0.006,0.0,0.0,0.0,0.0,0.0 +1470076167178167848,0.006,0.0,0.0,0.0,0.0,0.0 +1470076167247408705,0.006,0.0,0.0,0.0,0.0,0.0 +1470076167322778531,0.006,0.0,0.0,0.0,0.0,0.0 +1470076167396230249,0.006,0.0,0.0,0.0,0.0,0.0 +1470076167468547009,0.006,0.0,0.0,0.0,0.0,0.0 +1470076167542884317,0.006,0.0,0.0,0.0,0.0,0.0 diff --git a/MobileRobot/docking_data/Vel3.txt~ b/MobileRobot/docking_data/Vel3.txt~ new file mode 100644 index 0000000000000000000000000000000000000000..b29177bfb16c84b78922f9c865abbee8dfc8460c --- /dev/null +++ b/MobileRobot/docking_data/Vel3.txt~ @@ -0,0 +1,439 @@ +%time,field.linear.x,field.linear.y,field.linear.z,field.angular.x,field.angular.y,field.angular.z +1470073172999692074,0.15,-0.595936002955,0.0,0.0,0.0,0.022706839975 +1470073173087730129,0.15,-0.114279593494,0.0,0.0,0.0,0.0366795967119 +1470073173171397777,0.15,-0.119345612133,0.0,0.0,0.0,0.021535370681 +1470073173250776923,0.15,-0.118956527489,0.0,0.0,0.0,0.0212412921675 +1470073173324555270,0.15,-0.119287456481,0.0,0.0,0.0,0.0218175718931 +1470073173398472750,0.15,-0.11924770072,0.0,0.0,0.0,0.0227870437318 +1470073173476087141,0.15,-0.120460420419,0.0,0.0,0.0,0.0206499712843 +1470073173564085114,0.15,-0.12208176948,0.0,0.0,0.0,0.0255661719727 +1470073173642898803,0.15,-0.1194656237,0.0,0.0,0.0,0.0414983432842 +1470073173732200525,0.15,-0.126061194989,0.0,0.0,0.0,0.0378592864592 +1470073173803783924,0.15,-0.110011737572,0.0,0.0,0.0,0.0237033065982 +1470073173879240745,0.15,-0.118962580298,0.0,0.0,0.0,0.0255423056034 +1470073173954082372,0.15,-0.105979282992,0.0,0.0,0.0,0.0297096138299 +1470073174028606357,0.15,-0.0995055920119,0.0,0.0,0.0,0.0378366487258 +1470073174099660211,0.15,-0.100933794634,0.0,0.0,0.0,0.0290788839456 +1470073174174359978,0.15,-0.103858660579,0.0,0.0,0.0,0.0242019015741 +1470073174245196648,0.15,-0.0892558158009,0.0,0.0,0.0,0.0181915579909 +1470073174315787243,0.15,-0.0982737426033,0.0,0.0,0.0,0.0286748443013 +1470073174389010896,0.15,-0.0925855062153,0.0,0.0,0.0,0.0204590667515 +1470073174460207948,0.15,-0.0814161032977,0.0,0.0,0.0,0.0229527593693 +1470073174536592471,0.15,-0.0896551287183,0.0,0.0,0.0,0.0262891222561 +1470073174617268487,0.15,-0.0878832643032,0.0,0.0,0.0,0.0234127747205 +1470073174688266697,0.15,-0.084619862718,0.0,0.0,0.0,0.022670147966 +1470073174764395442,0.15,-0.0790083107692,0.0,0.0,0.0,0.0161890988087 +1470073174843911443,0.15,-0.0732430014122,0.0,0.0,0.0,0.0243352970043 +1470073174916212357,0.15,-0.0799285333166,0.0,0.0,0.0,0.0275176165578 +1470073174991392197,0.15,-0.074454503286,0.0,0.0,0.0,0.0163124945544 +1470073175066837471,0.15,-0.0739356301971,0.0,0.0,0.0,0.0307498715508 +1470073175147399618,0.15,-0.0764102806269,0.0,0.0,0.0,0.0269765368501 +1470073175224847546,0.15,-0.0732643707593,0.0,0.0,0.0,0.0257869927446 +1470073175301485835,0.15,-0.0694910206284,0.0,0.0,0.0,0.0144892480589 +1470073175376154448,0.15,-0.0623676599281,0.0,0.0,0.0,0.0342897775882 +1470073175455753741,0.15,-0.0671603376754,0.0,0.0,0.0,0.0305629179369 +1470073175532348083,0.15,-0.0676806349724,0.0,0.0,0.0,0.0236109572033 +1470073175608524601,0.15,-0.061605295003,0.0,0.0,0.0,0.0315485061181 +1470073175681991298,0.15,-0.0647740496752,0.0,0.0,0.0,0.0282011094972 +1470073175759651546,0.15,-0.0652849615234,0.0,0.0,0.0,0.0241360847821 +1470073175836589617,0.15,-0.0548369405696,0.0,0.0,0.0,0.0176904518358 +1470073175911486873,0.15,-0.0586065967367,0.0,0.0,0.0,0.0201264605009 +1470073175982345906,0.15,-0.063219497352,0.0,0.0,0.0,0.0283914645133 +1470073176055742087,0.15,-0.0546482022149,0.0,0.0,0.0,0.0241730542366 +1470073176128023126,0.15,-0.0590810900588,0.0,0.0,0.0,0.0236288911967 +1470073176199004296,0.15,-0.0557310795526,0.0,0.0,0.0,0.0217346060163 +1470073176270864930,0.15,-0.0600695353644,0.0,0.0,0.0,0.0201686976234 +1470073176348360665,0.15,-0.0543911492624,0.0,0.0,0.0,0.0249838634976 +1470073176431266844,0.15,-0.0553614767856,0.0,0.0,0.0,0.0221622043341 +1470073176510167651,0.15,-0.0564638930199,0.0,0.0,0.0,0.0218534222509 +1470073176587966923,0.15,-0.049271928398,0.0,0.0,0.0,0.0202323181771 +1470073176667520135,0.15,-0.0560433146621,0.0,0.0,0.0,0.0176856880683 +1470073176743803426,0.15,-0.0465759563701,0.0,0.0,0.0,0.0146209887378 +1470073176817232682,0.15,-0.0504628234677,0.0,0.0,0.0,0.0112963695494 +1470073176894901644,0.15,-0.0482828032872,0.0,0.0,0.0,0.0330330194969 +1470073176970631033,0.15,-0.051983039469,0.0,0.0,0.0,0.0293411770941 +1470073177043045275,0.15,-0.0452098738235,0.0,0.0,0.0,0.0232756679813 +1470073177114529739,0.15,-0.0461974250856,0.0,0.0,0.0,0.0125269073195 +1470073177186560973,0.15,-0.0496876384259,0.0,0.0,0.0,0.0171285091798 +1470073177267903732,0.15,-0.0437250537857,0.0,0.0,0.0,0.0157140900991 +1470073177342026617,0.15,-0.0456914675555,0.0,0.0,0.0,0.0173034248913 +1470073177419989242,0.15,-0.0419859217924,0.0,0.0,0.0,0.0247397905806 +1470073177493748671,0.15,-0.0443227416064,0.0,0.0,0.0,0.00984099064016 +1470073177567373787,0.15,-0.0402423086228,0.0,0.0,0.0,0.0184389802708 +1470073177639627209,0.15,-0.0420866770388,0.0,0.0,0.0,0.00827496703897 +1470073177714921214,0.15,-0.0400491567783,0.0,0.0,0.0,0.0193245018848 +1470073177787537371,0.15,-0.0420437621413,0.0,0.0,0.0,0.01766413462 +1470073177863278103,0.15,-0.0406767892812,0.0,0.0,0.0,0.0200884776915 +1470073177939179262,0.15,-0.0372562023032,0.0,0.0,0.0,0.0131197455786 +1470073178012173456,0.15,-0.0364203449154,0.0,0.0,0.0,0.0132915658842 +1470073178091619727,0.15,-0.0353890785315,0.0,0.0,0.0,0.0163728938958 +1470073178166602563,0.15,-0.0366708162784,0.0,0.0,0.0,0.0220588407499 +1470073178241624617,0.15,-0.0367362775778,0.0,0.0,0.0,0.00870909271943 +1470073178314980989,0.15,-0.0323681451325,0.0,0.0,0.0,0.0325563097509 +1470073178401168229,0.15,-0.0344792245242,0.0,0.0,0.0,0.0053750005082 +1470073178478820093,0.15,-0.0344857694903,0.0,0.0,0.0,0.0226596815986 +1470073178572229157,0.15,-0.031327402021,0.0,0.0,0.0,0.0122420823793 +1470073178647542822,0.15,-0.03107485876,0.0,0.0,0.0,0.0116399106231 +1470073178720819735,0.15,-0.0321787725968,0.0,0.0,0.0,0.0240272272741 +1470073178805886551,0.15,-0.0301014888276,0.0,0.0,0.0,0.0270521557484 +1470073178880394830,0.15,-0.0290363355565,0.0,0.0,0.0,0.0130087258936 +1470073178955758353,0.15,-0.0286449327053,0.0,0.0,0.0,0.0151217058154 +1470073179034271158,0.15,-0.0295187647976,0.0,0.0,0.0,0.0126962695204 +1470073179108643000,0.15,-0.0287987230173,0.0,0.0,0.0,0.00816782570978 +1470073179188064959,0.15,-0.0258346151767,0.0,0.0,0.0,0.0217105839345 +1470073179261456699,0.15,-0.0294245378446,0.0,0.0,0.0,0.0083951323734 +1470073179333150435,0.15,-0.0265481127481,0.0,0.0,0.0,0.00345221078324 +1470073179404856260,0.15,-0.0246286295058,0.0,0.0,0.0,0.00940768877079 +1470073179479573980,0.15,-0.0266626477752,0.0,0.0,0.0,0.0133105106764 +1470073179552194189,0.15,-0.025134406815,0.0,0.0,0.0,0.00998069213396 +1470073179629235931,0.15,-0.026225972235,0.0,0.0,0.0,0.01250569794 +1470073179702701896,0.15,-0.0234961012285,0.0,0.0,0.0,0.00972725230864 +1470073179783005261,0.15,-0.0253878962791,0.0,0.0,0.0,0.0124256799237 +1470073179859489028,0.15,-0.0237731587858,0.0,0.0,0.0,0.00637470790696 +1470073179942207923,0.15,-0.0225187539071,0.0,0.0,0.0,0.00907225557394 +1470073180014678582,0.15,-0.022790352008,0.0,0.0,0.0,0.00573203286893 +1470073180087429453,0.15,-0.0214586909515,0.0,0.0,0.0,0.00608443606343 +1470073180160757047,0.15,-0.0211779665328,0.0,0.0,0.0,0.0105337686228 +1470073180235894092,0.15,-0.0207744168522,0.0,0.0,0.0,0.0116552441688 +1470073180307484168,0.0,-0.0190952718985,0.0,0.0,0.0,0.00624457407205 +1470073180387116896,0.0,-0.0199606713924,0.0,0.0,0.0,0.00478159700945 +1470073180459257627,0.0,-0.0201303354381,0.0,0.0,0.0,0.00669686663874 +1470073180530910633,0.0,-0.0198834157527,0.0,0.0,0.0,0.00754175988028 +1470073180601216311,0.0,-0.017635615633,0.0,0.0,0.0,0.00495465456246 +1470073180673668053,0.0,-0.0184870774852,0.0,0.0,0.0,0.00694864462222 +1470073180746286807,0.0,-0.0179945686393,0.0,0.0,0.0,0.0110932281063 +1470073180820182876,0.0,-0.0175729275714,0.0,0.0,0.0,0.00454563042343 +1470073180893661829,0.0,-0.0166582442602,0.0,0.0,0.0,0.00836991717659 +1470073180968697990,0.0,-0.0172899149079,0.0,0.0,0.0,0.00628926910567 +1470073181040243482,0.0,-0.0181062445174,0.0,0.0,0.0,0.004957903661 +1470073181118564689,0.0,-0.0182856672047,0.0,0.0,0.0,0.00303834901128 +1470073181194239487,0.0,-0.0192228355662,0.0,0.0,0.0,0.00605914916729 +1470073181267349221,0.0,-0.019359215046,0.0,0.0,0.0,0.00324684448499 +1470073181344722939,0.0,-0.0149634579895,0.0,0.0,0.0,0.0 +1470073181419545163,0.0,-0.0156345392742,0.0,0.0,0.0,0.00515473312479 +1470073181490584535,0.0,-0.0162911163799,0.0,0.0,0.0,0.00582637444415 +1470073181563578579,0.0,-0.0151467105703,0.0,0.0,0.0,0.00325587838705 +1470073181635492458,0.0,-0.0123054269251,0.0,0.0,0.0,0.00392564734785 +1470073181709464022,0.0,-0.0145528904258,0.0,0.0,0.0,0.00335136793948 +1470073181781486934,0.0,-0.013520759282,0.0,0.0,0.0,0.00361682303904 +1470073181855167862,0.0,-0.0122754231155,0.0,0.0,0.0,0.00356932074689 +1470073181932986634,0.0,-0.0118280785496,0.0,0.0,0.0,0.00443645482311 +1470073182015326667,0.0,-0.0107183674963,0.0,0.0,0.0,0.00454857432186 +1470073182089593247,0.0,-0.0111003973734,0.0,0.0,0.0,0.00391335606986 +1470073182163131651,0.0,-0.0108098614095,0.0,0.0,0.0,0.0 +1470073182239347929,0.0,-0.0107372885782,0.0,0.0,0.0,0.0 +1470073182309835750,0.0,-0.00887923031374,0.0,0.0,0.0,0.0 +1470073182382452969,0.0,-0.00936333898702,0.0,0.0,0.0,0.0 +1470073182457486171,0.0,-0.00962874927569,0.0,0.0,0.0,0.0 +1470073182532925883,0.0,-0.00911980394086,0.0,0.0,0.0,0.0 +1470073182606963387,0.0,-0.00806475525875,0.0,0.0,0.0,0.00301300623394 +1470073182680040281,0.0,-0.00856292997143,0.0,0.0,0.0,0.00280070325083 +1470073182750938416,0.0,-0.00813285882302,0.0,0.0,0.0,0.002817241893 +1470073182828767225,0.0,-0.00782981820612,0.0,0.0,0.0,0.0 +1470073182904364722,0.0,-0.00649898133417,0.0,0.0,0.0,0.00346498016199 +1470073182977319365,0.0,-0.00690200873795,0.0,0.0,0.0,0.0 +1470073183050285624,0.0,-0.0067109479014,0.0,0.0,0.0,0.00440338187015 +1470073183121833314,0.0,-0.00655243383169,0.0,0.0,0.0,0.00402865450994 +1470073183194972348,0.0,-0.00639399315263,0.0,0.0,0.0,0.00365400975747 +1470073183269209170,0.0,-0.00514743434359,0.0,0.0,0.0,0.0047359196875 +1470073183341742911,0.0,-0.00569693111784,0.0,0.0,0.0,0.00366832423038 +1470073183414567706,0.0,-0.00545518496049,0.0,0.0,0.0,0.0034935478905 +1470073183488963959,0.0,-0.00520923713371,0.0,0.0,0.0,0.0032210564347 +1470073183565706167,0.0,-0.00502417564267,0.0,0.0,0.0,0.00338549851034 +1470073183642330932,0.0,-0.00472197551534,0.0,0.0,0.0,0.0 +1470073183720653840,0.0,-0.00479288564416,0.0,0.0,0.0,0.00442799697025 +1470073183799561058,0.0,-0.00480162851051,0.0,0.0,0.0,0.00427241549344 +1470073183878220868,0.0,-0.00478714425909,0.0,0.0,0.0,0.00322896969144 +1470073183954119079,0.0,-0.00442415782918,0.0,0.0,0.0,0.00595235948316 +1470073184027084284,0.0,-0.00442114224027,0.0,0.0,0.0,0.00289686040472 +1470073184106096736,0.0,-0.00446702065626,0.0,0.0,0.0,0.00456229946326 +1470073184180261257,0.0,-0.00402340686858,0.0,0.0,0.0,0.00352948845947 +1470073184252123819,0.0,-0.00437061901691,0.0,0.0,0.0,0.00513215485661 +1470073184329202958,0.0,-0.00408885042908,0.0,0.0,0.0,0.00281126891117 +1470073184414849793,0.0,-0.00396816716739,0.0,0.0,0.0,0.00448675455335 +1470073184491368384,0.0,-0.00378303812035,0.0,0.0,0.0,0.0 +1470073184563577294,0.0,-0.00384236571041,0.0,0.0,0.0,0.00497355329035 +1470073184633720220,0.0,-0.00380403526429,0.0,0.0,0.0,0.00467785481561 +1470073184707112973,0.0,-0.00368849342698,0.0,0.0,0.0,0.00295517774421 +1470073184780258918,0.0,-0.00363081430752,0.0,0.0,0.0,0.00417300609826 +1470073184855895045,0.0,-0.00362066443313,0.0,0.0,0.0,0.00398827952355 +1470073184935444158,0.0,-0.003280634874,0.0,0.0,0.0,0.00399870292316 +1470073185011543015,0.0,-0.00339663260127,0.0,0.0,0.0,0.00449865118094 +1470073185088284633,0.0,-0.00326922010669,0.0,0.0,0.0,0.00286914674656 +1470073185160208676,0.0,-0.00331379523787,0.0,0.0,0.0,0.00374864832952 +1470073185235341300,0.0,-0.00331357870571,0.0,0.0,0.0,0.00380053262348 +1470073185313254565,0.0,-0.00317225680705,0.0,0.0,0.0,0.0040369618809 +1470073185391486172,0.0,-0.00319903467089,0.0,0.0,0.0,0.0042741930153 +1470073185466595692,0.0,-0.00319713496838,0.0,0.0,0.0,0.00343074784942 +1470073185541352786,0.0,-0.003088385717,0.0,0.0,0.0,0.0 +1470073185619608968,0.0,-0.00317833114075,0.0,0.0,0.0,0.00294185187615 +1470073185692871123,0.0,-0.00318009697405,0.0,0.0,0.0,0.00376843294125 +1470073185769947545,0.0,-0.00312106202475,0.0,0.0,0.0,0.00322960115334 +1470073185846137064,0.0,-0.00302390491016,0.0,0.0,0.0,0.00455509116595 +1470073185932031504,0.0,-0.00298711455436,0.0,0.0,0.0,0.00414402259819 +1470073186003929656,0.0,-0.00304723587275,0.0,0.0,0.0,0.00321399891296 +1470073186075322859,0.0,-0.00300771757963,0.0,0.0,0.0,0.0 +1470073186149778107,0.0,-0.00298110477942,0.0,0.0,0.0,0.0 +1470073186226452953,0.0,-0.00306992059615,0.0,0.0,0.0,0.0 +1470073186302221013,0.0,-0.00298243179183,0.0,0.0,0.0,0.0 +1470073186379007935,0.0,-0.0029547408629,0.0,0.0,0.0,0.0 +1470073186455409950,0.0,-0.0030113903223,0.0,0.0,0.0,0.0 +1470073186531423275,0.0,-0.0029317021708,0.0,0.0,0.0,0.0 +1470073186605925007,0.0,-0.00295255063136,0.0,0.0,0.0,0.00308778997997 +1470073186684118568,0.0,-0.00281024559469,0.0,0.0,0.0,0.00291299656633 +1470073186759350396,0.0,-0.00286782694374,0.0,0.0,0.0,0.0 +1470073186834325694,0.0,-0.0026113231706,0.0,0.0,0.0,0.0 +1470073186908703885,0.0,-0.00243634645065,0.0,0.0,0.0,0.0029231668868 +1470073186988989202,0.0,-0.00241337117392,0.0,0.0,0.0,0.0 +1470073187060591113,0.0,-0.00238716086311,0.0,0.0,0.0,0.0033481695803 +1470073187134576214,0.0,-0.00215999904312,0.0,0.0,0.0,0.0 +1470073187210529174,0.0,-0.00197787350217,0.0,0.0,0.0,0.0034692260823 +1470073187298686162,0.006,0.0,0.0,0.0,0.0,0.0 +1470073187371198061,0.0,0.0,0.0,0.0,0.0,0.00292067246596 +1470073187445140758,0.0,0.0,0.0,0.0,0.0,0.00409902974289 +1470073187524497306,0.0,0.0,0.0,0.0,0.0,0.00282179570922 +1470073187599767412,0.0,0.0,0.0,0.0,0.0,0.00353116023063 +1470073187675755651,0.006,0.0,0.0,0.0,0.0,0.0 +1470073187752937558,0.006,0.0,0.0,0.0,0.0,0.0 +1470073187830365457,0.0,0.0,0.0,0.0,0.0,0.0035394550259 +1470073187901697904,0.0,0.0,0.0,0.0,0.0,0.00421075169068 +1470073187974792647,0.0,0.0,0.0,0.0,0.0,0.00560259660355 +1470073188061155333,0.006,0.0,0.0,0.0,0.0,0.0 +1470073188140496219,0.0,0.0,0.0,0.0,0.0,0.00337102322119 +1470073188212246497,0.0,0.0,0.0,0.0,0.0,0.0029563138449 +1470073188283967330,0.0,0.0,0.0,0.0,0.0,0.00407721655576 +1470073188357023736,0.006,0.0,0.0,0.0,0.0,0.0 +1470073188430853455,0.006,0.0,0.0,0.0,0.0,0.0 +1470073188508021144,0.006,0.0,0.0,0.0,0.0,0.0 +1470073188585296902,0.0,-0.00247517443255,0.0,0.0,0.0,0.0 +1470073188662292355,0.0,-0.00350365422153,0.0,0.0,0.0,0.0 +1470073188738076574,0.0,-0.00290713000303,0.0,0.0,0.0,0.0 +1470073188810448604,0.0,-0.00259035875957,0.0,0.0,0.0,0.0 +1470073188886107731,0.0,-0.00285165309261,0.0,0.0,0.0,0.0 +1470073188964284814,0.0,-0.00322204548087,0.0,0.0,0.0,0.0 +1470073189038712559,0.0,-0.00386339345696,0.0,0.0,0.0,0.00287355352604 +1470073189110175139,0.0,-0.0048399354194,0.0,0.0,0.0,0.0 +1470073189193486137,0.0,-0.00400290573605,0.0,0.0,0.0,0.0 +1470073189267708567,0.0,-0.00387151761315,0.0,0.0,0.0,0.0 +1470073189340474322,0.0,-0.00414422521214,0.0,0.0,0.0,0.00301320576106 +1470073189414860751,0.0,-0.00338778474053,0.0,0.0,0.0,0.0 +1470073189494655382,0.0,-0.00253082663741,0.0,0.0,0.0,0.0 +1470073189568111105,0.0,-0.00250165434186,0.0,0.0,0.0,0.0 +1470073189647003408,0.0,-0.00270783837587,0.0,0.0,0.0,0.0 +1470073189737845341,0.0,-0.00282968711468,0.0,0.0,0.0,0.0 +1470073189812328927,0.0,-0.0024062535018,0.0,0.0,0.0,0.0 +1470073189892497300,0.0,-0.00255267056291,0.0,0.0,0.0,0.0 +1470073189966471497,0.0,-0.00217104905095,0.0,0.0,0.0,0.0 +1470073190048074005,0.0,-0.00193948257064,0.0,0.0,0.0,0.0 +1470073190122848575,0.0,-0.00190405407723,0.0,0.0,0.0,0.0 +1470073190198072296,0.006,0.0,0.0,0.0,0.0,0.0 +1470073190272118346,0.006,0.0,0.0,0.0,0.0,0.0 +1470073190350941534,0.006,0.0,0.0,0.0,0.0,0.0 +1470073190423477864,0.006,0.0,0.0,0.0,0.0,0.0 +1470073190498275937,0.006,0.0,0.0,0.0,0.0,0.0 +1470073190571998877,0.006,0.0,0.0,0.0,0.0,0.0 +1470073190645523360,0.006,0.0,0.0,0.0,0.0,0.0 +1470073190718891125,0.006,0.0,0.0,0.0,0.0,0.0 +1470073190791656770,0.0,0.0,0.0,0.0,0.0,0.00321036989671 +1470073190862319931,0.006,0.0,0.0,0.0,0.0,0.0 +1470073190938316794,0.0,0.0,0.0,0.0,0.0,0.00343948020308 +1470073191012831151,0.0,0.0,0.0,0.0,0.0,0.00283676270358 +1470073191088500313,0.0,0.0,0.0,0.0,0.0,0.00293307023061 +1470073191161749964,0.006,0.0,0.0,0.0,0.0,0.0 +1470073191238374849,0.006,0.0,0.0,0.0,0.0,0.0 +1470073191311638413,0.006,0.0,0.0,0.0,0.0,0.0 +1470073191389695718,0.006,0.0,0.0,0.0,0.0,0.0 +1470073191466809934,0.0,0.0,0.0,0.0,0.0,0.00295867690998 +1470073191544043855,0.0,0.0,0.0,0.0,0.0,0.00290741486765 +1470073191618884595,0.0,0.0,0.0,0.0,0.0,0.00306146393186 +1470073191691401073,0.0,0.00836483118628,0.0,0.0,0.0,0.00341532127802 +1470073191764298220,0.0,-5.94315209958e-05,0.0,0.0,0.0,0.00288215602702 +1470073191841805035,0.0,0.0,0.0,0.0,0.0,0.00715193658659 +1470073191925539478,0.0,0.0,0.0,0.0,0.0,0.00329711637247 +1470073192002990427,0.006,0.0,0.0,0.0,0.0,0.0 +1470073192079623010,0.006,0.0,0.0,0.0,0.0,0.0 +1470073192151510019,0.006,0.0,0.0,0.0,0.0,0.0 +1470073192226756924,0.006,0.0,0.0,0.0,0.0,0.0 +1470073192306265229,0.006,0.0,0.0,0.0,0.0,0.0 +1470073192381367820,0.006,0.0,0.0,0.0,0.0,0.0 +1470073192458523159,0.006,0.0,0.0,0.0,0.0,0.0 +1470073192540335622,0.006,0.0,0.0,0.0,0.0,0.0 +1470073192616877869,0.006,0.0,0.0,0.0,0.0,0.0 +1470073192695907280,0.006,0.0,0.0,0.0,0.0,0.0 +1470073192768934474,0.006,0.0,0.0,0.0,0.0,0.0 +1470073192842529245,0.006,0.0,0.0,0.0,0.0,0.0 +1470073192917147173,0.006,0.0,0.0,0.0,0.0,0.0 +1470073192988418318,0.0,-0.011833535868,0.0,0.0,0.0,0.0 +1470073193068103055,0.0,-0.00370878386785,0.0,0.0,0.0,0.0 +1470073193143137659,0.0,-0.00450139455697,0.0,0.0,0.0,0.0 +1470073193220982466,0.0,-0.00335687790104,0.0,0.0,0.0,0.0 +1470073193298802073,0.0,-0.00327337633583,0.0,0.0,0.0,0.0 +1470073193381462852,0.0,-0.00336388568285,0.0,0.0,0.0,0.0 +1470073193459191130,0.0,-0.00338669886728,0.0,0.0,0.0,-0.00371215377236 +1470073193531644544,0.0,-0.00351850620728,0.0,0.0,0.0,0.0 +1470073193608837339,0.0,-0.00366104002811,0.0,0.0,0.0,0.0 +1470073193685309186,0.0,-0.00411480550615,0.0,0.0,0.0,0.0 +1470073193768692894,0.0,-0.00449586496274,0.0,0.0,0.0,0.0 +1470073193847459980,0.0,-0.00316230033441,0.0,0.0,0.0,0.0 +1470073193921731224,0.0,-0.00222896843727,0.0,0.0,0.0,0.0 +1470073193994893998,0.0,-0.00273018763525,0.0,0.0,0.0,0.0 +1470073194068608164,0.0,-0.00259621637491,0.0,0.0,0.0,0.0 +1470073194143003375,0.0,-0.00231790202145,0.0,0.0,0.0,0.0 +1470073194215943823,0.0,-0.00251827165757,0.0,0.0,0.0,0.0 +1470073194291863206,0.0,-0.00228754995045,0.0,0.0,0.0,0.0 +1470073194366275186,0.0,-0.00206727263885,0.0,0.0,0.0,0.0 +1470073194439938299,0.0,-0.00188966781042,0.0,0.0,0.0,0.0027937408307 +1470073194513644641,0.006,0.0,0.0,0.0,0.0,0.0 +1470073194597083086,0.006,0.0,0.0,0.0,0.0,0.0 +1470073194670710913,0.006,0.0,0.0,0.0,0.0,0.0 +1470073194749219469,0.006,0.0,0.0,0.0,0.0,0.0 +1470073194824643641,0.006,0.0,0.0,0.0,0.0,0.0 +1470073194904345575,0.006,0.0,0.0,0.0,0.0,0.0 +1470073194979368647,0.006,0.0,0.0,0.0,0.0,0.0 +1470073195060243006,0.006,0.0,0.0,0.0,0.0,0.0 +1470073195135041256,0.006,0.0,0.0,0.0,0.0,0.0 +1470073195210103602,0.006,0.0,0.0,0.0,0.0,0.0 +1470073195281700129,0.006,0.0,0.0,0.0,0.0,0.0 +1470073195356566304,0.006,0.0,0.0,0.0,0.0,0.0 +1470073195431298308,0.006,0.0,0.0,0.0,0.0,0.0 +1470073195505905853,0.006,0.0,0.0,0.0,0.0,0.0 +1470073195581671922,0.006,0.0,0.0,0.0,0.0,0.0 +1470073195658336293,0.006,0.0,0.0,0.0,0.0,0.0 +1470073195735053041,0.006,0.0,0.0,0.0,0.0,0.0 +1470073195811724305,0.006,0.0,0.0,0.0,0.0,0.0 +1470073195886900473,0.006,0.0,0.0,0.0,0.0,0.0 +1470073195960915579,0.0,0.0,0.0,0.0,0.0,0.00683111295441 +1470073196035096366,0.0,0.0,0.0,0.0,0.0,0.0086118818462 +1470073196113861626,0.0,0.0,0.0,0.0,0.0,0.00508290216346 +1470073196191142870,0.006,0.0,0.0,0.0,0.0,0.0 +1470073196264833427,0.006,0.0,0.0,0.0,0.0,0.0 +1470073196340823570,0.006,0.0,0.0,0.0,0.0,0.0 +1470073196415275749,0.006,0.0,0.0,0.0,0.0,0.0 +1470073196488537376,0.006,0.0,0.0,0.0,0.0,0.0 +1470073196561065651,0.0,0.0,0.0,0.0,0.0,0.00332949134852 +1470073196633391762,0.006,0.0,0.0,0.0,0.0,0.0 +1470073196707362492,0.006,0.0,0.0,0.0,0.0,0.0 +1470073196778893569,0.006,0.0,0.0,0.0,0.0,0.0 +1470073196851617667,0.006,0.0,0.0,0.0,0.0,0.0 +1470073196929882347,0.006,0.0,0.0,0.0,0.0,0.0 +1470073197006935748,0.006,0.0,0.0,0.0,0.0,0.0 +1470073197085370712,0.006,0.0,0.0,0.0,0.0,0.0 +1470073197161436840,0.0,0.0,0.0,0.0,0.0,0.00359301527021 +1470073197240106792,0.006,0.0,0.0,0.0,0.0,0.0 +1470073197313440453,0.006,0.0,0.0,0.0,0.0,0.0 +1470073197389590825,0.006,0.0,0.0,0.0,0.0,0.0 +1470073197463326440,0.006,0.0,0.0,0.0,0.0,0.0 +1470073197537204737,0.006,0.0,0.0,0.0,0.0,0.0 +1470073197610505393,0.006,0.0,0.0,0.0,0.0,0.0 +1470073197688829140,0.006,0.0,0.0,0.0,0.0,0.0 +1470073197764710966,0.006,0.0,0.0,0.0,0.0,0.0 +1470073197837248694,0.006,0.0,0.0,0.0,0.0,0.0 +1470073197917641239,0.006,0.0,0.0,0.0,0.0,0.0 +1470073197997809531,0.006,0.0,0.0,0.0,0.0,0.0 +1470073198072705166,0.006,0.0,0.0,0.0,0.0,0.0 +1470073198148709891,0.006,0.0,0.0,0.0,0.0,0.0 +1470073198223814414,0.006,0.0,0.0,0.0,0.0,0.0 +1470073198299585407,0.006,0.0,0.0,0.0,0.0,0.0 +1470073198375652956,0.006,0.0,0.0,0.0,0.0,0.0 +1470073198449626511,0.006,0.0,0.0,0.0,0.0,0.0 +1470073198523660823,0.006,0.0,0.0,0.0,0.0,0.0 +1470073198595542769,0.0,0.0,0.0,0.0,0.0,0.00281598701429 +1470073198665632140,0.006,0.0,0.0,0.0,0.0,0.0 +1470073198742282954,0.006,0.0,0.0,0.0,0.0,0.0 +1470073198816730208,0.006,0.0,0.0,0.0,0.0,0.0 +1470073198889131289,0.006,0.0,0.0,0.0,0.0,0.0 +1470073198964921856,0.006,0.0,0.0,0.0,0.0,0.0 +1470073199045042255,0.006,0.0,0.0,0.0,0.0,0.0 +1470073199120271541,0.006,0.0,0.0,0.0,0.0,0.0 +1470073199194507342,0.006,0.0,0.0,0.0,0.0,0.0 +1470073199274118741,0.006,0.0,0.0,0.0,0.0,0.0 +1470073199346712650,0.006,0.0,0.0,0.0,0.0,0.0 +1470073199418000174,0.006,0.0,0.0,0.0,0.0,0.0 +1470073199490799827,0.006,0.0,0.0,0.0,0.0,0.0 +1470073199564628765,0.006,0.0,0.0,0.0,0.0,0.0 +1470073199636976676,0.006,0.0,0.0,0.0,0.0,0.0 +1470073199711192032,0.006,0.0,0.0,0.0,0.0,0.0 +1470073199789313204,0.006,0.0,0.0,0.0,0.0,0.0 +1470073199864044335,0.006,0.0,0.0,0.0,0.0,0.0 +1470073199939809881,0.006,0.0,0.0,0.0,0.0,0.0 +1470073200012303391,0.006,0.0,0.0,0.0,0.0,0.0 +1470073200090831820,0.006,0.0,0.0,0.0,0.0,0.0 +1470073200165395564,0.006,0.0,0.0,0.0,0.0,0.0 +1470073200245469700,0.006,0.0,0.0,0.0,0.0,0.0 +1470073200323431610,0.006,0.0,0.0,0.0,0.0,0.0 +1470073200408165305,0.006,0.0,0.0,0.0,0.0,0.0 +1470073200483119079,0.006,0.0,0.0,0.0,0.0,0.0 +1470073200558269771,0.006,0.0,0.0,0.0,0.0,0.0 +1470073200635137884,0.0,0.0,0.0,0.0,0.0,0.00337705744812 +1470073200704821656,0.006,0.0,0.0,0.0,0.0,0.0 +1470073200776957839,0.006,0.0,0.0,0.0,0.0,0.0 +1470073200850490954,0.006,0.0,0.0,0.0,0.0,0.0 +1470073200924648865,0.006,0.0,0.0,0.0,0.0,0.0 +1470073200999987364,0.006,0.0,0.0,0.0,0.0,0.0 +1470073201075997137,0.006,0.0,0.0,0.0,0.0,0.0 +1470073201149053503,0.006,0.0,0.0,0.0,0.0,0.0 +1470073201222220174,0.006,0.0,0.0,0.0,0.0,0.0 +1470073201297097039,0.006,0.0,0.0,0.0,0.0,0.0 +1470073201371336178,0.006,0.0,0.0,0.0,0.0,0.0 +1470073201445168179,0.006,0.0,0.0,0.0,0.0,0.0 +1470073201521216624,0.006,0.0,0.0,0.0,0.0,0.0 +1470073201594838996,0.006,0.0,0.0,0.0,0.0,0.0 +1470073201664511215,0.006,0.0,0.0,0.0,0.0,0.0 +1470073201737238838,0.0,0.0,0.0,0.0,0.0,0.00296656005769 +1470073201811124922,0.006,0.0,0.0,0.0,0.0,0.0 +1470073201880504298,0.006,0.0,0.0,0.0,0.0,0.0 +1470073201954438787,0.006,0.0,0.0,0.0,0.0,0.0 +1470073202026888269,0.006,0.0,0.0,0.0,0.0,0.0 +1470073202104037987,0.006,0.0,0.0,0.0,0.0,0.0 +1470073202179007843,0.006,0.0,0.0,0.0,0.0,0.0 +1470073202252582212,0.006,0.0,0.0,0.0,0.0,0.0 +1470073202326370129,0.006,0.0,0.0,0.0,0.0,0.0 +1470073202413287088,0.006,0.0,0.0,0.0,0.0,0.0 +1470073202488833033,0.006,0.0,0.0,0.0,0.0,0.0 +1470073202562485309,0.006,0.0,0.0,0.0,0.0,0.0 +1470073202637782387,0.006,0.0,0.0,0.0,0.0,0.0 +1470073202709485809,0.006,0.0,0.0,0.0,0.0,0.0 +1470073202784114776,0.006,0.0,0.0,0.0,0.0,0.0 +1470073202860557462,0.006,0.0,0.0,0.0,0.0,0.0 +1470073202933261641,0.006,0.0,0.0,0.0,0.0,0.0 +1470073203006870555,0.006,0.0,0.0,0.0,0.0,0.0 +1470073203080759307,0.006,0.0,0.0,0.0,0.0,0.0 +1470073203156200307,0.006,0.0,0.0,0.0,0.0,0.0 +1470073203231298905,0.006,0.0,0.0,0.0,0.0,0.0 +1470073203304989597,0.006,0.0,0.0,0.0,0.0,0.0 +1470073203378572039,0.006,0.0,0.0,0.0,0.0,0.0 +1470073203449791613,0.006,0.0,0.0,0.0,0.0,0.0 +1470073203523108981,0.006,0.0,0.0,0.0,0.0,0.0 +1470073203608402471,0.006,0.0,0.0,0.0,0.0,0.0 +1470073203681246811,0.006,0.0,0.0,0.0,0.0,0.0 +1470073203764578248,0.006,0.0,0.0,0.0,0.0,0.0 +1470073203837113978,0.0,0.0,0.0,0.0,0.0,0.00323938328852 +1470073203909590694,0.0,0.0,0.0,0.0,0.0,0.00296153522838 +1470073203982069894,0.006,0.0,0.0,0.0,0.0,0.0 +1470073204058920894,0.006,0.0,0.0,0.0,0.0,0.0 +1470073204134626775,0.006,0.0,0.0,0.0,0.0,0.0 +1470073204205374962,0.006,0.0,0.0,0.0,0.0,0.0 +1470073204279640526,0.006,0.0,0.0,0.0,0.0,0.0 +1470073204355574449,0.006,0.0,0.0,0.0,0.0,0.0 +1470073204431750071,0.006,0.0,0.0,0.0,0.0,0.0 +1470073204506821988,0.006,0.0,0.0,0.0,0.0,0.0 +1470073204581678696,0.006,0.0,0.0,0.0,0.0,0.0 +1470073204657167397,0.006,0.0,0.0,0.0,0.0,0.0 +1470073204735495629,0.0,0.0,0.0,0.0,0.0,0.00391480764785 +1470073204809534418,0.006,0.0,0.0,0.0,0.0,0.0 +1470073204888839632,0.006,0.0,0.0,0.0,0.0,0.0 +1470073204962192854,0.006,0.0,0.0,0.0,0.0,0.0 +1470073205033344910,0.006,0.0,0.0,0.0,0.0,0.0 +1470073205104368135,0.006,0.0,0.0,0.0,0.0,0.0 +1470073205176348423,0.006,0.0,0.0,0.0,0.0,0.0 +1470073205251260921,0.006,0.0,0.0,0.0,0.0,0.0 +1470073205323842394,0.006,0.0,0.0,0.0,0.0,0.0 +1470073205395499829,0.006,0.0,0.0,0.0,0.0,0.0 +1470073205475055921,0.006,0.0,0.0,0.0,0.0,0.0 +1470073205549504890,0.006,0.0,0.0,0.0,0.0,0.0 +1470073205623598492,0.006,0.0,0.0,0.0,0.0,0.0 +1470073205694270944,0.006,0.0,0.0,0.0,0.0,0.0 +1470073205765218019,0.006,0.0,0.0,0.0,0.0,0.0 +1470073205836626498,0.006,0.0,0.0,0.0,0.0,0.0 +1470073205911423513,0.006,0.0,0.0,0.0,0.0,0.0 +1470073205984302595,0.006,0.0,0.0,0.0,0.0,0.0 diff --git a/MobileRobot/ej6.cpp b/MobileRobot/ej6.cpp index faada45b57b98351045eea19caa71505d9fae3c4..b2a8987ad235728b216b0003d3b605458431c394 100644 --- a/MobileRobot/ej6.cpp +++ b/MobileRobot/ej6.cpp @@ -78,7 +78,7 @@ int main (int argc, char * const argv[]) aruco::MarkerDetector MDetector; // handler for marker detector vector<aruco::Marker> Markers; // storage for detected markers - float markerSize = (float)0.076; // size of ARUCO marker (meters) + float markerSize = (float)0.08; // size of ARUCO marker (meters) aruco::BoardConfiguration boardInfo; // ARUCO board info aruco::CameraParameters cameraParameters; //ARUCO class for camera parameters diff --git a/MobileRobot/ej6.cpp~ b/MobileRobot/ej6.cpp~ new file mode 100644 index 0000000000000000000000000000000000000000..faada45b57b98351045eea19caa71505d9fae3c4 --- /dev/null +++ b/MobileRobot/ej6.cpp~ @@ -0,0 +1,172 @@ +//************************************************************************* +// Example program using OpenCV library +// +// Luis M. Jim�nez +// +// Course: Computer Vision (1782) +// Dpo. of Systems Engineering and Automation +// Automation, Robotics and Computer Vision Lab (ARVC) +// http://arvc.umh.es +// University Miguel Hern�ndez +// +// Description: +// - Loads camera calibration data from file (YAML type) +// - Capture images from a camera (decrease resolution) +// - Detects markers using ARUCO library +// - Calculates POSE from camera calibration file +// - Draws 3D cube on each maker over captured image +// +//************************************************************************* + +#pragma warning( disable : 4290 ) // avoids warning 4290 + +#include <cassert> // debugging +#include <iostream> // c++ standar input/output +#include <sstream> // string to number conversion +#include <string> // handling strings +#include <vector> // handling vectors +#include <math.h> // math functions +#include <stdio.h> // standar C input/ouput + +#include <opencv2/opencv.hpp> // OpenCV library headers +#include <opencv2/nonfree/nonfree.hpp> // Nonfree opencv library headers + +// ARUCO Library (Markers) +#include <aruco/aruco.h> + + +//************************************************************************* +// C++ namespaces C++ (avoid using prefix for starndar and openCV classes) +//************************************************************************* +using namespace std; +using namespace cv; + + + +//************************************************************************* +// Function prototypes +//************************************************************************* + + +//************************************************************************* +// Constants +//************************************************************************* +const char * WINDOW_CAMERA1 = "(W1) Camera 1 (Marker Detector)"; // windows id + +//************************************************************************* +// Variables Globales +//************************************************************************* +int CAMERA_ID = 0; // default camera + + +//************************************************************************* +// Funciones +//************************************************************************* + +int main (int argc, char * const argv[]) +{ + int key; + VideoCapture camera; // Cameras + Mat capture; // Images + Mat gray_image; + + locale::global(locale("spanish")); // Character set (so you can use accents) + + Size camSize(640, 480); // capture resolution + + bool markerWasFound = false; + aruco::MarkerDetector MDetector; // handler for marker detector + vector<aruco::Marker> Markers; // storage for detected markers + + float markerSize = (float)0.076; // size of ARUCO marker (meters) + aruco::BoardConfiguration boardInfo; // ARUCO board info + aruco::CameraParameters cameraParameters; //ARUCO class for camera parameters + + Mat cameraMatrix, distCoeffs; // Intrinsic Camera Calibration parameters + + // Load ARUCO board info + boardInfo.readFromFile("ARUCO_board.yaml"); + + // Load camera calibration data + FileStorage fs("camera.yaml", FileStorage::READ); + if (fs.isOpened()) + { + fs["camera_matrix"] >> cameraMatrix; + fs["distortion_coefficients"] >> distCoeffs; + cout << "Camera Calibration Matrix A: " << endl << cameraMatrix << endl; + cout << "Distortion Coefs: " << distCoeffs << endl; + + // configure internal ARUCO cameraParameters object + cameraParameters.setParams(cameraMatrix, distCoeffs, camSize); + } + else + { + cout << "you need a camera calibration file, sorry.\n"; + getchar(); // wait for a keystroke and exits + return -1; + } + + // check command line parameters (camera id) + if(argc>2 && string(argv[1])=="-c") + CAMERA_ID = atoi(argv[2]); + + // Configure cameras + camera.open(CAMERA_ID); // open camera + if (!camera.isOpened()) + { + cout << "you need to connect a camera, sorry.\n"; + getchar(); // wait for a keystroke and exits + return -1; + } + //set capture properties (low resolution to speed up detection) + camera.set(CV_CAP_PROP_FRAME_WIDTH, camSize.width); + camera.set(CV_CAP_PROP_FRAME_HEIGHT, camSize.height); + + + // Create the visualization windows + namedWindow (WINDOW_CAMERA1, WINDOW_AUTOSIZE); + + cout << "Capturing images.\n Hit q/Q to exit.\n"; + + // while there are images ... + while (camera.read(capture)) + { + if(capture.empty()) + continue; // capture has failed, continue + + cvtColor( capture, gray_image, CV_BGR2GRAY ); // transforms to gray level + + MDetector.detect(gray_image, Markers); // detects markers on image + markerWasFound = (Markers.size()>0); // checks if some marker was found + + if(markerWasFound) + { + //for each marker calculates POSE and draw 3D cube + for (unsigned int i=0; i<Markers.size(); i++) + { + Markers[i].calculateExtrinsics(markerSize, cameraParameters, false); + cout << "Marker id:" << Markers[i].id << " Rvec: " << Markers[i].Rvec << " Tvec: " << Markers[i].Tvec << endl; + + Markers[i].draw(capture, Scalar(0,0,255), 1); + aruco::CvDrawingUtils::draw3dCube(capture, Markers[i], cameraParameters); + + } + // Draws coordinate axis for first marker + aruco::CvDrawingUtils::draw3dAxis(capture, Markers[0], cameraParameters); + } + + imshow(WINDOW_CAMERA1, capture); // show image in a window + + // wait 10ms for a keystroke to exit (image window must be on focus) + key = waitKey (10); + if (key == 'q' || key == 'Q') + break; + } + + // free windows and camera resources + destroyAllWindows(); + if (camera.isOpened()) camera.release(); + + // programm exits with no errors + return 0; +}