diff --git a/Files_4_thesis/evendar03a.pdf b/Files_4_thesis/evendar03a.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..3911b593c12d4de9748af18a0f0fa650346fca2a
Binary files /dev/null and b/Files_4_thesis/evendar03a.pdf differ
diff --git a/MobileRobot/AugReaMarker/CamMark/camtomar/src/VisionControl.cpp b/MobileRobot/AugReaMarker/CamMark/camtomar/src/VisionControl.cpp
index d1c11e56b4acc4ca4da8aab453825a4f637db01c..930bc02a38af23b64015783a342244e36bfd08b9 100644
--- a/MobileRobot/AugReaMarker/CamMark/camtomar/src/VisionControl.cpp
+++ b/MobileRobot/AugReaMarker/CamMark/camtomar/src/VisionControl.cpp
@@ -92,14 +92,14 @@ 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.00941711 /* Y_ref*/ , 0.201 /* X_ref*/ , -0.560363 /* theta_ref*/}; 
+const double PID4Docking::RefPose[4] = {-.0957, 0.0123851 /* Y_ref*/ , 0.200835 /* X_ref*/ , -0.042 /* theta_ref*/}; 
 
 // ----------------  PID gains---------------- //
-double PID4Docking::Kp_y = .51; //.44
-double PID4Docking::Ki_y = 0.0005 ;//.0005
-double PID4Docking::Kd_y = 0.05; //.15
+double PID4Docking::Kp_y = .4; //.56
+double PID4Docking::Ki_y = 0 ;// 0
+double PID4Docking::Kd_y = 0.1; //.15
 
-double PID4Docking::Kp_theta = .08;// .08
+double PID4Docking::Kp_theta = .15;// .08
 double PID4Docking::Ki_theta = 0; //* Ki_y; // .15 * Ki_y
 double PID4Docking::Kd_theta = 0; //* Kd_y; // .0008
 // ----------------  PID gains---------------- //
@@ -122,7 +122,7 @@ double PID4Docking::speed_reducer_theta = 1;
 // ------ offsets X, Y, theta for Docking ---------
 double PID4Docking::x_dock_thresh = .001;
 double PID4Docking::y_dock_thresh = .002; //.0015
-double PID4Docking::theta_dock_thresh = (CV_PI/180) * 2; // 1 deg.
+double PID4Docking::theta_dock_thresh = (CV_PI/180) * .5; // 1 deg.
 
 double PID4Docking::safety_margin_X = .18; // safety margin X axis in docking process : 18 cm
 
@@ -133,6 +133,12 @@ double PID4Docking::theta_thresh_undock = (CV_PI/180) * 3;
 
 double PID4Docking::docking_counter = 1;
 
+// ---- offsets for Roll, Pitch, Yaw ----//
+float PID4Docking::p_off = CV_PI;
+float PID4Docking::r_off = CV_PI/2;
+float PID4Docking::y_off = CV_PI;
+float PID4Docking::roll,PID4Docking::yaw,PID4Docking::pitch;
+double PID4Docking::theta_with_offset;
 PID4Docking::PID4Docking()
 {	
 	keepMoving = true;    
@@ -299,8 +305,6 @@ if (TheVideoCapturer.retrieve(TheInputImage))
 		geometry_msgs::PoseStamped msg;
                 
                 float x_t, y_t, z_t;
-		float roll,yaw,pitch;
-		float rollE,yawE,pitchE;
 			
 		if (TheMarkers.size()>0)
 		{
@@ -310,7 +314,7 @@ if (TheVideoCapturer.retrieve(TheInputImage))
 		{
 		        found = false;
 			keepMoving = false;
-			ROS_INFO_STREAM("Marker is lost, successful docking trials : " << (docking_counter - 1) << "\n");					
+			ROS_INFO_STREAM("Marker is lost, successful docking trials : " << (docking_counter - 1) << "\n");				
 		        //RandomPose(x_new,y_new,theta_new);			
 			//move2docking(-control_signalX, -control_signalY, control_signalYAW);
 		}
@@ -327,61 +331,42 @@ if (TheVideoCapturer.retrieve(TheInputImage))
 			// You need to apply cv::Rodrigues() in order to obatain angles wrt to camera coords
 			Rodrigues(TheMarkers[0].Rvec,R);
 
-                                // ----------- Euler angle -----------------//
-                                float roll1 = -asin(R.at<float>(2,0));
-                                float roll2 = CV_PI - roll1;
+			roll  = atan2(R.at<float>(1,0), R.at<float>(0,0));	
+			pitch = atan2(-R.at<float>(2,0),pow((pow(R.at<float>(2,1),2)+pow(R.at<float>(2,2),2)),.5));
+			yaw   = atan2(R.at<float>(2,1), R.at<float>(2,2)); // useful
 
-                                float pitch1 = atan2(R.at<float>(2,1) / cos(roll1), R.at<float>(2,2) / cos(roll1));
-                                float pitch2 = atan2(R.at<float>(2,1) / cos(roll2), R.at<float>(2,2) / cos(roll2));
-
-                                float yaw2 = atan2(R.at<float>(1,0) / cos(roll2), R.at<float>(0,0) / cos(roll2));
-                                float yaw1 = atan2(R.at<float>(1,0) / cos(roll1), R.at<float>(0,0) / cos(roll1));
+/* // yaw has an offset of 180 deg.
+if (yaw  > 0)
+{
+	ROS_INFO_STREAM("yaw = " << (yaw - y_off)*(180.0/CV_PI) << " deg. \n");
+} else
+{
+	ROS_INFO_STREAM("yaw = " << (yaw + y_off)*(180.0/CV_PI) << " deg. \n");
+}*/
 
-                                //choose one solution to return
-                                //for example the "shortest" rotation
-                                if ((abs(roll1) + abs(pitch1) + abs(yaw1)) <= (abs(roll2) + abs(pitch2) + abs(yaw2)))
-                                {
-                                        rollE = roll1;
-                                        pitchE= pitch1;
-		                        yawE = yaw1;
-                                } else 
-        
-                                {
-                                        rollE = roll2;
-                                        pitchE = pitch2;
-		                        yawE = yaw2;
-                                }
-                                // ----------- Euler angle -----------------//
-                                
-			pitch   = -atan2(R.at<float>(2,0), R.at<float>(2,1));
-			yaw     = acos(R.at<float>(2,2));
-			roll    = -atan2(R.at<float>(0,2), R.at<float>(1,2));
+                        // Adding Camera frame to Robot Frame ---
+			tf::Quaternion quat_CAM = tf::createQuaternionFromRPY(0, 0, 0);
+			broadcaster.sendTransform(tf::StampedTransform(tf::Transform(quat_CAM,tf::Vector3(.25, 0, .5)),ros::Time::now(),"/base_link","/camera"));
 			
-			// Marker rotation should be initially zero (just for convenience)
-			float p_off = CV_PI;
-			float r_off = CV_PI/2;
-			float y_off = CV_PI/2;
-                        
-                        // Camera Frame ---
-                        transformCAM.setOrigin( tf::Vector3(.25, 0, .5) );
-                        transformCAM.setRotation( tf::Quaternion(0, 0, 0 , 1) );
-                        
-                        CAMbr.sendTransform(tf::StampedTransform(transformCAM,ros::Time::now(),"/base_link","/camera"));
                         
-                        // Publish TF message including the offsets
-			tf::Quaternion quat = tf::createQuaternionFromRPY(roll-r_off, pitch+p_off, yaw-y_off);
-			broadcaster.sendTransform(tf::StampedTransform(tf::Transform(quat,tf::Vector3(x_t, y_t, z_t)),ros::Time::now(),"/camera","/marker"));
-				
-				// Now publish the pose message, remember the offsets
+                        // Adding Marker frame to Camera Frame ---
+			tf::Quaternion quat_M = tf::createQuaternionFromRPY(roll,pitch,yaw);
+			broadcaster.sendTransform(tf::StampedTransform(tf::Transform(quat_M,tf::Vector3(x_t, y_t, z_t)),ros::Time::now(),"/camera","/marker"));
+			
 				msg.header.frame_id = "/camera";
+				
+				// Publish Position
 				msg.pose.position.x = x_t;
 				msg.pose.position.y = y_t;
 				msg.pose.position.z = z_t;
 				
-				geometry_msgs::Quaternion p_quat = tf::createQuaternionMsgFromRollPitchYaw(roll-r_off, pitch+p_off, yaw-y_off);
-				msg.pose.orientation = p_quat;
-				
+				// Publish Orientation
+				msg.pose.orientation.x = roll;
+				msg.pose.orientation.y = pitch;
+				msg.pose.orientation.z = yaw;
+
 				MarPose_pub.publish(msg);
+
 			} 
 			
 			/*// Print other rectangles that contains no valid markers
@@ -435,18 +420,11 @@ void PID4Docking::camCB(const geometry_msgs::PoseStamped::ConstPtr& CamFB) // su
 camPose[0] = CamFB->pose.position.x; // not important!!!
 camPose[1] = CamFB->pose.position.y; // y pose
 camPose[2] = CamFB->pose.position.z; // x_rob
-camPose[3] = CamFB->pose.orientation.x; //  theta orientation
-        
-        // in Marker coordinate sys. 
-        
-        // z => X robot (thrust)
-        // y => -Y robot (left - right)
-        // x =>  Z robot (NOT applicabale in our case!)
-        
-        // correspondingly ... 
-        // roll in Marker coordinate => yaw in Robot coordinate
+
+camPose[3] = CamFB->pose.orientation.x; //  Robot roll
+camPose[4] = CamFB->pose.orientation.y; //  Robot pitch
+camPose[5] = CamFB->pose.orientation.z; //  Robot yaw
         
-	
 	/*ROS_INFO_STREAM("--------- PID gains in trial no. " << docking_counter << " : ---------\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");*/
@@ -454,18 +432,24 @@ camPose[3] = CamFB->pose.orientation.x; //  theta orientation
 	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");
-        
-        ROS_INFO_STREAM(" theta_mar = " << camPose[3] << " rad. =~ " << (180/CV_PI) * camPose[3] << " deg. \n");
-        ROS_INFO_STREAM(" theta_ref = " << RefPose[3] << " rad. =~ " << (180/CV_PI) * RefPose[3] << " deg. \n");
+	if (camPose[5]  > 0)
+	{
+		theta_with_offset = camPose[5] - y_off;
+		ROS_INFO_STREAM("theta = " << theta_with_offset << "rad. =~ " << theta_with_offset*(180.0/CV_PI) << " deg. \n");
+	} else
+	{
+		theta_with_offset = camPose[5] + y_off;
+		ROS_INFO_STREAM("theta = " << theta_with_offset << "rad. =~ " << theta_with_offset*(180.0/CV_PI) << " deg. \n");
+	}
+	ROS_INFO_STREAM(" theta_ref = " << RefPose[3] << " rad. =~ " << (180/CV_PI) * RefPose[3] << " deg. \n");
+
 	ROS_INFO_STREAM("------------------------------------------------------  \n ");
 
 	if(Go2RandomPose == false)
 	{
 		ROS_INFO_STREAM("---------- MOVING TOWARDS DOCKING PLATFORM ---------  \n ");
 		if (
-            		(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
+            		(abs(RefPose[2] - camPose[2]) <= x_dock_thresh)
             	)
         	{                        			
 			dock_finished = ros::Time::now().toSec();
@@ -482,15 +466,15 @@ camPose[3] = CamFB->pose.orientation.x; //  theta orientation
 		{
 			if(
 				(abs(RefPose[1] - camPose[1]) > y_dock_thresh) || 
-				(abs(abs(RefPose[3]) - abs(camPose[3])) > theta_dock_thresh)
+				(abs(RefPose[3] - theta_with_offset) > theta_dock_thresh)
 			)
 			{	
 				ROS_INFO_STREAM(" delta_X < " << safety_margin_X << " m., Fixing Y or theta. \n ");     
 				speed_reducer_Y = speed_reducer_theta = 1;		
-				Controller(RefPose[2], RefPose[2], RefPose[1], camPose[1], RefPose[3], camPose[3],.1);
+				Controller(RefPose[2], RefPose[2], RefPose[1], camPose[1], RefPose[3], theta_with_offset,.1);
 			} else if(
 				(abs(RefPose[1] - camPose[1]) <= y_dock_thresh) && 
-				(abs(abs(RefPose[3]) - abs(camPose[3])) <= theta_dock_thresh)				
+				(abs(RefPose[3] - theta_with_offset) <= theta_dock_thresh)				
 				)
 			{
 				ROS_INFO("y & theta fixed successfully, MOVING STRAIGHT AHEAD ... \n");
@@ -504,7 +488,7 @@ camPose[3] = CamFB->pose.orientation.x; //  theta orientation
 		}else
         	{
 			speed_reducer_X = 1;                	
-			Controller(RefPose[2], camPose[2], RefPose[1], camPose[1], RefPose[3], camPose[3],.1);
+			Controller(RefPose[2], camPose[2], RefPose[1], camPose[1], RefPose[3], theta_with_offset,.1);
 		}
 	} else
 	{
@@ -569,30 +553,7 @@ void PID4Docking::Controller(double RefX, double MarPoseX, double RefY, double M
 ROS_INFO_STREAM("pY = " << p_termY << ", iY = " << i_termY << " dY = " << d_termY<< " \n");	      
         	
         	control_signalY = p_termY + i_termY + d_termY;
-        	
-		
 		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 if (MarPoseY < 0)
-		{
-			control_signalY = speed_reducer_Y * control_signalY;
-			ROS_INFO("marker pose > 0 => robot is going to the LEFT \n");
-		} else if (MarPoseY < 0)
-		{
-			control_signalY = speed_reducer_Y * control_signalY;
-			ROS_INFO("marker pose > 0 => robot is going to the LEFT \n");
-		} else if (MarPoseY < 0)
-		{
-			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)
@@ -601,10 +562,11 @@ ROS_INFO_STREAM("pY = " << p_termY << ", iY = " << i_termY << " dY = " << d_term
 	}
         
 	// -------------------YAW--------------------------//
-       if(abs(abs(RefYAW) - abs(MarPoseYAW)) > theta_dock_thresh)
+       if(abs(RefYAW - MarPoseYAW) > theta_dock_thresh)
 	{	
+		//ROS_INFO_STREAM("REF = "<< RefYAW<< ", theta = "<< MarPoseYAW<< ".\n");
 		// e(t) = setpoint - actual value;
-		curr_errorYAW = abs(RefYAW) - abs(MarPoseYAW);
+		curr_errorYAW = RefYAW - MarPoseYAW;
         	// Integrated error
         	int_errorYAW +=  curr_errorYAW * dt;
         
@@ -617,46 +579,16 @@ ROS_INFO_STREAM("pY = " << p_termY << ", iY = " << i_termY << " dY = " << d_term
        		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;
         	
-		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;
-	
-		} 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;
-	
-		} else if (MarPoseYAW < 0 && abs(RefYAW) >= abs(MarPoseYAW))
-		{
-			/*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 ? (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");
-			keepMoving = false;
-		}
 		
         	// save the current error as the previous one
         	// for the next iteration.
-        	prev_errorYAW = curr_errorYAW;      
-        } else
+        	prev_errorYAW = curr_errorYAW;
+    
+        } else if (abs(RefYAW - MarPoseYAW) <= theta_dock_thresh)
 	{
 		control_signalYAW = 0;	
 	}
diff --git a/MobileRobot/AugReaMarker/CamMark/camtomar/src/VisionControl.cpp~ b/MobileRobot/AugReaMarker/CamMark/camtomar/src/VisionControl.cpp~
index a3080c99bdfd144b15eaf2ed432f973c32f6f07a..930bc02a38af23b64015783a342244e36bfd08b9 100644
--- a/MobileRobot/AugReaMarker/CamMark/camtomar/src/VisionControl.cpp~
+++ b/MobileRobot/AugReaMarker/CamMark/camtomar/src/VisionControl.cpp~
@@ -92,14 +92,14 @@ 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.00903123 /* Y_ref*/ , 0.2 /* X_ref*/ , -0.56 /* theta_ref*/}; 
+const double PID4Docking::RefPose[4] = {-.0957, 0.0123851 /* Y_ref*/ , 0.200835 /* X_ref*/ , -0.042 /* theta_ref*/}; 
 
 // ----------------  PID gains---------------- //
-double PID4Docking::Kp_y = .86; //.44
-double PID4Docking::Ki_y = 0 ;//.0005
-double PID4Docking::Kd_y = 0.002; //.15
+double PID4Docking::Kp_y = .4; //.56
+double PID4Docking::Ki_y = 0 ;// 0
+double PID4Docking::Kd_y = 0.1; //.15
 
-double PID4Docking::Kp_theta = .08;// .08
+double PID4Docking::Kp_theta = .15;// .08
 double PID4Docking::Ki_theta = 0; //* Ki_y; // .15 * Ki_y
 double PID4Docking::Kd_theta = 0; //* Kd_y; // .0008
 // ----------------  PID gains---------------- //
@@ -122,7 +122,7 @@ double PID4Docking::speed_reducer_theta = 1;
 // ------ offsets X, Y, theta for Docking ---------
 double PID4Docking::x_dock_thresh = .001;
 double PID4Docking::y_dock_thresh = .002; //.0015
-double PID4Docking::theta_dock_thresh = (CV_PI/180) * 2; // 1 deg.
+double PID4Docking::theta_dock_thresh = (CV_PI/180) * .5; // 1 deg.
 
 double PID4Docking::safety_margin_X = .18; // safety margin X axis in docking process : 18 cm
 
@@ -133,6 +133,12 @@ double PID4Docking::theta_thresh_undock = (CV_PI/180) * 3;
 
 double PID4Docking::docking_counter = 1;
 
+// ---- offsets for Roll, Pitch, Yaw ----//
+float PID4Docking::p_off = CV_PI;
+float PID4Docking::r_off = CV_PI/2;
+float PID4Docking::y_off = CV_PI;
+float PID4Docking::roll,PID4Docking::yaw,PID4Docking::pitch;
+double PID4Docking::theta_with_offset;
 PID4Docking::PID4Docking()
 {	
 	keepMoving = true;    
@@ -299,8 +305,6 @@ if (TheVideoCapturer.retrieve(TheInputImage))
 		geometry_msgs::PoseStamped msg;
                 
                 float x_t, y_t, z_t;
-		float roll,yaw,pitch;
-		float rollE,yawE,pitchE;
 			
 		if (TheMarkers.size()>0)
 		{
@@ -310,7 +314,7 @@ if (TheVideoCapturer.retrieve(TheInputImage))
 		{
 		        found = false;
 			keepMoving = false;
-			ROS_INFO_STREAM("Marker is lost, successful docking trials : " << (docking_counter - 1) << "\n");					
+			ROS_INFO_STREAM("Marker is lost, successful docking trials : " << (docking_counter - 1) << "\n");				
 		        //RandomPose(x_new,y_new,theta_new);			
 			//move2docking(-control_signalX, -control_signalY, control_signalYAW);
 		}
@@ -327,61 +331,42 @@ if (TheVideoCapturer.retrieve(TheInputImage))
 			// You need to apply cv::Rodrigues() in order to obatain angles wrt to camera coords
 			Rodrigues(TheMarkers[0].Rvec,R);
 
-                                // ----------- Euler angle -----------------//
-                                float roll1 = -asin(R.at<float>(2,0));
-                                float roll2 = CV_PI - roll1;
+			roll  = atan2(R.at<float>(1,0), R.at<float>(0,0));	
+			pitch = atan2(-R.at<float>(2,0),pow((pow(R.at<float>(2,1),2)+pow(R.at<float>(2,2),2)),.5));
+			yaw   = atan2(R.at<float>(2,1), R.at<float>(2,2)); // useful
 
-                                float pitch1 = atan2(R.at<float>(2,1) / cos(roll1), R.at<float>(2,2) / cos(roll1));
-                                float pitch2 = atan2(R.at<float>(2,1) / cos(roll2), R.at<float>(2,2) / cos(roll2));
-
-                                float yaw2 = atan2(R.at<float>(1,0) / cos(roll2), R.at<float>(0,0) / cos(roll2));
-                                float yaw1 = atan2(R.at<float>(1,0) / cos(roll1), R.at<float>(0,0) / cos(roll1));
+/* // yaw has an offset of 180 deg.
+if (yaw  > 0)
+{
+	ROS_INFO_STREAM("yaw = " << (yaw - y_off)*(180.0/CV_PI) << " deg. \n");
+} else
+{
+	ROS_INFO_STREAM("yaw = " << (yaw + y_off)*(180.0/CV_PI) << " deg. \n");
+}*/
 
-                                //choose one solution to return
-                                //for example the "shortest" rotation
-                                if ((abs(roll1) + abs(pitch1) + abs(yaw1)) <= (abs(roll2) + abs(pitch2) + abs(yaw2)))
-                                {
-                                        rollE = roll1;
-                                        pitchE= pitch1;
-		                        yawE = yaw1;
-                                } else 
-        
-                                {
-                                        rollE = roll2;
-                                        pitchE = pitch2;
-		                        yawE = yaw2;
-                                }
-                                // ----------- Euler angle -----------------//
-                                
-			pitch   = -atan2(R.at<float>(2,0), R.at<float>(2,1));
-			yaw     = acos(R.at<float>(2,2));
-			roll    = -atan2(R.at<float>(0,2), R.at<float>(1,2));
+                        // Adding Camera frame to Robot Frame ---
+			tf::Quaternion quat_CAM = tf::createQuaternionFromRPY(0, 0, 0);
+			broadcaster.sendTransform(tf::StampedTransform(tf::Transform(quat_CAM,tf::Vector3(.25, 0, .5)),ros::Time::now(),"/base_link","/camera"));
 			
-			// Marker rotation should be initially zero (just for convenience)
-			float p_off = CV_PI;
-			float r_off = CV_PI/2;
-			float y_off = CV_PI/2;
-                        
-                        // Camera Frame ---
-                        transformCAM.setOrigin( tf::Vector3(.25, 0, .5) );
-                        transformCAM.setRotation( tf::Quaternion(0, 0, 0 , 1) );
-                        
-                        CAMbr.sendTransform(tf::StampedTransform(transformCAM,ros::Time::now(),"/base_link","/camera"));
                         
-                        // Publish TF message including the offsets
-			tf::Quaternion quat = tf::createQuaternionFromRPY(roll-r_off, pitch+p_off, yaw-y_off);
-			broadcaster.sendTransform(tf::StampedTransform(tf::Transform(quat,tf::Vector3(x_t, y_t, z_t)),ros::Time::now(),"/camera","/marker"));
-				
-				// Now publish the pose message, remember the offsets
+                        // Adding Marker frame to Camera Frame ---
+			tf::Quaternion quat_M = tf::createQuaternionFromRPY(roll,pitch,yaw);
+			broadcaster.sendTransform(tf::StampedTransform(tf::Transform(quat_M,tf::Vector3(x_t, y_t, z_t)),ros::Time::now(),"/camera","/marker"));
+			
 				msg.header.frame_id = "/camera";
+				
+				// Publish Position
 				msg.pose.position.x = x_t;
 				msg.pose.position.y = y_t;
 				msg.pose.position.z = z_t;
 				
-				geometry_msgs::Quaternion p_quat = tf::createQuaternionMsgFromRollPitchYaw(roll-r_off, pitch+p_off, yaw-y_off);
-				msg.pose.orientation = p_quat;
-				
+				// Publish Orientation
+				msg.pose.orientation.x = roll;
+				msg.pose.orientation.y = pitch;
+				msg.pose.orientation.z = yaw;
+
 				MarPose_pub.publish(msg);
+
 			} 
 			
 			/*// Print other rectangles that contains no valid markers
@@ -435,18 +420,11 @@ void PID4Docking::camCB(const geometry_msgs::PoseStamped::ConstPtr& CamFB) // su
 camPose[0] = CamFB->pose.position.x; // not important!!!
 camPose[1] = CamFB->pose.position.y; // y pose
 camPose[2] = CamFB->pose.position.z; // x_rob
-camPose[3] = CamFB->pose.orientation.x; //  theta orientation
-        
-        // in Marker coordinate sys. 
-        
-        // z => X robot (thrust)
-        // y => -Y robot (left - right)
-        // x =>  Z robot (NOT applicabale in our case!)
-        
-        // correspondingly ... 
-        // roll in Marker coordinate => yaw in Robot coordinate
+
+camPose[3] = CamFB->pose.orientation.x; //  Robot roll
+camPose[4] = CamFB->pose.orientation.y; //  Robot pitch
+camPose[5] = CamFB->pose.orientation.z; //  Robot yaw
         
-	
 	/*ROS_INFO_STREAM("--------- PID gains in trial no. " << docking_counter << " : ---------\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");*/
@@ -454,18 +432,24 @@ camPose[3] = CamFB->pose.orientation.x; //  theta orientation
 	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");
-        
-        ROS_INFO_STREAM(" theta_mar = " << camPose[3] << " rad. =~ " << (180/CV_PI) * camPose[3] << " deg. \n");
-        ROS_INFO_STREAM(" theta_ref = " << RefPose[3] << " rad. =~ " << (180/CV_PI) * RefPose[3] << " deg. \n");
+	if (camPose[5]  > 0)
+	{
+		theta_with_offset = camPose[5] - y_off;
+		ROS_INFO_STREAM("theta = " << theta_with_offset << "rad. =~ " << theta_with_offset*(180.0/CV_PI) << " deg. \n");
+	} else
+	{
+		theta_with_offset = camPose[5] + y_off;
+		ROS_INFO_STREAM("theta = " << theta_with_offset << "rad. =~ " << theta_with_offset*(180.0/CV_PI) << " deg. \n");
+	}
+	ROS_INFO_STREAM(" theta_ref = " << RefPose[3] << " rad. =~ " << (180/CV_PI) * RefPose[3] << " deg. \n");
+
 	ROS_INFO_STREAM("------------------------------------------------------  \n ");
 
 	if(Go2RandomPose == false)
 	{
 		ROS_INFO_STREAM("---------- MOVING TOWARDS DOCKING PLATFORM ---------  \n ");
 		if (
-            		(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
+            		(abs(RefPose[2] - camPose[2]) <= x_dock_thresh)
             	)
         	{                        			
 			dock_finished = ros::Time::now().toSec();
@@ -482,15 +466,15 @@ camPose[3] = CamFB->pose.orientation.x; //  theta orientation
 		{
 			if(
 				(abs(RefPose[1] - camPose[1]) > y_dock_thresh) || 
-				(abs(abs(RefPose[3]) - abs(camPose[3])) > theta_dock_thresh)
+				(abs(RefPose[3] - theta_with_offset) > theta_dock_thresh)
 			)
 			{	
 				ROS_INFO_STREAM(" delta_X < " << safety_margin_X << " m., Fixing Y or theta. \n ");     
 				speed_reducer_Y = speed_reducer_theta = 1;		
-				Controller(RefPose[2], RefPose[2], RefPose[1], camPose[1], RefPose[3], camPose[3],.1);
+				Controller(RefPose[2], RefPose[2], RefPose[1], camPose[1], RefPose[3], theta_with_offset,.1);
 			} else if(
 				(abs(RefPose[1] - camPose[1]) <= y_dock_thresh) && 
-				(abs(abs(RefPose[3]) - abs(camPose[3])) <= theta_dock_thresh)				
+				(abs(RefPose[3] - theta_with_offset) <= theta_dock_thresh)				
 				)
 			{
 				ROS_INFO("y & theta fixed successfully, MOVING STRAIGHT AHEAD ... \n");
@@ -504,7 +488,7 @@ camPose[3] = CamFB->pose.orientation.x; //  theta orientation
 		}else
         	{
 			speed_reducer_X = 1;                	
-			Controller(RefPose[2], camPose[2], RefPose[1], camPose[1], RefPose[3], camPose[3],.1);
+			Controller(RefPose[2], camPose[2], RefPose[1], camPose[1], RefPose[3], theta_with_offset,.1);
 		}
 	} else
 	{
@@ -569,30 +553,7 @@ void PID4Docking::Controller(double RefX, double MarPoseX, double RefY, double M
 ROS_INFO_STREAM("pY = " << p_termY << ", iY = " << i_termY << " dY = " << d_termY<< " \n");	      
         	
         	control_signalY = p_termY + i_termY + d_termY;
-        	
-		
 		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 if (MarPoseY < 0)
-		{
-			control_signalY = speed_reducer_Y * control_signalY;
-			ROS_INFO("marker pose > 0 => robot is going to the LEFT \n");
-		} else if (MarPoseY < 0)
-		{
-			control_signalY = speed_reducer_Y * control_signalY;
-			ROS_INFO("marker pose > 0 => robot is going to the LEFT \n");
-		} else if (MarPoseY < 0)
-		{
-			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)
@@ -601,10 +562,11 @@ ROS_INFO_STREAM("pY = " << p_termY << ", iY = " << i_termY << " dY = " << d_term
 	}
         
 	// -------------------YAW--------------------------//
-       if(abs(abs(RefYAW) - abs(MarPoseYAW)) > theta_dock_thresh)
+       if(abs(RefYAW - MarPoseYAW) > theta_dock_thresh)
 	{	
+		//ROS_INFO_STREAM("REF = "<< RefYAW<< ", theta = "<< MarPoseYAW<< ".\n");
 		// e(t) = setpoint - actual value;
-		curr_errorYAW = abs(RefYAW) - abs(MarPoseYAW);
+		curr_errorYAW = RefYAW - MarPoseYAW;
         	// Integrated error
         	int_errorYAW +=  curr_errorYAW * dt;
         
@@ -617,46 +579,16 @@ ROS_INFO_STREAM("pY = " << p_termY << ", iY = " << i_termY << " dY = " << d_term
        		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;
         	
-		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;
-	
-		} 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;
-	
-		} else if (MarPoseYAW < 0 && abs(RefYAW) >= abs(MarPoseYAW))
-		{
-			/*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 ? (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");
-			keepMoving = false;
-		}
 		
         	// save the current error as the previous one
         	// for the next iteration.
-        	prev_errorYAW = curr_errorYAW;      
-        } else
+        	prev_errorYAW = curr_errorYAW;
+    
+        } else if (abs(RefYAW - MarPoseYAW) <= theta_dock_thresh)
 	{
 		control_signalYAW = 0;	
 	}
diff --git a/MobileRobot/docking_data/Pose3.txt b/MobileRobot/docking_data/Pose3.txt
index 0c7a8023d0b4e192f40a335802b684714176b7b1..ff9b963bf07cb0163c0676f12dcb0be9fa4067c7 100644
--- a/MobileRobot/docking_data/Pose3.txt
+++ b/MobileRobot/docking_data/Pose3.txt
@@ -1,481 +1,235 @@
 %time,field.position.x,field.position.y,field.position.z,field.orientation.x,field.orientation.y,field.orientation.z,field.orientation.w
-1470148072485586057,-0.0378360040486,0.374558150768,1.35844314098,-0.175597112654,0.0158307993188,0.789049297885,-0.58848640199
-1470148072611479251,-0.0378360040486,0.374558150768,1.35844314098,-0.175597112654,0.0158307993188,0.789049297885,-0.58848640199
-1470148072688230812,-0.0378360040486,0.374558150768,1.35844314098,-0.175597112654,0.0158307993188,0.789049297885,-0.58848640199
-1470148072771508299,-0.0378360040486,0.374558150768,1.35844314098,-0.175597112654,0.0158307993188,0.789049297885,-0.58848640199
-1470148072853224997,-0.0378360040486,0.374558150768,1.35844314098,-0.175597112654,0.0158307993188,0.789049297885,-0.58848640199
-1470148072928604283,-0.0378360040486,0.374558150768,1.35844314098,-0.175597112654,0.0158307993188,0.789049297885,-0.58848640199
-1470148073007669139,-0.0378360040486,0.374558150768,1.35844314098,-0.175597112654,0.0158307993188,0.789049297885,-0.58848640199
-1470148073080576854,-0.0378360040486,0.374558150768,1.35844314098,-0.175597112654,0.0158307993188,0.789049297885,-0.58848640199
-1470148073158595103,-0.037276469171,0.372738927603,1.35079610348,-0.267216220931,0.0282015375871,0.787033724661,-0.555317999705
-1470148073237164691,-0.0365843661129,0.372201561928,1.34595704079,-0.00248816801344,0.00396070038166,0.374672905423,0.927145261442
-1470148073316189507,-0.0362362153828,0.379605293274,1.36959862709,-0.194434546123,0.0195510482871,0.780640562422,-0.593644065149
-1470148073395512002,-0.0353085882962,0.368188291788,1.35113048553,-0.287069194904,0.0310976704318,0.785667279159,-0.54712991025
-1470148073474148943,-0.0360040515661,0.353751659393,1.32644343376,-0.258990579923,0.0309535009987,0.785223773212,-0.561595393739
-1470148073550403278,-0.0361042879522,0.341275781393,1.30550146103,-0.0560221795246,0.0194157268543,-0.402831019676,-0.913351911663
-1470148073624336924,-0.035078663379,0.334346830845,1.29282987118,-0.281789146513,0.0233814814272,0.783312138093,-0.553597577262
-1470148073699062093,-0.0345481000841,0.317952603102,1.26444530487,-0.132387403628,0.0197392148569,0.801925724529,-0.582236267418
-1470148073774023905,-0.034381929785,0.309249997139,1.26134324074,-0.176392447976,0.0233479867798,0.794316092616,-0.580863599154
-1470148073849138363,-0.0335317254066,0.299729257822,1.24603736401,-0.181351111453,0.0185250338566,0.792859332234,-0.581500366969
-1470148073925121934,-0.032517798245,0.286018043756,1.23651599884,-0.0194135270928,0.00331372900968,-0.411998580548,-0.910971626228
-1470148074000349243,-0.0317612886429,0.275363087654,1.22047460079,-0.254375707839,0.0324612035469,0.797180525656,-0.54657339767
-1470148074074027458,-0.0305349994451,0.267618238926,1.21873033047,-0.20843143912,0.0246931968887,0.785847013339,-0.581713892596
-1470148074149193416,-0.0304611828178,0.263355791569,1.2285567522,-0.202998822943,0.0236303444307,0.779590249999,-0.592006863821
-1470148074223984338,-0.0295251496136,0.248009204865,1.21091794968,-0.230572437583,0.0206994203444,0.779034657277,-0.582677344494
-1470148074300955559,-0.0287223998457,0.236100748181,1.18495202065,-0.220541252242,0.0294469109113,0.790409592232,-0.570742596978
-1470148074374177010,-0.028678715229,0.23127399385,1.19456124306,-0.136822852847,0.0113234295725,0.770257353905,-0.622779973696
-1470148074450464291,-0.0282604210079,0.218245640397,1.15670502186,-0.199642910074,0.0222373526585,0.791664309256,-0.576988587456
-1470148074526143831,-0.0273021906614,0.206513866782,1.14133381844,-0.0914261662421,0.0105959947878,0.787251754828,-0.609724245492
-1470148074602058205,-0.0271100215614,0.200590163469,1.13783860207,-0.251530217536,0.033032761452,0.784699078552,-0.565587077697
-1470148074678274567,-0.0269040893763,0.19505611062,1.13376510143,-0.256779754118,0.0316851802183,0.783894214168,-0.564420116777
-1470148074758665997,-0.0260744746774,0.188013985753,1.11980223656,-0.205776927347,0.0218973349991,0.784997123436,-0.58391427375
-1470148074833905668,-0.0256334580481,0.179591983557,1.11331760883,-0.187885381122,0.0230789776501,0.783204599919,-0.592247413685
-1470148074907679668,-0.0256111156195,0.174650683999,1.11272001266,-0.195333771629,0.0174721284604,0.767079350354,-0.610842625108
-1470148074987674607,-0.0249206423759,0.168642729521,1.09862029552,-0.286732630863,0.0304100627629,0.777638301096,-0.558693385633
-1470148075062106012,-0.0245044603944,0.157087936997,1.06397116184,-0.113919453568,0.0136822564627,0.785558179685,-0.608057152155
-1470148075134565232,-0.024461755529,0.153480514884,1.06284224987,-0.194684340128,0.023393384208,0.782139469469,-0.591446200075
-1470148075213803143,-0.024472894147,0.150240242481,1.06292521954,-0.20548057377,0.0209460926647,0.771378473028,-0.601925449167
-1470148075294999273,-0.0244404561818,0.146583050489,1.06058967113,-0.218441770742,0.0213989757474,0.767540182817,-0.602251894471
-1470148075374159070,-0.0243357066065,0.13802793622,1.03063213825,-0.252749862435,0.0247607130775,0.776105846259,-0.577203715797
-1470148075464910507,-0.0239502973855,0.134013876319,1.02346515656,-0.35511007122,0.0364837302618,0.771576443366,-0.526531638922
-1470148075542347578,-0.0236048512161,0.130055293441,1.01485145092,-0.336386207639,0.036052558901,0.770381259288,-0.540423211608
-1470148075622527539,-0.0237574409693,0.125286817551,0.995230078697,-0.169073202691,0.0208609829693,0.782563322901,-0.598810251392
-1470148075704972439,-0.0237674564123,0.121343530715,0.994728386402,-0.210906568217,0.0198618936606,0.766298251106,-0.606556604955
-1470148075781359121,-0.0237831007689,0.11740090698,0.976817131042,-0.260860615211,0.032732575823,0.776991088323,-0.571983536982
-1470148075858655579,-0.0232324525714,0.112914614379,0.959940671921,-0.290136798159,0.0325611127591,0.780698166706,-0.552513153502
-1470148075935736251,-0.022660728544,0.1100852862,0.952518701553,-0.335171988143,0.0366822138027,0.767809709437,-0.544777389076
-1470148076011569943,-0.0226382017136,0.107632763684,0.949766933918,-0.365884370153,0.0375933192706,0.762172395696,-0.532736904356
-1470148076088329051,-0.0227156262845,0.103853948414,0.928394138813,-0.293734021973,0.0263924794767,0.765640062275,-0.571680904353
-1470148076164421020,-0.0221328642219,0.101069316268,0.919955551624,-0.250790581283,0.0204961837519,0.766288650554,-0.591173151305
-1470148076237570438,-0.0221413783729,0.0975021347404,0.898541927338,-0.246824611809,0.0296143079549,0.779392871581,-0.575106386243
-1470148076326870057,-0.0219268035144,0.0960579067469,0.894617915154,-0.209544534139,0.0192626385124,0.774061473093,-0.597117136618
-1470148076406054847,-0.0212422367185,0.0932771489024,0.882203817368,-0.427520412236,0.0524944522737,0.771510371077,-0.468233250553
-1470148076480899144,-0.021403985098,0.0898977145553,0.866728186607,-0.202313800437,0.0207299886844,0.772629117388,-0.60140139731
-1470148076558186104,-0.0213032700121,0.0885063782334,0.864980518818,-0.251368832639,0.0228965671859,0.765653485407,-0.59166223259
-1470148076633220603,-0.0210952516645,0.0870793610811,0.860086917877,-0.241688993976,0.0164007318561,0.756773867215,-0.607133230919
-1470148076707923999,-0.0207388382405,0.0827814489603,0.836143553257,-0.366656547812,0.0328440030021,0.761550779916,-0.533408527325
-1470148076786046452,-0.0210288576782,0.0805500522256,0.822074770927,-0.0580352127611,0.00479938783008,0.764808045631,-0.641621019991
-1470148076861144968,-0.0207330193371,0.0792260915041,0.816936314106,-0.277935717777,0.0180995825148,0.75345057741,-0.595597489331
-1470148076934161231,-0.0206407047808,0.0766840428114,0.797167003155,-0.292575288568,0.0231884154504,0.763253832802,-0.575591508468
-1470148077010932575,-0.0202781967819,0.076014764607,0.793200969696,-0.277707093557,0.0236289795364,0.759346197681,-0.587974313709
-1470148077090070645,-0.0201483499259,0.0752434283495,0.789619624615,-0.178220631205,0.0104526704993,0.751358458257,-0.635286246898
-1470148077162192339,-0.0197479724884,0.0727583020926,0.768556654453,-0.316408778524,0.0257462825661,0.761187314572,-0.565523196644
-1470148077241973451,-0.019412279129,0.0726335123181,0.764297425747,-0.356945629198,0.0298295599792,0.755876438053,-0.548042722372
-1470148077315007747,-0.0192471966147,0.0705336406827,0.745549142361,-0.269351416044,0.0194584202903,0.7602442022,-0.590846797043
-1470148077392859578,-0.0188828743994,0.0701126009226,0.742001593113,-0.29316102404,0.0244613281023,0.757256918847,-0.583112524535
-1470148077469336408,-0.0186425969005,0.0680924877524,0.722616076469,-0.370617491432,0.0370616297783,0.766832938237,-0.52272015025
-1470148077544055839,-0.0184479001909,0.0673094168305,0.719972610474,-0.413344895987,0.0272328097103,0.746014132194,-0.521408942773
-1470148077617811352,-0.0185630097985,0.0663818493485,0.707432866096,-0.236924304218,0.0190208229565,0.76187190033,-0.602541525417
-1470148077699386778,-0.0185198355466,0.0648054331541,0.692156434059,-0.346702656556,0.0272656760952,0.758083348345,-0.551691478823
-1470148077771742821,-0.0186089742929,0.0632824152708,0.67940300703,-0.442509702866,0.036525926857,0.753034756313,-0.485581790558
-1470148077843706834,-0.0188919696957,0.0627323389053,0.66993278265,-0.329408491878,0.0280616611462,0.762042241899,-0.556771236877
-1470148077916119571,-0.0189734753221,0.0613748803735,0.658841669559,-0.330205599667,0.0246202730883,0.752709070064,-0.569022987185
-1470148078005631782,-0.0188150685281,0.0605767667294,0.644145667553,-0.290335637995,0.0257417248538,0.766856381792,-0.571816290969
-1470148078082650464,-0.0184663534164,0.0598924122751,0.6409740448,-0.392472450619,0.0234842715099,0.741639645189,-0.543492871325
-1470148078156180567,-0.0182601176202,0.0583798401058,0.626129031181,-0.442016002161,0.0350661748615,0.750928431899,-0.489386051476
-1470148078230362467,-0.0182778369635,0.0577603206038,0.615614175797,-0.277527627755,0.020897351399,0.758431737279,-0.589341171501
-1470148078304115044,-0.0179789047688,0.0563931800425,0.601507544518,-0.327930263797,0.0243194727026,0.755986736814,-0.565998550436
-1470148078382347145,-0.0177925601602,0.0551565662026,0.591197907925,-0.289371378696,0.0220713768372,0.755316122717,-0.587600726922
-1470148078460967707,-0.0177488513291,0.0538519360125,0.578463435173,-0.273782849757,0.0172568102645,0.752929803289,-0.598198850716
-1470148078538989355,-0.0173398964107,0.0526842027903,0.568444669247,-0.339468386315,0.0263836164583,0.754189499342,-0.561483141829
-1470148078614101835,-0.0169784445316,0.0517131015658,0.560896813869,-0.414542246822,0.0244453450431,0.743066830979,-0.524794088576
-1470148078691765780,-0.0168657619506,0.0509196072817,0.550765872002,-0.391256802605,0.0244425186153,0.74476740036,-0.540039069939
-1470148078764943906,-0.0166395381093,0.0502079166472,0.538887262344,-0.373881970629,0.0241299793293,0.74831122244,-0.54741239528
-1470148078840911208,-0.0163852032274,0.048998657614,0.525115430355,-0.30207171222,0.0204162377217,0.752677208385,-0.584647652771
-1470148078914809230,-0.0162967462093,0.0478053241968,0.512095034122,-0.284026084641,0.0192240488593,0.754680462953,-0.591115063271
-1470148078994746879,-0.0157491993159,0.0471762791276,0.506339132786,-0.478347692283,0.0288921200855,0.740035597827,-0.471906817743
-1470148079069215332,-0.0156267527491,0.0465713888407,0.491112887859,-0.333329145973,0.0243133809798,0.754959823987,-0.564212906726
-1470148079142227985,-0.0153532596305,0.0457785800099,0.481112539768,-0.368707286336,0.0250938389148,0.75133540741,-0.546736080595
-1470148079221064701,-0.0150438193232,0.045400083065,0.47190785408,-0.388712000699,0.0284318743235,0.753131707477,-0.529987962342
-1470148079296748812,-0.0148363411427,0.0446046106517,0.457195788622,-0.292105337295,0.0197229664695,0.75333436387,-0.588874190919
-1470148079370304233,-0.0145046422258,0.0438483543694,0.447839647532,-0.393505996883,0.0261867735039,0.747858784309,-0.534017342454
-1470148079442874628,-0.0142629146576,0.0431922860444,0.439425647259,-0.404752073192,0.0217029752238,0.740661871579,-0.535840211353
-1470148079521907791,-0.0138843888417,0.0429784469306,0.43066623807,-0.414301464379,0.0267556602367,0.745561643028,-0.521321654744
-1470148079605383407,-0.0135288555175,0.0416079387069,0.41598585248,-0.440434668327,0.0249484770234,0.740700481411,-0.50671261408
-1470148079678689433,-0.0134328380227,0.0409849695861,0.405287176371,-0.437117177046,0.0272490420099,0.744830527824,-0.503401974631
-1470148079750593828,-0.0131338313222,0.0406857654452,0.396939486265,-0.397233352617,0.0249580144561,0.74596832998,-0.533960683711
-1470148079823358726,-0.0129298139364,0.0400538109243,0.386541366577,-0.405314355312,0.0251160754197,0.745528677071,-0.528466127389
-1470148079903684134,-0.0125688556582,0.0394604839385,0.372622191906,-0.356012394424,0.0210652458543,0.745577069217,-0.562962045161
-1470148079980865872,-0.0123533196747,0.0388874337077,0.362815350294,-0.38779348673,0.0234533703861,0.745298039671,-0.541845903491
-1470148080054519547,-0.0121851991862,0.0383475832641,0.353063702583,-0.38198446427,0.0214321236014,0.742206529223,-0.550234496477
-1470148080128431880,-0.011964163743,0.0376979336143,0.338065385818,-0.393026593902,0.0240999567282,0.746257659473,-0.536701774032
-1470148080205607245,-0.0116693340242,0.0372316353023,0.328905522823,-0.405461711705,0.0237954541401,0.744062805447,-0.530476312623
-1470148080278923627,-0.0114053422585,0.0366015359759,0.320114284754,-0.435415391837,0.0218131981842,0.738333205062,-0.514588864278
-1470148080354821330,-0.0111203817651,0.0354510098696,0.305475860834,-0.453629211643,0.0244631887895,0.738405969317,-0.498376078093
-1470148080431437527,-0.0110126985237,0.0350287035108,0.295962572098,-0.397779047019,0.0200335474186,0.739894922455,-0.542149417094
-1470148080505036307,-0.0108736138791,0.0343643091619,0.286922007799,-0.440700711242,0.0230285665384,0.739405997275,-0.50845977169
-1470148080581169267,-0.0106851812452,0.0339085198939,0.280479073524,-0.457553129271,0.024881367505,0.73857291467,-0.494505916204
-1470148080653497147,-0.0106829684228,0.0339126028121,0.274434179068,-0.430147737757,0.0245810007888,0.741531767476,-0.51429498921
-1470148080730318832,-0.0106151578948,0.0343053080142,0.274795264006,-0.447995595102,0.0246035056541,0.739837798067,-0.501332870287
-1470148080804392455,-0.0105821918696,0.0354920402169,0.275134623051,-0.4525481039,0.023953912418,0.739000236896,-0.498502832093
-1470148080885255485,-0.0105213737115,0.0364814214408,0.274388104677,-0.459578784235,0.0238811248033,0.73765256039,-0.49405033459
-1470148080964370405,-0.0105338757858,0.0368440970778,0.273527294397,-0.447194447702,0.0252163707395,0.739264337106,-0.502861313361
-1470148081044683093,-0.0105175962672,0.0364989601076,0.273431867361,-0.456589027024,0.0243720800092,0.737809345966,-0.496557983647
-1470148081119197509,-0.010535207577,0.0362857580185,0.273014068604,-0.468758129616,0.0263103356834,0.738675432034,-0.483665368064
-1470148081192012072,-0.0105656059459,0.0358334667981,0.272918492556,-0.477403789027,0.0263646692605,0.737820590905,-0.476457030669
-1470148081264452728,-0.010551340878,0.0351518169045,0.272706151009,-0.504032066508,0.0279307818989,0.736629515945,-0.450053889654
-1470148081338175818,-0.0105462223291,0.0347833968699,0.272716939449,-0.509606426878,0.0280302763277,0.736072796249,-0.444648661209
-1470148081414471992,-0.0105549981818,0.0343712233007,0.27270963788,-0.501865633726,0.0273650805405,0.736366338691,-0.452931179424
-1470148081489629251,-0.0105430753902,0.0336736701429,0.272813856602,-0.482370633409,0.0259042059763,0.736662742636,-0.473260549538
-1470148081563146152,-0.0105301290751,0.0331532359123,0.272836744785,-0.479554473278,0.0258322798586,0.736601215564,-0.476213029753
-1470148081636099086,-0.0105126406997,0.03266036883,0.272955268621,-0.466270672909,0.0248392558669,0.737096792105,-0.488531462673
-1470148081709898638,-0.010487315245,0.0321302488446,0.273133575916,-0.472909523665,0.0246747601406,0.73651033224,-0.483011665638
-1470148081781627556,-0.0104368561879,0.0314908921719,0.273015260696,-0.486216374481,0.0267648782979,0.736899371162,-0.468888681092
-1470148081857140237,-0.0104263080284,0.0306111834943,0.273126125336,-0.485970072721,0.0253711477424,0.735733312507,-0.471047647429
-1470148081933674343,-0.0104074990377,0.0300446823239,0.273123711348,-0.48392018038,0.026108420535,0.736364202849,-0.472130670643
-1470148082009372859,-0.0103895971552,0.0293813347816,0.273158609867,-0.484458753641,0.0260481148555,0.736464595087,-0.471424555911
-1470148082086118818,-0.0103379702196,0.0287084262818,0.273252248764,-0.509501185774,0.027738165504,0.735388570581,-0.445917914115
-1470148082159967544,-0.0103681050241,0.0278443060815,0.273286670446,-0.496585991985,0.0255044956497,0.735061164676,-0.460908838548
-1470148082231185441,-0.0103376833722,0.027121881023,0.273225963116,-0.507828640754,0.0273830761367,0.734868739765,-0.448696082095
-1470148082305821458,-0.0103317163885,0.0265668872744,0.273273020983,-0.508860882942,0.0273488419551,0.735151234712,-0.447062976276
-1470148082379345626,-0.0103177800775,0.0260593257844,0.273295909166,-0.509056164087,0.0276047311025,0.735438587043,-0.446351750656
-1470148082457157783,-0.0102841742337,0.0251019075513,0.273309618235,-0.529621629778,0.0289205144894,0.734260094548,-0.423705849224
-1470148082532653439,-0.0102902548388,0.0246002972126,0.273272335529,-0.520152929114,0.0278589650711,0.734468360251,-0.434995443872
-1470148082605630041,-0.0102779241279,0.0241539422423,0.273205578327,-0.524169509028,0.0290213940788,0.734840483237,-0.429433986413
-1470148082679105980,-0.0102826328948,0.0236961580813,0.273214548826,-0.52354074005,0.0287538837318,0.734736254024,-0.430396264739
-1470148082751504004,-0.0103363320231,0.0229414626956,0.273209750652,-0.510992826158,0.0252245915819,0.733066457574,-0.448178112333
-1470148082824205163,-0.0103377914056,0.022481398657,0.273177027702,-0.49961519536,0.0250503057052,0.73404898678,-0.45927031665
-1470148082895667039,-0.0103232776746,0.0220256969333,0.273178100586,-0.505019896135,0.0249677612312,0.73337802841,-0.454409708142
-1470148082967475255,-0.0103000150993,0.0216246042401,0.273146182299,-0.516697262462,0.0267034059155,0.733790374291,-0.440298255362
-1470148083039886323,-0.0103194126859,0.0209754295647,0.273246794939,-0.513747740783,0.0255188938678,0.733171858882,-0.444827011589
-1470148083112304546,-0.0103335818276,0.0206172075123,0.273176044226,-0.493339913432,0.0243298611157,0.734055177682,-0.466033028649
-1470148083183977494,-0.0102980481461,0.0202002674341,0.273169755936,-0.511480374415,0.026437002057,0.734142199273,-0.445784861517
-1470148083259589218,-0.0102523015812,0.0198039729148,0.273176401854,-0.529464589781,0.0281077351141,0.733574529311,-0.425141874368
-1470148083336484691,-0.0102504594252,0.0194585099816,0.27312797308,-0.525281449941,0.0285084679541,0.734425905955,-0.428818439744
-1470148083413121974,-0.0103197330609,0.0191141217947,0.27326464653,-0.5012661076,0.0240214219768,0.733297996294,-0.458725745178
-1470148083485258343,-0.0103162685409,0.0187035854906,0.273221880198,-0.507618823589,0.0247099554211,0.733110103456,-0.451953674895
-1470148083559129141,-0.0103084435686,0.0182173382491,0.273228734732,-0.510051473137,0.0245830730104,0.732624617485,-0.450004819004
-1470148083636557608,-0.0102463122457,0.0180076304823,0.27314722538,-0.531463030586,0.0285569954762,0.733744890164,-0.422315026122
-1470148083710810597,-0.010328033939,0.0176966376603,0.273243606091,-0.505643315582,0.0240504780033,0.732793927334,-0.454708117342
-1470148083785849478,-0.0102679301053,0.0173603650182,0.273112386465,-0.523829342765,0.0274272831297,0.733536857309,-0.432173857107
-1470148083864001486,-0.0102227637544,0.0170397367328,0.273092150688,-0.538738338944,0.0296959502209,0.733830736336,-0.412760951522
-1470148083944592942,-0.010329304263,0.0168068669736,0.273234575987,-0.495271970267,0.0238974825249,0.733718327382,-0.464534177279
-1470148084022123694,-0.0102587547153,0.0165299791843,0.273109316826,-0.530865771732,0.0284037145265,0.733620666878,-0.423291245519
-1470148084096035031,-0.010323099792,0.0163193717599,0.273237258196,-0.504691814544,0.0244215314621,0.73324965954,-0.455010656929
-1470148084168681700,-0.0102481711656,0.016027636826,0.273031294346,-0.534382642085,0.0284350170318,0.733231371276,-0.419521629742
-1470148084240843716,-0.0103107644245,0.0158545877784,0.273218125105,-0.51289129357,0.0251448548726,0.732912560483,-0.44626162275
-1470148084314705051,-0.0102844573557,0.0156487934291,0.273178368807,-0.536762289612,0.0276823517921,0.73252052435,-0.417772202589
-1470148084391824878,-0.0103180874139,0.0154065890238,0.273234933615,-0.50860465672,0.025333402118,0.733610350981,-0.449994860897
-1470148084471181151,-0.0103324549273,0.0152384629473,0.273186445236,-0.518063019964,0.0242174716863,0.73185854979,-0.442048961666
-1470148084543606808,-0.0102988677099,0.0150290252641,0.273215085268,-0.521614443883,0.0267285070832,0.733085933019,-0.435647763281
-1470148084619092374,-0.0103149134666,0.014909398742,0.273192882538,-0.509093067539,0.0250553455922,0.733360174511,-0.449865905223
-1470148084692874446,-0.0102680502459,0.0146524338052,0.273102104664,-0.533448059525,0.0280157784197,0.733153064005,-0.420873934438
-1470148084766325688,-0.0102907912806,0.0144784841686,0.273142516613,-0.520520230942,0.0264008603022,0.73319523765,-0.436791056734
-1470148084843535344,-0.0103419823572,0.0143353966996,0.273219376802,-0.509029223094,0.02392131082,0.732519501979,-0.451367034846
-1470148084922850159,-0.0102660898119,0.0141342552379,0.273127436638,-0.530491546517,0.0281062023474,0.733211936457,-0.424486768581
-1470148084997105913,-0.0103268669918,0.0138967595994,0.273198753595,-0.507048242858,0.0243447342261,0.733056839056,-0.452699772523
-1470148085079719028,-0.0102733932436,0.0137279834598,0.273139476776,-0.528604289566,0.0275025983366,0.733112353027,-0.427044950768
-1470148085153966880,-0.0103035494685,0.0135065140203,0.273224413395,-0.525147661678,0.0265107324049,0.732838849736,-0.431815162794
-1470148085226972481,-0.0103434091434,0.013337935321,0.273155659437,-0.508011390389,0.0238736484511,0.732521353499,-0.452511815107
-1470148085304897506,-0.0102770039812,0.0132055627182,0.273011773825,-0.522861266097,0.0284385621552,0.734399087589,-0.431816309033
-1470148085379172982,-0.0103207845241,0.0130475014448,0.273149192333,-0.510603226673,0.0258892571661,0.733808150282,-0.447369746244
-1470148085451637127,-0.0103372782469,0.0129295745865,0.273102939129,-0.508247672717,0.0251553896067,0.733621647489,-0.450389595669
-1470148085527792673,-0.0103573454544,0.0128618655726,0.27303943038,-0.499474582145,0.023480231294,0.732952829244,-0.461252610434
-1470148085604052098,-0.0102896727622,0.0127643439919,0.273081034422,-0.529546353358,0.0273090362641,0.732793755434,-0.426436616838
-1470148085679392531,-0.0102866822854,0.0127311749384,0.273017138243,-0.518192679507,0.0280924472791,0.734539289885,-0.437194685383
-1470148085752641392,-0.0103040486574,0.0125726163387,0.273198068142,-0.521171259869,0.026748144169,0.733542177316,-0.435408921325
-1470148085824871550,-0.0103266062215,0.0124695152044,0.273207187653,-0.524149252841,0.0260250516016,0.732662176691,-0.433354811075
-1470148085898743575,-0.0103673152626,0.0123428301886,0.273056447506,-0.499559347355,0.0244581034129,0.733448754559,-0.460320740444
-1470148085975272984,-0.0103426584974,0.0121303331107,0.273008495569,-0.507543643779,0.0264985544756,0.734475824921,-0.449713841101
-1470148086049431168,-0.0103691639379,0.0120375268161,0.273045390844,-0.501084610473,0.0257438400351,0.73473528264,-0.456525500155
-1470148086123962746,-0.010389813222,0.0119690261781,0.272859364748,-0.487151492138,0.0246235824051,0.735046090237,-0.470939856164
-1470148086196676146,-0.0103699266911,0.0118480930105,0.27282372117,-0.49366188196,0.0257668356888,0.735157542926,-0.463872184504
-1470148086277081679,-0.0103720957413,0.0117952292785,0.27291238308,-0.502859867508,0.0272589814471,0.73529474081,-0.453575292225
-1470148086352705707,-0.0103742918,0.0117689669132,0.272948920727,-0.503928189453,0.0271497438093,0.735317460123,-0.452357716994
-1470148086431110185,-0.0104119246826,0.0118180373684,0.272852212191,-0.482795447301,0.0247691168291,0.735288551957,-0.475021886104
-1470148086506014276,-0.0103566171601,0.0117610022426,0.272887080908,-0.511803905453,0.0281314395504,0.735205294618,-0.443552205763
-1470148086582200519,-0.0103855840862,0.011725647375,0.272876381874,-0.501501616953,0.0264937743451,0.735034265183,-0.455542354914
-1470148086658254211,-0.01038606558,0.0116858482361,0.272877335548,-0.493101807706,0.0263355545392,0.735900602167,-0.463257325398
-1470148086735086369,-0.0104116043076,0.011518554762,0.272849440575,-0.495036759311,0.0251698528543,0.734623534865,-0.463285384467
-1470148086813942323,-0.0103627564386,0.0112498542294,0.272780686617,-0.510038507269,0.0278205834615,0.735279486191,-0.445478185129
-1470148086892292193,-0.0103711783886,0.0111279860139,0.272779166698,-0.486824283414,0.0256372631558,0.736097703699,-0.469579618835
-1470148086964992836,-0.0103447269648,0.0110339717939,0.272795915604,-0.501599601252,0.0255962611725,0.734246093191,-0.456755236501
-1470148087037535069,-0.0103602511808,0.0110162571073,0.272681325674,-0.488219968809,0.0250136898122,0.735270736793,-0.469459818295
-1470148087120656893,-0.0103632463142,0.0109770158306,0.27273607254,-0.488702045542,0.0239575444897,0.734046210648,-0.470927284597
-1470148087193701206,-0.0103172361851,0.0111887296662,0.272722810507,-0.509972363212,0.0268246504896,0.734624501764,-0.446693931339
-1470148087270696304,-0.0103945359588,0.0113195916638,0.272654742002,-0.486269028448,0.0221007371228,0.732676707987,-0.475645698986
-1470148087347622862,-0.0103598283604,0.0114383231848,0.27261286974,-0.490022872144,0.02447490768,0.734545884725,-0.468743967324
-1470148087422158023,-0.0103380838409,0.0115053066984,0.272744715214,-0.511713784867,0.0259292319476,0.733628901942,-0.446391433098
-1470148087497121960,-0.0103949606419,0.011392628774,0.272663712502,-0.481300531965,0.0226718801929,0.733446680765,-0.479470280887
-1470148087577531298,-0.0102675883099,0.0110947275534,0.272678941488,-0.525549300838,0.0271762030386,0.733048475252,-0.430928438732
-1470148087657103394,-0.0103220185265,0.0108302338049,0.272523909807,-0.499636371311,0.0232675129495,0.732463983259,-0.461864300994
-1470148087731246646,-0.010323246941,0.0108368536457,0.272466391325,-0.520951378656,0.0243986940893,0.731275950436,-0.439601921194
-1470148087804801663,-0.0104051735252,0.0111995749176,0.272201836109,-0.483700538129,0.0223570051865,0.733689953841,-0.476689632114
-1470148087877447192,-0.0104129053652,0.011414218694,0.272110551596,-0.511584163421,0.0249587612956,0.732736270409,-0.448058324327
-1470148087952248919,-0.0104368906468,0.0117693170905,0.272003114223,-0.501558534736,0.0237909314233,0.732839261109,-0.459151004782
-1470148088036798680,-0.0104334102944,0.0120166223496,0.271988093853,-0.516318179995,0.0247648318274,0.732291277693,-0.443341544101
-1470148088111572917,-0.0104401055723,0.0122429449111,0.271966844797,-0.517117319098,0.0244588187925,0.731914395737,-0.44304938978
-1470148088189285872,-0.0104046771303,0.0124496901408,0.272007197142,-0.53422929968,0.0276068647114,0.732640867667,-0.42080194321
-1470148088263526484,-0.0104386918247,0.0127946492285,0.27202090621,-0.51829028108,0.0246001473486,0.73180570442,-0.441848874918
-1470148088341195170,-0.010468413122,0.0130186397582,0.272038072348,-0.510363932307,0.0226645431929,0.731308101878,-0.45188874207
-1470148088417377607,-0.0104397572577,0.0131605444476,0.272105902433,-0.53191476439,0.0239299296036,0.729864310163,-0.428709844351
-1470148088495076472,-0.0104006985202,0.0133333932608,0.27206364274,-0.541961053672,0.0265726043954,0.731010750848,-0.413757652669
-1470148088569697561,-0.0104690389708,0.0136181591079,0.271966606379,-0.515898783974,0.0233318968026,0.731024203492,-0.445990673888
-1470148088642921462,-0.0104248793796,0.0138828717172,0.272110134363,-0.535636526026,0.0252521866198,0.730716944763,-0.422502764126
-1470148088716165639,-0.0104482779279,0.0141221256927,0.272095173597,-0.519361575054,0.0231322426929,0.73027537467,-0.443200102501
-1470148088787041012,-0.0103105008602,0.0144856832922,0.27257874608,-0.564515566423,0.0239181295447,0.726766711736,-0.39058961207
-1470148088858626440,-0.0102758016437,0.015007680282,0.272728145123,-0.568250344115,0.023984819151,0.726539544751,-0.385560066366
-1470148088947024287,-0.0103106014431,0.0158832892776,0.27278354764,-0.565016542928,0.0219379841394,0.725442737575,-0.392438358942
-1470148089027430962,-0.0102894194424,0.0165454875678,0.272765100002,-0.589795390499,0.0253128918346,0.725194593674,-0.354391670556
-1470148089101503744,-0.0103125767782,0.0167953968048,0.272711396217,-0.581236246754,0.0228656244617,0.724537422346,-0.369712201985
-1470148089175142054,-0.010325204581,0.0167961642146,0.272734701633,-0.584343310971,0.0227163159013,0.724161817258,-0.365535943981
-1470148089252695578,-0.0103155514225,0.0167834945023,0.272771686316,-0.590244072389,0.0230824984729,0.723767604962,-0.356706584298
-1470148089327480438,-0.0102469716221,0.0166607704014,0.272760212421,-0.592729738745,0.0269250894791,0.725750353283,-0.348185182156
-1470148089400517966,-0.0102391783148,0.0165889002383,0.272778153419,-0.594804254433,0.0272297354283,0.725744212214,-0.344618308937
-1470148089475097999,-0.010285442695,0.0164627153426,0.272732257843,-0.565060147561,0.0239412189083,0.726556446771,-0.390191718685
-1470148089548958529,-0.0102555798367,0.0163111332804,0.27266061306,-0.584247373211,0.0251446293276,0.725614469969,-0.362638105393
-1470148089624088828,-0.0102363238111,0.0160352084786,0.272709220648,-0.573585568196,0.0256282331467,0.726937565434,-0.376702224023
-1470148089699478061,-0.0102244541049,0.0157990641892,0.272679597139,-0.586512202639,0.0264829337119,0.726106155697,-0.357871402931
-1470148089771532393,-0.0102754421532,0.0155072528869,0.272741556168,-0.560460054288,0.0235831002667,0.726584275846,-0.396741294829
-1470148089846777163,-0.0101913744584,0.0152739938349,0.27268704772,-0.587286269377,0.028212730117,0.72696807617,-0.35470592875
-1470148089922236720,-0.0102448193356,0.0148787321523,0.272701710463,-0.571072260398,0.0248256953018,0.726648206104,-0.381106996554
-1470148089997768252,-0.0102779259905,0.0145554635674,0.272719830275,-0.558782604811,0.0234233857364,0.726679493497,-0.398936410086
-1470148090074082295,-0.0101866619661,0.014294619672,0.272668898106,-0.582673695319,0.0279416394769,0.727304250883,-0.36157869989
-1470148090145430671,-0.0102767394856,0.0140273896977,0.272680193186,-0.558891849278,0.0228734786287,0.726409538965,-0.399306757377
-1470148090217986386,-0.0102612124756,0.0136118680239,0.272659868002,-0.545097980707,0.0233190736631,0.727996495168,-0.415145173712
-1470148090294106115,-0.010216881521,0.0133228907362,0.272717237473,-0.563685618441,0.0258004011701,0.728055347602,-0.389266327454
-1470148090371242933,-0.0102653121576,0.013093280606,0.272622197866,-0.540938154266,0.0224299281893,0.727744077477,-0.421036066482
-1470148090444911590,-0.0101651307195,0.0128817949444,0.272586405277,-0.572196004863,0.0284034876043,0.728781335869,-0.375050314491
-1470148090516757088,-0.010248712264,0.0126250088215,0.272628456354,-0.552929327215,0.0237513718963,0.727632251191,-0.405285502413
-1470148090589876457,-0.010237432085,0.012252798304,0.272641807795,-0.544987598742,0.0243192716032,0.728673773495,-0.414043019583
-1470148090664662449,-0.0102602718398,0.0120740579441,0.272608488798,-0.546873964976,0.0227042111052,0.727585714181,-0.413560653048
-1470148090741003395,-0.0102278403938,0.0118296025321,0.272682458162,-0.558694402803,0.0256114652178,0.728251379936,-0.396048664619
-1470148090815017616,-0.0102432239801,0.0116708949208,0.272602528334,-0.556147729348,0.0238504271913,0.727475498531,-0.401136210409
-1470148090890749677,-0.0102168666199,0.0113071734086,0.272600203753,-0.552437305305,0.0250530654352,0.728515993166,-0.404289271836
-1470148090966214788,-0.0102485911921,0.0111789712682,0.272653728724,-0.558714199322,0.0237333480982,0.727135863862,-0.398181625831
-1470148091041878141,-0.0102314222604,0.0109787471592,0.272727996111,-0.551304289984,0.02476946428,0.728462807389,-0.405945799012
-1470148091114478392,-0.0102181993425,0.0108186695725,0.272598743439,-0.554280489075,0.0251191122851,0.728411675883,-0.401943528454
-1470148091184066937,-0.0102398879826,0.0106552485377,0.272624880075,-0.549551447933,0.0236643186823,0.728029047872,-0.409153897146
-1470148091257655482,-0.0102174943313,0.0104415332898,0.272644042969,-0.555830283943,0.0254926173242,0.728461864764,-0.399682540898
-1470148091338378121,-0.0102262869477,0.0103161819279,0.272599220276,-0.555317101525,0.0248305196767,0.728088055406,-0.401116124858
-1470148091413415229,-0.0102404430509,0.0102496119216,0.272530913353,-0.537526128627,0.0228629438623,0.728629707056,-0.423841594038
-1470148091492867699,-0.0102225383744,0.0100566130131,0.272700965405,-0.546708728563,0.0249900603484,0.729074300807,-0.411017915546
-1470148091571546278,-0.0102107636631,0.00950665865093,0.272739201784,-0.550379191756,0.0260403700955,0.72951827092,-0.405225538189
-1470148091644429095,-0.010245943442,0.00910729821771,0.272939920425,-0.556790611051,0.0265627810579,0.729120711124,-0.397066269933
-1470148091716666659,-0.0102548105642,0.00871162675321,0.273042798042,-0.549576406927,0.0268369715477,0.730252390566,-0.404940731441
-1470148091795395901,-0.0102564096451,0.00877545028925,0.272931069136,-0.541656440916,0.0244101000116,0.729314177766,-0.417268830781
-1470148091869856290,-0.0102112302557,0.00849766563624,0.27262404561,-0.54016339893,0.0249383317768,0.729649408816,-0.418584904504
-1470148091943400504,-0.0102076623589,0.00833115540445,0.272367984056,-0.540734396578,0.0232950679514,0.728671090993,-0.419645199327
-1470148092017358599,-0.0102614667267,0.00818544626236,0.272119253874,-0.507783045339,0.0188443226004,0.727787249255,-0.460572459221
-1470148092096934947,-0.010230624117,0.00805207993835,0.271447598934,-0.539374547463,0.0226838023358,0.728374951663,-0.421936573967
-1470148092172602498,-0.0103317759931,0.00804401375353,0.270679950714,-0.493800358087,0.0206751356476,0.731046970954,-0.470429666771
-1470148092246446933,-0.0103033939376,0.00799877755344,0.270326822996,-0.490576144901,0.0201602031552,0.730853739153,-0.474111193951
-1470148092331988118,-0.0102753313258,0.00791930779815,0.270101547241,-0.503029752532,0.0197614244948,0.729132102478,-0.463612911065
-1470148092410374194,-0.0101792784408,0.00785715784878,0.26968061924,-0.52547386131,0.021580330791,0.728616593353,-0.438781688648
-1470148092485714012,-0.0101174991578,0.0078293196857,0.269465237856,-0.550696650516,0.0238210830122,0.727951431477,-0.407740687846
-1470148092564972565,-0.0100881531835,0.00780961522833,0.269270241261,-0.54963009197,0.0244314720705,0.728473178506,-0.408211579173
-1470148092640549814,-0.0101283388212,0.00778562482446,0.268254429102,-0.540760639802,0.0258605816813,0.730538742292,-0.41619983994
-1470148092714718380,-0.010194840841,0.00770054757595,0.26774084568,-0.519045110836,0.0238433562994,0.730960422645,-0.442403128159
-1470148092791681899,-0.010209126398,0.00755436066538,0.267552614212,-0.503263422088,0.0215222845546,0.730888877278,-0.460504254406
-1470148092865934140,-0.0100977038965,0.00718381302431,0.267314940691,-0.535884678115,0.0262560923773,0.731345618794,-0.421036596089
-1470148092942100592,-0.0100528886542,0.00676499819383,0.267070919275,-0.532736636794,0.0270357937577,0.732318355087,-0.423285445623
-1470148093022817680,-0.0101153440773,0.00645335717127,0.266829103231,-0.495868041703,0.0204722221,0.730538366451,-0.469051669311
-1470148093099217607,-0.0100052608177,0.00650644721463,0.266547858715,-0.533840119426,0.024860300576,0.730408843235,-0.425322952674
-1470148093177346210,-0.00997713860124,0.00690026441589,0.266406953335,-0.548694740411,0.0250843240324,0.729013465127,-0.408465697699
-1470148093253119698,-0.0099355103448,0.00743028055876,0.266402602196,-0.567068462712,0.0272732533941,0.728729517926,-0.382939705372
-1470148093327439946,-0.00996101461351,0.00788657460362,0.266276627779,-0.572838062262,0.0263387774134,0.727508799819,-0.376687893905
-1470148093404531232,-0.00996295083314,0.00862481165677,0.266101777554,-0.575057483963,0.0255879703917,0.726898751853,-0.374529505464
-1470148093480342162,-0.00999888405204,0.00872699916363,0.265902131796,-0.569217045677,0.0264932059124,0.727995461669,-0.381198993624
-1470148093552814130,-0.0100471535698,0.0086537078023,0.265697777271,-0.561325093027,0.0257272096339,0.728315688325,-0.392184279087
-1470148093627004067,-0.0100936042145,0.00869604945183,0.265501439571,-0.544993638788,0.0255709176034,0.729924537607,-0.411750204921
-1470148093704240078,-0.010136205703,0.00877523235977,0.265287041664,-0.533868794016,0.0252472882292,0.730774827516,-0.424634945196
-1470148093779731437,-0.0101460944861,0.00883851014078,0.26509308815,-0.534337731083,0.0239394161127,0.729672643583,-0.426013998248
-1470148093853468090,-0.0101454751566,0.008923987858,0.264918327332,-0.526479340212,0.0225110090499,0.729281974686,-0.436417873373
-1470148093931686334,-0.0100858639926,0.00897149462253,0.264815181494,-0.538101513329,0.024785573829,0.730076249143,-0.420501019167
-1470148094006331141,-0.0100366957486,0.00906684994698,0.26470798254,-0.537650775279,0.025791529092,0.730868943043,-0.419639165193
-1470148094084802870,-0.0100198304281,0.00922411493957,0.264704793692,-0.536603582166,0.0251852512937,0.730525440494,-0.421609866483
-1470148094161423681,-0.0099911224097,0.00919978693128,0.264477550983,-0.537369137379,0.0259092123149,0.73095510547,-0.41984253798
-1470148094234926954,-0.00996694527566,0.00914478674531,0.264259874821,-0.526053308935,0.0249397669041,0.731503901394,-0.433068085215
-1470148094308908489,-0.00993279460818,0.00902727525681,0.264028310776,-0.542647011667,0.0256186559041,0.730127546772,-0.414477587624
-1470148094383635687,-0.00987458415329,0.00888923183084,0.263755530119,-0.541939364843,0.0266223959751,0.731086434194,-0.413649124988
-1470148094463769008,-0.00984411686659,0.00871880259365,0.263321608305,-0.556605249445,0.0254320210576,0.72844981752,-0.398628488635
-1470148094540052734,-0.00985401775688,0.0086615504697,0.262923270464,-0.566786727351,0.0253130123831,0.727395345339,-0.386015632691
-1470148094616677031,-0.00996243488044,0.00863622315228,0.262187719345,-0.536842007731,0.0245651772125,0.729892624944,-0.422438121925
-1470148094690065731,-0.00992501713336,0.00858565699309,0.261798650026,-0.541067329046,0.025592606235,0.730313656476,-0.416212838713
-1470148094763104591,-0.0098692746833,0.00854974612594,0.261298596859,-0.549742330944,0.0256355121908,0.72936602823,-0.40638822196
-1470148094836861491,-0.00992611888796,0.00852946937084,0.261044859886,-0.519427145228,0.0205981671117,0.728438375979,-0.446260785543
-1470148094917372786,-0.00994866527617,0.00845020264387,0.258353561163,-0.41882684887,0.0129707544547,0.728886915081,-0.541423766766
-1470148094990781873,-0.00978078879416,0.00839466042817,0.256352186203,-0.538321733228,0.0239345100841,0.729328923989,-0.421563958842
-1470148095061000858,-0.00976370926946,0.00840396434069,0.256179362535,-0.524403731429,0.0225882162028,0.729536465969,-0.438482660745
-1470148095134834879,-0.009760344401,0.00837745144963,0.25625538826,-0.546788829443,0.0240209981251,0.728463746376,-0.412050406942
-1470148095209365451,-0.00976480450481,0.00837715622038,0.256045073271,-0.528184988411,0.0217474050685,0.728535142048,-0.435642301885
-1470148095283417494,-0.00977523718029,0.00838333368301,0.255580127239,-0.496391964537,0.0177761486138,0.727947293707,-0.472622220879
-1470148095367727189,-0.00969064608216,0.00837474502623,0.255295038223,-0.520113755081,0.0205903892795,0.728402188968,-0.445519885921
-1470148095447573058,-0.00963244028389,0.008355287835,0.25495532155,-0.554964683828,0.0236281392575,0.727661358669,-0.402448577881
-1470148095520516898,-0.00966536067426,0.00834727846086,0.254462689161,-0.529578673444,0.0232509731372,0.729827325436,-0.431691899309
-1470148095593966282,-0.00973259005696,0.00830592866987,0.253902882338,-0.520342102872,0.0229745932585,0.730420664923,-0.44181660935
-1470148095671475105,-0.0096994638443,0.00816806219518,0.253589093685,-0.527629903836,0.0222412697365,0.729035365328,-0.435453150867
-1470148095747282798,-0.0096621401608,0.0081467134878,0.253437668085,-0.540785712741,0.0229865459763,0.728254994115,-0.42031785014
-1470148095820732104,-0.00962434709072,0.00812488421798,0.253211706877,-0.545731319954,0.0234140130566,0.728054802838,-0.41420443561
-1470148095898275263,-0.00959674548358,0.00816942658275,0.253053098917,-0.543018905467,0.0236911125072,0.72855456537,-0.416866219274
-1470148095976790964,-0.00959918927401,0.00825733784586,0.252837628126,-0.538910918075,0.0223206617717,0.728079003467,-0.42305764991
-1470148096051859535,-0.00958312768489,0.00833416450769,0.25267252326,-0.533360297896,0.0218603852559,0.728318938604,-0.429651533054
-1470148096130945930,-0.00957300979644,0.00849233660847,0.252053201199,-0.531834730329,0.0244779231197,0.730482330221,-0.427724462862
-1470148096206952422,-0.0096525317058,0.00854073092341,0.251560628414,-0.526372504658,0.023797384861,0.730655882913,-0.434174678648
-1470148096286821904,-0.00968860648572,0.00863358471543,0.251336097717,-0.506173782517,0.0213086798725,0.730544641577,-0.457863045809
-1470148096360386514,-0.00960321165621,0.00870722346008,0.251083254814,-0.528693835427,0.0239152921532,0.730420057254,-0.431737683257
-1470148096433296522,-0.00961458403617,0.00881880801171,0.250727593899,-0.524874802984,0.0200000140355,0.727480033457,-0.441451290125
-1470148096510156829,-0.0095367655158,0.00886543467641,0.250527203083,-0.550049420165,0.022662895878,0.727087598078,-0.410214155348
-1470148096585387420,-0.00949418824166,0.00894494913518,0.250215381384,-0.551983373968,0.0233208006102,0.727432994194,-0.406954216196
-1470148096659477475,-0.00958384759724,0.00902826618403,0.24951633811,-0.532609992252,0.0208339070122,0.727417029599,-0.432153918785
-1470148096734058098,-0.00954746082425,0.00908850226551,0.250408470631,-0.564623732973,0.0237368468323,0.726665692464,-0.390632274219
-1470148096811571480,-0.0095437746495,0.00918276794255,0.250961780548,-0.562369934931,0.0276905617435,0.729479752689,-0.388371702745
-1470148096884833067,-0.0095320623368,0.00922833196819,0.250885426998,-0.56067484965,0.0274298756623,0.729472883893,-0.390846039452
-1470148096958215529,-0.00956360436976,0.00922232214361,0.2505222857,-0.55313416792,0.0223199572525,0.726680056768,-0.406792953336
-1470148097042190696,-0.00953562278301,0.00920363049954,0.250281244516,-0.565227587672,0.0234885532721,0.726460682577,-0.390155018767
-1470148097127427172,-0.00954009685665,0.00923983752728,0.249949023128,-0.549210782164,0.0242458622894,0.728483714041,-0.408767823211
-1470148097201834094,-0.00960505753756,0.00924390088767,0.249287813902,-0.535997743618,0.0241734011765,0.729809873422,-0.423673947945
-1470148097281311487,-0.00956206209958,0.00929341651499,0.248785689473,-0.542068942311,0.0246119608641,0.729657625728,-0.416119288644
-1470148097355309598,-0.00956926494837,0.00934624671936,0.248538061976,-0.529169803477,0.022285236885,0.729117792804,-0.433439651534
-1470148097427108282,-0.00949245411903,0.00937813520432,0.248256474733,-0.539040871861,0.0243359091876,0.729724758976,-0.419933897327
-1470148097500951778,-0.00941624585539,0.00942487642169,0.247691124678,-0.56677435567,0.0281974238132,0.729483474351,-0.381871176831
-1470148097572849879,-0.00952974986285,0.00945682451129,0.247092559934,-0.549129986526,0.0235917531859,0.728019381403,-0.409740731904
-1470148097650838871,-0.00953997671604,0.0094780176878,0.24658703804,-0.539265337746,0.0234302863887,0.728916669068,-0.421099046236
-1470148097724997013,-0.00947016756982,0.00951496325433,0.24630984664,-0.549361005391,0.0254320812344,0.729254320735,-0.407116482951
-1470148097800376294,-0.00941207353026,0.00952717475593,0.245903491974,-0.558662780615,0.0261148168081,0.728831651382,-0.394991566798
-1470148097872567160,-0.00947299599648,0.00956556480378,0.245573237538,-0.527291178756,0.0220204350564,0.728922367246,-0.436063407975
-1470148097943479371,-0.00946376379579,0.00956022832543,0.245142668486,-0.524476917401,0.0223748646574,0.729418941455,-0.43860156907
-1470148098016031812,-0.0094693377614,0.00956089887768,0.244378507137,-0.54201041929,0.0249838490596,0.729721422012,-0.416061484548
-1470148098093336215,-0.00941038038582,0.00957129057497,0.2441188097,-0.565940735809,0.026605383046,0.728218774658,-0.385617236881
-1470148098168974400,-0.00940834730864,0.0096090529114,0.243812978268,-0.552900946352,0.0243073177586,0.728143325416,-0.404372347569
-1470148098243314680,-0.0094129582867,0.00960851926357,0.243502080441,-0.537417962966,0.0226044844143,0.728497789014,-0.424219214284
-1470148098315517696,-0.00937983393669,0.00962038431317,0.243065565825,-0.547196965957,0.0248562691658,0.72916814086,-0.410209054855
-1470148098392267345,-0.00942395720631,0.00963448919356,0.242212608457,-0.538672865283,0.0257122417178,0.730743254088,-0.418550739384
-1470148098467212691,-0.00938596576452,0.00963224563748,0.241911098361,-0.546483717173,0.0260169626865,0.730041684377,-0.409533641585
-1470148098540710161,-0.00943169929087,0.00960898958147,0.241672575474,-0.530687176798,0.0211736375133,0.72788391598,-0.433713963708
-1470148098613026177,-0.00938805285841,0.00959687866271,0.241428956389,-0.538421893661,0.0217403061387,0.727580630296,-0.424565248147
-1470148098684770291,-0.0093302866444,0.00962912198156,0.240793392062,-0.554935692001,0.0253698904843,0.728526894136,-0.400813311806
-1470148098757509130,-0.00935293920338,0.00964820757508,0.240095570683,-0.548248475088,0.0265485930012,0.730212553017,-0.406827247353
-1470148098839668302,-0.0093590086326,0.00965780671686,0.239782854915,-0.54833234039,0.0254046231653,0.729475505559,-0.408107505926
-1470148098912418944,-0.0093731386587,0.00965926982462,0.239517614245,-0.530643652847,0.022295364954,0.728955217918,-0.431908000233
-1470148098984997888,-0.00932646449655,0.00962480064481,0.239268139005,-0.538463119094,0.0228467160545,0.728583061185,-0.42273185342
-1470148099059622563,-0.00930137000978,0.00963657815009,0.238562479615,-0.542075676512,0.024809990433,0.729413680643,-0.416526239029
-1470148099132829169,-0.00931265112013,0.00963065680116,0.237952724099,-0.554330066217,0.0263354539909,0.729268843154,-0.400239398305
-1470148099207131305,-0.00936700776219,0.00964900478721,0.237680017948,-0.531398138063,0.0223197109473,0.728698113838,-0.431412689029
-1470148099287412311,-0.00933946669102,0.00965614896268,0.237431704998,-0.529477900622,0.0220103189434,0.728732856816,-0.433724707632
-1470148099361116017,-0.00921192020178,0.00970588531345,0.236908346415,-0.539657040914,0.0259952514815,0.730760449399,-0.417233376766
-1470148099433700318,-0.00919115636498,0.00971012655646,0.23648327589,-0.547798020172,0.0277700448224,0.731102663544,-0.405752448009
-1470148099509655085,-0.00927132181823,0.00969003234059,0.235863849521,-0.546844339262,0.0260810085732,0.730049067496,-0.409034727936
-1470148099584841880,-0.00930955819786,0.00966095272452,0.235528603196,-0.541320820246,0.0228539241314,0.728273927137,-0.419602853627
-1470148099657202179,-0.00921702943742,0.00965324416757,0.23517459631,-0.561964740509,0.0252022727201,0.727787366691,-0.392283092626
-1470148099730472679,-0.00918559823185,0.00967764295638,0.234784662724,-0.548231820817,0.0255882231025,0.729434742007,-0.408303894955
-1470148099805006396,-0.00919005926698,0.00969751738012,0.234367445111,-0.551345974685,0.0257450692845,0.729250287419,-0.404411703473
-1470148099877218847,-0.00932383351028,0.00970440544188,0.233788207173,-0.517520078473,0.0217641387106,0.729656660778,-0.446430787497
-1470148099949498236,-0.00923915021122,0.0096782669425,0.233359828591,-0.54103123084,0.0237677012848,0.729006240141,-0.418652846003
-1470148100020348381,-0.00915641989559,0.00967854168266,0.233029410243,-0.551983885735,0.025844175667,0.729287310809,-0.403467330482
-1470148100094614551,-0.00910507515073,0.00967832095921,0.232665702701,-0.558473222547,0.026837708549,0.72923930595,-0.394458403074
-1470148100174085525,-0.0091602075845,0.00969114340842,0.232213109732,-0.537214450275,0.0248367033587,0.729921238641,-0.421898990237
-1470148100253777524,-0.00924490392208,0.00970294419676,0.231640607119,-0.525599051961,0.0228992168394,0.729744265793,-0.43668589282
-1470148100338252974,-0.00915952771902,0.00968490540981,0.231233507395,-0.546817223254,0.02489806656,0.72919109767,-0.41067183214
-1470148100412529831,-0.00910365581512,0.0096874050796,0.230939179659,-0.554491747086,0.025962551658,0.729105207865,-0.400337912506
-1470148100484214376,-0.00910747237504,0.00971542764455,0.230492070317,-0.530920499166,0.0248684772674,0.730645829364,-0.42855764424
-1470148100556849971,-0.00915762409568,0.0097135733813,0.230023995042,-0.523713914822,0.0234539433234,0.730332684325,-0.437935860795
-1470148100632435991,-0.00915184617043,0.00971103738993,0.229429453611,-0.540662922871,0.0241172357372,0.729315681253,-0.418569707279
-1470148100713124531,-0.00907642021775,0.0096896700561,0.22912183404,-0.553714911203,0.025903648174,0.729178023954,-0.401283201125
-1470148100789138175,-0.0090853665024,0.00973822269589,0.22877445817,-0.530764316083,0.0251246605866,0.73083704308,-0.428410094028
-1470148100860817833,-0.0091248434037,0.00972570851445,0.228109940886,-0.523935070634,0.0229729282055,0.729849633177,-0.438501766564
-1470148100932637710,-0.00913890637457,0.00972458627075,0.227592006326,-0.528543391795,0.0233412414569,0.729952033649,-0.432743686273
-1470148101008713344,-0.00903588347137,0.00968679413199,0.225844204426,-0.494277647037,0.0200785805092,0.729884536569,-0.471757375693
-1470148101082609422,-0.00905702635646,0.00959812197834,0.223587691784,-0.535913761997,0.0220357828683,0.727949849504,-0.427082990275
-1470148101155973394,-0.00901256129146,0.00961801130325,0.223098605871,-0.525218854809,0.0206262631814,0.727776029681,-0.440524417532
-1470148101231461486,-0.00902412459254,0.00963765382767,0.223639383912,-0.558465315286,0.0245232540266,0.727733362877,-0.397390556242
-1470148101304861060,-0.00898251123726,0.00964061450213,0.223416775465,-0.555977440711,0.0246710184302,0.728032964617,-0.400310415429
-1470148101377460485,-0.00899265054613,0.00967962201685,0.223078280687,-0.526418724591,0.0224756639806,0.729084776863,-0.436822113766
-1470148101450975540,-0.00903245341033,0.00969396997243,0.22267267108,-0.484249439861,0.0194974264261,0.730345736173,-0.481370373009
-1470148101527082289,-0.0089848600328,0.00968512892723,0.222330778837,-0.519601107424,0.0220294696393,0.729397102287,-0.444420137714
-1470148101601879567,-0.00900861062109,0.00962825119495,0.221875563264,-0.552155692383,0.0234000267336,0.727547014211,-0.406511835289
-1470148101675864846,-0.00896207988262,0.00960510596633,0.221689343452,-0.563462003816,0.024536034193,0.727217629743,-0.391232759714
-1470148101747425665,-0.00893730297685,0.00959667656571,0.221423655748,-0.55488327721,0.0243369514409,0.727858247396,-0.402162446239
-1470148101821486116,-0.00897033140063,0.00964657124132,0.221257328987,-0.531076340842,0.0223112876065,0.728561722992,-0.432039283437
-1470148101892483403,-0.00897374469787,0.00976366084069,0.220872014761,-0.502618667546,0.02156600821,0.730557586732,-0.461730435203
-1470148101964914205,-0.00895459670573,0.00979607924819,0.220526441932,-0.534824292629,0.023830570558,0.729459222711,-0.425774966764
-1470148102041502610,-0.00899570435286,0.00979926902801,0.220157384872,-0.543582738546,0.0232672901056,0.728384764253,-0.416451767639
-1470148102116833211,-0.00902073644102,0.00980694405735,0.220010340214,-0.531523426361,0.0209083169969,0.727681100127,-0.433042614564
-1470148102190857936,-0.00892146117985,0.00984894856811,0.219704836607,-0.559850541175,0.0234410010317,0.726815197638,-0.397187058573
-1470148102265860581,-0.00888979528099,0.00993362627923,0.219355165958,-0.544327275185,0.0245297282696,0.728916233341,-0.414472236335
-1470148102336037171,-0.00890866201371,0.0100094722584,0.21921557188,-0.525377981853,0.0235321238916,0.730060031529,-0.436390382219
-1470148102412632523,-0.00889306049794,0.0100313723087,0.219783678651,-0.556236564895,0.0251545835389,0.728348852824,-0.399344562239
-1470148102489392660,-0.00878617540002,0.0101303923875,0.220730036497,-0.536921281523,0.0235429505129,0.729366893849,-0.423302729834
-1470148102563265570,-0.00874619651586,0.0100385276601,0.220440968871,-0.532613190254,0.0226854392876,0.728837542403,-0.429656138319
-1470148102636000897,-0.00866068061441,0.00990893878043,0.22010435164,-0.529583726461,0.0230310285696,0.729718216377,-0.43188189714
-1470148102715905883,-0.00858394987881,0.0096860351041,0.21769683063,-0.506181368034,0.0185906054554,0.727763901977,-0.462379189652
-1470148102787809106,-0.00858076009899,0.00947807449847,0.216348841786,-0.524763596772,0.0203585577925,0.727664618675,-0.44126284611
-1470148102865119439,-0.0084956753999,0.0092700580135,0.216931268573,-0.532165224264,0.0225613275298,0.728777639889,-0.430318849439
-1470148102941534333,-0.00860659126192,0.00907084718347,0.216440081596,-0.513634416078,0.0194541697277,0.728011391998,-0.453652548787
-1470148103019792134,-0.00852183904499,0.00894263572991,0.216256424785,-0.535928485337,0.0218233017385,0.728117984859,-0.426788709118
-1470148103090957387,-0.00846377201378,0.008739749901,0.21601870656,-0.538655688557,0.0232572137375,0.728894370251,-0.421926709526
-1470148103163344761,-0.00853603985161,0.00845827255398,0.215579360723,-0.503895705477,0.0191608360707,0.728789534655,-0.463236218943
-1470148103237012295,-0.00851092580706,0.00822612363845,0.21564270556,-0.518816884327,0.0220634397082,0.729943917878,-0.444436859317
-1470148103314721202,-0.00850325450301,0.00803364161402,0.215789750218,-0.531406775331,0.0242109664604,0.73041345095,-0.42838867738
-1470148103390349936,-0.00860449392349,0.00794194079936,0.216495156288,-0.513428980185,0.021313394292,0.730092861811,-0.45044515167
-1470148103461036283,-0.00855327676982,0.00789506081492,0.216341614723,-0.520190444021,0.0221799095306,0.730159654436,-0.442466758747
-1470148103535436284,-0.00854321941733,0.00785074289888,0.216159746051,-0.512747392143,0.0218547779254,0.730621453846,-0.450338507916
-1470148103613221086,-0.0085274586454,0.00777042564005,0.215337082744,-0.478508230681,0.0194726150829,0.731481049296,-0.485372192192
-1470148103689085096,-0.00850706733763,0.00755921797827,0.212789446115,-0.514799806695,0.0202573069281,0.728992272502,-0.450711734012
-1470148103761447383,-0.00851133465767,0.00731945829466,0.213042914867,-0.540385438307,0.023320524043,0.728931510679,-0.419641017971
-1470148103834183141,-0.00851636659354,0.00727878836915,0.21278360486,-0.536326021816,0.023686593402,0.729753671631,-0.423382713814
-1470148103907335974,-0.0085320211947,0.0072591858916,0.212609380484,-0.534797753168,0.0237910552515,0.730002813224,-0.424877913738
-1470148103977789227,-0.00857484806329,0.00720524741337,0.212310895324,-0.537544308283,0.023911753322,0.729815336293,-0.42171544861
-1470148104061726298,-0.00866161473095,0.00703453132883,0.21204186976,-0.5113812416,0.0204773665309,0.72960750655,-0.453588789087
-1470148104136365660,-0.00864799972624,0.00697814533487,0.211941748857,-0.511230214448,0.0206515226194,0.729994022526,-0.453129020837
-1470148104208134382,-0.00864027161151,0.00695996498689,0.212280139327,-0.532552981395,0.0237974654924,0.730302120329,-0.427176562661
-1470148104280292684,-0.00869703944772,0.00702203763649,0.212497472763,-0.524942106245,0.0235033693489,0.730835232311,-0.435618227275
-1470148104355634106,-0.00862836930901,0.00714304111898,0.213229596615,-0.532741155411,0.0248554365714,0.731130929179,-0.425460495231
-1470148104433041627,-0.00863332580775,0.00717247230932,0.213191181421,-0.527557642899,0.0250904342028,0.731754111514,-0.430800793654
-1470148104508743657,-0.00871190056205,0.00711426744238,0.212521925569,-0.481860618525,0.0184704889034,0.730323567557,-0.483835376987
-1470148104579786297,-0.00860591139644,0.00705795036629,0.210254266858,-0.530933718571,0.0215191128331,0.728483894926,-0.43238585673
-1470148104654684872,-0.00875208340585,0.00712179578841,0.21098908782,-0.509771969684,0.0199498293194,0.729477179183,-0.455628783426
-1470148104729470848,-0.00878229364753,0.00712558301166,0.211028188467,-0.507175185749,0.019977659638,0.729784921051,-0.4580264109
-1470148104808060902,-0.00880453083664,0.0071335406974,0.211111560464,-0.506359367305,0.0196965833091,0.729579024253,-0.459267550692
-1470148104892221841,-0.00880776159465,0.00715993670747,0.21125087142,-0.502416070864,0.0191872577336,0.729391525328,-0.463894323805
-1470148104969531016,-0.00881657935679,0.0071830865927,0.211190968752,-0.497355810814,0.0193014904041,0.729903989996,-0.468513409952
-1470148105044616318,-0.00880743842572,0.00719449482858,0.211196452379,-0.508875506227,0.0200295335429,0.729469787348,-0.456638113055
-1470148105128505113,-0.00880987662822,0.00718526029959,0.211247608066,-0.506355389591,0.0195592694859,0.729285519433,-0.459743717253
-1470148105201844456,-0.00880973879248,0.007204240188,0.21121545136,-0.507368279478,0.0199810005093,0.729619441424,-0.458076040952
-1470148105282651498,-0.00880330894142,0.00720607256517,0.211219280958,-0.508474997897,0.0200892800038,0.729551048814,-0.456951709174
-1470148105358099007,-0.00879141315818,0.00722852256149,0.211143404245,-0.510171532453,0.0206244596814,0.729871920598,-0.454518006971
-1470148105436859949,-0.00876232236624,0.00728782033548,0.211124628782,-0.522721195242,0.0222426539794,0.730035822931,-0.439676601181
-1470148105514063295,-0.00876608677208,0.00731296371669,0.211140841246,-0.529036885745,0.0226230142428,0.729754994658,-0.432511064044
-1470148105599254774,-0.00875155162066,0.00736648775637,0.211123451591,-0.536031358508,0.0233581944487,0.729706566528,-0.423855050948
-1470148105672882898,-0.00884987972677,0.00744131486863,0.211132526398,-0.512300466593,0.0191101550194,0.728597494459,-0.454234218188
-1470148105744769837,-0.00882723275572,0.00748805049807,0.211130186915,-0.518864367245,0.0202193741828,0.728889614993,-0.446196004538
-1470148105815083103,-0.0088247153908,0.00752828549594,0.211157888174,-0.520152212324,0.0204107562662,0.728860371814,-0.44473321828
-1470148105888606385,-0.00879911426455,0.00760253891349,0.211173832417,-0.533472951152,0.022137663585,0.728980967774,-0.428372831612
-1470148105971525147,-0.00879040081054,0.00766237452626,0.211156219244,-0.540278128719,0.0226160545029,0.728712965233,-0.420196944311
-1470148106054988366,-0.00885023921728,0.00773251708597,0.21114833653,-0.524715623418,0.0198869049681,0.728196960807,-0.440462497635
-1470148106128199608,-0.00886047817767,0.00777577981353,0.211123347282,-0.522635354259,0.0193197602008,0.727922299749,-0.443405185888
-1470148106205743157,-0.00885025039315,0.00782639812678,0.211168929935,-0.533605746752,0.0203413961852,0.727744687759,-0.43039377792
-1470148106284385961,-0.00885059963912,0.00785179343075,0.21120493114,-0.538607925399,0.0207549893862,0.727565392683,-0.424404680091
-1470148106361589637,-0.00884252414107,0.00787806510925,0.211197435856,-0.550795675982,0.0216990056074,0.727110744445,-0.409222728827
-1470148106437223040,-0.00881608296186,0.00794355943799,0.211194843054,-0.55728543623,0.0228945412131,0.727372370206,-0.399797720866
-1470148106515860739,-0.00879774987698,0.00798347312957,0.211192578077,-0.562861072509,0.0240909411394,0.727697501832,-0.391233159939
-1470148106593302131,-0.00882276985794,0.00803623348475,0.211264252663,-0.563821840117,0.0236298696395,0.72740489909,-0.390421150358
-1470148106673602171,-0.0088575752452,0.00805066805333,0.21135802567,-0.56745756164,0.0240632372399,0.727340570058,-0.385212371945
-1470148106750570268,-0.00889665074646,0.00807709805667,0.2112801373,-0.55997272832,0.0215933116941,0.726516746588,-0.397665298153
-1470148106826666703,-0.00889508705586,0.00810400675982,0.211218267679,-0.548192097787,0.0203190865014,0.726588241593,-0.41369322671
-1470148106903654690,-0.00882933009416,0.00813298299909,0.211038917303,-0.535279941788,0.0200315086093,0.727425208644,-0.428866749017
-1470148106975718582,-0.00878449622542,0.00817217398435,0.210951119661,-0.528038660172,0.0207204266682,0.728572675465,-0.435806945617
-1470148107050857805,-0.00874067563564,0.00816394947469,0.210805743933,-0.526653783151,0.020742381272,0.728629595979,-0.437383651015
-1470148107126349060,-0.00867161806673,0.00801087915897,0.210347861052,-0.517987370866,0.0191370610087,0.727828549231,-0.448986034798
-1470148107203610172,-0.00861050002277,0.00789507944137,0.210007116199,-0.528427512991,0.0194989356016,0.727374658618,-0.437390284556
-1470148107276290966,-0.00856988132,0.00780610041693,0.20967450738,-0.528058636489,0.0190049713468,0.726973215268,-0.43852346776
-1470148107350208738,-0.00852641370147,0.00777030223981,0.209556847811,-0.528627339432,0.019109639544,0.727001575215,-0.437786097674
-1470148107424263413,-0.00840482395142,0.00772218592465,0.209430098534,-0.538362918664,0.0218402551455,0.728072655919,-0.4237907252
-1470148107497697426,-0.0084634097293,0.00750177074224,0.208070099354,-0.507617984658,0.0188061413558,0.728359650598,-0.459850551897
-1470148107570751059,-0.00826441030949,0.00748015381396,0.207337707281,-0.54296345826,0.0223406763578,0.72783083689,-0.418274849884
-1470148107643726048,-0.00824423134327,0.00747585250065,0.207270234823,-0.534389449754,0.022145518089,0.728572372059,-0.427924982552
-1470148107723535153,-0.00818206276745,0.00746286753565,0.206975415349,-0.545433652583,0.0226448138128,0.727871126911,-0.414961402599
-1470148107796079213,-0.00825051125139,0.0074595939368,0.206352114677,-0.49979839367,0.018404762083,0.728516703494,-0.468109221387
-1470148107873016215,-0.00829481799155,0.0074051944539,0.205891162157,-0.507166696937,0.0185757066854,0.728000787934,-0.46092487176
-1470148107949972896,-0.00821119826287,0.00738714402542,0.205627769232,-0.538477381512,0.0214860163016,0.727612130532,-0.424453823408
-1470148108025925285,-0.00817132927477,0.00743660423905,0.205013081431,-0.533877342191,0.0231309743315,0.729331381638,-0.42721853574
-1470148108102836099,-0.00818183552474,0.00743925524876,0.205517590046,-0.543000857408,0.0234548490963,0.728611174075,-0.416804145758
-1470148108177126986,-0.00823014602065,0.00750115700066,0.205854982138,-0.535417210044,0.0230654101014,0.729384460546,-0.425199608136
-1470148108260977922,-0.00819825101644,0.00748875970021,0.20554086566,-0.522815192445,0.0226034194579,0.729894262316,-0.439781452331
-1470148108344704402,-0.00816550198942,0.00750437984243,0.205286845565,-0.526919945548,0.0235790636995,0.730285509474,-0.43414568222
-1470148108418984379,-0.00820068176836,0.00749694183469,0.204914584756,-0.51888760899,0.0225655524596,0.730324179869,-0.443703772102
-1470148108493434233,-0.00818630494177,0.00744795612991,0.203354567289,-0.502141356625,0.0191509855886,0.728881982948,-0.464992852259
-1470148108566025058,-0.00814014393836,0.00740314414725,0.20241767168,-0.538675121864,0.0223722175227,0.728358959743,-0.422873293944
-1470148108643554391,-0.00812786258757,0.00740089546889,0.202273398638,-0.531957344776,0.0223495237869,0.728884903942,-0.430405249656
-1470148108715780920,-0.00812120642513,0.00740404101089,0.202099874616,-0.524738323436,0.0223035162817,0.729453480085,-0.438234943233
-1470148108790221127,-0.00814274419099,0.00738176098093,0.201675012708,-0.523437810806,0.0212041986316,0.728560489692,-0.44131944557
+1470584451561550889,0.189881742001,0.285048425198,1.41291868687,0.153719511269,-0.0232357723723,0.800595769128,-0.57868542853
+1470584451669094613,0.189881742001,0.285048425198,1.41291868687,0.153719511269,-0.0232357723723,0.800595769128,-0.57868542853
+1470584451744373731,0.189782574773,0.284923613071,1.41210186481,0.136530320647,-0.0201770556777,0.8003464302,-0.583436328689
+1470584451823016596,0.189881742001,0.285048425198,1.41291868687,0.153719511269,-0.0232357723723,0.800595769128,-0.57868542853
+1470584451897106714,0.190092682838,0.285483181477,1.4149132967,0.146385005996,-0.0209735340097,0.799071157133,-0.58276652849
+1470584451971332117,0.19018779695,0.285601824522,1.41569936275,0.163824833189,-0.0240628141301,0.799331346226,-0.577626006986
+1470584452043076422,0.190092682838,0.285483181477,1.4149132967,0.146385005996,-0.0209735340097,0.799071157133,-0.58276652849
+1470584452114389516,0.190092682838,0.285483181477,1.4149132967,0.146385005996,-0.0209735340097,0.799071157133,-0.58276652849
+1470584452187646845,0.190137758851,0.285465806723,1.41527831554,0.157334268153,-0.022784384949,0.798758474269,-0.58026864438
+1470584452261083261,0.189835831523,0.284918636084,1.41253185272,0.148368714128,-0.022168607847,0.799999296511,-0.580944406183
+1470584452339494722,0.19018779695,0.285601824522,1.41569936275,0.163824833189,-0.0240628141301,0.799331346226,-0.577626006986
+1470584452409738051,0.18973210454,0.284786939621,1.4116808176,0.13084862454,-0.0190996695271,0.799758476321,-0.585576826413
+1470584452487437204,0.19018779695,0.285601824522,1.41569936275,0.163824833189,-0.0240628141301,0.799331346226,-0.577626006986
+1470584452560592996,0.189835831523,0.284918636084,1.41253185272,0.148368714128,-0.022168607847,0.799999296511,-0.580944406183
+1470584452631559963,0.189835831523,0.284918636084,1.41253185272,0.148368714128,-0.022168607847,0.799999296511,-0.580944406183
+1470584452703726448,0.189782574773,0.284923613071,1.41210186481,0.136530320647,-0.0201770556777,0.8003464302,-0.583436328689
+1470584452775471440,0.190144732594,0.285476714373,1.415335536,0.158568261804,-0.0229992402716,0.798721155621,-0.579975565743
+1470584452846591038,0.190044999123,0.285351097584,1.41451489925,0.140775641517,-0.019898922484,0.798469822286,-0.585006149146
+1470584452917451700,0.190144732594,0.285476714373,1.415335536,0.158568261804,-0.0229992402716,0.798721155621,-0.579975565743
+1470584452989194817,0.190144732594,0.285476714373,1.415335536,0.158568261804,-0.0229992402716,0.798721155621,-0.579975565743
+1470584453071609248,0.190144732594,0.285476714373,1.415335536,0.158568261804,-0.0229992402716,0.798721155621,-0.579975565743
+1470584453147683381,0.190144732594,0.285476714373,1.415335536,0.158568261804,-0.0229992402716,0.798721155621,-0.579975565743
+1470584453220587286,0.190144732594,0.285476714373,1.415335536,0.158568261804,-0.0229992402716,0.798721155621,-0.579975565743
+1470584453299243049,0.189835831523,0.284918636084,1.41253185272,0.148368714128,-0.022168607847,0.799999296511,-0.580944406183
+1470584453376179527,0.19018779695,0.285601824522,1.41569936275,0.163824833189,-0.0240628141301,0.799331346226,-0.577626006986
+1470584453459474721,0.190144732594,0.285476714373,1.415335536,0.158568261804,-0.0229992402716,0.798721155621,-0.579975565743
+1470584453532587577,0.190601214767,0.285168796778,1.41344547272,0.0233400183764,-0.00896783857753,0.799055811149,-0.600736741079
+1470584453640109699,0.194017827511,0.26833152771,1.42414283752,0.20290763926,-0.028536348253,0.798828423657,-0.565585816933
+1470584453774229279,0.195851013064,0.244434475899,1.41636168957,0.0864912346093,-0.0124983896994,0.79969055709,-0.594018576723
+1470584453936981942,0.18582598865,0.0420602783561,1.24397718906,0.139173387538,-0.0170508144984,0.797218072025,-0.587182581114
+1470584454073143709,0.18259857595,0.0141977025196,1.21573770046,0.129782016783,-0.0188070649136,0.80272733596,-0.581748868956
+1470584454179572253,0.180420964956,-0.0282347872853,1.18472898006,0.060283499347,-0.00875848800185,0.820378616752,-0.568566718839
+1470584454306886157,0.17824113369,-0.0839482918382,1.14335358143,0.089408654531,-0.011231863688,0.780046469943,-0.619199032995
+1470584454490883561,0.175814419985,-0.110883288085,1.11353349686,-0.0207168210479,0.000317165241074,0.79168552613,-0.61057738285
+1470584454719137533,0.175543025136,-0.139354586601,1.10113310814,0.151106733472,-0.0264255386964,0.821624171673,-0.54900106241
+1470584454937691849,0.173585101962,-0.171928420663,1.07398998737,0.163835974658,-0.0256799287459,0.795650788862,-0.582613196599
+1470584455092771533,0.170633077621,-0.193342283368,1.05153894424,0.18588291389,-0.0317610050774,0.802920413646,-0.565471122367
+1470584455188659207,0.168470963836,-0.209612712264,1.01362454891,0.071436957215,-0.0130352263266,0.791567237032,-0.606752134958
+1470584455392961226,0.156718537211,-0.186034291983,0.973992228508,0.15495311556,-0.0284879020852,0.806710358188,-0.569558047441
+1470584455462492809,0.158805191517,-0.154320567846,0.964336931705,0.204399381173,-0.0349114994369,0.802618433509,-0.559290381085
+1470584455619781873,0.160427227616,-0.139019280672,0.937291562557,0.141424870376,-0.023221793628,0.798623277355,-0.584517420789
+1470584455727756892,0.153668537736,-0.104120232165,0.913650393486,0.203758697215,-0.0302190726709,0.784304348791,-0.58518021961
+1470584455847055074,0.153106212616,-0.0865158066154,0.902187049389,0.342380591453,-0.0607066921805,0.795132254439,-0.496844971869
+1470584455969391231,0.150522053242,-0.0657042860985,0.887289702892,0.140732062695,-0.0224686488585,0.800300023631,-0.582416962772
+1470584456112912757,0.146684840322,-0.0358872935176,0.862281024456,0.117162807531,-0.0176838579204,0.796924704232,-0.592343796696
+1470584456247695661,0.14476506412,-0.00622130651027,0.846837162971,0.235983914433,-0.0336707014463,0.788830655443,-0.566501609023
+1470584456421490195,0.141410574317,0.0273339375854,0.82148963213,0.121337107599,-0.0158823985824,0.796830513181,-0.591680816825
+1470584456544070970,0.139318853617,0.0606570653617,0.79686665535,0.172060873794,-0.0244555419802,0.78230664384,-0.598158254293
+1470584456699447325,0.136622205377,0.0736171528697,0.78076595068,0.226322043692,-0.0280526805876,0.781432846603,-0.580821905493
+1470584456881368128,0.133589208126,0.0869556516409,0.757238268852,0.0605300313341,-0.00685112435944,0.782196335308,-0.620046829225
+1470584457073526245,0.131668359041,0.098197221756,0.740563094616,0.143969552382,-0.0161795929036,0.777531434625,-0.611927983451
+1470584457265320679,0.128461658955,0.109513781965,0.717373907566,0.193018190061,-0.0218081510262,0.774051327754,-0.602588520349
+1470584457395106804,0.12393976748,0.118613421917,0.681459605694,0.13384648297,-0.0146078018361,0.768083554943,-0.626034650597
+1470584457526881412,0.122512921691,0.118477500975,0.65793889761,0.15042784985,-0.0171869508231,0.770423342364,-0.619293100439
+1470584457657997246,0.119297765195,0.112320385873,0.629941880703,0.11613375439,-0.0141392423572,0.770243620151,-0.626927267339
+1470584457755265168,0.119000941515,0.109745137393,0.618669033051,0.161391027522,-0.0176228949766,0.769908836765,-0.617156992085
+1470584457924814091,0.116718612611,0.105082154274,0.601059436798,0.163435119569,-0.018049663534,0.769416844995,-0.617220292907
+1470584458055524640,0.11407469213,0.0962174236774,0.57892781496,0.131692364629,-0.0159689427559,0.768760441726,-0.625627282975
+1470584458220544054,0.113179005682,0.0908358618617,0.564237773418,0.128174552387,-0.0149374958596,0.768537115208,-0.626656890081
+1470584458338920016,0.11082149297,0.0816999599338,0.543475151062,0.174193910478,-0.0193249682707,0.768313473776,-0.615611430343
+1470584458436282856,0.108588457108,0.0714300498366,0.51754796505,0.127081657825,-0.0150481521987,0.769738661778,-0.625400829808
+1470584458593183729,0.106989055872,0.0632268637419,0.498131096363,0.149911106324,-0.0170451490414,0.766472474559,-0.624304468058
+1470584458693244414,0.105292625725,0.0555674619973,0.478507399559,0.170546570197,-0.0196484032916,0.767606814802,-0.617501081384
+1470584458817721201,0.103792093694,0.0488439872861,0.460124015808,0.158870956808,-0.0187215031187,0.766718010924,-0.621733878865
+1470584459054710613,0.102504014969,0.0436854176223,0.445566356182,0.196560521638,-0.0227219372982,0.765853971759,-0.611813181322
+1470584459147699389,0.100784212351,0.0374990701675,0.426200211048,0.198606182591,-0.0225738747419,0.764422778321,-0.612946833257
+1470584459312714062,0.0995110943913,0.0332622267306,0.411841273308,0.205760252697,-0.0230161241739,0.762698362652,-0.612718682631
+1470584459388065770,0.0970145389438,0.0279518254101,0.386694341898,0.198090242369,-0.0218142300486,0.762959224698,-0.61496147578
+1470584459492635101,0.0954724252224,0.0249627958983,0.368170201778,0.201004353051,-0.0223901065319,0.761716581014,-0.615535363234
+1470584459649439317,0.0965076461434,0.0242241285741,0.358891010284,0.22346233972,-0.0241354329141,0.762779878649,-0.60634059763
+1470584459770047170,0.0914243906736,0.0216907914728,0.338134467602,0.183994435034,-0.0202389579641,0.762684067956,-0.619717229826
+1470584459918594383,0.0914773419499,0.0209674052894,0.330169290304,0.199137115448,-0.0220715157453,0.76071514862,-0.617389439579
+1470584460071624069,0.0914199054241,0.0220335181803,0.325491070747,0.197099978414,-0.0209686324745,0.759225704842,-0.619909867698
+1470584460203908154,0.0908318683505,0.021436650306,0.322356045246,0.201857550748,-0.0217578587575,0.758912338407,-0.618734343157
+1470584460279062468,0.0911214575171,0.0225343853235,0.322884202003,0.216469257042,-0.0225088118613,0.757675183348,-0.615274516523
+1470584460413042123,0.0912004709244,0.0226776301861,0.322954058647,0.216803415483,-0.022560126341,0.75767525459,-0.615154881568
+1470584460530867576,0.0911627188325,0.0230953227729,0.322799474001,0.223043403173,-0.0230429808092,0.756706046052,-0.614098217881
+1470584460665078360,0.0911262109876,0.0242181830108,0.322732418776,0.213756694613,-0.0221479137555,0.757222741872,-0.616791102899
+1470584460821044539,0.091173671186,0.024615386501,0.323056161404,0.231918231283,-0.0234431559802,0.755988256026,-0.611674839426
+1470584460957001789,0.0911148190498,0.0254262890667,0.322939246893,0.235512366372,-0.0237387177555,0.755612820832,-0.610753357387
+1470584461043493030,0.0910561606288,0.0259001031518,0.322732448578,0.227702376737,-0.0230478040275,0.75586936676,-0.613418231512
+1470584461175610426,0.0910492762923,0.0267280284315,0.322703659534,0.221038615201,-0.0222449402133,0.754527557806,-0.617523487599
+1470584461311438948,0.0909915715456,0.0274321138859,0.322625219822,0.223639807268,-0.0223780972993,0.753855963553,-0.617402335258
+1470584461449548129,0.0909528583288,0.0280542001128,0.322488695383,0.215435796031,-0.0212117717634,0.753901840569,-0.620297906907
+1470584461625313593,0.0909502953291,0.0284983552992,0.322495877743,0.227051149188,-0.0221040529313,0.752705497829,-0.617570740916
+1470584461716960689,0.090966142714,0.0289656594396,0.32259953022,0.231049597354,-0.0222523539932,0.752237465533,-0.616652018364
+1470584461871978151,0.0909292772412,0.0291803516448,0.322407126427,0.216336460101,-0.0210564635751,0.75123476631,-0.623218651245
+1470584461963905392,0.0909589082003,0.0294268466532,0.322478920221,0.204208399808,-0.019877978966,0.750742827058,-0.627924360907
+1470584462150001457,0.0909715220332,0.0294956080616,0.322609335184,0.220404431983,-0.0210966733736,0.750965743925,-0.622115156692
+1470584462224448590,0.0909286811948,0.0295924562961,0.322543412447,0.229259489277,-0.021759535839,0.751064035381,-0.618764433313
+1470584462339727591,0.0909551158547,0.0295566823334,0.322602063417,0.232789646367,-0.0218739049687,0.750041115422,-0.618683148309
+1470584462488036734,0.0910291969776,0.0294538158923,0.322792381048,0.236450337824,-0.0217030848269,0.748179882394,-0.619553934241
+1470584462619417853,0.090949177742,0.0292867571115,0.322353243828,0.217524143232,-0.0203965145458,0.748522212116,-0.62608444101
+1470584462776779982,0.0909527540207,0.029154619202,0.322407364845,0.233578654176,-0.0214448289768,0.748491984941,-0.620274842391
+1470584462849109130,0.0910041704774,0.0288712456822,0.322498589754,0.248786898738,-0.022080803331,0.747120820521,-0.615977269616
+1470584462992031228,0.0909925922751,0.0286243390292,0.322345435619,0.23810712718,-0.0210440464437,0.746459125111,-0.621016037341
+1470584463123241504,0.0909741297364,0.0283333137631,0.322269767523,0.245112902082,-0.021694437222,0.747115755759,-0.61746826973
+1470584463264749554,0.0910604596138,0.0280346106738,0.322629421949,0.277869004325,-0.023317457033,0.744407130728,-0.606715037191
+1470584463396745911,0.0910579413176,0.0277030430734,0.322562754154,0.267246574798,-0.022446920214,0.745379822718,-0.610314938304
+1470584463549055715,0.0910597071052,0.0273015983403,0.322444528341,0.26899989492,-0.0228099907325,0.744849962958,-0.610178083462
+1470584463637193588,0.091048642993,0.0269856080413,0.322337448597,0.25755868037,-0.0220932630925,0.745335178332,-0.614533063254
+1470584463816947693,0.0910673141479,0.0266318880022,0.322316110134,0.266512925735,-0.0223532219939,0.744039528048,-0.612271487646
+1470584463982211256,0.0910932272673,0.0263407249004,0.322479009628,0.282968616413,-0.0236587658658,0.745580219632,-0.602892329539
+1470584464135332057,0.091109752655,0.0259622745216,0.322505176067,0.29088498103,-0.0238606356285,0.742975749693,-0.602331829847
+1470584464276318744,0.0911668762565,0.0255300849676,0.322613894939,0.294006918869,-0.0240130024748,0.743204899227,-0.600524591615
+1470584464397726510,0.0911167636514,0.025229183957,0.322387963533,0.277234545878,-0.0232029819603,0.744734544947,-0.606607851715
+1470584464551760248,0.0911211892962,0.0248386468738,0.322422683239,0.281813135741,-0.0230293907159,0.743809222085,-0.60563920351
+1470584464682068206,0.0911237150431,0.0244869850576,0.322437316179,0.301900598363,-0.0242555785637,0.742548666865,-0.597402019542
+1470584464824918045,0.0911385565996,0.0241938959807,0.322393774986,0.281250957504,-0.0225620369441,0.741426712747,-0.608831079214
+1470584464924641548,0.0911411494017,0.0238869804889,0.322348356247,0.280751475979,-0.0230137952393,0.742585557039,-0.607631191136
+1470584465142479451,0.0911341607571,0.0235776267946,0.32232311368,0.288971352474,-0.0228094495922,0.742102131476,-0.604367200398
+1470584465286882130,0.0911165103316,0.0232578199357,0.32222700119,0.277686043681,-0.0226515925718,0.742581509237,-0.60905670396
+1470584465415427447,0.0910754129291,0.022956687957,0.322010815144,0.252700985681,-0.0208626941434,0.743048592519,-0.619342997849
+1470584465631334568,0.0910580307245,0.0227240361273,0.321974605322,0.278064231938,-0.0221505958517,0.741648713502,-0.610038375663
+1470584465759816227,0.0910983234644,0.0226782225072,0.322135716677,0.273935754211,-0.0220605814057,0.742406839892,-0.610986593466
+1470584465928237932,0.0911560431123,0.0224452316761,0.322362244129,0.294514915134,-0.0231715558351,0.741624291752,-0.60226028729
+1470584466039022595,0.0911409780383,0.0222823433578,0.322221964598,0.282449359592,-0.0222741801622,0.74107045884,-0.608720621631
+1470584466194246041,0.0911703705788,0.0222603883594,0.322326540947,0.294871695156,-0.0230418274344,0.740977921982,-0.602885956645
+1470584466288863401,0.0911181867123,0.022193428129,0.322098165751,0.281676687178,-0.0217139329206,0.740427442771,-0.609880275964
+1470584466434943846,0.0910760685802,0.0222382918,0.32207006216,0.295371354744,-0.0229370897459,0.740286953909,-0.603493892748
+1470584466611330004,0.091186709702,0.0222660433501,0.322384119034,0.312836286867,-0.0236086149316,0.739517057941,-0.595559075101
+1470584466734574750,0.0911086499691,0.0223493892699,0.32209649682,0.283725887422,-0.0224356829108,0.741764938338,-0.607273445156
+1470584466843322073,0.0911294668913,0.0223472509533,0.322177737951,0.313048688142,-0.0234395342199,0.739261950633,-0.595770824592
+1470584466973828115,0.0911209955812,0.0224305521697,0.322186797857,0.296679218619,-0.0226710430658,0.739785081958,-0.603477835184
+1470584467067402079,0.0911671370268,0.0224828608334,0.322413891554,0.327457464892,-0.0239499487564,0.738109898308,-0.589399513625
+1470584467175730932,0.0910912305117,0.0225244238973,0.32203027606,0.283991044928,-0.0219274207657,0.740294407551,-0.608960150394
+1470584467366675884,0.0910973250866,0.0225576758385,0.322065800428,0.291463390443,-0.0222330318076,0.740076368715,-0.605674626179
+1470584467448245347,0.0910830944777,0.0225263219327,0.322048008442,0.298067613492,-0.0225880614533,0.73989065546,-0.60266681942
+1470584467611557270,0.0910986587405,0.0224674120545,0.322075128555,0.290956663531,-0.022285057059,0.740002833553,-0.606006107652
+1470584467792937481,0.0911531299353,0.0224278550595,0.322327196598,0.300570652485,-0.0226261978375,0.739261406456,-0.602194246869
+1470584467959501680,0.0911760851741,0.0223843138665,0.322372436523,0.324196296283,-0.023403598797,0.737499243662,-0.591983022255
+1470584468126385273,0.091198220849,0.0223293136805,0.322450637817,0.32380862596,-0.0233441739448,0.737538020551,-0.592149213914
+1470584468247715765,0.0911909267306,0.0222630463541,0.322382569313,0.319508523989,-0.0226859115997,0.736255441767,-0.596093597501
+1470584468345787026,0.0912365987897,0.022257052362,0.32256218791,0.350450657501,-0.0238400885905,0.734850795589,-0.580181260518
+1470584468436617388,0.0911983475089,0.0222579780966,0.322449713945,0.337319898658,-0.023874773239,0.73684846577,-0.585405517282
+1470584468521302001,0.0911547914147,0.0222315695137,0.322268903255,0.32181739561,-0.0226980077849,0.736095796632,-0.59504734476
+1470584468642773431,0.0912066176534,0.0222250912338,0.322430729866,0.342779695678,-0.0236910055952,0.73487839839,-0.584717501076
+1470584468778848185,0.0912007018924,0.0221989583224,0.32237893343,0.321688965274,-0.0225215112462,0.735575723684,-0.5957661839
+1470584468906100056,0.0911590978503,0.0220663305372,0.322163879871,0.340618502943,-0.0229444514991,0.734526091621,-0.586450346002
+1470584469057185345,0.0911528617144,0.0216747652739,0.322271257639,0.335433351079,-0.0233745813953,0.735439505659,-0.588274450783
+1470584469156855090,0.0911341309547,0.0214246697724,0.322102576494,0.337285858151,-0.0229547481335,0.73428523075,-0.588673533745
+1470584469288016166,0.0911837145686,0.0210837051272,0.322342514992,0.345106271964,-0.0238052575888,0.735996889099,-0.581930880774
+1470584469376961504,0.0911663100123,0.0207925625145,0.322109758854,0.327156101868,-0.0224261259783,0.734317196456,-0.594343510836
+1470584469528835599,0.0911956429482,0.0205523520708,0.322302043438,0.340142582533,-0.0234043852549,0.735428388014,-0.58557693295
+1470584469648427581,0.0911547467113,0.0202679894865,0.322191655636,0.349286985662,-0.0239941023497,0.734971335599,-0.580723704137
+1470584469818109510,0.0911845490336,0.0198458973318,0.322374075651,0.342276665433,-0.023696495255,0.735948533915,-0.583665071629
+1470584469991706326,0.091216892004,0.0195310264826,0.322433024645,0.358901227412,-0.024848718822,0.735703156208,-0.573858271772
+1470584470121761235,0.0912114903331,0.0190870128572,0.322466880083,0.366430779397,-0.024749033801,0.734480606507,-0.57066120238
+1470584470225652730,0.0912581756711,0.0187414586544,0.322467833757,0.37367830093,-0.0248509711819,0.733260120423,-0.567517887333
+1470584470420583919,0.0912022441626,0.0184937436134,0.322277992964,0.330865321324,-0.0231222566071,0.735730975279,-0.590502694668
+1470584470497697698,0.0911743342876,0.018263829872,0.32225009799,0.338231175525,-0.0237239743166,0.735571474518,-0.586490793467
+1470584470671473316,0.0911719948053,0.0180053897202,0.322159349918,0.345466758913,-0.0240505860863,0.73582675047,-0.581922057571
+1470584470800244130,0.0912775248289,0.0180548112839,0.322271198034,0.353475537035,-0.0236817456471,0.733919411995,-0.579531290214
+1470584470937314048,0.0912161767483,0.0181169491261,0.321727275848,0.331610296219,-0.0233216845078,0.736301081904,-0.589365274902
+1470584471016205174,0.0910314619541,0.0180010925978,0.320646107197,0.31254104972,-0.0227793486286,0.737460758801,-0.598289915296
+1470584471162570568,0.0910832956433,0.0179308634251,0.320462793112,0.324837634469,-0.0228857724074,0.736535384376,-0.592851060737
+1470584471272698110,0.0910110324621,0.0178725123405,0.319792568684,0.343228261914,-0.0240869524418,0.736062320647,-0.582946343216
+1470584471427678715,0.090891905129,0.0178469456732,0.31891387701,0.313195163217,-0.0226747590052,0.736482050865,-0.599156768964
+1470584471529961638,0.0908143892884,0.0178647395223,0.318257153034,0.33900005849,-0.0239779569538,0.735877972456,-0.585651455713
+1470584471687105732,0.0907530039549,0.017770042643,0.317520916462,0.347603159403,-0.0239425708289,0.734500375723,-0.582329799116
+1470584471878112672,0.0907814651728,0.0177702009678,0.317278981209,0.343676776899,-0.0239856296689,0.735027743974,-0.583990734668
+1470584472058580501,0.0906199887395,0.0177583452314,0.316238194704,0.318370996384,-0.0228406669327,0.736351079848,-0.596577991382
+1470584472191446637,0.0905173569918,0.0177388302982,0.315447300673,0.317567155623,-0.0225973114553,0.736040700296,-0.597398150894
+1470584472322095312,0.0905159562826,0.0178432688117,0.315080851316,0.340676068389,-0.0245583604934,0.736727833074,-0.583582730494
+1470584472461264636,0.090449437499,0.0179973430932,0.314492195845,0.356912346545,-0.0244409745392,0.734691893893,-0.576406138669
+1470584472575190175,0.0903909057379,0.018124025315,0.313833624125,0.318574666714,-0.0234483079714,0.737010896888,-0.595630167511
+1470584472691743919,0.0902445018291,0.0181494727731,0.313208013773,0.334598160775,-0.0234676416521,0.735750574539,-0.588357402152
+1470584472834076514,0.0902494266629,0.0182207394391,0.312770783901,0.329275489449,-0.0237084283606,0.736283904451,-0.590678909831
+1470584472960058071,0.0901326239109,0.0183957330883,0.312045186758,0.313292642239,-0.0228032956515,0.737274940665,-0.598124896568
+1470584473167831392,0.0901276171207,0.0184818375856,0.311652630568,0.325934808247,-0.0234104987579,0.737397225476,-0.591154616984
+1470584473285097490,0.090098798275,0.0185295268893,0.311355531216,0.350155821856,-0.0246330072789,0.736783125871,-0.577870868624
+1470584473473265652,0.0899705886841,0.0187120828778,0.310321480036,0.333908445693,-0.0234493198153,0.736348075423,-0.588002373393
+1470584473593100584,0.0899351090193,0.018872378394,0.309735625982,0.310820981476,-0.0224167424341,0.737434594293,-0.599231196012
+1470584473703701645,0.0899364575744,0.0190091524273,0.309279978275,0.342690563492,-0.0233973195447,0.734818950873,-0.584856266589
+1470584473835943893,0.0898038893938,0.0190803203732,0.308613747358,0.342497258461,-0.0235471265065,0.735340387388,-0.58430786017
+1470584473969796820,0.0898146852851,0.0192437320948,0.308167725801,0.339921752287,-0.0233587838059,0.735302270181,-0.585865292544
+1470584474101024276,0.0896835699677,0.0193497128785,0.307160437107,0.320915163875,-0.022760349107,0.73647454668,-0.595063581642
+1470584474198665384,0.0896260291338,0.0194116793573,0.306608140469,0.329903922282,-0.0230246447036,0.735716104692,-0.591062671039
+1470584474353214778,0.0895845144987,0.0194751881063,0.30614772439,0.324142932115,-0.0230130979589,0.736768347637,-0.592936892765
+1470584474496855565,0.0894840806723,0.01964741759,0.305307239294,0.323302469883,-0.022814463127,0.736199694347,-0.594108595531
+1470584474639988336,0.0894009768963,0.0197112131864,0.304657042027,0.328983896784,-0.0233605299056,0.736819972184,-0.590186589046
+1470584474748402978,0.0893227681518,0.0197753030807,0.303737819195,0.293802164238,-0.0217406550365,0.738025987921,-0.607062824888
+1470584474952098672,0.0892834663391,0.0198314394802,0.303322404623,0.350073573201,-0.0241885620088,0.735202996251,-0.579948240034
+1470584475110302694,0.0892039388418,0.0199155025184,0.302639335394,0.326132702286,-0.0231752569211,0.736160323698,-0.592594588043
+1470584475277105621,0.0892011299729,0.0199716966599,0.302369952202,0.368189645372,-0.0249973646461,0.734223926269,-0.569847999817
+1470584475397049697,0.0890971198678,0.0199109259993,0.301815569401,0.349350463997,-0.0246146511137,0.736334133514,-0.578930406938
+1470584475528763120,0.0890830308199,0.0201876219362,0.301388204098,0.347010562529,-0.0243136434901,0.735514829887,-0.581386662429
+1470584475672980111,0.0890325903893,0.0205848626792,0.301080107689,0.367593064572,-0.0255336944958,0.73612534532,-0.567752450723
+1470584475861930992,0.088980294764,0.0207768213004,0.300695955753,0.372245348104,-0.0254676642003,0.735337572448,-0.565741507618
+1470584475974815325,0.0888277739286,0.0211200844496,0.299539715052,0.33551828678,-0.0235822511729,0.736443247782,-0.586960560398
+1470584476076066642,0.0887478888035,0.0213169697672,0.298835992813,0.346560098779,-0.0243916844972,0.737112975574,-0.579625400497
+1470584476200353294,0.0887369513512,0.0213644392788,0.298389226198,0.336059553496,-0.0236679342407,0.736199333775,-0.586953444783
+1470584476346127086,0.088634505868,0.0214692912996,0.297744899988,0.319502410036,-0.0227115065896,0.736889059166,-0.595312448998
+1470584476462937673,0.08857627213,0.0215638559312,0.297239840031,0.31653842907,-0.0224657128173,0.736329642382,-0.597592982237
+1470584476572194715,0.0885622724891,0.0212159566581,0.296888530254,0.321697228705,-0.0230967928978,0.737772125116,-0.593017472426
+1470584476739475795,0.0886559188366,0.0207306090742,0.29707801342,0.340145056371,-0.0235128058987,0.735079910563,-0.586008544027
+1470584476847048745,0.0886695981026,0.0203959215432,0.296993136406,0.35909842218,-0.024493564115,0.73398627778,-0.575944904079
+1470584476967309561,0.0887025147676,0.0201177895069,0.297185778618,0.374721766221,-0.0254603650119,0.735162324246,-0.56433299101
+1470584477115087502,0.0886694714427,0.0197534412146,0.296917378902,0.349858368926,-0.0240900681943,0.735427419,-0.579797638569
+1470584477242390294,0.0886332392693,0.019506175071,0.296738654375,0.3296018253,-0.0234427969992,0.736912830583,-0.589722436533
+1470584477413025498,0.0886696204543,0.0191703848541,0.296851336956,0.350338282438,-0.0241278416097,0.735348172357,-0.579606763702
+1470584477518946639,0.0886802747846,0.0189380608499,0.296961605549,0.36869447448,-0.025621841135,0.7359095493,-0.56731388225
+1470584477616040675,0.0886885076761,0.018759958446,0.29696303606,0.360115924077,-0.024418211677,0.735190366341,-0.573772949348
+1470584477784314278,0.0886760652065,0.0186126027256,0.296764671803,0.337758325474,-0.0235555206007,0.736071348499,-0.586142833224
+1470584477918114183,0.0886427536607,0.0182635840029,0.296633601189,0.340797924856,-0.0237317606496,0.735728674308,-0.584805006605
+1470584478047900207,0.0885635390878,0.0181150678545,0.296519845724,0.334534166173,-0.0233173965367,0.73503151622,-0.589297769251
+1470584478195632423,0.0886108651757,0.0182520709932,0.296645313501,0.3387707845,-0.0235003807061,0.735374417041,-0.586435464853
+1470584478285460708,0.0885390788317,0.0181354954839,0.296052008867,0.33179865826,-0.0232502916855,0.735228580104,-0.590599703108
+1470584478430980140,0.0884530618787,0.017969282344,0.295322597027,0.350024770385,-0.0241715461041,0.7355322809,-0.579560747661
+1470584478560954943,0.0883556231856,0.0179070848972,0.294794112444,0.356176998755,-0.0242458844748,0.735227084624,-0.576186789748
+1470584478655991191,0.0883288010955,0.0179133415222,0.294214516878,0.336860692227,-0.023379935462,0.735975396027,-0.586786561787
+1470584478827756319,0.0882824808359,0.0179098267108,0.293638467789,0.346070418408,-0.0237307894588,0.735698589207,-0.581738515979
+1470584478946017566,0.0881853252649,0.0178664010018,0.292884349823,0.348734667793,-0.0236523878574,0.734836513628,-0.581240048746
+1470584479045329540,0.0881121009588,0.0178616400808,0.292302101851,0.354625960891,-0.0238445668354,0.734803311383,-0.577698847217
+1470584479214568470,0.08806450665,0.0178115684539,0.291302889585,0.364025950646,-0.0249826892965,0.735354475093,-0.571064592189
+1470584479330051051,0.0880853533745,0.0176135338843,0.290522992611,0.360704023401,-0.0250548616433,0.73608081553,-0.572232377989
+1470584479462904277,0.0880824699998,0.0172349475324,0.28934392333,0.331875921273,-0.0235991045709,0.736908992765,-0.588444212756
+1470584479641640201,0.0881787315011,0.0172167234123,0.28871807456,0.351793527257,-0.0245603004684,0.73616335094,-0.577669132423
+1470584479802684538,0.0882501900196,0.0171882268041,0.288289815187,0.358959413887,-0.0249389983052,0.735868089707,-0.573606433103
+1470584479908135034,0.0881459861994,0.0169756710529,0.286583691835,0.349364529537,-0.0251899013617,0.737024628608,-0.578017812178
+1470584480147494480,0.0881573334336,0.0168882757425,0.286211550236,0.393632833111,-0.0266392287321,0.734139789566,-0.552614072898
+1470584480303724360,0.0879095643759,0.0169490426779,0.284669548273,0.340439894234,-0.0248880303399,0.737453045876,-0.582790073258
+1470584480490158179,0.0878942534328,0.0169262476265,0.284022510052,0.374602654734,-0.0259287341781,0.73560511394,-0.563813504765
+1470584480613121645,0.0877713561058,0.0168696772307,0.28321069479,0.359525685398,-0.0252686447869,0.735684781397,-0.573472474973
+1470584480904769785,0.0876936540008,0.0168624147773,0.282663822174,0.372786063193,-0.0259204140184,0.735390977115,-0.565295315746
+1470584480977244493,0.087606087327,0.0168743990362,0.281778365374,0.361366738081,-0.0251819017362,0.735106192628,-0.573060937417
+1470584481106996735,0.0875547528267,0.0168912094086,0.281246364117,0.334227589632,-0.0239647887742,0.735742338616,-0.588558254038
+1470584481325898893,0.0876007005572,0.0168702546507,0.281059443951,0.377730034276,-0.0259215540054,0.734268242458,-0.563469823825
+1470584481421393162,0.0874767452478,0.0168692562729,0.280355662107,0.389478669439,-0.0264764135343,0.7341819913,-0.555501727476
+1470584481548505045,0.0873755216599,0.0168732982129,0.279845267534,0.351754115298,-0.0246186070461,0.735465087002,-0.578579357011
+1470584481722520203,0.0873701050878,0.0168962646276,0.279320269823,0.364316831564,-0.0252252368195,0.735221672094,-0.571039426442
+1470584481938531310,0.0873985365033,0.0169033464044,0.279330104589,0.346725576176,-0.024509500913,0.735776121591,-0.581217823271
+1470584482054508752,0.0872866585851,0.016900755465,0.278637766838,0.370157032642,-0.0254451467741,0.734908401582,-0.567667118103
+1470584482141849829,0.0872808694839,0.0169632527977,0.277865260839,0.362833793557,-0.0255197021819,0.735968008576,-0.571009171035
diff --git a/MobileRobot/docking_data/Pose3.txt~ b/MobileRobot/docking_data/Pose3.txt~
index afc15340fca8e8b1978b56faecd04c755c3a151a..0c7a8023d0b4e192f40a335802b684714176b7b1 100644
--- a/MobileRobot/docking_data/Pose3.txt~
+++ b/MobileRobot/docking_data/Pose3.txt~
@@ -1,524 +1,481 @@
 %time,field.position.x,field.position.y,field.position.z,field.orientation.x,field.orientation.y,field.orientation.z,field.orientation.w
-1470147392468381323,-0.036656588316,0.375240117311,1.35773050785,-0.03700793851,0.0102468896007,-0.387048540321,-0.921259377795
-1470147392588972789,-0.0366595126688,0.375291794538,1.35791540146,-0.0355189831445,0.00982659556258,-0.387162235857,-0.92127479233
-1470147392668592005,-0.0366592928767,0.374884098768,1.35644757748,-0.0365400887289,0.0102567181018,-0.386232492949,-0.921620357327
-1470147392757417769,-0.0366587564349,0.375277817249,1.35786533356,-0.0359975803169,0.00993896111864,-0.387133589074,-0.921267048946
-1470147392835836966,-0.0367187783122,0.375361263752,1.35840427876,-0.044564721436,0.0128109299504,-0.389093031082,-0.92003069451
-1470147392915175786,-0.0366511493921,0.375201582909,1.35746240616,-0.0403366833482,0.0107918013732,-0.38764729206,-0.920861588925
-1470147392996104934,-0.0367240682244,0.375068277121,1.35723078251,-0.0429820016666,0.0125426888422,-0.387557586171,-0.920757484841
-1470147393073032647,-0.0366642028093,0.37458845973,1.35526478291,-0.0352681188634,0.00998766965305,-0.384721335455,-0.922304667825
-1470147393148478785,-0.0365235693753,0.379838675261,1.3730880022,-0.00383931790373,0.0054431546245,0.391649916346,0.920090199237
-1470147393224694254,-0.0363374426961,0.38378149271,1.37415754795,-0.17317148765,0.0179115706626,0.778017146399,-0.603639073793
-1470147393305000088,-0.0362162031233,0.375754922628,1.34501552582,-0.283478801632,0.0321207851224,0.784733919087,-0.550273296119
-1470147393379038564,-0.03421812132,0.369893223047,1.33615171909,-0.191231817521,0.0221374066733,0.779555792736,-0.596014339765
-1470147393455904220,-0.0371279753745,0.352725595236,1.30740272999,-0.151368760786,0.0148644387708,0.792890499224,-0.590077285581
-1470147393532759013,-0.0368259735405,0.344892144203,1.30051255226,-0.202127375063,0.02034484377,0.78215822261,-0.589032364463
-1470147393605078348,-0.0346327014267,0.338379412889,1.28133618832,-0.333399012379,0.03355848109,0.779981070455,-0.528534253028
-1470147393677038058,-0.0338546968997,0.332661837339,1.28675353527,-0.242113208591,0.0251899183026,0.783563633623,-0.571642103334
-1470147393755067782,-0.0338314883411,0.315568953753,1.25100314617,-0.250746080237,0.0304332090487,0.789202645449,-0.559785144005
-1470147393830382078,-0.0325712151825,0.306583940983,1.23304665089,-0.166554069154,0.0191706757132,0.783731330711,-0.598044670992
-1470147393903944130,-0.0313434191048,0.30276837945,1.24495375156,-0.217835065138,0.0169321377094,0.773219259134,-0.595309301467
-1470147393976441819,-0.0305041689426,0.293130785227,1.23129940033,-0.116819572385,0.0124412145522,0.779328696937,-0.615504009588
-1470147394049009537,-0.0303999148309,0.285662889481,1.22938740253,-0.201152754171,0.0194998427261,0.769802003539,-0.605443804966
-1470147394132620931,-0.0291544329375,0.274136841297,1.20633375645,-0.282627576442,0.0292711456745,0.778473354681,-0.559682132212
-1470147394215477024,-0.0286341160536,0.262248784304,1.1988106966,-0.218171898116,0.023730260555,0.774837909287,-0.592844087377
-1470147394293459276,-0.0281963162124,0.253438919783,1.18941426277,-0.334169854353,0.0390900085679,0.775528934035,-0.534188498702
-1470147394375267832,-0.0274899452925,0.244084775448,1.17745554447,-0.244441667717,0.0226219723408,0.777302250368,-0.579256186003
-1470147394451237194,-0.0272731259465,0.230450451374,1.1481051445,-0.033117752901,0.00561523901518,-0.454180077296,-0.890276440731
-1470147394525525777,-0.0272027272731,0.221531718969,1.13971102238,-0.172271042391,0.019666995508,0.780432464969,-0.600717125495
-1470147394596423655,-0.0259956307709,0.21158374846,1.11719477177,-0.300788381956,0.0396238044608,0.788490456408,-0.53501318073
-1470147394671775014,-0.0255807396024,0.202931851149,1.11219453812,-0.250406000044,0.0302503658626,0.778080706798,-0.575301802722
-1470147394750572999,-0.0255372673273,0.197387740016,1.11132800579,-0.215987994991,0.0212136079622,0.770830200549,-0.598932359101
-1470147394825302257,-0.0251190382987,0.190562218428,1.1024582386,-0.368828620844,0.0420145803875,0.772089822915,-0.515827033832
-1470147394898588203,-0.0243934113532,0.183518603444,1.09085297585,-0.2975726699,0.0291958066311,0.77101715101,-0.562254981171
-1470147394972514864,-0.0240961890668,0.175262540579,1.08548367023,-0.265530301286,0.0256557532494,0.763467697851,-0.588177282597
-1470147395049285074,-0.0244445465505,0.167115852237,1.06231021881,-0.219106155688,0.0250029322009,0.775329074903,-0.591804166537
-1470147395125978609,-0.0244808476418,0.162966772914,1.06300663948,-0.199434382206,0.0192780465064,0.768538675791,-0.607620430804
-1470147395200215293,-0.0243113897741,0.157996490598,1.05952739716,-0.371381343262,0.035684198118,0.759965485613,-0.532217057749
-1470147395274865921,-0.0243703629822,0.148412778974,1.03110432625,-0.27188653494,0.027304360016,0.774078464892,-0.571082055604
-1470147395352062428,-0.023665541783,0.142960220575,1.01814687252,-0.364930614247,0.043022919935,0.776121456546,-0.512455032012
-1470147395425267583,-0.0233209319413,0.138852193952,1.01523518562,-0.315821535856,0.0323793234264,0.765767067372,-0.559293425164
-1470147395499895594,-0.023470941931,0.135579675436,1.0147087574,-0.185309422497,0.0125795302976,0.75037708494,-0.634378754175
-1470147395572646472,-0.0236053355038,0.128117784858,0.992602586746,-0.345055165477,0.0306077175431,0.759424333785,-0.550703896536
-1470147395646429759,-0.023153193295,0.124167360365,0.984282076359,-0.358082217192,0.0279706696991,0.758266675108,-0.544083097319
-1470147395718374782,-0.0226237922907,0.120750427246,0.974530160427,-0.314220461992,0.0262929825071,0.759795978364,-0.568580910336
-1470147395790369377,-0.022679451853,0.115561977029,0.952938735485,-0.289907158066,0.0349115698312,0.775725884649,-0.559450063795
-1470147395861291721,-0.0227135047317,0.111864045262,0.953337430954,-0.285074193342,0.0193148642542,0.751153808065,-0.595086209669
-1470147395935765234,-0.0220329202712,0.108396850526,0.940210223198,-0.450810107756,0.0477324389826,0.761779497624,-0.462800019461
-1470147396012203706,-0.0218659602106,0.104099802673,0.921756148338,-0.405990073821,0.0439296367411,0.770178314628,-0.489966948529
-1470147396090640403,-0.0218238253146,0.101099796593,0.916573822498,-0.343459666806,0.0289880462344,0.756016762225,-0.55644748691
-1470147396165581920,-0.0216047354043,0.0990299880505,0.912459909916,-0.375470355445,0.03657219605,0.762422119609,-0.525734722259
-1470147396246141565,-0.0214932449162,0.0942615792155,0.887969374657,-0.354943663605,0.0371120024894,0.771143344179,-0.527233949652
-1470147396321999324,-0.0211126618087,0.0911643579602,0.883335649967,-0.276849043952,0.0243888707236,0.764076306688,-0.582191710183
-1470147396412603304,-0.0208387281746,0.0887589007616,0.876937568188,-0.455196318233,0.0443870791558,0.75425451971,-0.471090456885
-1470147396494117627,-0.021243924275,0.0858883410692,0.863809883595,-0.307627072812,0.0220274278354,0.753608699708,-0.580477651784
-1470147396568867041,-0.0205583795905,0.082626208663,0.852791070938,-0.446715111296,0.0296311193704,0.746068758427,-0.49289858369
-1470147396641372053,-0.0206813607365,0.0798463970423,0.836204051971,-0.205039609358,0.0174279379144,0.764085870314,-0.611414596131
-1470147396713327531,-0.0205845218152,0.0786858722568,0.834986627102,-0.32281882253,0.0229820548474,0.750531578754,-0.576161593885
-1470147396788211691,-0.0205606501549,0.0748542621732,0.814274907112,-0.254901360879,0.017095955162,0.75832673343,-0.599727929903
-1470147396864934918,-0.020052075386,0.0731044337153,0.807077765465,-0.434694891522,0.0408049727998,0.759095156254,-0.482855930099
-1470147396939094721,-0.020148223266,0.0698718950152,0.791938066483,-0.359264541827,0.0279303002621,0.752640524753,-0.551072706466
-1470147397014808445,-0.0197928324342,0.0682343095541,0.78524774313,-0.370539742575,0.029456603894,0.757013837372,-0.537366409154
-1470147397092522686,-0.0198023114353,0.0658164024353,0.768468558788,-0.394782607998,0.0409643473546,0.766239439269,-0.505317460986
-1470147397168854528,-0.0200215466321,0.0631865411997,0.75630658865,-0.233306184615,0.0186388033117,0.762607925959,-0.603033971262
-1470147397248354177,-0.0195996165276,0.0618867315352,0.749950766563,-0.265035382073,0.0172465942283,0.754738276632,-0.599857428914
-1470147397324681315,-0.0189722869545,0.060264904052,0.741202771664,-0.411845132425,0.0356536417382,0.755277988424,-0.508593713028
-1470147397400323036,-0.0188839137554,0.0583521202207,0.725962758064,-0.358561944673,0.0354021190592,0.76582372751,-0.532629364737
-1470147397480353908,-0.0185513067991,0.0572638474405,0.721137046814,-0.433829423316,0.0397206413357,0.757674484226,-0.485946167872
-1470147397553590876,-0.0183636266738,0.0547527931631,0.704809367657,-0.526980460311,0.0395486549887,0.741054417186,-0.414205080979
-1470147397628259245,-0.01839973405,0.0534644499421,0.690120816231,-0.456116367797,0.0463239376916,0.758816249013,-0.462611988667
-1470147397706607328,-0.0187611915171,0.0526412241161,0.681467235088,-0.374849592481,0.0359767950856,0.764385163161,-0.523362948222
-1470147397782863577,-0.0188363287598,0.0513143800199,0.669321060181,-0.175320146538,0.0122655517929,0.759291115742,-0.626569552414
-1470147397859528409,-0.0186266377568,0.0499771349132,0.655398666859,-0.380064861754,0.0351884760035,0.761742552385,-0.523508124009
-1470147397950324992,-0.0184383001179,0.0492543764412,0.651178181171,-0.428093915713,0.0255966936044,0.742834930644,-0.514078471073
-1470147398022068830,-0.0180728118867,0.0478973984718,0.635826349258,-0.541508805569,0.0414398321327,0.740784276139,-0.39533480751
-1470147398093543777,-0.0182778481394,0.0475175343454,0.626278877258,-0.27557191868,0.0186752203508,0.755925009242,-0.593539159771
-1470147398164608277,-0.0179319418967,0.0461934655905,0.612103223801,-0.372509552981,0.0333117047788,0.760389008968,-0.530976005393
-1470147398249646182,-0.0177135542035,0.0455585308373,0.608579337597,-0.347129729638,0.0162531796229,0.739717163966,-0.576242398898
-1470147398321761157,-0.0172008946538,0.0441925227642,0.593129336834,-0.461635826376,0.0379064699705,0.750657124602,-0.471136227248
-1470147398393928384,-0.0172502733767,0.043199505657,0.583749294281,-0.380992896285,0.0235500990647,0.745035620261,-0.54700249575
-1470147398466131876,-0.0171801820397,0.0421004556119,0.572933077812,-0.384274525922,0.027186825827,0.750812765123,-0.536539054456
-1470147398537248927,-0.016675375402,0.040289029479,0.558242619038,-0.508322506069,0.0355908468616,0.741594367583,-0.436324782029
-1470147398608517490,-0.016593137756,0.039314802736,0.548419475555,-0.410329649566,0.0244210788591,0.742741705641,-0.528552692071
-1470147398680438438,-0.0164385382086,0.0384319089353,0.537973105907,-0.460170156568,0.0297177181307,0.742729352394,-0.485503237194
-1470147398752248455,-0.0162503588945,0.0382944494486,0.52752494812,-0.29475484172,0.0176780655233,0.750388976506,-0.591374207436
-1470147398827031883,-0.015661502257,0.0375137738883,0.513993680477,-0.44955298997,0.0331777952647,0.747476995022,-0.487933894112
-1470147398909480407,-0.0153348473832,0.0367443487048,0.503414154053,-0.481199711826,0.0360370104191,0.745817504669,-0.45924331345
-1470147398988536065,-0.0150852287188,0.0360040552914,0.493547797203,-0.496962509493,0.0356248534833,0.743040480533,-0.446822087929
-1470147399062395736,-0.0149466721341,0.0358631908894,0.485226124525,-0.388595717259,0.0298154274874,0.753605928805,-0.529322692582
-1470147399134906900,-0.0146720251068,0.0352137573063,0.475540310144,-0.437788148627,0.0342121207021,0.751089039754,-0.492987141902
-1470147399206805164,-0.0144922053441,0.0345283858478,0.460782408714,-0.398688896311,0.0297057833715,0.751227787413,-0.52518714932
-1470147399281052430,-0.0142275197431,0.0339517742395,0.451784819365,-0.412142067558,0.0278583853047,0.747232091677,-0.520583353255
-1470147399351462809,-0.0141049530357,0.0334062837064,0.44374987483,-0.328257115949,0.015929592428,0.741279466385,-0.585233514616
-1470147399427751893,-0.0136813735589,0.0328348651528,0.433493554592,-0.440600565323,0.028908212649,0.743708318477,-0.501929670478
-1470147399503776425,-0.0135281123221,0.0319393947721,0.417957723141,-0.415752447094,0.0281923699652,0.748393692684,-0.516005788497
-1470147399577017560,-0.0133729474619,0.0313582420349,0.409375309944,-0.371910488934,0.0185661170933,0.742406525389,-0.556929473612
-1470147399651578153,-0.0130964266136,0.0306460689753,0.398405939341,-0.403489357987,0.0286908903927,0.749137002351,-0.524563554308
-1470147399725840518,-0.0129269408062,0.0301878601313,0.390638291836,-0.350395752638,0.0180707638066,0.742738744591,-0.570294153321
-1470147399801069102,-0.0125130759552,0.0292413365096,0.374689042568,-0.396138852915,0.0263586386369,0.747664645983,-0.53233148369
-1470147399878930502,-0.0121834380552,0.0288670081645,0.366509824991,-0.405974881945,0.0262830259037,0.746458438063,-0.526586553212
-1470147399954536263,-0.0121911885217,0.028480572626,0.356815069914,-0.276906990183,0.0132340903357,0.744260001812,-0.607638401802
-1470147400033509782,-0.0119424974546,0.0279818903655,0.346778810024,-0.340272189237,0.0193932372382,0.745946549163,-0.572190951845
-1470147400107530143,-0.0117499930784,0.027636539191,0.337029367685,-0.311899528039,0.0171016891255,0.74529344975,-0.58903640838
-1470147400178623770,-0.0113665163517,0.0271100047976,0.322974652052,-0.38011858232,0.018278419553,0.740324303252,-0.554162150248
-1470147400250009331,-0.0112226149067,0.0268663894385,0.313390851021,-0.293831038911,0.0154458591012,0.744858604904,-0.5988408843
-1470147400329184139,-0.0109425261617,0.02661938034,0.30431586504,-0.41832653988,0.0229099230257,0.741308495451,-0.524346980568
-1470147400405533658,-0.0108355190605,0.0262546762824,0.291298598051,-0.3703573305,0.0187778035095,0.740863230173,-0.560004032144
-1470147400478844743,-0.010649359785,0.0263081528246,0.285165190697,-0.433082481306,0.0247224331073,0.741940131995,-0.511227157165
-1470147400552794258,-0.0107479076833,0.0263296980411,0.281064271927,-0.459578424594,0.024906979939,0.738946472873,-0.492062419034
-1470147400625082733,-0.0106933778152,0.0264885183424,0.280770242214,-0.444428834625,0.0240119350954,0.740098610886,-0.504143317014
-1470147400695852279,-0.0104327062145,0.0273623969406,0.281982004642,-0.47573058334,0.0275463806016,0.739750539166,-0.475069204216
-1470147400773146704,-0.010514116846,0.0274885445833,0.281223982573,-0.422738354381,0.0238140072685,0.741742673379,-0.520137465755
-1470147400851519346,-0.0105136511847,0.027683198452,0.280939072371,-0.426632516493,0.0255417591027,0.742710402317,-0.515474124183
-1470147400927874669,-0.0105323363096,0.0280358158052,0.28110319376,-0.425440388279,0.0239004024091,0.74132228318,-0.518527259887
-1470147401002468240,-0.0105441249907,0.0283563435078,0.280802935362,-0.419577310886,0.0241525978158,0.742241096283,-0.521967132295
-1470147401080433788,-0.0105484621599,0.0285751391202,0.280544489622,-0.448132685941,0.026512025333,0.741423931953,-0.498763231837
-1470147401153219541,-0.0106025077403,0.0285829212517,0.280433177948,-0.469322012941,0.0268849587106,0.739621889918,-0.48163628094
-1470147401226721705,-0.0105886524543,0.0285501088947,0.280394256115,-0.475367630351,0.0273419302523,0.739404197059,-0.475982634386
-1470147401304824059,-0.0105941491202,0.0284370835871,0.280497461557,-0.493737048511,0.0277018114045,0.737629841111,-0.459737483871
-1470147401381560308,-0.0106190582737,0.0283013880253,0.28043538332,-0.481916702073,0.0265280166011,0.737733351289,-0.472019129903
-1470147401454449318,-0.0106306960806,0.02815797925,0.280384212732,-0.476571809639,0.0256488373737,0.737366373326,-0.478029579511
-1470147401531783141,-0.0105997771025,0.0280407965183,0.280396491289,-0.481678823033,0.026773715214,0.738172701614,-0.471560963404
-1470147401606495183,-0.0106151020154,0.0277779791504,0.280368894339,-0.487215234887,0.0265030639611,0.737053507309,-0.467622743094
-1470147401679255190,-0.0105986827984,0.0276049859822,0.280442744493,-0.484873760552,0.0264375965919,0.737197950044,-0.469827279184
-1470147401755202105,-0.0105563169345,0.0274385865778,0.28034773469,-0.49597401593,0.027732853676,0.737171543119,-0.458059799988
-1470147401832485548,-0.0106204757467,0.0272564869374,0.280390739441,-0.477174523782,0.0252473602462,0.736500006499,-0.478784695956
-1470147401906027330,-0.0105516826734,0.0269439145923,0.280525803566,-0.482502943413,0.0266642029028,0.73749645137,-0.471782697965
-1470147401979648322,-0.0105379251763,0.0266605485231,0.280604869127,-0.459254646427,0.0249574431969,0.738402367958,-0.493177694912
-1470147402052367539,-0.010581525974,0.0262715835124,0.280574291945,-0.451047145324,0.0231939198147,0.737044865071,-0.502775677267
-1470147402127404009,-0.0104815736413,0.0259708501399,0.280555993319,-0.485540772386,0.0279580406059,0.738222139226,-0.467436176898
-1470147402206152858,-0.0104569289833,0.0254285410047,0.280777066946,-0.489985693277,0.0270331305833,0.736515990348,-0.465539929754
-1470147402281905890,-0.0104526774958,0.0250950623304,0.280765384436,-0.476091104823,0.0264994828293,0.737581464821,-0.478130337952
-1470147402359641962,-0.0104731228203,0.0246979836375,0.28078186512,-0.473968465333,0.0249787120203,0.736732582546,-0.481617129711
-1470147402434483732,-0.010480391793,0.0243711192161,0.280760705471,-0.450808320516,0.0238110214167,0.737530084905,-0.502249208334
-1470147402506765301,-0.0104866707698,0.0237888935953,0.280881524086,-0.462159710163,0.0229446703029,0.735769290174,-0.494495193146
-1470147402579771713,-0.0104441456497,0.0234022773802,0.280872732401,-0.476217611303,0.0248184455415,0.735804112135,-0.480825477706
-1470147402654763247,-0.0104090180248,0.0230133850127,0.280774146318,-0.48446487599,0.0263327112418,0.73604213407,-0.472061806466
-1470147402731679073,-0.0104071600363,0.0226926729083,0.280832052231,-0.479340746281,0.026139072684,0.737032730952,-0.475743577297
-1470147402806152838,-0.0103920614347,0.0221193414181,0.280903637409,-0.502513004303,0.026732709115,0.734861832616,-0.454691246599
-1470147402890752788,-0.0104534607381,0.0218115225434,0.280899703503,-0.46068146828,0.0227100767663,0.735588324419,-0.496151845885
-1470147402964699287,-0.0103896940127,0.0214614607394,0.280885666609,-0.496172466128,0.0261906155741,0.735105519018,-0.461244849751
-1470147403036688080,-0.010377199389,0.0211779363453,0.280901312828,-0.497991292484,0.0263917975786,0.735224006429,-0.459079302518
-1470147403114071046,-0.0104136550799,0.0207181721926,0.280812054873,-0.479108457647,0.0241448540889,0.735088667104,-0.479079078366
-1470147403192533017,-0.0103856958449,0.0204860363156,0.280851662159,-0.494378480938,0.0261750765789,0.735440784083,-0.462635532637
-1470147403271136844,-0.0104384208098,0.0202688891441,0.280849605799,-0.476433790512,0.0231511611596,0.734518683458,-0.482656369114
-1470147403347745743,-0.0104456990957,0.0199197754264,0.280878186226,-0.475087386957,0.0240266939462,0.735490549521,-0.482460717881
-1470147403421185193,-0.0104538798332,0.0196860264987,0.280675292015,-0.463405513638,0.0231607203508,0.735751769295,-0.493343941832
-1470147403505723740,-0.0104050496593,0.0194920953363,0.280770033598,-0.49547797562,0.0261917420067,0.73517892012,-0.461873926237
-1470147403577347882,-0.0104542663321,0.0192869249731,0.280809730291,-0.471960139484,0.023022094746,0.73482842309,-0.486570445578
-1470147403651617312,-0.0103936912492,0.0190420113504,0.280705243349,-0.491444261269,0.0265645229601,0.735790765823,-0.465176109786
-1470147403729238949,-0.0104781985283,0.0188675429672,0.280818849802,-0.466047458991,0.022481748418,0.734712237407,-0.492435036487
-1470147403803203346,-0.0103812860325,0.0186324417591,0.280789941549,-0.502790820112,0.027031548849,0.734980155487,-0.454174919627
-1470147403873415462,-0.010422360152,0.0184177551419,0.280835300684,-0.479790950216,0.0237384850434,0.734780064186,-0.478889742732
-1470147403953437855,-0.010399251245,0.0181312374771,0.280774980783,-0.503880905071,0.0259046523228,0.733903232401,-0.454773600778
-1470147404028529467,-0.010380871594,0.0180171187967,0.280798256397,-0.51480565968,0.0275251498092,0.734349050807,-0.441530259969
-1470147404102479941,-0.0104653900489,0.0178342815489,0.280710160732,-0.486851120801,0.0235295326686,0.733888665627,-0.47310651415
-1470147404174928162,-0.0104664992541,0.0176617596298,0.280618369579,-0.502607757671,0.02565554626,0.733943879364,-0.456128947579
-1470147404252298836,-0.0104303974658,0.0175266712904,0.280669689178,-0.512619943559,0.0272671497159,0.734424633431,-0.44395692789
-1470147404332615121,-0.0105038825423,0.0173838529736,0.28052842617,-0.501974670969,0.0247814443718,0.733599046751,-0.457427314801
-1470147404406483737,-0.0105208968744,0.0172705035657,0.280621856451,-0.48985961468,0.0226786775426,0.732725382351,-0.471843988569
-1470147404484759898,-0.010521704331,0.0172021780163,0.280550152063,-0.483238016747,0.0225099820113,0.733132247552,-0.478007769267
-1470147404563983133,-0.010429716669,0.0171330422163,0.280612945557,-0.518322561515,0.0272909634998,0.73366093481,-0.438564200853
-1470147404643537279,-0.0104012684897,0.0170411560684,0.280650913715,-0.531384182876,0.0287108834996,0.733788152252,-0.422328643325
-1470147404716018635,-0.0104821203277,0.0169039648026,0.280684620142,-0.501037882796,0.0248059061334,0.733847167296,-0.458054627829
-1470147404791731349,-0.0104978224263,0.0167573690414,0.280732095242,-0.508338060458,0.0229882938164,0.731240363269,-0.454259271521
-1470147404869734373,-0.0105354245752,0.0166981555521,0.28065469861,-0.489943963556,0.0210302471203,0.731121408557,-0.474314375948
-1470147404943718233,-0.0104296980426,0.0165070481598,0.280683159828,-0.533673753286,0.027820021525,0.732627334587,-0.421515788638
-1470147405016952412,-0.010465817526,0.0164125468582,0.280779451132,-0.52889831176,0.025785041012,0.731831362985,-0.428980842963
-1470147405087777134,-0.0104860914871,0.0162719544023,0.280704170465,-0.513333899999,0.0235587918587,0.731322859347,-0.448441931396
-1470147405159188066,-0.0105102714151,0.016207292676,0.280828177929,-0.511140240298,0.0218996230695,0.729844617965,-0.4534124997
-1470147405234039318,-0.0104105882347,0.0160398911685,0.280721664429,-0.54533664101,0.028449514697,0.731838246021,-0.407690268153
-1470147405311622081,-0.0104524549097,0.0159232299775,0.280754238367,-0.520327344792,0.0255950297587,0.732288885398,-0.438585609701
-1470147405388763260,-0.0104793310165,0.0158455651253,0.28080946207,-0.524106763614,0.0243624798015,0.73073666318,-0.436740768645
-1470147405468974510,-0.0105144642293,0.015758857131,0.280724138021,-0.496907983995,0.0218787313906,0.731048884959,-0.467088111983
-1470147405542517600,-0.0104931937531,0.0157129559666,0.280758023262,-0.520211824452,0.0225785600226,0.729921578099,-0.442814132738
-1470147405615169460,-0.0103868991137,0.0154999531806,0.280821800232,-0.562905627133,0.0288360425267,0.730136970714,-0.38627159045
-1470147405686998978,-0.010432664305,0.0153105119243,0.280826956034,-0.542129324316,0.0250529740882,0.729668568027,-0.415995102181
-1470147405760075876,-0.0104747572914,0.0152227478102,0.280890345573,-0.523542230218,0.0222168372623,0.729043259442,-0.44034744371
-1470147405839418854,-0.0103621315211,0.0150280045345,0.280894726515,-0.563784611564,0.0284474091835,0.729712243378,-0.385820811439
-1470147405914790116,-0.0104506891221,0.0147816156968,0.280997216702,-0.540135843132,0.0236977125827,0.728640143878,-0.420446465216
-1470147405992288809,-0.0104100080207,0.0146515676752,0.280906170607,-0.549347193052,0.0250927400832,0.728847048806,-0.407884781927
-1470147406069377145,-0.0103693334386,0.0144895855337,0.280970692635,-0.555215601003,0.0272201314441,0.729849557387,-0.397887326299
-1470147406143922517,-0.0104382177815,0.0142880417407,0.280931830406,-0.524459337937,0.0227631568383,0.729301497023,-0.438797866884
-1470147406218495147,-0.0103895142674,0.0141670098528,0.280886620283,-0.560223974317,0.0259623735661,0.728435951387,-0.393517621569
-1470147406294589150,-0.0103559512645,0.0140309436247,0.280928730965,-0.556633883833,0.0277787264695,0.730002768382,-0.395579347134
-1470147406371000282,-0.0104102836922,0.013812834397,0.280927687883,-0.542048862303,0.0241886141817,0.728844739968,-0.417592249498
-1470147406443468066,-0.010438663885,0.0136967077851,0.280933111906,-0.528676955217,0.0222189299049,0.728682235832,-0.434774878942
-1470147406518504739,-0.0103593720123,0.0135141070932,0.281043797731,-0.547879080242,0.0260154169435,0.729742066724,-0.408201209659
-1470147406595233308,-0.0104118604213,0.0133079504594,0.281033754349,-0.525471999594,0.0225374813293,0.729152333978,-0.437844850868
-1470147406670177224,-0.0103413071483,0.0129578132182,0.281044363976,-0.559321982381,0.0264761386223,0.728822708654,-0.394049988528
-1470147406753126455,-0.0103964284062,0.0128228887916,0.280994355679,-0.5312572811,0.0231102877242,0.72902910871,-0.43098512101
-1470147406829000125,-0.0103217372671,0.0126234414056,0.281023949385,-0.558216550985,0.0272212772158,0.729515916753,-0.394283922418
-1470147406901804452,-0.0103489654139,0.0124330874532,0.280972927809,-0.540382099447,0.0257276523726,0.730173477581,-0.417339151216
-1470147406981772369,-0.0103224813938,0.0121326558292,0.281006723642,-0.558968265528,0.0270876300317,0.729299895495,-0.393627235927
-1470147407056840992,-0.0103506138548,0.0119285639375,0.280928879976,-0.543371792725,0.025540554911,0.729619403315,-0.414427679132
-1470147407144807829,-0.0103933634236,0.0118087548763,0.281008541584,-0.531686395587,0.0226149308459,0.728761337607,-0.430935093094
-1470147407224912505,-0.0103305913508,0.0114838937297,0.28095716238,-0.545746310416,0.026321291211,0.730063778208,-0.410457103782
-1470147407300168636,-0.0103821167722,0.0113249523565,0.280911803246,-0.530232710296,0.0229972632246,0.729188489066,-0.431982113321
-1470147407378567468,-0.0102865379304,0.0111575871706,0.280983507633,-0.563968916488,0.029077415392,0.730062421204,-0.384840780447
-1470147407453304136,-0.0103596234694,0.0109405918047,0.280938625336,-0.534832667511,0.0248491906674,0.729935555919,-0.424888949834
-1470147407533455648,-0.0103768389672,0.0107879117131,0.280970722437,-0.531622790007,0.0232270549363,0.729284922879,-0.430094424894
-1470147407605292206,-0.0103449765593,0.0106097701937,0.281026780605,-0.539440521546,0.026051529269,0.730586396703,-0.417814263147
-1470147407677170190,-0.0103532923386,0.0104001564905,0.280948787928,-0.542031814763,0.0246026865686,0.729204630855,-0.416961420204
-1470147407750100351,-0.0104039637372,0.01031075418,0.280995041132,-0.521866011006,0.0216414927673,0.728940568154,-0.44253040624
-1470147407822421641,-0.0103104040027,0.0101279951632,0.280992776155,-0.551033182065,0.0275046771137,0.730459331431,-0.402535824648
-1470147407894069012,-0.0103937573731,0.00985868182033,0.280979990959,-0.518332094582,0.02165249143,0.729339024648,-0.446013000334
-1470147407967276027,-0.0103001268581,0.00959798693657,0.280933648348,-0.538402352979,0.0269243293507,0.731319897966,-0.417814783886
-1470147408038706210,-0.0103026507422,0.00924750976264,0.28088003397,-0.53308736148,0.0261334514577,0.731389622715,-0.424504567148
-1470147408117435668,-0.0102940276265,0.00914589967579,0.280755788088,-0.531384983325,0.0258403411086,0.731331019841,-0.426751936946
-1470147408196031164,-0.0102590965107,0.00907304603606,0.280433803797,-0.537837779814,0.0261853300706,0.730885383267,-0.419346405279
-1470147408270088353,-0.0102774584666,0.00887036137283,0.279778063297,-0.530730303699,0.0272102264271,0.732634417083,-0.42524317657
-1470147408343341215,-0.0103931799531,0.00875477213413,0.278925865889,-0.495927745851,0.0241582940247,0.733594000195,-0.464017123178
-1470147408420744679,-0.0103976158425,0.0086040571332,0.278717130423,-0.511328248111,0.0232305457546,0.731540072094,-0.45039192638
-1470147408497596443,-0.0104447919875,0.00847045797855,0.278564721346,-0.472810818114,0.0188491819621,0.731062986009,-0.491570492505
-1470147408570016971,-0.0103523097932,0.00839491002262,0.278157174587,-0.495178566079,0.0218891714741,0.73175108346,-0.467824116227
-1470147408641058896,-0.01034150552,0.00835001096129,0.277989476919,-0.494699954183,0.0207051977155,0.730730988802,-0.46997390579
-1470147408724966770,-0.0103062232956,0.00830820668489,0.277795016766,-0.511736574449,0.020758317682,0.729210718079,-0.453813286778
-1470147408804948044,-0.0102142691612,0.00833972170949,0.277508944273,-0.539344309079,0.0246692084879,0.729591580655,-0.419756205259
-1470147408878659273,-0.0102162454277,0.00841180793941,0.276578098536,-0.528513167158,0.0268683734555,0.732478241156,-0.428284425214
-1470147408956655463,-0.010287148878,0.00839485507458,0.275997430086,-0.518952359519,0.0264017593049,0.733258697111,-0.438546552565
-1470147409034811734,-0.0102657889947,0.00834209471941,0.275771617889,-0.522664067237,0.0267123645874,0.733158154259,-0.434267018367
-1470147409114586786,-0.0103063425049,0.00806864816695,0.275626987219,-0.512072386012,0.0233571685755,0.731541442305,-0.449536908774
-1470147409189646582,-0.0102900546044,0.00795595999807,0.275658965111,-0.504271924724,0.0237436045208,0.732875247519,-0.456113953693
-1470147409264739087,-0.0102657191455,0.00782198365778,0.275747418404,-0.510704232066,0.0260437025615,0.733869183988,-0.447145316088
-1470147409336711579,-0.0102731576189,0.00781694892794,0.275880336761,-0.507173712335,0.0258895175612,0.734261982613,-0.450515148786
-1470147409415145739,-0.0102537153289,0.00792668480426,0.275841921568,-0.519910419437,0.026929676782,0.733787310378,-0.436490700241
-1470147409489967230,-0.0103189414367,0.00813943240792,0.275759905577,-0.502722887927,0.0232882688651,0.732340903671,-0.458698327116
-1470147409563955510,-0.0103532904759,0.00851583946496,0.27570194006,-0.487509912979,0.0206032586939,0.731664557849,-0.476000593766
-1470147409642566800,-0.0102546140552,0.00879107415676,0.275639414787,-0.523746250003,0.0264935965277,0.732953994987,-0.433320200525
-1470147409719272332,-0.0103012397885,0.00902619305998,0.275612056255,-0.517063107466,0.0234990333233,0.731189234437,-0.444360036203
-1470147409796461491,-0.0103368815035,0.00942349806428,0.275559872389,-0.490948704385,0.0206670388703,0.731463634073,-0.472761245447
-1470147409871505217,-0.0102576473728,0.00954523868859,0.275454491377,-0.5207445022,0.0254221532366,0.732305900424,-0.438071849994
-1470147409946002766,-0.0102442260832,0.00960227008909,0.275498092175,-0.524409044602,0.026292092445,0.732600090306,-0.433129296514
-1470147410017159019,-0.0102514792234,0.00968968681991,0.275540530682,-0.52058678577,0.0258805609785,0.732637870746,-0.437677215986
-1470147410090913264,-0.010247698985,0.00968595407903,0.275518357754,-0.521043747256,0.0262957415935,0.733029448176,-0.436451343824
-1470147410163647720,-0.0103596970439,0.00982810370624,0.275578141212,-0.472047996537,0.018911609654,0.731489980918,-0.491665992115
-1470147410236032294,-0.0102917002514,0.00996168144047,0.275545239449,-0.51876585818,0.0235271108589,0.731013032983,-0.442660598033
-1470147410309499996,-0.0102616427466,0.0100951287895,0.275518506765,-0.52491440049,0.0258885965339,0.732212967596,-0.43319605586
-1470147410380878285,-0.0102829029784,0.0102908378467,0.275453418493,-0.523347914031,0.0236346969391,0.730827081403,-0.437538728648
-1470147410452017603,-0.0102741038427,0.0104283606634,0.275459110737,-0.522992536217,0.0243224248631,0.731314835828,-0.437110784136
-1470147410531266871,-0.0102364029735,0.0106602991,0.275488197803,-0.531920017567,0.0264838003362,0.732005200404,-0.424885972718
-1470147410606547005,-0.0103029431775,0.0107987793162,0.27547237277,-0.520347529744,0.0225645983423,0.730263314291,-0.442091369506
-1470147410680486660,-0.0102521888912,0.0109236165881,0.275430113077,-0.536451935045,0.0256635458838,0.730981571344,-0.420982952333
-1470147410753241031,-0.0102555630729,0.0111116403714,0.275458067656,-0.525006139243,0.0252584625166,0.731747300617,-0.433908345009
-1470147410825828590,-0.0103064887226,0.0112715000287,0.275421559811,-0.510237413116,0.0218481520071,0.730638331246,-0.453153472263
-1470147410899045757,-0.0102521404624,0.0114340065047,0.275434195995,-0.532814966604,0.0255403129762,0.731169226839,-0.42526164358
-1470147410975281775,-0.0102735059336,0.0115645369515,0.275520712137,-0.52729863045,0.0245455725029,0.73088439022,-0.432621864136
-1470147411049687721,-0.0103481691331,0.0117229092866,0.275466531515,-0.499121242881,0.0197709673416,0.729899085541,-0.466620208179
-1470147411125134137,-0.0102773634717,0.0118172988296,0.275441229343,-0.535062141516,0.0245624818889,0.73036065433,-0.423885012481
-1470147411196246840,-0.0103341042995,0.0121761690825,0.275451660156,-0.50860204227,0.0205103834019,0.729755204544,-0.456465363651
-1470147411270368004,-0.0103180883452,0.0126304998994,0.275403410196,-0.517425410783,0.0212766799125,0.729496868795,-0.446824983172
-1470147411345835430,-0.0102545842528,0.0129075339064,0.275307655334,-0.536904195021,0.0251023966288,0.730328942743,-0.421572520978
-1470147411420374945,-0.0102570680901,0.0132083175704,0.275294333696,-0.547224269344,0.0250401544355,0.729489644127,-0.409589366095
-1470147411492887245,-0.0102487066761,0.0134597839788,0.275188148022,-0.550256715171,0.0248496929301,0.728878081729,-0.406616259077
-1470147411568851401,-0.0102126058191,0.0136982705444,0.275123596191,-0.56204338726,0.0264857436087,0.728912316719,-0.389990475214
-1470147411642262465,-0.0102061759681,0.0137605881318,0.275141209364,-0.558982910875,0.0267966808448,0.729313884358,-0.393600433598
-1470147411719170865,-0.0102547341958,0.0136099634692,0.275157213211,-0.558759885094,0.0245918729359,0.72789098421,-0.396682928423
-1470147411793289244,-0.0102464407682,0.0134134646505,0.275107860565,-0.558925543382,0.0259718306846,0.728675902126,-0.394916612245
-1470147411868973772,-0.0103043373674,0.0130914468318,0.275238990784,-0.541955962412,0.0226703216991,0.728270045478,-0.418798916163
-1470147411942708384,-0.0103059029207,0.0130430972204,0.275289833546,-0.548828111504,0.0232267689158,0.727943651286,-0.410300209336
-1470147412021835945,-0.0102607607841,0.0128675270826,0.275262802839,-0.562582927107,0.0265337556718,0.728691121187,-0.389622458081
-1470147412097625439,-0.0102755846456,0.0126928314567,0.275271445513,-0.559515673077,0.0252868284093,0.728393124058,-0.394646987465
-1470147412178924969,-0.0103346817195,0.0125305121765,0.275218784809,-0.531690727151,0.021451659668,0.727958290578,-0.432344219503
-1470147412254805324,-0.0102517297491,0.012277238071,0.275228887796,-0.579335762692,0.0272517800435,0.727589181512,-0.366389679845
-1470147412331846350,-0.0102828722447,0.0121203344315,0.27516362071,-0.573442286572,0.0249121440021,0.726728935921,-0.377370352236
-1470147412408591058,-0.0102331396192,0.0119601897895,0.275130569935,-0.581832766826,0.0285867135085,0.727990491625,-0.361501418203
-1470147412480497386,-0.0102801611647,0.0116973202676,0.275237709284,-0.584772950142,0.0265813491196,0.726651261572,-0.359599739595
-1470147412554522691,-0.0103331934661,0.0115704899654,0.275131255388,-0.560019478813,0.0228909230697,0.726606475239,-0.397362830587
-1470147412633998666,-0.0102811921388,0.0113959722221,0.275263756514,-0.578936889711,0.0268651793135,0.727368031727,-0.367486171568
-1470147412711067143,-0.0103012463078,0.0112132420763,0.275268554688,-0.572976736275,0.0252823153327,0.727061019409,-0.377413219529
-1470147412788855990,-0.0103071630001,0.0110577968881,0.275144845247,-0.568435845933,0.0250378417027,0.727217712852,-0.383937747109
-1470147412865815467,-0.0102670034394,0.0108859976754,0.275238513947,-0.584995831705,0.0277802139056,0.727297565725,-0.357835699021
-1470147412939011913,-0.0102874813601,0.0107513489202,0.275211125612,-0.57523434942,0.0260681614,0.727360712545,-0.373325980952
-1470147413013753231,-0.0102881044149,0.0105535369366,0.275176584721,-0.568701498581,0.0257081251553,0.727620237267,-0.382735532885
-1470147413092489271,-0.0102645521984,0.0104302922264,0.275216698647,-0.580910124748,0.0276152241408,0.727603889502,-0.363831563148
-1470147413171088915,-0.0102617163211,0.0103103034198,0.275158643723,-0.582397056081,0.0277195331186,0.727629702231,-0.361386653023
-1470147413246410697,-0.0103332456201,0.0101138344035,0.275161147118,-0.557722780045,0.023354674316,0.727147111294,-0.399570942817
-1470147413320103344,-0.010334379971,0.0100891226903,0.275077193975,-0.563219896288,0.0227744165682,0.726256036136,-0.393467717039
-1470147413397720598,-0.0102235935628,0.00990296900272,0.275043010712,-0.583718976665,0.0281990971419,0.727644040961,-0.359181175529
-1470147413473389147,-0.0102370679379,0.00969489756972,0.274810343981,-0.552291333733,0.0232567598014,0.727535508291,-0.406356358365
-1470147413549392425,-0.0103082172573,0.00943522900343,0.274099946022,-0.55814368321,0.0203525492888,0.725267557266,-0.402552323317
-1470147413621910489,-0.0104011185467,0.00944887660444,0.273291796446,-0.469744659512,0.0177819778675,0.73025623027,-0.4957313731
-1470147413693941993,-0.0103223044425,0.00929105468094,0.273116677999,-0.51666074156,0.0211618617801,0.728983033651,-0.448550543848
-1470147413767094032,-0.0101808020845,0.00911299884319,0.27268281579,-0.561943544917,0.0267172490506,0.728839108248,-0.390255294926
-1470147413844782196,-0.0101741859689,0.00903363619,0.272368639708,-0.541495874522,0.0255198770707,0.729994278149,-0.416220263346
-1470147413918156164,-0.0101317735389,0.00898793153465,0.272138655186,-0.553915330657,0.0263396692421,0.729445669174,-0.400491003658
-1470147413993813829,-0.0101091973484,0.00892280321568,0.271859258413,-0.575548353881,0.0267271485121,0.727650197533,-0.372229689718
-1470147414073096050,-0.0101735657081,0.0088888220489,0.271514952183,-0.570181153208,0.0243200341735,0.726727714921,-0.382320306589
-1470147414158004312,-0.0102875605226,0.00889831781387,0.270399034023,-0.495462462594,0.0208826976034,0.730893073347,-0.46890956104
-1470147414233496534,-0.0102495737374,0.00883536506444,0.270074576139,-0.507148077558,0.0206095683872,0.729423724601,-0.45860342684
-1470147414308776494,-0.0101972073317,0.00871523283422,0.269986629486,-0.531641514603,0.0221192245905,0.728528634199,-0.431409398375
-1470147414387535581,-0.0101359989494,0.0086726648733,0.269774496555,-0.545023207384,0.0242846226272,0.72895258095,-0.413507067948
-1470147414464652954,-0.0101620806381,0.00863472558558,0.269411325455,-0.525158190512,0.0204834952943,0.727923074679,-0.440360419097
-1470147414543030712,-0.0101500703022,0.00862961634994,0.269253909588,-0.537440584883,0.0204859531445,0.726900156381,-0.42702939723
-1470147414626552805,-0.0100799333304,0.0086426846683,0.268557041883,-0.571532649908,0.0262416718346,0.727784602256,-0.378142007012
-1470147414699280984,-0.0101490244269,0.00871890038252,0.267715185881,-0.530689802962,0.0261031579821,0.731850489886,-0.42671046229
-1470147414773462659,-0.010117447935,0.00873749144375,0.26753115654,-0.540540930003,0.0267339321441,0.731230735987,-0.415213692707
-1470147414848554585,-0.0101310908794,0.0087076453492,0.267160981894,-0.518575726618,0.0234609956412,0.730873701002,-0.443116723482
-1470147414924824364,-0.0101038943976,0.00870693381876,0.266884863377,-0.520704899475,0.022828634079,0.730301582644,-0.441593545601
-1470147414997110951,-0.0101112956181,0.00867893639952,0.266716390848,-0.514037796679,0.0207759659705,0.729305232384,-0.45105141707
-1470147415069299833,-0.0100321592763,0.00855219643563,0.266606867313,-0.550967212594,0.0248295274297,0.728873860058,-0.405661831257
-1470147415142203934,-0.010062796995,0.00854685530066,0.266353160143,-0.562152375204,0.021352704167,0.725474131218,-0.396504796958
-1470147415216095583,-0.0100017031655,0.0086483694613,0.265904486179,-0.569196089328,0.0257752726974,0.727621394176,-0.381992871594
-1470147415292753473,-0.0101251462474,0.00876815337688,0.265118658543,-0.527221307365,0.0237950661325,0.730376399607,-0.433614809232
-1470147415369321423,-0.0100944852456,0.00885304622352,0.26463675499,-0.524558158663,0.0222857639248,0.729491643952,-0.438387983766
-1470147415446354550,-0.0100437477231,0.00886972248554,0.26450163126,-0.542846686655,0.0247239619274,0.729587975989,-0.415219924603
-1470147415525049592,-0.00999316293746,0.00887597538531,0.264304667711,-0.550100211704,0.0260307561841,0.729801860835,-0.405094310918
-1470147415600697092,-0.00997171364725,0.00887119211257,0.264141738415,-0.552180642323,0.0264882020162,0.729849535588,-0.402137499866
-1470147415673541523,-0.0099606635049,0.00885317474604,0.264041215181,-0.549507213514,0.0266365737693,0.730337989813,-0.404893487068
-1470147415752057978,-0.00991667434573,0.00882877875119,0.263754636049,-0.565721776456,0.0272298083005,0.729108957374,-0.38421027766
-1470147415830197967,-0.00990775041282,0.00883766729385,0.263467520475,-0.586423094532,0.0273648649475,0.726877161912,-0.356382813639
-1470147415902808170,-0.00998132489622,0.00893032550812,0.263154685497,-0.572736702402,0.023597648991,0.725998748619,-0.379923199724
-1470147415982121883,-0.0100072743371,0.00907269865274,0.26222345233,-0.536623704408,0.0243651191786,0.729781516784,-0.422918761224
-1470147416057186849,-0.0100543862209,0.00917664915323,0.261877894402,-0.515637648849,0.0197126976973,0.728124511887,-0.451180584498
-1470147416134683737,-0.00994550064206,0.00924041960388,0.261621326208,-0.544850013487,0.0243494126916,0.729039524444,-0.413578215943
-1470147416210234607,-0.00987662188709,0.00929220858961,0.26124843955,-0.550230134959,0.02548116798,0.729282820558,-0.405886777685
-1470147416282567817,-0.00985470879823,0.00932239089161,0.260787934065,-0.568494125852,0.0249860924312,0.727332981143,-0.383636362456
-1470147416367265827,-0.00988805945963,0.00935761537403,0.260322153568,-0.564435890678,0.0241340383086,0.727242286864,-0.389805502407
-1470147416439826475,-0.00995353702456,0.00938322208822,0.259704142809,-0.538872611959,0.0241296438719,0.729530665887,-0.420498603919
-1470147416512987335,-0.00986804254353,0.0093898922205,0.259187966585,-0.549737752706,0.0258323444368,0.729547744567,-0.406055638587
-1470147416584505989,-0.00981735531241,0.00939632672817,0.258961200714,-0.56764380661,0.0271180997227,0.728414758284,-0.382697083081
-1470147416656315402,-0.00988651160151,0.00941069144756,0.258601099253,-0.53492329007,0.0210326469477,0.727482928273,-0.429165807788
-1470147416728720325,-0.00981492828578,0.00939283333719,0.258207350969,-0.572668443199,0.0239900322993,0.726193830567,-0.37962857237
-1470147416804959162,-0.00983504951,0.00940995197743,0.257621228695,-0.552940140956,0.0245902773379,0.728456099662,-0.403737822907
-1470147416884082066,-0.0098264599219,0.00935328099877,0.254008054733,-0.500534373517,0.0201390061076,0.729787751266,-0.465262935837
-1470147416959202088,-0.00970231927931,0.00933016557246,0.253339678049,-0.542795641533,0.0215889321275,0.72706702903,-0.419857529216
-1470147417035945440,-0.00965749099851,0.00936638005078,0.253161728382,-0.541048683456,0.0224500831018,0.72781779277,-0.420765464869
-1470147417110975716,-0.0096625527367,0.00933616701514,0.253243774176,-0.564339846067,0.0230805656783,0.726126346458,-0.392082076367
-1470147417182855388,-0.00963638722897,0.00931509304792,0.252972185612,-0.583694601979,0.0244028460353,0.725225662204,-0.364352647316
-1470147417255189870,-0.00976183917373,0.0093473829329,0.252082705498,-0.539900129968,0.0233664508794,0.728656982883,-0.420738469752
-1470147417326898365,-0.0097298854962,0.00939706806093,0.251682311296,-0.532693325381,0.0231474784822,0.729332775075,-0.428690702648
-1470147417400901568,-0.00971844885498,0.00939372833818,0.251248091459,-0.513452877385,0.0203745549705,0.728946684325,-0.452313775631
-1470147417474480002,-0.00964890420437,0.00938231311738,0.251004129648,-0.535003696863,0.0226536292867,0.728800864419,-0.426740152136
-1470147417552802651,-0.00961669441313,0.00935428123921,0.250758290291,-0.53738783846,0.0226641642707,0.728308208386,-0.424579557129
-1470147417624834087,-0.00957739539444,0.00930449459702,0.250489801168,-0.571178187681,0.0238031976112,0.726048128614,-0.382155728253
-1470147417701623550,-0.00964221637696,0.00932728685439,0.249828234315,-0.559655567024,0.0232666803678,0.726640102772,-0.397791992035
-1470147417780480979,-0.0097213415429,0.00936999265105,0.249131172895,-0.514207746619,0.0192896652938,0.727765354069,-0.453404776713
-1470147417856671063,-0.00964740570635,0.00936074834317,0.248872667551,-0.535044022365,0.02151252552,0.72782215783,-0.428415699934
-1470147417943813560,-0.009591890499,0.00933927670121,0.248644411564,-0.54948786882,0.0229962098223,0.727623352285,-0.409998187268
-1470147418023297429,-0.00954149570316,0.00931439548731,0.248317480087,-0.561506368393,0.0240873197504,0.727338320103,-0.393839265934
-1470147418099268545,-0.00965355243534,0.00930968020111,0.247418865561,-0.52995108295,0.0229328813338,0.729419246992,-0.431941540896
-1470147418175509568,-0.00963428989053,0.00931605696678,0.247072339058,-0.537170840029,0.024358305685,0.72975902227,-0.422262869528
-1470147418250180817,-0.00962775014341,0.00932127889246,0.248037949204,-0.553179386062,0.0247459990091,0.72865285934,-0.403044926708
-1470147418325575360,-0.00964384153485,0.00934440642595,0.248847663403,-0.562126374452,0.0235482669175,0.726884043744,-0.393826110386
-1470147418397517578,-0.00965355057269,0.00932335946709,0.248819351196,-0.540140723243,0.0217927180024,0.72767734977,-0.422207000378
-1470147418471036950,-0.00961315445602,0.00933180004358,0.248194724321,-0.554814179048,0.0246259142205,0.728398222363,-0.401261536575
-1470147418542954054,-0.009690284729,0.00934852100909,0.246791467071,-0.510023578065,0.0190452719059,0.727930676574,-0.457853860459
-1470147418623896446,-0.0095385927707,0.00928621273488,0.24542760849,-0.539319613422,0.0227634415712,0.728451982554,-0.421869517053
-1470147418700163074,-0.00957893766463,0.00928069837391,0.244278401136,-0.525695691852,0.0203705530331,0.727702929207,-0.440088090002
-1470147418778203199,-0.00948809739202,0.00927194673568,0.243949398398,-0.553327320964,0.0227648084923,0.726937926973,-0.406044196728
-1470147418853631972,-0.00948663149029,0.00925832241774,0.243594944477,-0.557245557279,0.0228773589545,0.726647481567,-0.401170104659
-1470147418925374956,-0.00954612158239,0.00929640233517,0.242718443274,-0.54671416363,0.0246646034472,0.728972279903,-0.411211254412
-1470147418997604033,-0.0095977941528,0.00931376032531,0.242407619953,-0.51814061551,0.0196562194726,0.727890021994,-0.448687030653
-1470147419072145299,-0.00950944796205,0.0093019194901,0.242074474692,-0.537020518924,0.0218728066918,0.728049320975,-0.425528763787
-1470147419151223142,-0.00953090935946,0.00932340230793,0.24222111702,-0.544313333746,0.0224225030026,0.727845089973,-0.416487396049
-1470147419222991251,-0.00954130571336,0.00933159422129,0.242826551199,-0.565490410146,0.0272208929288,0.728765921302,-0.385201052658
-1470147419296598237,-0.00957772880793,0.00934750214219,0.242976516485,-0.558435815046,0.0264716293818,0.729017936627,-0.394944985267
-1470147419369525179,-0.00956081785262,0.00935495179147,0.242726355791,-0.555094086835,0.0252833524917,0.728516128505,-0.400618967794
-1470147419446288252,-0.00960028637201,0.00937966816127,0.242487028241,-0.525344542062,0.0210309860514,0.728392188663,-0.439335440462
-1470147419522763576,-0.00940004363656,0.00927489064634,0.239623278379,-0.541063658285,0.0225475183054,0.728108944029,-0.420236948312
-1470147419599099873,-0.00951319374144,0.00925971474499,0.238119572401,-0.521487790673,0.0203231842395,0.728007155039,-0.444570618206
-1470147419673680002,-0.00948212388903,0.00930420961231,0.238382309675,-0.535525840001,0.0238293340828,0.729590037149,-0.424667652667
-1470147419755854474,-0.00952194258571,0.00928300339729,0.238097205758,-0.515181772879,0.0194684697806,0.72785166652,-0.452151159593
-1470147419836907261,-0.00946383271366,0.00927662104368,0.237873852253,-0.526342993061,0.0205264477409,0.727719652225,-0.439278757014
-1470147419909957998,-0.00940381642431,0.00926502607763,0.237650334835,-0.542806147593,0.0216957212602,0.72710922302,-0.419765362571
-1470147419989481493,-0.0093325022608,0.00928303506225,0.23700208962,-0.561197085126,0.0246864618969,0.727612891519,-0.393735812876
-1470147420063358468,-0.00937949120998,0.00927701033652,0.237232983112,-0.56223371681,0.0245507442436,0.727333063324,-0.392781266909
-1470147420137240484,-0.00945281703025,0.00932805333287,0.237924963236,-0.541635052884,0.0229689403035,0.728502741746,-0.418793090365
-1470147420211731634,-0.00947100576013,0.00935977231711,0.23814445734,-0.535335332891,0.0233990756424,0.72949980849,-0.425086572396
-1470147420288783529,-0.0094590075314,0.00932533666492,0.237993553281,-0.540297605013,0.0223779244515,0.728139140478,-0.42117825041
-1470147420363670936,-0.00936004240066,0.00931395217776,0.23706805706,-0.530722017398,0.0220356285093,0.728535336781,-0.432533044272
-1470147420437503970,-0.00944084115326,0.00927993562073,0.233970955014,-0.507160215969,0.0188452155846,0.728079624283,-0.460796521136
-1470147420510363303,-0.00947620440274,0.00935710407794,0.234308376908,-0.509245116292,0.0189377912624,0.727974675363,-0.458654165602
-1470147420591552866,-0.00941717810929,0.0093810223043,0.23408639431,-0.52539607725,0.0209727005752,0.728277259681,-0.439467110114
-1470147420665277789,-0.00934157986194,0.00940170325339,0.233822003007,-0.54585632508,0.0233845437081,0.728090359722,-0.41397882019
-1470147420737663647,-0.00933470297605,0.00947999581695,0.23331131041,-0.52279607965,0.0204001272442,0.728002855129,-0.443034916044
-1470147420815516098,-0.00933613162488,0.00948998332024,0.232996657491,-0.532057889549,0.0207429913606,0.727448424066,-0.432785074605
-1470147420888741039,-0.00936266873032,0.00953011121601,0.232532471418,-0.530186273769,0.0225466099969,0.728994064335,-0.432390818183
-1470147420963551376,-0.00939315650612,0.00954639632255,0.232505843043,-0.532918245545,0.0229890988529,0.729149004011,-0.428732288088
-1470147421035045582,-0.00935103744268,0.00961146689951,0.233771517873,-0.548243489466,0.0236009733208,0.728289902842,-0.410445962015
-1470147421106354764,-0.00932954996824,0.00959147885442,0.23380433023,-0.559224073214,0.0249116714743,0.728064507649,-0.395689167484
-1470147421179818871,-0.00936075113714,0.00960648432374,0.233625516295,-0.534962845959,0.0225084081045,0.728665335338,-0.427030390118
-1470147421257592246,-0.00935226399451,0.00957318395376,0.233132496476,-0.532293531053,0.0227486877764,0.728976751787,-0.429812737547
-1470147421332294744,-0.00933942757547,0.00921620801091,0.230041995645,-0.531763893747,0.0216309066582,0.728272240597,-0.43171612057
-1470147421404862331,-0.00930837914348,0.00914953555912,0.230186894536,-0.556098780152,0.024648629846,0.728177379971,-0.39988035093
-1470147421478592996,-0.00934259966016,0.00942084938288,0.230828255415,-0.509894924984,0.0195484789011,0.728389734287,-0.457245467372
-1470147421547872289,-0.00934578664601,0.00987290684134,0.230258196592,-0.532582433309,0.0223226605072,0.72883208691,-0.42972251471
-1470147421623110358,-0.00929250009358,0.0102469632402,0.229945257306,-0.548783366547,0.0231877920549,0.727739659046,-0.410723911591
-1470147421695113301,-0.00921746902168,0.010563342832,0.229597553611,-0.557027044641,0.0236672324314,0.727389240195,-0.400082025211
-1470147421773936881,-0.00925171375275,0.0107114557177,0.229292064905,-0.537850332534,0.0208339389627,0.726843457653,-0.426592961553
-1470147421850283574,-0.00921885482967,0.010862772353,0.228787779808,-0.557788596318,0.0236132697876,0.727149168013,-0.399460114111
-1470147421922834868,-0.00931513309479,0.0109491441399,0.228241875768,-0.537581605101,0.0213276093775,0.727495498086,-0.42579508123
-1470147422000187265,-0.00922561809421,0.011020090431,0.228058204055,-0.563759269234,0.0250427221287,0.727662188189,-0.389943698886
-1470147422079600504,-0.00923954695463,0.0111713176593,0.229263842106,-0.56552244724,0.0247655206504,0.727290959659,-0.388096496573
-1470147422155872802,-0.00921845808625,0.0112627334893,0.229620456696,-0.562291494644,0.0252575071334,0.728065435467,-0.39129407747
-1470147422231805072,-0.00918211787939,0.0112765487283,0.229230746627,-0.5717105621,0.0262811039267,0.727654408686,-0.378120877868
-1470147422308953505,-0.00925204157829,0.0113272694871,0.22867795825,-0.539316713034,0.0231628697481,0.728807599809,-0.421236806283
-1470147422388782254,-0.00914567243308,0.0112664392218,0.225150763988,-0.53554809794,0.0192241285097,0.725900824529,-0.431145753341
-1470147422466390265,-0.00917382352054,0.0113035580143,0.224756464362,-0.537826578913,0.0210436905749,0.727105030633,-0.426166644084
-1470147422544676177,-0.0091595435515,0.011308430694,0.225205004215,-0.552544290257,0.0203565486692,0.725352823432,-0.410053288939
-1470147422620517376,-0.0091796759516,0.0113462936133,0.224289610982,-0.547654827113,0.0229611536702,0.727568360474,-0.41254243006
-1470147422692859062,-0.0091417580843,0.0113700665534,0.223997339606,-0.552715137412,0.0224498296836,0.72673777658,-0.407251993384
-1470147422766072728,-0.00916352681816,0.0113856066018,0.223749041557,-0.529818827316,0.0192708561862,0.726480374702,-0.43720351039
-1470147422839498999,-0.0090790707618,0.0114159630612,0.223341181874,-0.560986309815,0.023622164908,0.726990240861,-0.395248710584
-1470147422917491535,-0.00913874153048,0.0114377615973,0.223764777184,-0.546087434218,0.0213818246707,0.726640573036,-0.416322962831
-1470147422993590586,-0.00912479124963,0.0114910658449,0.223990693688,-0.55647705209,0.0244887265196,0.7280846499,-0.399532646164
-1470147423065709206,-0.00913210771978,0.0115210553631,0.224214106798,-0.557263171823,0.0252718638463,0.728592473121,-0.397457039614
-1470147423138324902,-0.00909045152366,0.0115381358191,0.223749577999,-0.553717267396,0.0244868552409,0.728340645592,-0.40288644267
-1470147423215940431,-0.0091639906168,0.0115289026871,0.222507506609,-0.499761710432,0.0184868305111,0.728548577752,-0.468095545524
-1470147423292811408,-0.00915039610118,0.0114495251328,0.220550253987,-0.532430335981,0.0203991846452,0.727060805274,-0.432994683602
-1470147423365122167,-0.00896379817277,0.011456977576,0.219506070018,-0.554810150553,0.0233090604329,0.727226897866,-0.403464277931
-1470147423437296909,-0.00895781628788,0.0114492867142,0.219845280051,-0.56620598175,0.0242845065378,0.726927139691,-0.387811787538
-1470147423515885487,-0.00896528363228,0.011451240629,0.219470232725,-0.563574277354,0.0235784034631,0.726641743518,-0.392198762585
-1470147423591341206,-0.00905173551291,0.0115134287626,0.219072178006,-0.549200792752,0.0211928407391,0.726284443932,-0.4128441101
-1470147423667554758,-0.00905919354409,0.0115513950586,0.218790784478,-0.561356955192,0.0231134241953,0.726539442441,-0.395581315354
-1470147423742065477,-0.00906981341541,0.0113708851859,0.218795239925,-0.555936060761,0.0228977988221,0.726661803473,-0.402955841907
-1470147423817101239,-0.00900638476014,0.0109851323068,0.219575539231,-0.54805670438,0.0244056796977,0.72861322451,-0.410074359904
-1470147423889647171,-0.0090505219996,0.010515075177,0.220514833927,-0.55470490975,0.0252937831656,0.728862094631,-0.40052806973
-1470147423960113482,-0.00901763979346,0.0103952726349,0.221106216311,-0.548230241181,0.0261777257416,0.730021230691,-0.407219022236
-1470147424033171667,-0.00898964703083,0.0101580563933,0.221422001719,-0.542106710811,0.0254735995662,0.729993736866,-0.415428157393
-1470147424105817527,-0.00898556876928,0.0100098922849,0.221338525414,-0.533829274936,0.0255757346012,0.730911476843,-0.424429735104
-1470147424177110257,-0.009008965455,0.00991058163345,0.220735877752,-0.52378638705,0.022911627423,0.729897066988,-0.438603636183
-1470147424251267131,-0.00897206552327,0.0097176823765,0.219090908766,-0.536647589626,0.0228153827808,0.728441777792,-0.425278025796
-1470147424323773689,-0.00898150261492,0.00951689947397,0.219089835882,-0.538945338456,0.0229030063339,0.728132788042,-0.422890077249
-1470147424395419687,-0.0090067461133,0.00927938427776,0.218997910619,-0.530821864217,0.0217598154339,0.728196470639,-0.432994871852
-1470147424467091328,-0.00901242718101,0.00902390666306,0.218709081411,-0.550086051339,0.0239376040846,0.728032932111,-0.408412018671
-1470147424538574047,-0.00901072192937,0.00890406034887,0.218552336097,-0.552072523745,0.0234115433771,0.72761687632,-0.406499089121
-1470147424610219736,-0.00901785492897,0.00879928190261,0.218323037028,-0.54458353055,0.0220093009003,0.727011903092,-0.417609939644
-1470147424684964039,-0.00902247894555,0.00858672335744,0.217885807157,-0.508033587514,0.0197504908057,0.728544158099,-0.459059039526
-1470147424757658105,-0.00897458009422,0.00847369991243,0.217302918434,-0.524574833083,0.0223519992008,0.729399584037,-0.438517821114
-1470147424833965063,-0.00901178363711,0.00830136332661,0.216861754656,-0.543800738439,0.0224091517482,0.727535222189,-0.41769736325
-1470147424907787779,-0.00894996896386,0.00820010621101,0.216587483883,-0.5589081732,0.0234581173961,0.726874455674,-0.398402932152
-1470147424981723683,-0.00894584879279,0.00817587133497,0.216289937496,-0.542582688211,0.0223724178947,0.727607197442,-0.419155421773
-1470147425054870673,-0.00900129973888,0.00816483050585,0.215919703245,-0.489364189551,0.0189875819898,0.729287067383,-0.477810145417
-1470147425127720455,-0.00892068631947,0.00805195886642,0.2160705477,-0.530871196889,0.0242278901783,0.729985761561,-0.429778512224
-1470147425199800584,-0.0089520374313,0.0078791687265,0.216759607196,-0.538649089876,0.0247066155989,0.729949251828,-0.420024797931
-1470147425275962582,-0.00893230456859,0.00777203775942,0.216691613197,-0.542991556071,0.024239361064,0.729267970066,-0.415621042834
-1470147425351247633,-0.00890682078898,0.00762023823336,0.216419056058,-0.54176941384,0.0233481289567,0.728693689375,-0.418265793684
-1470147425423849593,-0.00888870563358,0.00755534740165,0.216198861599,-0.528216221692,0.0221441909493,0.729109552985,-0.434622270131
-1470147425495967834,-0.00882160849869,0.00737988995388,0.212718948722,-0.529719826833,0.0204259137029,0.727427567813,-0.435693493979
-1470147425568509573,-0.00875942502171,0.00731485476717,0.212469607592,-0.545082955367,0.0213907831352,0.726839540056,-0.417290413474
-1470147425641939372,-0.00872079189867,0.00732230441645,0.213242083788,-0.527822897419,0.0224979073703,0.729246460275,-0.434852197075
-1470147425714044003,-0.00865476764739,0.00733562745154,0.21297082305,-0.539472785658,0.0235658561329,0.728817253091,-0.420997833197
-1470147425789823031,-0.00870640017092,0.00736862746999,0.212397202849,-0.524311918294,0.020961921368,0.72850533007,-0.440383462731
-1470147425862036603,-0.00861194636673,0.0073843668215,0.211887359619,-0.533241333432,0.0220778775432,0.728591430373,-0.429325954528
-1470147425937644153,-0.00855476688594,0.00735383387655,0.211621984839,-0.5427020228,0.022954859711,0.728268136597,-0.417819470683
-1470147426012184728,-0.00853038113564,0.00732874730602,0.21130399406,-0.542225219564,0.0239248970012,0.728936454822,-0.417218234745
-1470147426098621283,-0.00859582517296,0.00733535084873,0.211701989174,-0.524238920724,0.0220774587939,0.729550156282,-0.438682925678
-1470147426171435225,-0.0085951667279,0.00732651446015,0.212158620358,-0.540326153367,0.0251636523261,0.730474478403,-0.4169190269
-1470147426244679190,-0.00858736410737,0.00729070371017,0.212188526988,-0.539247995542,0.0255533674214,0.730833549268,-0.417661283794
-1470147426316281681,-0.00860007014126,0.00724218599498,0.212079927325,-0.527199259086,0.0242111765228,0.731055157615,-0.432473255445
-1470147426391203356,-0.0086485715583,0.00712131289765,0.209943309426,-0.48631233881,0.0161651873739,0.72748867323,-0.48373466504
-1470147426468293236,-0.00862853508443,0.0070963408798,0.209254428744,-0.52212058506,0.0207224355546,0.728604483014,-0.442827486335
-1470147426543129585,-0.00856500677764,0.00706620654091,0.210033640265,-0.533267192488,0.0235699559878,0.729628340391,-0.427449463082
-1470147426616739726,-0.00858232099563,0.00699974503368,0.210066825151,-0.525772235486,0.0226651381698,0.729779628701,-0.436430454295
-1470147426689400542,-0.00863958895206,0.00691396091133,0.210162609816,-0.515517815519,0.019965600039,0.728571289501,-0.450584767621
-1470147426759606812,-0.00864679552615,0.00688311178237,0.210169419646,-0.512323475908,0.0197954412731,0.728822274994,-0.453818122171
-1470147426831259501,-0.00860961154103,0.00684042135254,0.210183218122,-0.528265071528,0.0213720556829,0.728605839867,-0.4354454955
-1470147426904146440,-0.00859535392374,0.0068446258083,0.210209369659,-0.536267476422,0.0222764187609,0.728561401722,-0.425581060222
-1470147426976710231,-0.00861809402704,0.00686906836927,0.210187345743,-0.525138951824,0.0209838605825,0.728665927025,-0.43912950899
-1470147427050777160,-0.00864215381444,0.00685994746163,0.210206136107,-0.520407924109,0.0201723808168,0.728308220337,-0.445349080798
-1470147427124705096,-0.00862896256149,0.00686607230455,0.210234180093,-0.526326695053,0.0208032228055,0.728386903793,-0.438177993946
-1470147427199267307,-0.00864913593978,0.00689523434266,0.210220694542,-0.517813386932,0.0197815383196,0.728322527824,-0.448357315676
-1470147427274988729,-0.00863625574857,0.00689203385264,0.210193306208,-0.517305137626,0.0203123336053,0.728825347024,-0.448103132353
-1470147427345279256,-0.00862323306501,0.00688047707081,0.210260078311,-0.527959069992,0.02106568016,0.728408863419,-0.436160503973
-1470147427417620627,-0.00862748175859,0.00688040349633,0.210367441177,-0.536815050621,0.0215277440902,0.727940045983,-0.425992308753
-1470147427489713310,-0.00863958802074,0.00690615642816,0.210408657789,-0.528305571212,0.0211075463537,0.728405145612,-0.435744923963
-1470147427562950090,-0.0086799710989,0.00693283928558,0.210400521755,-0.515440805476,0.0192004926914,0.727968696882,-0.45167875032
-1470147427641615989,-0.00869160238653,0.00695322128013,0.210442006588,-0.513328364483,0.0191804853256,0.728121639699,-0.453833644634
-1470147427717203327,-0.00869751255959,0.00697030918673,0.210489585996,-0.511577255807,0.0190349081058,0.728161960556,-0.45574833276
-1470147427791167941,-0.0086999097839,0.00698389718309,0.210513845086,-0.513465020944,0.0190829355812,0.727912440606,-0.454018713984
-1470147427866148297,-0.00869400240481,0.00700766453519,0.21054892242,-0.522399436441,0.0200511574293,0.727968482469,-0.443574873526
-1470147427935554555,-0.00865720305592,0.00707791233435,0.210574865341,-0.531848844461,0.0218874192881,0.728773188855,-0.430752117496
-1470147428005211923,-0.00863709300756,0.00710031576455,0.210565328598,-0.540827206083,0.0228857860802,0.728658775455,-0.419569497114
-1470147428076705120,-0.00863087829202,0.00713230343536,0.210593521595,-0.544025507607,0.0232689585838,0.728636676185,-0.415431578912
-1470147428149272125,-0.00862675718963,0.00719875283539,0.210596039891,-0.547811584306,0.0238342671812,0.728698887778,-0.41028322749
-1470147428223212729,-0.0086314631626,0.00721116364002,0.210567846894,-0.550960440972,0.023856839123,0.728344815133,-0.406678342157
-1470147428296346074,-0.00864101666957,0.00723279407248,0.210590109229,-0.543641164,0.0233490398977,0.728650896453,-0.415905011077
-1470147428371581113,-0.00866070203483,0.00725713837892,0.210581541061,-0.540760554154,0.0226893961535,0.728488615695,-0.419961368672
-1470147428447071157,-0.00867544300854,0.00727343652397,0.210605114698,-0.537354633344,0.0226158401149,0.728795056162,-0.42378802238
-1470147428521583965,-0.00876236334443,0.00732472958043,0.210649177432,-0.509545757427,0.0189110168132,0.728392226576,-0.457657359599
-1470147428596569193,-0.00875747296959,0.00735388556495,0.210632577538,-0.509961314496,0.0192198395934,0.728555069563,-0.456921838062
-1470147428676413171,-0.00875438097864,0.00737299071625,0.210675120354,-0.514789909672,0.0195783362593,0.728440958562,-0.451643451783
-1470147428753629525,-0.00875910092145,0.00738636171445,0.210695207119,-0.51207453223,0.0196371709,0.728765920192,-0.454196310562
-1470147428826178967,-0.00875997450203,0.00737398257479,0.210677623749,-0.510774771604,0.0193398016896,0.728565502761,-0.455990584278
-1470147428904249931,-0.00876209139824,0.00736250029877,0.210684046149,-0.513442612049,0.0193093926948,0.728330152787,-0.453364114181
-1470147428976017113,-0.00875184778124,0.00737348850816,0.210668593645,-0.514400474817,0.0196737325863,0.72858640431,-0.451848367496
-1470147429049492779,-0.00876068416983,0.0073668542318,0.210663586855,-0.512015286699,0.0193476804291,0.728476478679,-0.454739522651
-1470147429123687657,-0.00876040384173,0.00736685516313,0.210684761405,-0.514257711711,0.0194337761511,0.728376256066,-0.452359772626
-1470147429197886033,-0.00874488707632,0.00738574238494,0.210677489638,-0.513458365507,0.0196279656605,0.728643773587,-0.452828335099
-1470147429276669019,-0.00873114727437,0.00740531366318,0.210679456592,-0.520481241683,0.0204753417746,0.728789783568,-0.44446089682
-1470147429351264842,-0.00868674740195,0.00747448951006,0.210653796792,-0.540560612217,0.0228757300399,0.728854810503,-0.419573105313
-1470147429424714080,-0.00869660731405,0.00754249002784,0.210611268878,-0.552241910242,0.0231049286348,0.727868346198,-0.405835810949
-1470147429497139867,-0.00880572851747,0.00762185361236,0.210525736213,-0.515190628404,0.0185661130309,0.727800849221,-0.452260809406
-1470147429570122595,-0.00880647171289,0.00767567334697,0.210523530841,-0.517685982188,0.019395548319,0.728194192959,-0.448729599974
-1470147429648173093,-0.00879717245698,0.00770106073469,0.210477381945,-0.526340429572,0.0203710232651,0.728144277369,-0.438584866296
-1470147429722528050,-0.00877787917852,0.00774689391255,0.210463404655,-0.535296750051,0.0216281988469,0.728341648537,-0.42720961296
-1470147429794725574,-0.00874171312898,0.00777834188193,0.210436329246,-0.543542725542,0.0229379322312,0.728571433487,-0.416195654808
-1470147429866993410,-0.00871802680194,0.00781330838799,0.210515618324,-0.557924196712,0.0237905901141,0.727805110734,-0.398063210225
-1470147429940276940,-0.00869869533926,0.00783481821418,0.210505858064,-0.563180321951,0.0242679243797,0.727666108814,-0.390820965273
-1470147430015562800,-0.00868892017752,0.00790132209659,0.210515543818,-0.559675938056,0.0234290440942,0.727513705159,-0.39615367354
-1470147430092960708,-0.00874060299248,0.00794312730432,0.210500389338,-0.543470413001,0.0198849484779,0.72649574881,-0.420057646017
-1470147430170595814,-0.00866502895951,0.00801630038768,0.210360258818,-0.544950187561,0.0205274871272,0.726508284943,-0.4180832779
-1470147430241744502,-0.00855006836355,0.00807572156191,0.210063397884,-0.545818860388,0.0227285236665,0.728025843527,-0.414178170616
-1470147430315900399,-0.00847418420017,0.00800338387489,0.209751725197,-0.555557437293,0.0236061141435,0.727824209364,-0.401336025678
-1470147430391871003,-0.00846222881228,0.00787553843111,0.209453418851,-0.55401801847,0.0222610607443,0.726877173547,-0.405238269369
-1470147430463393178,-0.00841305591166,0.00782846938819,0.208948329091,-0.545415183132,0.0223356843058,0.727705108675,-0.415293474575
-1470147430535673119,-0.00844929926097,0.00782837159932,0.207976460457,-0.519101496792,0.0193903619784,0.727846318904,-0.447657666022
-1470147430608496879,-0.0084234289825,0.00777393532917,0.207761600614,-0.52094199476,0.0184104721836,0.726608748959,-0.447571467528
-1470147430680511187,-0.00831185095012,0.00779558019713,0.20747564733,-0.534244330111,0.0209609469633,0.727634175622,-0.429758235424
-1470147430753013151,-0.00821096263826,0.00779452407733,0.207099840045,-0.552091320073,0.0232057958554,0.727690636124,-0.406353298789
-1470147430825605472,-0.00835821777582,0.00779365748167,0.206172540784,-0.516794532332,0.0189160771225,0.727666700017,-0.450629301161
-1470147430897572041,-0.00829536002129,0.00776412989944,0.205918520689,-0.534812455522,0.0201999094466,0.726893821294,-0.430340532184
-1470147430969505401,-0.00824660249054,0.00775485346094,0.205723688006,-0.547447971518,0.021752806293,0.726872372986,-0.414106371949
-1470147431043757800,-0.0082714157179,0.00782033707947,0.20597115159,-0.54660194136,0.0223430974341,0.727654651762,-0.41381857313
-1470147431125782979,-0.00829979870468,0.0078867636621,0.206303521991,-0.534170084021,0.0237323393423,0.730054610522,-0.42558120619
-1470147431194817967,-0.00829744432122,0.00787916593254,0.206290617585,-0.536587220633,0.0232714941648,0.729334779744,-0.423796379491
-1470147431267684889,-0.00824434217066,0.00789233949035,0.205937385559,-0.53770954625,0.0229848159897,0.729016320821,-0.422936574539
-1470147431341275469,-0.00824605114758,0.00784577894956,0.203601002693,-0.49076738561,0.0167036895248,0.727453990308,-0.479248424059
-1470147431413751015,-0.0081754475832,0.00784192420542,0.202666178346,-0.553732116846,0.0223968612622,0.726838426208,-0.405690800446
-1470147431486938944,-0.00822341814637,0.00789348501712,0.203299477696,-0.539180897697,0.0210929935271,0.72725790794,-0.424187435602
-1470147431566058391,-0.00821285881102,0.00789063982666,0.202864930034,-0.543788832855,0.022151590305,0.727587504982,-0.417635528784
-1470147431644185121,-0.00823638681322,0.00792613625526,0.202346011996,-0.50984270284,0.0185302109391,0.727729498314,-0.45839592813
-1470147431717323916,-0.00822400208563,0.00790029857308,0.20205283165,-0.52089579921,0.0195667400499,0.727698350212,-0.445802445201
-1470147431789934196,-0.00821015890688,0.00785857532173,0.201451301575,-0.54580806961,0.0216671601159,0.727163204218,-0.415761662197
+1470148072485586057,-0.0378360040486,0.374558150768,1.35844314098,-0.175597112654,0.0158307993188,0.789049297885,-0.58848640199
+1470148072611479251,-0.0378360040486,0.374558150768,1.35844314098,-0.175597112654,0.0158307993188,0.789049297885,-0.58848640199
+1470148072688230812,-0.0378360040486,0.374558150768,1.35844314098,-0.175597112654,0.0158307993188,0.789049297885,-0.58848640199
+1470148072771508299,-0.0378360040486,0.374558150768,1.35844314098,-0.175597112654,0.0158307993188,0.789049297885,-0.58848640199
+1470148072853224997,-0.0378360040486,0.374558150768,1.35844314098,-0.175597112654,0.0158307993188,0.789049297885,-0.58848640199
+1470148072928604283,-0.0378360040486,0.374558150768,1.35844314098,-0.175597112654,0.0158307993188,0.789049297885,-0.58848640199
+1470148073007669139,-0.0378360040486,0.374558150768,1.35844314098,-0.175597112654,0.0158307993188,0.789049297885,-0.58848640199
+1470148073080576854,-0.0378360040486,0.374558150768,1.35844314098,-0.175597112654,0.0158307993188,0.789049297885,-0.58848640199
+1470148073158595103,-0.037276469171,0.372738927603,1.35079610348,-0.267216220931,0.0282015375871,0.787033724661,-0.555317999705
+1470148073237164691,-0.0365843661129,0.372201561928,1.34595704079,-0.00248816801344,0.00396070038166,0.374672905423,0.927145261442
+1470148073316189507,-0.0362362153828,0.379605293274,1.36959862709,-0.194434546123,0.0195510482871,0.780640562422,-0.593644065149
+1470148073395512002,-0.0353085882962,0.368188291788,1.35113048553,-0.287069194904,0.0310976704318,0.785667279159,-0.54712991025
+1470148073474148943,-0.0360040515661,0.353751659393,1.32644343376,-0.258990579923,0.0309535009987,0.785223773212,-0.561595393739
+1470148073550403278,-0.0361042879522,0.341275781393,1.30550146103,-0.0560221795246,0.0194157268543,-0.402831019676,-0.913351911663
+1470148073624336924,-0.035078663379,0.334346830845,1.29282987118,-0.281789146513,0.0233814814272,0.783312138093,-0.553597577262
+1470148073699062093,-0.0345481000841,0.317952603102,1.26444530487,-0.132387403628,0.0197392148569,0.801925724529,-0.582236267418
+1470148073774023905,-0.034381929785,0.309249997139,1.26134324074,-0.176392447976,0.0233479867798,0.794316092616,-0.580863599154
+1470148073849138363,-0.0335317254066,0.299729257822,1.24603736401,-0.181351111453,0.0185250338566,0.792859332234,-0.581500366969
+1470148073925121934,-0.032517798245,0.286018043756,1.23651599884,-0.0194135270928,0.00331372900968,-0.411998580548,-0.910971626228
+1470148074000349243,-0.0317612886429,0.275363087654,1.22047460079,-0.254375707839,0.0324612035469,0.797180525656,-0.54657339767
+1470148074074027458,-0.0305349994451,0.267618238926,1.21873033047,-0.20843143912,0.0246931968887,0.785847013339,-0.581713892596
+1470148074149193416,-0.0304611828178,0.263355791569,1.2285567522,-0.202998822943,0.0236303444307,0.779590249999,-0.592006863821
+1470148074223984338,-0.0295251496136,0.248009204865,1.21091794968,-0.230572437583,0.0206994203444,0.779034657277,-0.582677344494
+1470148074300955559,-0.0287223998457,0.236100748181,1.18495202065,-0.220541252242,0.0294469109113,0.790409592232,-0.570742596978
+1470148074374177010,-0.028678715229,0.23127399385,1.19456124306,-0.136822852847,0.0113234295725,0.770257353905,-0.622779973696
+1470148074450464291,-0.0282604210079,0.218245640397,1.15670502186,-0.199642910074,0.0222373526585,0.791664309256,-0.576988587456
+1470148074526143831,-0.0273021906614,0.206513866782,1.14133381844,-0.0914261662421,0.0105959947878,0.787251754828,-0.609724245492
+1470148074602058205,-0.0271100215614,0.200590163469,1.13783860207,-0.251530217536,0.033032761452,0.784699078552,-0.565587077697
+1470148074678274567,-0.0269040893763,0.19505611062,1.13376510143,-0.256779754118,0.0316851802183,0.783894214168,-0.564420116777
+1470148074758665997,-0.0260744746774,0.188013985753,1.11980223656,-0.205776927347,0.0218973349991,0.784997123436,-0.58391427375
+1470148074833905668,-0.0256334580481,0.179591983557,1.11331760883,-0.187885381122,0.0230789776501,0.783204599919,-0.592247413685
+1470148074907679668,-0.0256111156195,0.174650683999,1.11272001266,-0.195333771629,0.0174721284604,0.767079350354,-0.610842625108
+1470148074987674607,-0.0249206423759,0.168642729521,1.09862029552,-0.286732630863,0.0304100627629,0.777638301096,-0.558693385633
+1470148075062106012,-0.0245044603944,0.157087936997,1.06397116184,-0.113919453568,0.0136822564627,0.785558179685,-0.608057152155
+1470148075134565232,-0.024461755529,0.153480514884,1.06284224987,-0.194684340128,0.023393384208,0.782139469469,-0.591446200075
+1470148075213803143,-0.024472894147,0.150240242481,1.06292521954,-0.20548057377,0.0209460926647,0.771378473028,-0.601925449167
+1470148075294999273,-0.0244404561818,0.146583050489,1.06058967113,-0.218441770742,0.0213989757474,0.767540182817,-0.602251894471
+1470148075374159070,-0.0243357066065,0.13802793622,1.03063213825,-0.252749862435,0.0247607130775,0.776105846259,-0.577203715797
+1470148075464910507,-0.0239502973855,0.134013876319,1.02346515656,-0.35511007122,0.0364837302618,0.771576443366,-0.526531638922
+1470148075542347578,-0.0236048512161,0.130055293441,1.01485145092,-0.336386207639,0.036052558901,0.770381259288,-0.540423211608
+1470148075622527539,-0.0237574409693,0.125286817551,0.995230078697,-0.169073202691,0.0208609829693,0.782563322901,-0.598810251392
+1470148075704972439,-0.0237674564123,0.121343530715,0.994728386402,-0.210906568217,0.0198618936606,0.766298251106,-0.606556604955
+1470148075781359121,-0.0237831007689,0.11740090698,0.976817131042,-0.260860615211,0.032732575823,0.776991088323,-0.571983536982
+1470148075858655579,-0.0232324525714,0.112914614379,0.959940671921,-0.290136798159,0.0325611127591,0.780698166706,-0.552513153502
+1470148075935736251,-0.022660728544,0.1100852862,0.952518701553,-0.335171988143,0.0366822138027,0.767809709437,-0.544777389076
+1470148076011569943,-0.0226382017136,0.107632763684,0.949766933918,-0.365884370153,0.0375933192706,0.762172395696,-0.532736904356
+1470148076088329051,-0.0227156262845,0.103853948414,0.928394138813,-0.293734021973,0.0263924794767,0.765640062275,-0.571680904353
+1470148076164421020,-0.0221328642219,0.101069316268,0.919955551624,-0.250790581283,0.0204961837519,0.766288650554,-0.591173151305
+1470148076237570438,-0.0221413783729,0.0975021347404,0.898541927338,-0.246824611809,0.0296143079549,0.779392871581,-0.575106386243
+1470148076326870057,-0.0219268035144,0.0960579067469,0.894617915154,-0.209544534139,0.0192626385124,0.774061473093,-0.597117136618
+1470148076406054847,-0.0212422367185,0.0932771489024,0.882203817368,-0.427520412236,0.0524944522737,0.771510371077,-0.468233250553
+1470148076480899144,-0.021403985098,0.0898977145553,0.866728186607,-0.202313800437,0.0207299886844,0.772629117388,-0.60140139731
+1470148076558186104,-0.0213032700121,0.0885063782334,0.864980518818,-0.251368832639,0.0228965671859,0.765653485407,-0.59166223259
+1470148076633220603,-0.0210952516645,0.0870793610811,0.860086917877,-0.241688993976,0.0164007318561,0.756773867215,-0.607133230919
+1470148076707923999,-0.0207388382405,0.0827814489603,0.836143553257,-0.366656547812,0.0328440030021,0.761550779916,-0.533408527325
+1470148076786046452,-0.0210288576782,0.0805500522256,0.822074770927,-0.0580352127611,0.00479938783008,0.764808045631,-0.641621019991
+1470148076861144968,-0.0207330193371,0.0792260915041,0.816936314106,-0.277935717777,0.0180995825148,0.75345057741,-0.595597489331
+1470148076934161231,-0.0206407047808,0.0766840428114,0.797167003155,-0.292575288568,0.0231884154504,0.763253832802,-0.575591508468
+1470148077010932575,-0.0202781967819,0.076014764607,0.793200969696,-0.277707093557,0.0236289795364,0.759346197681,-0.587974313709
+1470148077090070645,-0.0201483499259,0.0752434283495,0.789619624615,-0.178220631205,0.0104526704993,0.751358458257,-0.635286246898
+1470148077162192339,-0.0197479724884,0.0727583020926,0.768556654453,-0.316408778524,0.0257462825661,0.761187314572,-0.565523196644
+1470148077241973451,-0.019412279129,0.0726335123181,0.764297425747,-0.356945629198,0.0298295599792,0.755876438053,-0.548042722372
+1470148077315007747,-0.0192471966147,0.0705336406827,0.745549142361,-0.269351416044,0.0194584202903,0.7602442022,-0.590846797043
+1470148077392859578,-0.0188828743994,0.0701126009226,0.742001593113,-0.29316102404,0.0244613281023,0.757256918847,-0.583112524535
+1470148077469336408,-0.0186425969005,0.0680924877524,0.722616076469,-0.370617491432,0.0370616297783,0.766832938237,-0.52272015025
+1470148077544055839,-0.0184479001909,0.0673094168305,0.719972610474,-0.413344895987,0.0272328097103,0.746014132194,-0.521408942773
+1470148077617811352,-0.0185630097985,0.0663818493485,0.707432866096,-0.236924304218,0.0190208229565,0.76187190033,-0.602541525417
+1470148077699386778,-0.0185198355466,0.0648054331541,0.692156434059,-0.346702656556,0.0272656760952,0.758083348345,-0.551691478823
+1470148077771742821,-0.0186089742929,0.0632824152708,0.67940300703,-0.442509702866,0.036525926857,0.753034756313,-0.485581790558
+1470148077843706834,-0.0188919696957,0.0627323389053,0.66993278265,-0.329408491878,0.0280616611462,0.762042241899,-0.556771236877
+1470148077916119571,-0.0189734753221,0.0613748803735,0.658841669559,-0.330205599667,0.0246202730883,0.752709070064,-0.569022987185
+1470148078005631782,-0.0188150685281,0.0605767667294,0.644145667553,-0.290335637995,0.0257417248538,0.766856381792,-0.571816290969
+1470148078082650464,-0.0184663534164,0.0598924122751,0.6409740448,-0.392472450619,0.0234842715099,0.741639645189,-0.543492871325
+1470148078156180567,-0.0182601176202,0.0583798401058,0.626129031181,-0.442016002161,0.0350661748615,0.750928431899,-0.489386051476
+1470148078230362467,-0.0182778369635,0.0577603206038,0.615614175797,-0.277527627755,0.020897351399,0.758431737279,-0.589341171501
+1470148078304115044,-0.0179789047688,0.0563931800425,0.601507544518,-0.327930263797,0.0243194727026,0.755986736814,-0.565998550436
+1470148078382347145,-0.0177925601602,0.0551565662026,0.591197907925,-0.289371378696,0.0220713768372,0.755316122717,-0.587600726922
+1470148078460967707,-0.0177488513291,0.0538519360125,0.578463435173,-0.273782849757,0.0172568102645,0.752929803289,-0.598198850716
+1470148078538989355,-0.0173398964107,0.0526842027903,0.568444669247,-0.339468386315,0.0263836164583,0.754189499342,-0.561483141829
+1470148078614101835,-0.0169784445316,0.0517131015658,0.560896813869,-0.414542246822,0.0244453450431,0.743066830979,-0.524794088576
+1470148078691765780,-0.0168657619506,0.0509196072817,0.550765872002,-0.391256802605,0.0244425186153,0.74476740036,-0.540039069939
+1470148078764943906,-0.0166395381093,0.0502079166472,0.538887262344,-0.373881970629,0.0241299793293,0.74831122244,-0.54741239528
+1470148078840911208,-0.0163852032274,0.048998657614,0.525115430355,-0.30207171222,0.0204162377217,0.752677208385,-0.584647652771
+1470148078914809230,-0.0162967462093,0.0478053241968,0.512095034122,-0.284026084641,0.0192240488593,0.754680462953,-0.591115063271
+1470148078994746879,-0.0157491993159,0.0471762791276,0.506339132786,-0.478347692283,0.0288921200855,0.740035597827,-0.471906817743
+1470148079069215332,-0.0156267527491,0.0465713888407,0.491112887859,-0.333329145973,0.0243133809798,0.754959823987,-0.564212906726
+1470148079142227985,-0.0153532596305,0.0457785800099,0.481112539768,-0.368707286336,0.0250938389148,0.75133540741,-0.546736080595
+1470148079221064701,-0.0150438193232,0.045400083065,0.47190785408,-0.388712000699,0.0284318743235,0.753131707477,-0.529987962342
+1470148079296748812,-0.0148363411427,0.0446046106517,0.457195788622,-0.292105337295,0.0197229664695,0.75333436387,-0.588874190919
+1470148079370304233,-0.0145046422258,0.0438483543694,0.447839647532,-0.393505996883,0.0261867735039,0.747858784309,-0.534017342454
+1470148079442874628,-0.0142629146576,0.0431922860444,0.439425647259,-0.404752073192,0.0217029752238,0.740661871579,-0.535840211353
+1470148079521907791,-0.0138843888417,0.0429784469306,0.43066623807,-0.414301464379,0.0267556602367,0.745561643028,-0.521321654744
+1470148079605383407,-0.0135288555175,0.0416079387069,0.41598585248,-0.440434668327,0.0249484770234,0.740700481411,-0.50671261408
+1470148079678689433,-0.0134328380227,0.0409849695861,0.405287176371,-0.437117177046,0.0272490420099,0.744830527824,-0.503401974631
+1470148079750593828,-0.0131338313222,0.0406857654452,0.396939486265,-0.397233352617,0.0249580144561,0.74596832998,-0.533960683711
+1470148079823358726,-0.0129298139364,0.0400538109243,0.386541366577,-0.405314355312,0.0251160754197,0.745528677071,-0.528466127389
+1470148079903684134,-0.0125688556582,0.0394604839385,0.372622191906,-0.356012394424,0.0210652458543,0.745577069217,-0.562962045161
+1470148079980865872,-0.0123533196747,0.0388874337077,0.362815350294,-0.38779348673,0.0234533703861,0.745298039671,-0.541845903491
+1470148080054519547,-0.0121851991862,0.0383475832641,0.353063702583,-0.38198446427,0.0214321236014,0.742206529223,-0.550234496477
+1470148080128431880,-0.011964163743,0.0376979336143,0.338065385818,-0.393026593902,0.0240999567282,0.746257659473,-0.536701774032
+1470148080205607245,-0.0116693340242,0.0372316353023,0.328905522823,-0.405461711705,0.0237954541401,0.744062805447,-0.530476312623
+1470148080278923627,-0.0114053422585,0.0366015359759,0.320114284754,-0.435415391837,0.0218131981842,0.738333205062,-0.514588864278
+1470148080354821330,-0.0111203817651,0.0354510098696,0.305475860834,-0.453629211643,0.0244631887895,0.738405969317,-0.498376078093
+1470148080431437527,-0.0110126985237,0.0350287035108,0.295962572098,-0.397779047019,0.0200335474186,0.739894922455,-0.542149417094
+1470148080505036307,-0.0108736138791,0.0343643091619,0.286922007799,-0.440700711242,0.0230285665384,0.739405997275,-0.50845977169
+1470148080581169267,-0.0106851812452,0.0339085198939,0.280479073524,-0.457553129271,0.024881367505,0.73857291467,-0.494505916204
+1470148080653497147,-0.0106829684228,0.0339126028121,0.274434179068,-0.430147737757,0.0245810007888,0.741531767476,-0.51429498921
+1470148080730318832,-0.0106151578948,0.0343053080142,0.274795264006,-0.447995595102,0.0246035056541,0.739837798067,-0.501332870287
+1470148080804392455,-0.0105821918696,0.0354920402169,0.275134623051,-0.4525481039,0.023953912418,0.739000236896,-0.498502832093
+1470148080885255485,-0.0105213737115,0.0364814214408,0.274388104677,-0.459578784235,0.0238811248033,0.73765256039,-0.49405033459
+1470148080964370405,-0.0105338757858,0.0368440970778,0.273527294397,-0.447194447702,0.0252163707395,0.739264337106,-0.502861313361
+1470148081044683093,-0.0105175962672,0.0364989601076,0.273431867361,-0.456589027024,0.0243720800092,0.737809345966,-0.496557983647
+1470148081119197509,-0.010535207577,0.0362857580185,0.273014068604,-0.468758129616,0.0263103356834,0.738675432034,-0.483665368064
+1470148081192012072,-0.0105656059459,0.0358334667981,0.272918492556,-0.477403789027,0.0263646692605,0.737820590905,-0.476457030669
+1470148081264452728,-0.010551340878,0.0351518169045,0.272706151009,-0.504032066508,0.0279307818989,0.736629515945,-0.450053889654
+1470148081338175818,-0.0105462223291,0.0347833968699,0.272716939449,-0.509606426878,0.0280302763277,0.736072796249,-0.444648661209
+1470148081414471992,-0.0105549981818,0.0343712233007,0.27270963788,-0.501865633726,0.0273650805405,0.736366338691,-0.452931179424
+1470148081489629251,-0.0105430753902,0.0336736701429,0.272813856602,-0.482370633409,0.0259042059763,0.736662742636,-0.473260549538
+1470148081563146152,-0.0105301290751,0.0331532359123,0.272836744785,-0.479554473278,0.0258322798586,0.736601215564,-0.476213029753
+1470148081636099086,-0.0105126406997,0.03266036883,0.272955268621,-0.466270672909,0.0248392558669,0.737096792105,-0.488531462673
+1470148081709898638,-0.010487315245,0.0321302488446,0.273133575916,-0.472909523665,0.0246747601406,0.73651033224,-0.483011665638
+1470148081781627556,-0.0104368561879,0.0314908921719,0.273015260696,-0.486216374481,0.0267648782979,0.736899371162,-0.468888681092
+1470148081857140237,-0.0104263080284,0.0306111834943,0.273126125336,-0.485970072721,0.0253711477424,0.735733312507,-0.471047647429
+1470148081933674343,-0.0104074990377,0.0300446823239,0.273123711348,-0.48392018038,0.026108420535,0.736364202849,-0.472130670643
+1470148082009372859,-0.0103895971552,0.0293813347816,0.273158609867,-0.484458753641,0.0260481148555,0.736464595087,-0.471424555911
+1470148082086118818,-0.0103379702196,0.0287084262818,0.273252248764,-0.509501185774,0.027738165504,0.735388570581,-0.445917914115
+1470148082159967544,-0.0103681050241,0.0278443060815,0.273286670446,-0.496585991985,0.0255044956497,0.735061164676,-0.460908838548
+1470148082231185441,-0.0103376833722,0.027121881023,0.273225963116,-0.507828640754,0.0273830761367,0.734868739765,-0.448696082095
+1470148082305821458,-0.0103317163885,0.0265668872744,0.273273020983,-0.508860882942,0.0273488419551,0.735151234712,-0.447062976276
+1470148082379345626,-0.0103177800775,0.0260593257844,0.273295909166,-0.509056164087,0.0276047311025,0.735438587043,-0.446351750656
+1470148082457157783,-0.0102841742337,0.0251019075513,0.273309618235,-0.529621629778,0.0289205144894,0.734260094548,-0.423705849224
+1470148082532653439,-0.0102902548388,0.0246002972126,0.273272335529,-0.520152929114,0.0278589650711,0.734468360251,-0.434995443872
+1470148082605630041,-0.0102779241279,0.0241539422423,0.273205578327,-0.524169509028,0.0290213940788,0.734840483237,-0.429433986413
+1470148082679105980,-0.0102826328948,0.0236961580813,0.273214548826,-0.52354074005,0.0287538837318,0.734736254024,-0.430396264739
+1470148082751504004,-0.0103363320231,0.0229414626956,0.273209750652,-0.510992826158,0.0252245915819,0.733066457574,-0.448178112333
+1470148082824205163,-0.0103377914056,0.022481398657,0.273177027702,-0.49961519536,0.0250503057052,0.73404898678,-0.45927031665
+1470148082895667039,-0.0103232776746,0.0220256969333,0.273178100586,-0.505019896135,0.0249677612312,0.73337802841,-0.454409708142
+1470148082967475255,-0.0103000150993,0.0216246042401,0.273146182299,-0.516697262462,0.0267034059155,0.733790374291,-0.440298255362
+1470148083039886323,-0.0103194126859,0.0209754295647,0.273246794939,-0.513747740783,0.0255188938678,0.733171858882,-0.444827011589
+1470148083112304546,-0.0103335818276,0.0206172075123,0.273176044226,-0.493339913432,0.0243298611157,0.734055177682,-0.466033028649
+1470148083183977494,-0.0102980481461,0.0202002674341,0.273169755936,-0.511480374415,0.026437002057,0.734142199273,-0.445784861517
+1470148083259589218,-0.0102523015812,0.0198039729148,0.273176401854,-0.529464589781,0.0281077351141,0.733574529311,-0.425141874368
+1470148083336484691,-0.0102504594252,0.0194585099816,0.27312797308,-0.525281449941,0.0285084679541,0.734425905955,-0.428818439744
+1470148083413121974,-0.0103197330609,0.0191141217947,0.27326464653,-0.5012661076,0.0240214219768,0.733297996294,-0.458725745178
+1470148083485258343,-0.0103162685409,0.0187035854906,0.273221880198,-0.507618823589,0.0247099554211,0.733110103456,-0.451953674895
+1470148083559129141,-0.0103084435686,0.0182173382491,0.273228734732,-0.510051473137,0.0245830730104,0.732624617485,-0.450004819004
+1470148083636557608,-0.0102463122457,0.0180076304823,0.27314722538,-0.531463030586,0.0285569954762,0.733744890164,-0.422315026122
+1470148083710810597,-0.010328033939,0.0176966376603,0.273243606091,-0.505643315582,0.0240504780033,0.732793927334,-0.454708117342
+1470148083785849478,-0.0102679301053,0.0173603650182,0.273112386465,-0.523829342765,0.0274272831297,0.733536857309,-0.432173857107
+1470148083864001486,-0.0102227637544,0.0170397367328,0.273092150688,-0.538738338944,0.0296959502209,0.733830736336,-0.412760951522
+1470148083944592942,-0.010329304263,0.0168068669736,0.273234575987,-0.495271970267,0.0238974825249,0.733718327382,-0.464534177279
+1470148084022123694,-0.0102587547153,0.0165299791843,0.273109316826,-0.530865771732,0.0284037145265,0.733620666878,-0.423291245519
+1470148084096035031,-0.010323099792,0.0163193717599,0.273237258196,-0.504691814544,0.0244215314621,0.73324965954,-0.455010656929
+1470148084168681700,-0.0102481711656,0.016027636826,0.273031294346,-0.534382642085,0.0284350170318,0.733231371276,-0.419521629742
+1470148084240843716,-0.0103107644245,0.0158545877784,0.273218125105,-0.51289129357,0.0251448548726,0.732912560483,-0.44626162275
+1470148084314705051,-0.0102844573557,0.0156487934291,0.273178368807,-0.536762289612,0.0276823517921,0.73252052435,-0.417772202589
+1470148084391824878,-0.0103180874139,0.0154065890238,0.273234933615,-0.50860465672,0.025333402118,0.733610350981,-0.449994860897
+1470148084471181151,-0.0103324549273,0.0152384629473,0.273186445236,-0.518063019964,0.0242174716863,0.73185854979,-0.442048961666
+1470148084543606808,-0.0102988677099,0.0150290252641,0.273215085268,-0.521614443883,0.0267285070832,0.733085933019,-0.435647763281
+1470148084619092374,-0.0103149134666,0.014909398742,0.273192882538,-0.509093067539,0.0250553455922,0.733360174511,-0.449865905223
+1470148084692874446,-0.0102680502459,0.0146524338052,0.273102104664,-0.533448059525,0.0280157784197,0.733153064005,-0.420873934438
+1470148084766325688,-0.0102907912806,0.0144784841686,0.273142516613,-0.520520230942,0.0264008603022,0.73319523765,-0.436791056734
+1470148084843535344,-0.0103419823572,0.0143353966996,0.273219376802,-0.509029223094,0.02392131082,0.732519501979,-0.451367034846
+1470148084922850159,-0.0102660898119,0.0141342552379,0.273127436638,-0.530491546517,0.0281062023474,0.733211936457,-0.424486768581
+1470148084997105913,-0.0103268669918,0.0138967595994,0.273198753595,-0.507048242858,0.0243447342261,0.733056839056,-0.452699772523
+1470148085079719028,-0.0102733932436,0.0137279834598,0.273139476776,-0.528604289566,0.0275025983366,0.733112353027,-0.427044950768
+1470148085153966880,-0.0103035494685,0.0135065140203,0.273224413395,-0.525147661678,0.0265107324049,0.732838849736,-0.431815162794
+1470148085226972481,-0.0103434091434,0.013337935321,0.273155659437,-0.508011390389,0.0238736484511,0.732521353499,-0.452511815107
+1470148085304897506,-0.0102770039812,0.0132055627182,0.273011773825,-0.522861266097,0.0284385621552,0.734399087589,-0.431816309033
+1470148085379172982,-0.0103207845241,0.0130475014448,0.273149192333,-0.510603226673,0.0258892571661,0.733808150282,-0.447369746244
+1470148085451637127,-0.0103372782469,0.0129295745865,0.273102939129,-0.508247672717,0.0251553896067,0.733621647489,-0.450389595669
+1470148085527792673,-0.0103573454544,0.0128618655726,0.27303943038,-0.499474582145,0.023480231294,0.732952829244,-0.461252610434
+1470148085604052098,-0.0102896727622,0.0127643439919,0.273081034422,-0.529546353358,0.0273090362641,0.732793755434,-0.426436616838
+1470148085679392531,-0.0102866822854,0.0127311749384,0.273017138243,-0.518192679507,0.0280924472791,0.734539289885,-0.437194685383
+1470148085752641392,-0.0103040486574,0.0125726163387,0.273198068142,-0.521171259869,0.026748144169,0.733542177316,-0.435408921325
+1470148085824871550,-0.0103266062215,0.0124695152044,0.273207187653,-0.524149252841,0.0260250516016,0.732662176691,-0.433354811075
+1470148085898743575,-0.0103673152626,0.0123428301886,0.273056447506,-0.499559347355,0.0244581034129,0.733448754559,-0.460320740444
+1470148085975272984,-0.0103426584974,0.0121303331107,0.273008495569,-0.507543643779,0.0264985544756,0.734475824921,-0.449713841101
+1470148086049431168,-0.0103691639379,0.0120375268161,0.273045390844,-0.501084610473,0.0257438400351,0.73473528264,-0.456525500155
+1470148086123962746,-0.010389813222,0.0119690261781,0.272859364748,-0.487151492138,0.0246235824051,0.735046090237,-0.470939856164
+1470148086196676146,-0.0103699266911,0.0118480930105,0.27282372117,-0.49366188196,0.0257668356888,0.735157542926,-0.463872184504
+1470148086277081679,-0.0103720957413,0.0117952292785,0.27291238308,-0.502859867508,0.0272589814471,0.73529474081,-0.453575292225
+1470148086352705707,-0.0103742918,0.0117689669132,0.272948920727,-0.503928189453,0.0271497438093,0.735317460123,-0.452357716994
+1470148086431110185,-0.0104119246826,0.0118180373684,0.272852212191,-0.482795447301,0.0247691168291,0.735288551957,-0.475021886104
+1470148086506014276,-0.0103566171601,0.0117610022426,0.272887080908,-0.511803905453,0.0281314395504,0.735205294618,-0.443552205763
+1470148086582200519,-0.0103855840862,0.011725647375,0.272876381874,-0.501501616953,0.0264937743451,0.735034265183,-0.455542354914
+1470148086658254211,-0.01038606558,0.0116858482361,0.272877335548,-0.493101807706,0.0263355545392,0.735900602167,-0.463257325398
+1470148086735086369,-0.0104116043076,0.011518554762,0.272849440575,-0.495036759311,0.0251698528543,0.734623534865,-0.463285384467
+1470148086813942323,-0.0103627564386,0.0112498542294,0.272780686617,-0.510038507269,0.0278205834615,0.735279486191,-0.445478185129
+1470148086892292193,-0.0103711783886,0.0111279860139,0.272779166698,-0.486824283414,0.0256372631558,0.736097703699,-0.469579618835
+1470148086964992836,-0.0103447269648,0.0110339717939,0.272795915604,-0.501599601252,0.0255962611725,0.734246093191,-0.456755236501
+1470148087037535069,-0.0103602511808,0.0110162571073,0.272681325674,-0.488219968809,0.0250136898122,0.735270736793,-0.469459818295
+1470148087120656893,-0.0103632463142,0.0109770158306,0.27273607254,-0.488702045542,0.0239575444897,0.734046210648,-0.470927284597
+1470148087193701206,-0.0103172361851,0.0111887296662,0.272722810507,-0.509972363212,0.0268246504896,0.734624501764,-0.446693931339
+1470148087270696304,-0.0103945359588,0.0113195916638,0.272654742002,-0.486269028448,0.0221007371228,0.732676707987,-0.475645698986
+1470148087347622862,-0.0103598283604,0.0114383231848,0.27261286974,-0.490022872144,0.02447490768,0.734545884725,-0.468743967324
+1470148087422158023,-0.0103380838409,0.0115053066984,0.272744715214,-0.511713784867,0.0259292319476,0.733628901942,-0.446391433098
+1470148087497121960,-0.0103949606419,0.011392628774,0.272663712502,-0.481300531965,0.0226718801929,0.733446680765,-0.479470280887
+1470148087577531298,-0.0102675883099,0.0110947275534,0.272678941488,-0.525549300838,0.0271762030386,0.733048475252,-0.430928438732
+1470148087657103394,-0.0103220185265,0.0108302338049,0.272523909807,-0.499636371311,0.0232675129495,0.732463983259,-0.461864300994
+1470148087731246646,-0.010323246941,0.0108368536457,0.272466391325,-0.520951378656,0.0243986940893,0.731275950436,-0.439601921194
+1470148087804801663,-0.0104051735252,0.0111995749176,0.272201836109,-0.483700538129,0.0223570051865,0.733689953841,-0.476689632114
+1470148087877447192,-0.0104129053652,0.011414218694,0.272110551596,-0.511584163421,0.0249587612956,0.732736270409,-0.448058324327
+1470148087952248919,-0.0104368906468,0.0117693170905,0.272003114223,-0.501558534736,0.0237909314233,0.732839261109,-0.459151004782
+1470148088036798680,-0.0104334102944,0.0120166223496,0.271988093853,-0.516318179995,0.0247648318274,0.732291277693,-0.443341544101
+1470148088111572917,-0.0104401055723,0.0122429449111,0.271966844797,-0.517117319098,0.0244588187925,0.731914395737,-0.44304938978
+1470148088189285872,-0.0104046771303,0.0124496901408,0.272007197142,-0.53422929968,0.0276068647114,0.732640867667,-0.42080194321
+1470148088263526484,-0.0104386918247,0.0127946492285,0.27202090621,-0.51829028108,0.0246001473486,0.73180570442,-0.441848874918
+1470148088341195170,-0.010468413122,0.0130186397582,0.272038072348,-0.510363932307,0.0226645431929,0.731308101878,-0.45188874207
+1470148088417377607,-0.0104397572577,0.0131605444476,0.272105902433,-0.53191476439,0.0239299296036,0.729864310163,-0.428709844351
+1470148088495076472,-0.0104006985202,0.0133333932608,0.27206364274,-0.541961053672,0.0265726043954,0.731010750848,-0.413757652669
+1470148088569697561,-0.0104690389708,0.0136181591079,0.271966606379,-0.515898783974,0.0233318968026,0.731024203492,-0.445990673888
+1470148088642921462,-0.0104248793796,0.0138828717172,0.272110134363,-0.535636526026,0.0252521866198,0.730716944763,-0.422502764126
+1470148088716165639,-0.0104482779279,0.0141221256927,0.272095173597,-0.519361575054,0.0231322426929,0.73027537467,-0.443200102501
+1470148088787041012,-0.0103105008602,0.0144856832922,0.27257874608,-0.564515566423,0.0239181295447,0.726766711736,-0.39058961207
+1470148088858626440,-0.0102758016437,0.015007680282,0.272728145123,-0.568250344115,0.023984819151,0.726539544751,-0.385560066366
+1470148088947024287,-0.0103106014431,0.0158832892776,0.27278354764,-0.565016542928,0.0219379841394,0.725442737575,-0.392438358942
+1470148089027430962,-0.0102894194424,0.0165454875678,0.272765100002,-0.589795390499,0.0253128918346,0.725194593674,-0.354391670556
+1470148089101503744,-0.0103125767782,0.0167953968048,0.272711396217,-0.581236246754,0.0228656244617,0.724537422346,-0.369712201985
+1470148089175142054,-0.010325204581,0.0167961642146,0.272734701633,-0.584343310971,0.0227163159013,0.724161817258,-0.365535943981
+1470148089252695578,-0.0103155514225,0.0167834945023,0.272771686316,-0.590244072389,0.0230824984729,0.723767604962,-0.356706584298
+1470148089327480438,-0.0102469716221,0.0166607704014,0.272760212421,-0.592729738745,0.0269250894791,0.725750353283,-0.348185182156
+1470148089400517966,-0.0102391783148,0.0165889002383,0.272778153419,-0.594804254433,0.0272297354283,0.725744212214,-0.344618308937
+1470148089475097999,-0.010285442695,0.0164627153426,0.272732257843,-0.565060147561,0.0239412189083,0.726556446771,-0.390191718685
+1470148089548958529,-0.0102555798367,0.0163111332804,0.27266061306,-0.584247373211,0.0251446293276,0.725614469969,-0.362638105393
+1470148089624088828,-0.0102363238111,0.0160352084786,0.272709220648,-0.573585568196,0.0256282331467,0.726937565434,-0.376702224023
+1470148089699478061,-0.0102244541049,0.0157990641892,0.272679597139,-0.586512202639,0.0264829337119,0.726106155697,-0.357871402931
+1470148089771532393,-0.0102754421532,0.0155072528869,0.272741556168,-0.560460054288,0.0235831002667,0.726584275846,-0.396741294829
+1470148089846777163,-0.0101913744584,0.0152739938349,0.27268704772,-0.587286269377,0.028212730117,0.72696807617,-0.35470592875
+1470148089922236720,-0.0102448193356,0.0148787321523,0.272701710463,-0.571072260398,0.0248256953018,0.726648206104,-0.381106996554
+1470148089997768252,-0.0102779259905,0.0145554635674,0.272719830275,-0.558782604811,0.0234233857364,0.726679493497,-0.398936410086
+1470148090074082295,-0.0101866619661,0.014294619672,0.272668898106,-0.582673695319,0.0279416394769,0.727304250883,-0.36157869989
+1470148090145430671,-0.0102767394856,0.0140273896977,0.272680193186,-0.558891849278,0.0228734786287,0.726409538965,-0.399306757377
+1470148090217986386,-0.0102612124756,0.0136118680239,0.272659868002,-0.545097980707,0.0233190736631,0.727996495168,-0.415145173712
+1470148090294106115,-0.010216881521,0.0133228907362,0.272717237473,-0.563685618441,0.0258004011701,0.728055347602,-0.389266327454
+1470148090371242933,-0.0102653121576,0.013093280606,0.272622197866,-0.540938154266,0.0224299281893,0.727744077477,-0.421036066482
+1470148090444911590,-0.0101651307195,0.0128817949444,0.272586405277,-0.572196004863,0.0284034876043,0.728781335869,-0.375050314491
+1470148090516757088,-0.010248712264,0.0126250088215,0.272628456354,-0.552929327215,0.0237513718963,0.727632251191,-0.405285502413
+1470148090589876457,-0.010237432085,0.012252798304,0.272641807795,-0.544987598742,0.0243192716032,0.728673773495,-0.414043019583
+1470148090664662449,-0.0102602718398,0.0120740579441,0.272608488798,-0.546873964976,0.0227042111052,0.727585714181,-0.413560653048
+1470148090741003395,-0.0102278403938,0.0118296025321,0.272682458162,-0.558694402803,0.0256114652178,0.728251379936,-0.396048664619
+1470148090815017616,-0.0102432239801,0.0116708949208,0.272602528334,-0.556147729348,0.0238504271913,0.727475498531,-0.401136210409
+1470148090890749677,-0.0102168666199,0.0113071734086,0.272600203753,-0.552437305305,0.0250530654352,0.728515993166,-0.404289271836
+1470148090966214788,-0.0102485911921,0.0111789712682,0.272653728724,-0.558714199322,0.0237333480982,0.727135863862,-0.398181625831
+1470148091041878141,-0.0102314222604,0.0109787471592,0.272727996111,-0.551304289984,0.02476946428,0.728462807389,-0.405945799012
+1470148091114478392,-0.0102181993425,0.0108186695725,0.272598743439,-0.554280489075,0.0251191122851,0.728411675883,-0.401943528454
+1470148091184066937,-0.0102398879826,0.0106552485377,0.272624880075,-0.549551447933,0.0236643186823,0.728029047872,-0.409153897146
+1470148091257655482,-0.0102174943313,0.0104415332898,0.272644042969,-0.555830283943,0.0254926173242,0.728461864764,-0.399682540898
+1470148091338378121,-0.0102262869477,0.0103161819279,0.272599220276,-0.555317101525,0.0248305196767,0.728088055406,-0.401116124858
+1470148091413415229,-0.0102404430509,0.0102496119216,0.272530913353,-0.537526128627,0.0228629438623,0.728629707056,-0.423841594038
+1470148091492867699,-0.0102225383744,0.0100566130131,0.272700965405,-0.546708728563,0.0249900603484,0.729074300807,-0.411017915546
+1470148091571546278,-0.0102107636631,0.00950665865093,0.272739201784,-0.550379191756,0.0260403700955,0.72951827092,-0.405225538189
+1470148091644429095,-0.010245943442,0.00910729821771,0.272939920425,-0.556790611051,0.0265627810579,0.729120711124,-0.397066269933
+1470148091716666659,-0.0102548105642,0.00871162675321,0.273042798042,-0.549576406927,0.0268369715477,0.730252390566,-0.404940731441
+1470148091795395901,-0.0102564096451,0.00877545028925,0.272931069136,-0.541656440916,0.0244101000116,0.729314177766,-0.417268830781
+1470148091869856290,-0.0102112302557,0.00849766563624,0.27262404561,-0.54016339893,0.0249383317768,0.729649408816,-0.418584904504
+1470148091943400504,-0.0102076623589,0.00833115540445,0.272367984056,-0.540734396578,0.0232950679514,0.728671090993,-0.419645199327
+1470148092017358599,-0.0102614667267,0.00818544626236,0.272119253874,-0.507783045339,0.0188443226004,0.727787249255,-0.460572459221
+1470148092096934947,-0.010230624117,0.00805207993835,0.271447598934,-0.539374547463,0.0226838023358,0.728374951663,-0.421936573967
+1470148092172602498,-0.0103317759931,0.00804401375353,0.270679950714,-0.493800358087,0.0206751356476,0.731046970954,-0.470429666771
+1470148092246446933,-0.0103033939376,0.00799877755344,0.270326822996,-0.490576144901,0.0201602031552,0.730853739153,-0.474111193951
+1470148092331988118,-0.0102753313258,0.00791930779815,0.270101547241,-0.503029752532,0.0197614244948,0.729132102478,-0.463612911065
+1470148092410374194,-0.0101792784408,0.00785715784878,0.26968061924,-0.52547386131,0.021580330791,0.728616593353,-0.438781688648
+1470148092485714012,-0.0101174991578,0.0078293196857,0.269465237856,-0.550696650516,0.0238210830122,0.727951431477,-0.407740687846
+1470148092564972565,-0.0100881531835,0.00780961522833,0.269270241261,-0.54963009197,0.0244314720705,0.728473178506,-0.408211579173
+1470148092640549814,-0.0101283388212,0.00778562482446,0.268254429102,-0.540760639802,0.0258605816813,0.730538742292,-0.41619983994
+1470148092714718380,-0.010194840841,0.00770054757595,0.26774084568,-0.519045110836,0.0238433562994,0.730960422645,-0.442403128159
+1470148092791681899,-0.010209126398,0.00755436066538,0.267552614212,-0.503263422088,0.0215222845546,0.730888877278,-0.460504254406
+1470148092865934140,-0.0100977038965,0.00718381302431,0.267314940691,-0.535884678115,0.0262560923773,0.731345618794,-0.421036596089
+1470148092942100592,-0.0100528886542,0.00676499819383,0.267070919275,-0.532736636794,0.0270357937577,0.732318355087,-0.423285445623
+1470148093022817680,-0.0101153440773,0.00645335717127,0.266829103231,-0.495868041703,0.0204722221,0.730538366451,-0.469051669311
+1470148093099217607,-0.0100052608177,0.00650644721463,0.266547858715,-0.533840119426,0.024860300576,0.730408843235,-0.425322952674
+1470148093177346210,-0.00997713860124,0.00690026441589,0.266406953335,-0.548694740411,0.0250843240324,0.729013465127,-0.408465697699
+1470148093253119698,-0.0099355103448,0.00743028055876,0.266402602196,-0.567068462712,0.0272732533941,0.728729517926,-0.382939705372
+1470148093327439946,-0.00996101461351,0.00788657460362,0.266276627779,-0.572838062262,0.0263387774134,0.727508799819,-0.376687893905
+1470148093404531232,-0.00996295083314,0.00862481165677,0.266101777554,-0.575057483963,0.0255879703917,0.726898751853,-0.374529505464
+1470148093480342162,-0.00999888405204,0.00872699916363,0.265902131796,-0.569217045677,0.0264932059124,0.727995461669,-0.381198993624
+1470148093552814130,-0.0100471535698,0.0086537078023,0.265697777271,-0.561325093027,0.0257272096339,0.728315688325,-0.392184279087
+1470148093627004067,-0.0100936042145,0.00869604945183,0.265501439571,-0.544993638788,0.0255709176034,0.729924537607,-0.411750204921
+1470148093704240078,-0.010136205703,0.00877523235977,0.265287041664,-0.533868794016,0.0252472882292,0.730774827516,-0.424634945196
+1470148093779731437,-0.0101460944861,0.00883851014078,0.26509308815,-0.534337731083,0.0239394161127,0.729672643583,-0.426013998248
+1470148093853468090,-0.0101454751566,0.008923987858,0.264918327332,-0.526479340212,0.0225110090499,0.729281974686,-0.436417873373
+1470148093931686334,-0.0100858639926,0.00897149462253,0.264815181494,-0.538101513329,0.024785573829,0.730076249143,-0.420501019167
+1470148094006331141,-0.0100366957486,0.00906684994698,0.26470798254,-0.537650775279,0.025791529092,0.730868943043,-0.419639165193
+1470148094084802870,-0.0100198304281,0.00922411493957,0.264704793692,-0.536603582166,0.0251852512937,0.730525440494,-0.421609866483
+1470148094161423681,-0.0099911224097,0.00919978693128,0.264477550983,-0.537369137379,0.0259092123149,0.73095510547,-0.41984253798
+1470148094234926954,-0.00996694527566,0.00914478674531,0.264259874821,-0.526053308935,0.0249397669041,0.731503901394,-0.433068085215
+1470148094308908489,-0.00993279460818,0.00902727525681,0.264028310776,-0.542647011667,0.0256186559041,0.730127546772,-0.414477587624
+1470148094383635687,-0.00987458415329,0.00888923183084,0.263755530119,-0.541939364843,0.0266223959751,0.731086434194,-0.413649124988
+1470148094463769008,-0.00984411686659,0.00871880259365,0.263321608305,-0.556605249445,0.0254320210576,0.72844981752,-0.398628488635
+1470148094540052734,-0.00985401775688,0.0086615504697,0.262923270464,-0.566786727351,0.0253130123831,0.727395345339,-0.386015632691
+1470148094616677031,-0.00996243488044,0.00863622315228,0.262187719345,-0.536842007731,0.0245651772125,0.729892624944,-0.422438121925
+1470148094690065731,-0.00992501713336,0.00858565699309,0.261798650026,-0.541067329046,0.025592606235,0.730313656476,-0.416212838713
+1470148094763104591,-0.0098692746833,0.00854974612594,0.261298596859,-0.549742330944,0.0256355121908,0.72936602823,-0.40638822196
+1470148094836861491,-0.00992611888796,0.00852946937084,0.261044859886,-0.519427145228,0.0205981671117,0.728438375979,-0.446260785543
+1470148094917372786,-0.00994866527617,0.00845020264387,0.258353561163,-0.41882684887,0.0129707544547,0.728886915081,-0.541423766766
+1470148094990781873,-0.00978078879416,0.00839466042817,0.256352186203,-0.538321733228,0.0239345100841,0.729328923989,-0.421563958842
+1470148095061000858,-0.00976370926946,0.00840396434069,0.256179362535,-0.524403731429,0.0225882162028,0.729536465969,-0.438482660745
+1470148095134834879,-0.009760344401,0.00837745144963,0.25625538826,-0.546788829443,0.0240209981251,0.728463746376,-0.412050406942
+1470148095209365451,-0.00976480450481,0.00837715622038,0.256045073271,-0.528184988411,0.0217474050685,0.728535142048,-0.435642301885
+1470148095283417494,-0.00977523718029,0.00838333368301,0.255580127239,-0.496391964537,0.0177761486138,0.727947293707,-0.472622220879
+1470148095367727189,-0.00969064608216,0.00837474502623,0.255295038223,-0.520113755081,0.0205903892795,0.728402188968,-0.445519885921
+1470148095447573058,-0.00963244028389,0.008355287835,0.25495532155,-0.554964683828,0.0236281392575,0.727661358669,-0.402448577881
+1470148095520516898,-0.00966536067426,0.00834727846086,0.254462689161,-0.529578673444,0.0232509731372,0.729827325436,-0.431691899309
+1470148095593966282,-0.00973259005696,0.00830592866987,0.253902882338,-0.520342102872,0.0229745932585,0.730420664923,-0.44181660935
+1470148095671475105,-0.0096994638443,0.00816806219518,0.253589093685,-0.527629903836,0.0222412697365,0.729035365328,-0.435453150867
+1470148095747282798,-0.0096621401608,0.0081467134878,0.253437668085,-0.540785712741,0.0229865459763,0.728254994115,-0.42031785014
+1470148095820732104,-0.00962434709072,0.00812488421798,0.253211706877,-0.545731319954,0.0234140130566,0.728054802838,-0.41420443561
+1470148095898275263,-0.00959674548358,0.00816942658275,0.253053098917,-0.543018905467,0.0236911125072,0.72855456537,-0.416866219274
+1470148095976790964,-0.00959918927401,0.00825733784586,0.252837628126,-0.538910918075,0.0223206617717,0.728079003467,-0.42305764991
+1470148096051859535,-0.00958312768489,0.00833416450769,0.25267252326,-0.533360297896,0.0218603852559,0.728318938604,-0.429651533054
+1470148096130945930,-0.00957300979644,0.00849233660847,0.252053201199,-0.531834730329,0.0244779231197,0.730482330221,-0.427724462862
+1470148096206952422,-0.0096525317058,0.00854073092341,0.251560628414,-0.526372504658,0.023797384861,0.730655882913,-0.434174678648
+1470148096286821904,-0.00968860648572,0.00863358471543,0.251336097717,-0.506173782517,0.0213086798725,0.730544641577,-0.457863045809
+1470148096360386514,-0.00960321165621,0.00870722346008,0.251083254814,-0.528693835427,0.0239152921532,0.730420057254,-0.431737683257
+1470148096433296522,-0.00961458403617,0.00881880801171,0.250727593899,-0.524874802984,0.0200000140355,0.727480033457,-0.441451290125
+1470148096510156829,-0.0095367655158,0.00886543467641,0.250527203083,-0.550049420165,0.022662895878,0.727087598078,-0.410214155348
+1470148096585387420,-0.00949418824166,0.00894494913518,0.250215381384,-0.551983373968,0.0233208006102,0.727432994194,-0.406954216196
+1470148096659477475,-0.00958384759724,0.00902826618403,0.24951633811,-0.532609992252,0.0208339070122,0.727417029599,-0.432153918785
+1470148096734058098,-0.00954746082425,0.00908850226551,0.250408470631,-0.564623732973,0.0237368468323,0.726665692464,-0.390632274219
+1470148096811571480,-0.0095437746495,0.00918276794255,0.250961780548,-0.562369934931,0.0276905617435,0.729479752689,-0.388371702745
+1470148096884833067,-0.0095320623368,0.00922833196819,0.250885426998,-0.56067484965,0.0274298756623,0.729472883893,-0.390846039452
+1470148096958215529,-0.00956360436976,0.00922232214361,0.2505222857,-0.55313416792,0.0223199572525,0.726680056768,-0.406792953336
+1470148097042190696,-0.00953562278301,0.00920363049954,0.250281244516,-0.565227587672,0.0234885532721,0.726460682577,-0.390155018767
+1470148097127427172,-0.00954009685665,0.00923983752728,0.249949023128,-0.549210782164,0.0242458622894,0.728483714041,-0.408767823211
+1470148097201834094,-0.00960505753756,0.00924390088767,0.249287813902,-0.535997743618,0.0241734011765,0.729809873422,-0.423673947945
+1470148097281311487,-0.00956206209958,0.00929341651499,0.248785689473,-0.542068942311,0.0246119608641,0.729657625728,-0.416119288644
+1470148097355309598,-0.00956926494837,0.00934624671936,0.248538061976,-0.529169803477,0.022285236885,0.729117792804,-0.433439651534
+1470148097427108282,-0.00949245411903,0.00937813520432,0.248256474733,-0.539040871861,0.0243359091876,0.729724758976,-0.419933897327
+1470148097500951778,-0.00941624585539,0.00942487642169,0.247691124678,-0.56677435567,0.0281974238132,0.729483474351,-0.381871176831
+1470148097572849879,-0.00952974986285,0.00945682451129,0.247092559934,-0.549129986526,0.0235917531859,0.728019381403,-0.409740731904
+1470148097650838871,-0.00953997671604,0.0094780176878,0.24658703804,-0.539265337746,0.0234302863887,0.728916669068,-0.421099046236
+1470148097724997013,-0.00947016756982,0.00951496325433,0.24630984664,-0.549361005391,0.0254320812344,0.729254320735,-0.407116482951
+1470148097800376294,-0.00941207353026,0.00952717475593,0.245903491974,-0.558662780615,0.0261148168081,0.728831651382,-0.394991566798
+1470148097872567160,-0.00947299599648,0.00956556480378,0.245573237538,-0.527291178756,0.0220204350564,0.728922367246,-0.436063407975
+1470148097943479371,-0.00946376379579,0.00956022832543,0.245142668486,-0.524476917401,0.0223748646574,0.729418941455,-0.43860156907
+1470148098016031812,-0.0094693377614,0.00956089887768,0.244378507137,-0.54201041929,0.0249838490596,0.729721422012,-0.416061484548
+1470148098093336215,-0.00941038038582,0.00957129057497,0.2441188097,-0.565940735809,0.026605383046,0.728218774658,-0.385617236881
+1470148098168974400,-0.00940834730864,0.0096090529114,0.243812978268,-0.552900946352,0.0243073177586,0.728143325416,-0.404372347569
+1470148098243314680,-0.0094129582867,0.00960851926357,0.243502080441,-0.537417962966,0.0226044844143,0.728497789014,-0.424219214284
+1470148098315517696,-0.00937983393669,0.00962038431317,0.243065565825,-0.547196965957,0.0248562691658,0.72916814086,-0.410209054855
+1470148098392267345,-0.00942395720631,0.00963448919356,0.242212608457,-0.538672865283,0.0257122417178,0.730743254088,-0.418550739384
+1470148098467212691,-0.00938596576452,0.00963224563748,0.241911098361,-0.546483717173,0.0260169626865,0.730041684377,-0.409533641585
+1470148098540710161,-0.00943169929087,0.00960898958147,0.241672575474,-0.530687176798,0.0211736375133,0.72788391598,-0.433713963708
+1470148098613026177,-0.00938805285841,0.00959687866271,0.241428956389,-0.538421893661,0.0217403061387,0.727580630296,-0.424565248147
+1470148098684770291,-0.0093302866444,0.00962912198156,0.240793392062,-0.554935692001,0.0253698904843,0.728526894136,-0.400813311806
+1470148098757509130,-0.00935293920338,0.00964820757508,0.240095570683,-0.548248475088,0.0265485930012,0.730212553017,-0.406827247353
+1470148098839668302,-0.0093590086326,0.00965780671686,0.239782854915,-0.54833234039,0.0254046231653,0.729475505559,-0.408107505926
+1470148098912418944,-0.0093731386587,0.00965926982462,0.239517614245,-0.530643652847,0.022295364954,0.728955217918,-0.431908000233
+1470148098984997888,-0.00932646449655,0.00962480064481,0.239268139005,-0.538463119094,0.0228467160545,0.728583061185,-0.42273185342
+1470148099059622563,-0.00930137000978,0.00963657815009,0.238562479615,-0.542075676512,0.024809990433,0.729413680643,-0.416526239029
+1470148099132829169,-0.00931265112013,0.00963065680116,0.237952724099,-0.554330066217,0.0263354539909,0.729268843154,-0.400239398305
+1470148099207131305,-0.00936700776219,0.00964900478721,0.237680017948,-0.531398138063,0.0223197109473,0.728698113838,-0.431412689029
+1470148099287412311,-0.00933946669102,0.00965614896268,0.237431704998,-0.529477900622,0.0220103189434,0.728732856816,-0.433724707632
+1470148099361116017,-0.00921192020178,0.00970588531345,0.236908346415,-0.539657040914,0.0259952514815,0.730760449399,-0.417233376766
+1470148099433700318,-0.00919115636498,0.00971012655646,0.23648327589,-0.547798020172,0.0277700448224,0.731102663544,-0.405752448009
+1470148099509655085,-0.00927132181823,0.00969003234059,0.235863849521,-0.546844339262,0.0260810085732,0.730049067496,-0.409034727936
+1470148099584841880,-0.00930955819786,0.00966095272452,0.235528603196,-0.541320820246,0.0228539241314,0.728273927137,-0.419602853627
+1470148099657202179,-0.00921702943742,0.00965324416757,0.23517459631,-0.561964740509,0.0252022727201,0.727787366691,-0.392283092626
+1470148099730472679,-0.00918559823185,0.00967764295638,0.234784662724,-0.548231820817,0.0255882231025,0.729434742007,-0.408303894955
+1470148099805006396,-0.00919005926698,0.00969751738012,0.234367445111,-0.551345974685,0.0257450692845,0.729250287419,-0.404411703473
+1470148099877218847,-0.00932383351028,0.00970440544188,0.233788207173,-0.517520078473,0.0217641387106,0.729656660778,-0.446430787497
+1470148099949498236,-0.00923915021122,0.0096782669425,0.233359828591,-0.54103123084,0.0237677012848,0.729006240141,-0.418652846003
+1470148100020348381,-0.00915641989559,0.00967854168266,0.233029410243,-0.551983885735,0.025844175667,0.729287310809,-0.403467330482
+1470148100094614551,-0.00910507515073,0.00967832095921,0.232665702701,-0.558473222547,0.026837708549,0.72923930595,-0.394458403074
+1470148100174085525,-0.0091602075845,0.00969114340842,0.232213109732,-0.537214450275,0.0248367033587,0.729921238641,-0.421898990237
+1470148100253777524,-0.00924490392208,0.00970294419676,0.231640607119,-0.525599051961,0.0228992168394,0.729744265793,-0.43668589282
+1470148100338252974,-0.00915952771902,0.00968490540981,0.231233507395,-0.546817223254,0.02489806656,0.72919109767,-0.41067183214
+1470148100412529831,-0.00910365581512,0.0096874050796,0.230939179659,-0.554491747086,0.025962551658,0.729105207865,-0.400337912506
+1470148100484214376,-0.00910747237504,0.00971542764455,0.230492070317,-0.530920499166,0.0248684772674,0.730645829364,-0.42855764424
+1470148100556849971,-0.00915762409568,0.0097135733813,0.230023995042,-0.523713914822,0.0234539433234,0.730332684325,-0.437935860795
+1470148100632435991,-0.00915184617043,0.00971103738993,0.229429453611,-0.540662922871,0.0241172357372,0.729315681253,-0.418569707279
+1470148100713124531,-0.00907642021775,0.0096896700561,0.22912183404,-0.553714911203,0.025903648174,0.729178023954,-0.401283201125
+1470148100789138175,-0.0090853665024,0.00973822269589,0.22877445817,-0.530764316083,0.0251246605866,0.73083704308,-0.428410094028
+1470148100860817833,-0.0091248434037,0.00972570851445,0.228109940886,-0.523935070634,0.0229729282055,0.729849633177,-0.438501766564
+1470148100932637710,-0.00913890637457,0.00972458627075,0.227592006326,-0.528543391795,0.0233412414569,0.729952033649,-0.432743686273
+1470148101008713344,-0.00903588347137,0.00968679413199,0.225844204426,-0.494277647037,0.0200785805092,0.729884536569,-0.471757375693
+1470148101082609422,-0.00905702635646,0.00959812197834,0.223587691784,-0.535913761997,0.0220357828683,0.727949849504,-0.427082990275
+1470148101155973394,-0.00901256129146,0.00961801130325,0.223098605871,-0.525218854809,0.0206262631814,0.727776029681,-0.440524417532
+1470148101231461486,-0.00902412459254,0.00963765382767,0.223639383912,-0.558465315286,0.0245232540266,0.727733362877,-0.397390556242
+1470148101304861060,-0.00898251123726,0.00964061450213,0.223416775465,-0.555977440711,0.0246710184302,0.728032964617,-0.400310415429
+1470148101377460485,-0.00899265054613,0.00967962201685,0.223078280687,-0.526418724591,0.0224756639806,0.729084776863,-0.436822113766
+1470148101450975540,-0.00903245341033,0.00969396997243,0.22267267108,-0.484249439861,0.0194974264261,0.730345736173,-0.481370373009
+1470148101527082289,-0.0089848600328,0.00968512892723,0.222330778837,-0.519601107424,0.0220294696393,0.729397102287,-0.444420137714
+1470148101601879567,-0.00900861062109,0.00962825119495,0.221875563264,-0.552155692383,0.0234000267336,0.727547014211,-0.406511835289
+1470148101675864846,-0.00896207988262,0.00960510596633,0.221689343452,-0.563462003816,0.024536034193,0.727217629743,-0.391232759714
+1470148101747425665,-0.00893730297685,0.00959667656571,0.221423655748,-0.55488327721,0.0243369514409,0.727858247396,-0.402162446239
+1470148101821486116,-0.00897033140063,0.00964657124132,0.221257328987,-0.531076340842,0.0223112876065,0.728561722992,-0.432039283437
+1470148101892483403,-0.00897374469787,0.00976366084069,0.220872014761,-0.502618667546,0.02156600821,0.730557586732,-0.461730435203
+1470148101964914205,-0.00895459670573,0.00979607924819,0.220526441932,-0.534824292629,0.023830570558,0.729459222711,-0.425774966764
+1470148102041502610,-0.00899570435286,0.00979926902801,0.220157384872,-0.543582738546,0.0232672901056,0.728384764253,-0.416451767639
+1470148102116833211,-0.00902073644102,0.00980694405735,0.220010340214,-0.531523426361,0.0209083169969,0.727681100127,-0.433042614564
+1470148102190857936,-0.00892146117985,0.00984894856811,0.219704836607,-0.559850541175,0.0234410010317,0.726815197638,-0.397187058573
+1470148102265860581,-0.00888979528099,0.00993362627923,0.219355165958,-0.544327275185,0.0245297282696,0.728916233341,-0.414472236335
+1470148102336037171,-0.00890866201371,0.0100094722584,0.21921557188,-0.525377981853,0.0235321238916,0.730060031529,-0.436390382219
+1470148102412632523,-0.00889306049794,0.0100313723087,0.219783678651,-0.556236564895,0.0251545835389,0.728348852824,-0.399344562239
+1470148102489392660,-0.00878617540002,0.0101303923875,0.220730036497,-0.536921281523,0.0235429505129,0.729366893849,-0.423302729834
+1470148102563265570,-0.00874619651586,0.0100385276601,0.220440968871,-0.532613190254,0.0226854392876,0.728837542403,-0.429656138319
+1470148102636000897,-0.00866068061441,0.00990893878043,0.22010435164,-0.529583726461,0.0230310285696,0.729718216377,-0.43188189714
+1470148102715905883,-0.00858394987881,0.0096860351041,0.21769683063,-0.506181368034,0.0185906054554,0.727763901977,-0.462379189652
+1470148102787809106,-0.00858076009899,0.00947807449847,0.216348841786,-0.524763596772,0.0203585577925,0.727664618675,-0.44126284611
+1470148102865119439,-0.0084956753999,0.0092700580135,0.216931268573,-0.532165224264,0.0225613275298,0.728777639889,-0.430318849439
+1470148102941534333,-0.00860659126192,0.00907084718347,0.216440081596,-0.513634416078,0.0194541697277,0.728011391998,-0.453652548787
+1470148103019792134,-0.00852183904499,0.00894263572991,0.216256424785,-0.535928485337,0.0218233017385,0.728117984859,-0.426788709118
+1470148103090957387,-0.00846377201378,0.008739749901,0.21601870656,-0.538655688557,0.0232572137375,0.728894370251,-0.421926709526
+1470148103163344761,-0.00853603985161,0.00845827255398,0.215579360723,-0.503895705477,0.0191608360707,0.728789534655,-0.463236218943
+1470148103237012295,-0.00851092580706,0.00822612363845,0.21564270556,-0.518816884327,0.0220634397082,0.729943917878,-0.444436859317
+1470148103314721202,-0.00850325450301,0.00803364161402,0.215789750218,-0.531406775331,0.0242109664604,0.73041345095,-0.42838867738
+1470148103390349936,-0.00860449392349,0.00794194079936,0.216495156288,-0.513428980185,0.021313394292,0.730092861811,-0.45044515167
+1470148103461036283,-0.00855327676982,0.00789506081492,0.216341614723,-0.520190444021,0.0221799095306,0.730159654436,-0.442466758747
+1470148103535436284,-0.00854321941733,0.00785074289888,0.216159746051,-0.512747392143,0.0218547779254,0.730621453846,-0.450338507916
+1470148103613221086,-0.0085274586454,0.00777042564005,0.215337082744,-0.478508230681,0.0194726150829,0.731481049296,-0.485372192192
+1470148103689085096,-0.00850706733763,0.00755921797827,0.212789446115,-0.514799806695,0.0202573069281,0.728992272502,-0.450711734012
+1470148103761447383,-0.00851133465767,0.00731945829466,0.213042914867,-0.540385438307,0.023320524043,0.728931510679,-0.419641017971
+1470148103834183141,-0.00851636659354,0.00727878836915,0.21278360486,-0.536326021816,0.023686593402,0.729753671631,-0.423382713814
+1470148103907335974,-0.0085320211947,0.0072591858916,0.212609380484,-0.534797753168,0.0237910552515,0.730002813224,-0.424877913738
+1470148103977789227,-0.00857484806329,0.00720524741337,0.212310895324,-0.537544308283,0.023911753322,0.729815336293,-0.42171544861
+1470148104061726298,-0.00866161473095,0.00703453132883,0.21204186976,-0.5113812416,0.0204773665309,0.72960750655,-0.453588789087
+1470148104136365660,-0.00864799972624,0.00697814533487,0.211941748857,-0.511230214448,0.0206515226194,0.729994022526,-0.453129020837
+1470148104208134382,-0.00864027161151,0.00695996498689,0.212280139327,-0.532552981395,0.0237974654924,0.730302120329,-0.427176562661
+1470148104280292684,-0.00869703944772,0.00702203763649,0.212497472763,-0.524942106245,0.0235033693489,0.730835232311,-0.435618227275
+1470148104355634106,-0.00862836930901,0.00714304111898,0.213229596615,-0.532741155411,0.0248554365714,0.731130929179,-0.425460495231
+1470148104433041627,-0.00863332580775,0.00717247230932,0.213191181421,-0.527557642899,0.0250904342028,0.731754111514,-0.430800793654
+1470148104508743657,-0.00871190056205,0.00711426744238,0.212521925569,-0.481860618525,0.0184704889034,0.730323567557,-0.483835376987
+1470148104579786297,-0.00860591139644,0.00705795036629,0.210254266858,-0.530933718571,0.0215191128331,0.728483894926,-0.43238585673
+1470148104654684872,-0.00875208340585,0.00712179578841,0.21098908782,-0.509771969684,0.0199498293194,0.729477179183,-0.455628783426
+1470148104729470848,-0.00878229364753,0.00712558301166,0.211028188467,-0.507175185749,0.019977659638,0.729784921051,-0.4580264109
+1470148104808060902,-0.00880453083664,0.0071335406974,0.211111560464,-0.506359367305,0.0196965833091,0.729579024253,-0.459267550692
+1470148104892221841,-0.00880776159465,0.00715993670747,0.21125087142,-0.502416070864,0.0191872577336,0.729391525328,-0.463894323805
+1470148104969531016,-0.00881657935679,0.0071830865927,0.211190968752,-0.497355810814,0.0193014904041,0.729903989996,-0.468513409952
+1470148105044616318,-0.00880743842572,0.00719449482858,0.211196452379,-0.508875506227,0.0200295335429,0.729469787348,-0.456638113055
+1470148105128505113,-0.00880987662822,0.00718526029959,0.211247608066,-0.506355389591,0.0195592694859,0.729285519433,-0.459743717253
+1470148105201844456,-0.00880973879248,0.007204240188,0.21121545136,-0.507368279478,0.0199810005093,0.729619441424,-0.458076040952
+1470148105282651498,-0.00880330894142,0.00720607256517,0.211219280958,-0.508474997897,0.0200892800038,0.729551048814,-0.456951709174
+1470148105358099007,-0.00879141315818,0.00722852256149,0.211143404245,-0.510171532453,0.0206244596814,0.729871920598,-0.454518006971
+1470148105436859949,-0.00876232236624,0.00728782033548,0.211124628782,-0.522721195242,0.0222426539794,0.730035822931,-0.439676601181
+1470148105514063295,-0.00876608677208,0.00731296371669,0.211140841246,-0.529036885745,0.0226230142428,0.729754994658,-0.432511064044
+1470148105599254774,-0.00875155162066,0.00736648775637,0.211123451591,-0.536031358508,0.0233581944487,0.729706566528,-0.423855050948
+1470148105672882898,-0.00884987972677,0.00744131486863,0.211132526398,-0.512300466593,0.0191101550194,0.728597494459,-0.454234218188
+1470148105744769837,-0.00882723275572,0.00748805049807,0.211130186915,-0.518864367245,0.0202193741828,0.728889614993,-0.446196004538
+1470148105815083103,-0.0088247153908,0.00752828549594,0.211157888174,-0.520152212324,0.0204107562662,0.728860371814,-0.44473321828
+1470148105888606385,-0.00879911426455,0.00760253891349,0.211173832417,-0.533472951152,0.022137663585,0.728980967774,-0.428372831612
+1470148105971525147,-0.00879040081054,0.00766237452626,0.211156219244,-0.540278128719,0.0226160545029,0.728712965233,-0.420196944311
+1470148106054988366,-0.00885023921728,0.00773251708597,0.21114833653,-0.524715623418,0.0198869049681,0.728196960807,-0.440462497635
+1470148106128199608,-0.00886047817767,0.00777577981353,0.211123347282,-0.522635354259,0.0193197602008,0.727922299749,-0.443405185888
+1470148106205743157,-0.00885025039315,0.00782639812678,0.211168929935,-0.533605746752,0.0203413961852,0.727744687759,-0.43039377792
+1470148106284385961,-0.00885059963912,0.00785179343075,0.21120493114,-0.538607925399,0.0207549893862,0.727565392683,-0.424404680091
+1470148106361589637,-0.00884252414107,0.00787806510925,0.211197435856,-0.550795675982,0.0216990056074,0.727110744445,-0.409222728827
+1470148106437223040,-0.00881608296186,0.00794355943799,0.211194843054,-0.55728543623,0.0228945412131,0.727372370206,-0.399797720866
+1470148106515860739,-0.00879774987698,0.00798347312957,0.211192578077,-0.562861072509,0.0240909411394,0.727697501832,-0.391233159939
+1470148106593302131,-0.00882276985794,0.00803623348475,0.211264252663,-0.563821840117,0.0236298696395,0.72740489909,-0.390421150358
+1470148106673602171,-0.0088575752452,0.00805066805333,0.21135802567,-0.56745756164,0.0240632372399,0.727340570058,-0.385212371945
+1470148106750570268,-0.00889665074646,0.00807709805667,0.2112801373,-0.55997272832,0.0215933116941,0.726516746588,-0.397665298153
+1470148106826666703,-0.00889508705586,0.00810400675982,0.211218267679,-0.548192097787,0.0203190865014,0.726588241593,-0.41369322671
+1470148106903654690,-0.00882933009416,0.00813298299909,0.211038917303,-0.535279941788,0.0200315086093,0.727425208644,-0.428866749017
+1470148106975718582,-0.00878449622542,0.00817217398435,0.210951119661,-0.528038660172,0.0207204266682,0.728572675465,-0.435806945617
+1470148107050857805,-0.00874067563564,0.00816394947469,0.210805743933,-0.526653783151,0.020742381272,0.728629595979,-0.437383651015
+1470148107126349060,-0.00867161806673,0.00801087915897,0.210347861052,-0.517987370866,0.0191370610087,0.727828549231,-0.448986034798
+1470148107203610172,-0.00861050002277,0.00789507944137,0.210007116199,-0.528427512991,0.0194989356016,0.727374658618,-0.437390284556
+1470148107276290966,-0.00856988132,0.00780610041693,0.20967450738,-0.528058636489,0.0190049713468,0.726973215268,-0.43852346776
+1470148107350208738,-0.00852641370147,0.00777030223981,0.209556847811,-0.528627339432,0.019109639544,0.727001575215,-0.437786097674
+1470148107424263413,-0.00840482395142,0.00772218592465,0.209430098534,-0.538362918664,0.0218402551455,0.728072655919,-0.4237907252
+1470148107497697426,-0.0084634097293,0.00750177074224,0.208070099354,-0.507617984658,0.0188061413558,0.728359650598,-0.459850551897
+1470148107570751059,-0.00826441030949,0.00748015381396,0.207337707281,-0.54296345826,0.0223406763578,0.72783083689,-0.418274849884
+1470148107643726048,-0.00824423134327,0.00747585250065,0.207270234823,-0.534389449754,0.022145518089,0.728572372059,-0.427924982552
+1470148107723535153,-0.00818206276745,0.00746286753565,0.206975415349,-0.545433652583,0.0226448138128,0.727871126911,-0.414961402599
+1470148107796079213,-0.00825051125139,0.0074595939368,0.206352114677,-0.49979839367,0.018404762083,0.728516703494,-0.468109221387
+1470148107873016215,-0.00829481799155,0.0074051944539,0.205891162157,-0.507166696937,0.0185757066854,0.728000787934,-0.46092487176
+1470148107949972896,-0.00821119826287,0.00738714402542,0.205627769232,-0.538477381512,0.0214860163016,0.727612130532,-0.424453823408
+1470148108025925285,-0.00817132927477,0.00743660423905,0.205013081431,-0.533877342191,0.0231309743315,0.729331381638,-0.42721853574
+1470148108102836099,-0.00818183552474,0.00743925524876,0.205517590046,-0.543000857408,0.0234548490963,0.728611174075,-0.416804145758
+1470148108177126986,-0.00823014602065,0.00750115700066,0.205854982138,-0.535417210044,0.0230654101014,0.729384460546,-0.425199608136
+1470148108260977922,-0.00819825101644,0.00748875970021,0.20554086566,-0.522815192445,0.0226034194579,0.729894262316,-0.439781452331
+1470148108344704402,-0.00816550198942,0.00750437984243,0.205286845565,-0.526919945548,0.0235790636995,0.730285509474,-0.43414568222
+1470148108418984379,-0.00820068176836,0.00749694183469,0.204914584756,-0.51888760899,0.0225655524596,0.730324179869,-0.443703772102
+1470148108493434233,-0.00818630494177,0.00744795612991,0.203354567289,-0.502141356625,0.0191509855886,0.728881982948,-0.464992852259
+1470148108566025058,-0.00814014393836,0.00740314414725,0.20241767168,-0.538675121864,0.0223722175227,0.728358959743,-0.422873293944
+1470148108643554391,-0.00812786258757,0.00740089546889,0.202273398638,-0.531957344776,0.0223495237869,0.728884903942,-0.430405249656
+1470148108715780920,-0.00812120642513,0.00740404101089,0.202099874616,-0.524738323436,0.0223035162817,0.729453480085,-0.438234943233
+1470148108790221127,-0.00814274419099,0.00738176098093,0.201675012708,-0.523437810806,0.0212041986316,0.728560489692,-0.44131944557
diff --git a/MobileRobot/docking_data/Vel3.txt b/MobileRobot/docking_data/Vel3.txt
index fdef06cae2f009e6026405b66536a0d0bec6e5f1..9afe6b8d5e5cbb4f4bd854ba6a63ac4e1e5caf6a 100644
--- a/MobileRobot/docking_data/Vel3.txt
+++ b/MobileRobot/docking_data/Vel3.txt
@@ -1,480 +1,234 @@
 %time,field.linear.x,field.linear.y,field.linear.z,field.angular.x,field.angular.y,field.angular.z
-1470148072567969162,0.15,-0.368810708228,0.0,0.0,0.0,0.0307812709877
-1470148072648350081,0.15,-0.186258444896,0.0,0.0,0.0,0.0307812709877
-1470148072723976768,0.15,-0.186276701948,0.0,0.0,0.0,0.0307812709877
-1470148072808083667,0.15,-0.186294959,0.0,0.0,0.0,0.0307812709877
-1470148072888426150,0.15,-0.186313216052,0.0,0.0,0.0,0.0307812709877
-1470148072965392949,0.15,-0.186331473104,0.0,0.0,0.0,0.0307812709877
-1470148073042767609,0.15,-0.186349730156,0.0,0.0,0.0,0.0307812709877
-1470148073117220063,0.15,-0.186367987208,0.0,0.0,0.0,0.0307812709877
-1470148073195372621,0.15,-0.184548737902,0.0,0.0,0.0,0.0234517423256
-1470148073272591476,0.15,-0.184933749375,0.0,0.0,0.0,0.0446299865589
-1470148073356777395,0.15,-0.192698710282,0.0,0.0,0.0,0.0292742763102
-1470148073431433957,0.15,-0.177483611667,0.0,0.0,0.0,0.0218635044077
-1470148073510185556,0.15,-0.168628330419,0.0,0.0,0.0,0.0241097936062
-1470148073586737325,0.15,-0.163262602769,0.0,0.0,0.0,0.040347265638
-1470148073659538638,0.15,-0.162518548202,0.0,0.0,0.0,0.022285908279
-1470148073735199806,0.15,-0.14944028023,0.0,0.0,0.0,0.0342380477098
-1470148073809541670,0.15,-0.148862753724,0.0,0.0,0.0,0.0307176441619
-1470148073884542949,0.15,-0.143612625602,0.0,0.0,0.0,0.0303209510837
-1470148073961527744,0.15,-0.134538499101,0.0,0.0,0.0,0.0432759578326
-1470148074036874310,0.15,-0.13064589777,0.0,0.0,0.0,0.0244789833729
-1470148074110544555,0.15,-0.128163988662,0.0,0.0,0.0,0.0281545248704
-1470148074186833002,0.15,-0.127744038129,0.0,0.0,0.0,0.0285891341646
-1470148074260225853,0.15,-0.114387138841,0.0,0.0,0.0,0.0263832449933
-1470148074337622354,0.15,-0.110044225125,0.0,0.0,0.0,0.0271857398206
-1470148074410034046,0.15,-0.111134524436,0.0,0.0,0.0,0.0338832117723
-1470148074486076493,0.15,-0.100399706041,0.0,0.0,0.0,0.0288576071941
-1470148074562715235,0.15,-0.0950746462543,0.0,0.0,0.0,0.0375149467006
-1470148074640329705,0.15,-0.0949671513684,0.0,0.0,0.0,0.0247066225971
-1470148074715885375,0.15,-0.0923488915976,0.0,0.0,0.0,0.0242866596705
-1470148074794833811,0.15,-0.0880123017497,0.0,0.0,0.0,0.0283668858123
-1470148074868343792,0.15,-0.0830356507088,0.0,0.0,0.0,0.0297982095102
-1470148074944570860,0.15,-0.0822642009324,0.0,0.0,0.0,0.0292023382697
-1470148075023153266,0.15,-0.0786747779691,0.0,0.0,0.0,0.021890429531
-1470148075097019442,0.15,-0.070015798301,0.0,0.0,0.0,0.0357154837146
-1470148075170474922,0.15,-0.0721569013984,0.0,0.0,0.0,0.0292542927898
-1470148075249980162,0.15,-0.0706949784849,0.0,0.0,0.0,0.0283905940984
-1470148075330141347,0.15,-0.0686282090716,0.0,0.0,0.0,0.0273536983406
-1470148075411582708,0.15,-0.0618225701969,0.0,0.0,0.0,0.0246090510052
-1470148075501004512,0.15,-0.0620521566696,0.0,0.0,0.0,0.0164202343024
-1470148075578357693,0.15,-0.0600670498225,0.0,0.0,0.0,0.0179181433889
-1470148075657559794,0.15,-0.0572359740978,0.0,0.0,0.0,0.0313031837847
-1470148075740812663,0.15,-0.0556430886594,0.0,0.0,0.0,0.0279565145426
-1470148075818622123,0.15,-0.0536380812956,0.0,0.0,0.0,0.0239601907831
-1470148075895618052,0.15,-0.0510834125114,0.0,0.0,0.0,0.0216180961473
-1470148075971493551,0.15,-0.0504739707593,0.0,0.0,0.0,0.0180152809486
-1470148076047160676,0.15,-0.0494164978903,0.0,0.0,0.0,0.0155582903877
-1470148076124909791,0.15,-0.0468308775682,0.0,0.0,0.0,0.0213303182421
-1470148076200054550,0.15,-0.0459123893454,0.0,0.0,0.0,0.0247657934974
-1470148076273993760,0.15,-0.0437062563269,0.0,0.0,0.0,0.0250830710553
-1470148076362856339,0.15,-0.0440355088571,0.0,0.0,0.0,0.0280654772689
-1470148076442739887,0.15,-0.0419532504329,0.0,0.0,0.0,0.0106274070212
-1470148076515700850,0.15,-0.0399344246948,0.0,0.0,0.0,0.0286439359651
-1470148076593880800,0.15,-0.0402228466467,0.0,0.0,0.0,0.0247195333889
-1470148076669420535,0.15,-0.0394811105963,0.0,0.0,0.0,0.0254939204819
-1470148076743991552,0.15,-0.0358573961474,0.0,0.0,0.0,0.0154965161751
-1470148076821878127,0.15,-0.0357561981529,0.0,0.0,0.0,0.0401862229791
-1470148076897904093,0.15,-0.0355381866406,0.0,0.0,0.0,0.0225941825778
-1470148076970033400,0.15,-0.0336360611684,0.0,0.0,0.0,0.0214230169145
-1470148077047642676,0.15,-0.034234444411,0.0,0.0,0.0,0.0226124725155
-1470148077125572867,0.15,-0.0337933252091,0.0,0.0,0.0,0.0305713895036
-1470148077198056123,0.15,-0.0316721828779,0.0,0.0,0.0,0.0195163377181
-1470148077277989896,0.15,-0.0327918691543,0.0,0.0,0.0,0.0162733896642
-1470148077351056403,0.15,-0.0307364495163,0.0,0.0,0.0,0.0232809267165
-1470148077428480942,0.15,-0.0313641699508,0.0,0.0,0.0,0.0213761580768
-1470148077505293160,0.15,-0.0295373092979,0.0,0.0,0.0,0.0151796406854
-1470148077580143300,0.15,-0.0297593588672,0.0,0.0,0.0,0.011761448321
-1470148077655460902,0.15,-0.0292168994083,0.0,0.0,0.0,0.0258750956626
-1470148077735643243,0.15,-0.0280912722091,0.0,0.0,0.0,0.0170928274755
-1470148077806851127,0.15,-0.0273439255094,0.0,0.0,0.0,0.00942826377069
-1470148077879860046,0.15,-0.0275525230834,0.0,0.0,0.0,0.0184763606497
-1470148077952086506,0.15,-0.0264591260375,0.0,0.0,0.0,0.0184125920266
-1470148078042179644,0.15,-0.0263343185057,0.0,0.0,0.0,0.0216021889604
-1470148078118521033,0.15,-0.026044701094,0.0,0.0,0.0,0.0134312439505
-1470148078193376016,0.15,-0.0248616285667,0.0,0.0,0.0,0.00946775982708
-1470148078267069431,0.15,-0.0249946171149,0.0,0.0,0.0,0.0226268297796
-1470148078340905440,0.15,-0.0239259137024,0.0,0.0,0.0,0.0185946188962
-1470148078418456240,0.15,-0.0233627909776,0.0,0.0,0.0,0.0216793297043
-1470148078496761042,0.15,-0.0226656431468,0.0,0.0,0.0,0.0229264120195
-1470148078574915655,0.15,-0.0221407110421,0.0,0.0,0.0,0.0176715690948
-1470148078649876112,0.15,-0.0217458802161,0.0,0.0,0.0,0.0116656602542
-1470148078727120995,0.15,-0.0214320767262,0.0,0.0,0.0,0.0135284957916
-1470148078801243358,0.15,-0.0211120558678,0.0,0.0,0.0,0.0149184823497
-1470148078877394048,0.15,-0.0202485286389,0.0,0.0,0.0,0.0206633030224
-1470148078951156840,0.15,-0.0196498108148,0.0,0.0,0.0,0.0221069532287
-1470148079030764530,0.15,-0.019613029962,0.0,0.0,0.0,0.00656122461732
-1470148079105106419,0.15,-0.0193184710207,0.0,0.0,0.0,0.0181627083222
-1470148079178390112,0.15,-0.0188219973186,0.0,0.0,0.0,0.0153324570931
-1470148079257147619,0.15,-0.0188379189683,0.0,0.0,0.0,0.0137320799441
-1470148079332677368,0.15,-0.0182254996784,0.0,0.0,0.0,0.0214606130164
-1470148079406771451,0.15,-0.0178611386021,0.0,0.0,0.0,0.0133485602494
-1470148079479967388,0.15,-0.0175783264937,0.0,0.0,0.0,0.0124488741447
-1470148079558502236,0.15,-0.0176920612183,0.0,0.0,0.0,0.0116849228497
-1470148079641220468,0.15,-0.0164163770105,0.0,0.0,0.0,0.00959426653384
-1470148079714098552,0.15,-0.0164740107035,0.0,0.0,0.0,0.00985966583635
-1470148079786360256,0.15,-0.0164848625143,0.0,0.0,0.0,0.0130503717906
-1470148079858894548,0.15,-0.0159977223536,0.0,0.0,0.0,0.0124038915751
-1470148079940531062,0.0,-0.0157159415271,0.0,0.0,0.0,0.0163480484461
-1470148080017992188,0.0,-0.0154352978032,0.0,0.0,0.0,0.0138055610616
-1470148080090447737,0.0,-0.0151780204942,0.0,0.0,0.0,0.0142702828584
-1470148080165620996,0.0,-0.0147932136108,0.0,0.0,0.0,0.0133869124878
-1470148080241953028,0.0,-0.0146484678669,0.0,0.0,0.0,0.0123921030636
-1470148080315727671,0.0,-0.0142465759246,0.0,0.0,0.0,0.00999580865303
-1470148080391074188,0.0,-0.0134008959153,0.0,0.0,0.0,0.00853870306856
-1470148080467433923,0.0,-0.0135509101258,0.0,0.0,0.0,0.0130067162385
-1470148080541143168,0.0,-0.0130922723728,0.0,0.0,0.0,0.00957298310061
-1470148080617150123,0.0,-0.012965346957,0.0,0.0,0.0,0.00822478965832
-1470148080690107253,0.0,-0.013198590113,0.0,0.0,0.0,0.0104172209794
-1470148080766796094,0.0,-0.0135944253179,0.0,0.0,0.0,0.00898939239187
-1470148080840051539,0.0,-0.0145979759882,0.0,0.0,0.0,0.00862519168799
-1470148080922284447,0.0,-0.0150052381385,0.0,0.0,0.0,0.00806273726119
-1470148081000778978,0.0,-0.0148782212693,0.0,0.0,0.0,0.00905348418388
-1470148081081884875,0.0,-0.0143496492033,0.0,0.0,0.0,0.00830191783812
-1470148081155266217,0.0,-0.0143082270109,0.0,0.0,0.0,0.00732838963069
-1470148081228130627,0.0,-0.0139593347407,0.0,0.0,0.0,0.00663673687783
-1470148081301122614,0.0,-0.0134983006938,0.0,0.0,0.0,0.00450647467939
-1470148081374389715,0.0,-0.0134682897199,0.0,0.0,0.0,0.00406052584975
-1470148081450647304,0.0,-0.013237452138,0.0,0.0,0.0,0.00467978930195
-1470148081526727051,0.0,-0.0127402230612,0.0,0.0,0.0,0.00623938932726
-1470148081599481953,0.0,-0.0125645478735,0.0,0.0,0.0,0.00646468213776
-1470148081672030216,0.0,-0.0123281313986,0.0,0.0,0.0,0.00752738616726
-1470148081745975359,0.0,-0.0120402794115,0.0,0.0,0.0,0.0069962781068
-1470148081818039756,0.0,-0.0116606928538,0.0,0.0,0.0,0.00593173004149
-1470148081893440673,0.0,-0.0110929251295,0.0,0.0,0.0,0.00595143418229
-1470148081970613531,0.0,-0.0109616446648,0.0,0.0,0.0,0.0061154255696
-1470148082046478392,0.0,-0.0105759124435,0.0,0.0,0.0,0.00607233970874
-1470148082122046038,0.0,-0.0102289131957,0.0,0.0,0.0,0.00406894513811
-1470148082195531634,0.0,-0.0096935274031,0.0,0.0,0.0,0.00510216064122
-1470148082267835231,0.0,-0.00939682343272,0.0,0.0,0.0,0.00420274873969
-1470148082343245878,0.0,-0.00919834976468,0.0,0.0,0.0,0.00412016936464
-1470148082416109636,0.0,-0.00896404164496,0.0,0.0,0.0,0.00410454687304
-1470148082492666369,0.0,-0.00825161421432,0.0,0.0,0.0,0.0
-1470148082568882064,0.0,-0.00822445604818,0.0,0.0,0.0,0.00321680567088
-1470148082642624459,0.0,-0.0080251795391,0.0,0.0,0.0,0.00289547927776
-1470148082715232297,0.0,-0.00778670897409,0.0,0.0,0.0,0.002945780796
-1470148082788838683,0.0,-0.00725403493266,0.0,0.0,0.0,0.00394961390738
-1470148082860247453,0.0,-0.00716737116092,0.0,0.0,0.0,0.00485982437118
-1470148082932914211,0.0,-0.00693777486865,0.0,0.0,0.0,0.00442744830923
-1470148083003367786,0.0,-0.00676113248507,0.0,0.0,0.0,0.00349325900306
-1470148083075712680,0.0,-0.00630659032555,0.0,0.0,0.0,0.00372922073736
-1470148083148275252,0.0,-0.00626993339512,0.0,0.0,0.0,0.00536184692544
-1470148083220772034,0.0,-0.0060284741003,0.0,0.0,0.0,0.00391061004679
-1470148083295837034,0.0,-0.00583720601802,0.0,0.0,0.0,0.0
-1470148083372626367,0.0,-0.00568693778515,0.0,0.0,0.0,0.00280652400469
-1470148083449531154,0.0,-0.00551232203353,0.0,0.0,0.0,0.00472775139201
-1470148083522527096,0.0,-0.00527033878362,0.0,0.0,0.0,0.00421953411286
-1470148083595854785,0.0,-0.00498493723318,0.0,0.0,0.0,0.00402492214907
-1470148083672233869,0.0,-0.00501668553551,0.0,0.0,0.0,0.0
-1470148083747835661,0.0,-0.00480785064501,0.0,0.0,0.0,0.00437757475342
-1470148083822105141,0.0,-0.00462410885035,0.0,0.0,0.0,0.00292269257878
-1470148083900478964,0.0,-0.00446879173443,0.0,0.0,0.0,0.0
-1470148083981169632,0.0,-0.00439427690819,0.0,0.0,0.0,0.00520728237862
-1470148084058144237,0.0,-0.00423141076399,0.0,0.0,0.0,0.0
-1470148084132725594,0.0,-0.00415748627314,0.0,0.0,0.0,0.0044536948365
-1470148084204630677,0.0,-0.00396846822847,0.0,0.0,0.0,0.0
-1470148084277512387,0.0,-0.00393987803122,0.0,0.0,0.0,0.00379773651439
-1470148084351338763,0.0,-0.00381886184639,0.0,0.0,0.0,0.0
-1470148084428324469,0.0,-0.00367743204557,0.0,0.0,0.0,0.00414066746239
-1470148084508067743,0.0,-0.00362901797868,0.0,0.0,0.0,0.00338399840288
-1470148084579410432,0.0,-0.00350182955261,0.0,0.0,0.0,0.00309988448937
-1470148084655233671,0.0,-0.00348600022138,0.0,0.0,0.0,0.0041015945969
-1470148084729369055,0.0,-0.00328654066238,0.0,0.0,0.0,0.0
-1470148084802253200,0.0,-0.00323958706663,0.0,0.0,0.0,0.00318742152462
-1470148084881304258,0.0,-0.00318228945549,0.0,0.0,0.0,0.00410670215249
-1470148084959144252,0.0,-0.00305091617093,0.0,0.0,0.0,0.0
-1470148085034393573,0.0,-0.00291184028946,0.0,0.0,0.0,0.00426518057132
-1470148085117174527,0.0,-0.00286033975133,0.0,0.0,0.0,0.0
-1470148085190861852,0.0,-0.00272124815738,0.0,0.0,0.0,0.00281722706576
-1470148085264391681,0.0,-0.00266191443221,0.0,0.0,0.0,0.00418812876884
-1470148085341572041,0.0,-0.00261269687561,0.0,0.0,0.0,0.00300013871227
-1470148085415636869,0.0,-0.00251942281046,0.0,0.0,0.0,0.00398078186615
-1470148085488374762,0.0,-0.00247952294344,0.0,0.0,0.0,0.00416922618264
-1470148085564351537,0.0,-0.00247027250644,0.0,0.0,0.0,0.00487107342838
-1470148085641916948,0.0,-0.00240579757849,0.0,0.0,0.0,0.0
-1470148085714846795,0.0,-0.00242122332809,0.0,0.0,0.0,0.00337362563948
-1470148085788702175,0.0,-0.0022778214445,0.0,0.0,0.0,0.00313533921051
-1470148085861530471,0.0,-0.00225312121895,0.0,0.0,0.0,0.00289709977269
-1470148085935703554,0.0,-0.00217686620609,0.0,0.0,0.0,0.00486429221156
-1470148086011661498,0.0,-0.00202572232651,0.0,0.0,0.0,0.00422554849771
-1470148086084939983,0.0,-0.00203836752879,0.0,0.0,0.0,0.00474227116213
-1470148086160317814,0.0,-0.00201571262749,0.0,0.0,0.0,0.00585692062894
-1470148086233577879,0.0,-0.00192794199633,0.0,0.0,0.0,0.00533608944319
-1470148086314846151,0.0,-0.00193513511681,0.0,0.0,0.0,0.00460025059933
-1470148086389944996,0.0,-0.00193515958671,0.0,0.0,0.0,0.00451478484376
-1470148086468120233,0.0,-0.00199797197541,0.0,0.0,0.0,0.00620540421591
-1470148086543068637,0.0,-0.0019159484654,0.0,0.0,0.0,0.00388472756375
-1470148086618482795,0.0,-0.00190887303892,0.0,0.0,0.0,0.00470891064373
-1470148086694876124,0.0,-0.00188646677932,0.0,0.0,0.0,0.00538089538352
-1470148086771726947,0.0,-0.00173750501219,0.0,0.0,0.0,0.00522609925511
-1470148086850727773,0.0,0.0,0.0,0.0,0.0,0.0040259594185
-1470148086928257225,0.0,0.0,0.0,0.0,0.0,0.00588309732692
-1470148087001783352,0.0,0.0,0.0,0.0,0.0,0.00470107189984
-1470148087075151710,0.0,0.0,0.0,0.0,0.0,0.00577144249528
-1470148087156421866,0.0,0.0,0.0,0.0,0.0,0.00573287635664
-1470148087230162181,0.0,0.0,0.0,0.0,0.0,0.00403125094304
-1470148087307462938,0.0,0.0,0.0,0.0,0.0,0.00592751772418
-1470148087383153052,0.0,-0.00174021891696,0.0,0.0,0.0,0.00562721022845
-1470148087458909055,0.0,-0.00184809246405,0.0,0.0,0.0,0.00389193721066
-1470148087533431723,0.0,0.0,0.0,0.0,0.0,0.00632499744281
-1470148087615235305,0.006,0.0,0.0,0.0,0.0,0.0
-1470148087693538890,0.0,0.0,0.0,0.0,0.0,0.0048581302951
-1470148087767271027,0.0,0.0,0.0,0.0,0.0,0.00315292970752
-1470148087841631796,0.0,0.0,0.0,0.0,0.0,0.00613299694966
-1470148087915012430,0.0,0.0,0.0,0.0,0.0,0.00390230692632
-1470148087988875389,0.0,-0.00208136881368,0.0,0.0,0.0,0.00470435722112
-1470148088075511550,0.0,-0.00219927190494,0.0,0.0,0.0,0.00352358560037
-1470148088148733670,0.0,-0.00230434635425,0.0,0.0,0.0,0.00345965447212
-1470148088226337025,0.0,-0.00240014938446,0.0,0.0,0.0,0.0
-1470148088300761476,0.0,-0.00264535432514,0.0,0.0,0.0,0.00336581751359
-1470148088377420828,0.0,-0.00269928529286,0.0,0.0,0.0,0.00399992541543
-1470148088454356508,0.0,-0.00273080093596,0.0,0.0,0.0,0.0
-1470148088531507233,0.0,-0.00283462170681,0.0,0.0,0.0,0.0
-1470148088606089960,0.0,-0.00303602085814,0.0,0.0,0.0,0.00355713728212
-1470148088679323874,0.0,-0.00316122095816,0.0,0.0,0.0,0.0
-1470148088751674383,0.0,-0.00327074641947,0.0,0.0,0.0,0.0032801139957
-1470148088822938006,0.0,-0.00351856603589,0.0,0.0,0.0,0.0
-1470148088895050853,0.0,-0.00386428372441,0.0,0.0,0.0,0.0
-1470148088984557763,0.0,-0.00448797362396,0.0,0.0,0.0,0.0
-1470148089065073366,0.0,-0.00471934581819,0.0,0.0,0.0,0.0
-1470148089138148388,0.0,-0.00464102391682,0.0,0.0,0.0,0.0
-1470148089211246815,0.0,-0.00451721333491,0.0,0.0,0.0,0.0
-1470148089287963371,0.0,-0.00450440153981,0.0,0.0,0.0,0.0
-1470148089363943703,0.0,-0.00438714723703,0.0,0.0,0.0,0.0
-1470148089436834848,0.0,-0.0043762790123,0.0,0.0,0.0,0.0
-1470148089510208075,0.0,-0.00428511962952,0.0,0.0,0.0,0.0
-1470148089585109803,0.0,-0.00419545889563,0.0,0.0,0.0,0.0
-1470148089660240969,0.0,-0.00399289678183,0.0,0.0,0.0,0.0
-1470148089735270188,0.0,-0.00389267254819,0.0,0.0,0.0,0.0
-1470148089808285424,0.0,-0.00371631978469,0.0,0.0,0.0,0.0
-1470148089882745917,0.0,-0.00362692663748,0.0,0.0,0.0,0.0
-1470148089958600375,0.0,-0.00334461494521,0.0,0.0,0.0,0.0
-1470148090033673673,0.0,-0.00321600143341,0.0,0.0,0.0,0.0
-1470148090109753488,0.0,-0.00311442726702,0.0,0.0,0.0,0.0
-1470148090181881189,0.0,-0.00297517745468,0.0,0.0,0.0,0.0
-1470148090254374398,0.0,-0.00268932528912,0.0,0.0,0.0,0.0
-1470148090330465509,0.0,-0.0026054143545,0.0,0.0,0.0,0.0
-1470148090407590079,0.0,-0.00251818057539,0.0,0.0,0.0,0.0
-1470148090480799394,0.0,-0.00241955835655,0.0,0.0,0.0,0.0
-1470148090552645017,0.0,-0.00226610759813,0.0,0.0,0.0,0.0
-1470148090626463145,0.0,-0.0020187098213,0.0,0.0,0.0,0.0
-1470148090701430387,0.0,-0.00202442016402,0.0,0.0,0.0,0.0
-1470148090777544694,0.0,-0.00186701100242,0.0,0.0,0.0,0.0
-1470148090851237095,0.0,-0.00182905671031,0.0,0.0,0.0,0.0
-1470148090927605683,0.006,0.0,0.0,0.0,0.0,0.0
-1470148091001813502,0.006,0.0,0.0,0.0,0.0,0.0
-1470148091078609006,0.006,0.0,0.0,0.0,0.0,0.0
-1470148091150229171,0.006,0.0,0.0,0.0,0.0,0.0
-1470148091219713401,0.006,0.0,0.0,0.0,0.0,0.0
-1470148091294176189,0.006,0.0,0.0,0.0,0.0,0.0
-1470148091375253418,0.006,0.0,0.0,0.0,0.0,0.0
-1470148091450117131,0.006,0.0,0.0,0.0,0.0,0.0
-1470148091529705665,0.006,0.0,0.0,0.0,0.0,0.0
-1470148091607542153,0.006,0.0,0.0,0.0,0.0,0.0
-1470148091681556352,0.006,0.0,0.0,0.0,0.0,0.0
-1470148091753394023,0.006,0.0,0.0,0.0,0.0,0.0
-1470148091831861459,0.006,0.0,0.0,0.0,0.0,0.0
-1470148091905871937,0.006,0.0,0.0,0.0,0.0,0.0
-1470148091979429126,0.006,0.0,0.0,0.0,0.0,0.0
-1470148092053935969,0.0,0.0,0.0,0.0,0.0,0.00420639637286
-1470148092132780187,0.006,0.0,0.0,0.0,0.0,0.0
-1470148092208687056,0.0,0.0,0.0,0.0,0.0,0.00532501135301
-1470148092283014800,0.0,0.0,0.0,0.0,0.0,0.0055829484079
-1470148092368161109,0.0,0.0,0.0,0.0,0.0,0.00458665979744
-1470148092446557428,0.006,0.0,0.0,0.0,0.0,0.0
-1470148092522238648,0.006,0.0,0.0,0.0,0.0,0.0
-1470148092601935959,0.006,0.0,0.0,0.0,0.0,0.0
-1470148092677051722,0.006,0.0,0.0,0.0,0.0,0.0
-1470148092751653019,0.0,0.0,0.0,0.0,0.0,0.0033054311331
-1470148092827309496,0.0,0.0,0.0,0.0,0.0,0.00456796623294
-1470148092902316457,0.0,0.00262365386439,0.0,0.0,0.0,0.0
-1470148092978428680,0.0,0.000803248500511,0.0,0.0,0.0,0.0
-1470148093059976206,0.0,0.0009087467057,0.0,0.0,0.0,0.00515959666372
-1470148093134561080,0.0,0.000699450783758,0.0,0.0,0.0,0.0
-1470148093212732664,0.0,0.000328366274451,0.0,0.0,0.0,0.0
-1470148093289648141,0.006,0.0,0.0,0.0,0.0,0.0
-1470148093362659079,0.006,0.0,0.0,0.0,0.0,0.0
-1470148093440911020,0.006,0.0,0.0,0.0,0.0,0.0
-1470148093516222629,0.006,0.0,0.0,0.0,0.0,0.0
-1470148093589340527,0.006,0.0,0.0,0.0,0.0,0.0
-1470148093663053182,0.006,0.0,0.0,0.0,0.0,0.0
-1470148093740310916,0.006,0.0,0.0,0.0,0.0,0.0
-1470148093814951405,0.006,0.0,0.0,0.0,0.0,0.0
-1470148093889776677,0.006,0.0,0.0,0.0,0.0,0.0
-1470148093967568980,0.006,0.0,0.0,0.0,0.0,0.0
-1470148094043138010,0.006,0.0,0.0,0.0,0.0,0.0
-1470148094120647721,0.006,0.0,0.0,0.0,0.0,0.0
-1470148094196751171,0.006,0.0,0.0,0.0,0.0,0.0
-1470148094271081965,0.006,0.0,0.0,0.0,0.0,0.0
-1470148094345878034,0.006,0.0,0.0,0.0,0.0,0.0
-1470148094419681483,0.006,0.0,0.0,0.0,0.0,0.0
-1470148094500286728,0.006,0.0,0.0,0.0,0.0,0.0
-1470148094576955704,0.006,0.0,0.0,0.0,0.0,0.0
-1470148094653152765,0.006,0.0,0.0,0.0,0.0,0.0
-1470148094725879012,0.006,0.0,0.0,0.0,0.0,0.0
-1470148094799181316,0.006,0.0,0.0,0.0,0.0,0.0
-1470148094874752152,0.0,0.0,0.0,0.0,0.0,0.00327486838173
-1470148094954909448,0.0,0.0,0.0,0.0,0.0,0.0113228920904
-1470148095026414841,0.006,0.0,0.0,0.0,0.0,0.0
-1470148095096832780,0.0,0.0,0.0,0.0,0.0,0.00287674148571
-1470148095171347833,0.006,0.0,0.0,0.0,0.0,0.0
-1470148095245814267,0.006,0.0,0.0,0.0,0.0,0.0
-1470148095319334351,0.0,0.0,0.0,0.0,0.0,0.00511768283707
-1470148095404900915,0.0,0.0,0.0,0.0,0.0,0.00321993959349
-1470148095483110243,0.006,0.0,0.0,0.0,0.0,0.0
-1470148095556744122,0.006,0.0,0.0,0.0,0.0,0.0
-1470148095630618867,0.0,0.0,0.0,0.0,0.0,0.00320167177025
-1470148095708014067,0.006,0.0,0.0,0.0,0.0,0.0
-1470148095784120685,0.006,0.0,0.0,0.0,0.0,0.0
-1470148095856546620,0.006,0.0,0.0,0.0,0.0,0.0
-1470148095934035739,0.006,0.0,0.0,0.0,0.0,0.0
-1470148096013098962,0.006,0.0,0.0,0.0,0.0,0.0
-1470148096087757591,0.006,0.0,0.0,0.0,0.0,0.0
-1470148096168401181,0.006,0.0,0.0,0.0,0.0,0.0
-1470148096242814998,0.006,0.0,0.0,0.0,0.0,0.0
-1470148096322708542,0.0,0.0,0.0,0.0,0.0,0.00433513739865
-1470148096396286358,0.006,0.0,0.0,0.0,0.0,0.0
-1470148096468871947,0.0,0.0,0.0,0.0,0.0,0.00283905576128
-1470148096546625043,0.006,0.0,0.0,0.0,0.0,0.0
-1470148096622110001,0.006,0.0,0.0,0.0,0.0,0.0
-1470148096695651501,0.006,0.0,0.0,0.0,0.0,0.0
-1470148096770541535,0.006,0.0,0.0,0.0,0.0,0.0
-1470148096848283314,0.006,0.0,0.0,0.0,0.0,0.0
-1470148096921183252,0.006,0.0,0.0,0.0,0.0,0.0
-1470148096994277801,0.006,0.0,0.0,0.0,0.0,0.0
-1470148097078676605,0.006,0.0,0.0,0.0,0.0,0.0
-1470148097163459288,0.006,0.0,0.0,0.0,0.0,0.0
-1470148097238249120,0.006,0.0,0.0,0.0,0.0,0.0
-1470148097318183369,0.006,0.0,0.0,0.0,0.0,0.0
-1470148097391562902,0.006,0.0,0.0,0.0,0.0,0.0
-1470148097464044106,0.006,0.0,0.0,0.0,0.0,0.0
-1470148097536652561,0.006,0.0,0.0,0.0,0.0,0.0
-1470148097610019677,0.006,0.0,0.0,0.0,0.0,0.0
-1470148097686732872,0.006,0.0,0.0,0.0,0.0,0.0
-1470148097761353852,0.006,0.0,0.0,0.0,0.0,0.0
-1470148097836347596,0.006,0.0,0.0,0.0,0.0,0.0
-1470148097908718039,0.006,0.0,0.0,0.0,0.0,0.0
-1470148097979836765,0.0,0.0,0.0,0.0,0.0,0.0028708866079
-1470148098052475924,0.006,0.0,0.0,0.0,0.0,0.0
-1470148098129312547,0.006,0.0,0.0,0.0,0.0,0.0
-1470148098205385258,0.006,0.0,0.0,0.0,0.0,0.0
-1470148098278642550,0.006,0.0,0.0,0.0,0.0,0.0
-1470148098351566480,0.006,0.0,0.0,0.0,0.0,0.0
-1470148098429101547,0.006,0.0,0.0,0.0,0.0,0.0
-1470148098502653474,0.006,0.0,0.0,0.0,0.0,0.0
-1470148098577322055,0.006,0.0,0.0,0.0,0.0,0.0
-1470148098648231428,0.006,0.0,0.0,0.0,0.0,0.0
-1470148098721928941,0.006,0.0,0.0,0.0,0.0,0.0
-1470148098794909251,0.006,0.0,0.0,0.0,0.0,0.0
-1470148098875942609,0.006,0.0,0.0,0.0,0.0,0.0
-1470148098948297446,0.006,0.0,0.0,0.0,0.0,0.0
-1470148099021672590,0.006,0.0,0.0,0.0,0.0,0.0
-1470148099096164561,0.006,0.0,0.0,0.0,0.0,0.0
-1470148099168061821,0.006,0.0,0.0,0.0,0.0,0.0
-1470148099243994312,0.006,0.0,0.0,0.0,0.0,0.0
-1470148099325091295,0.006,0.0,0.0,0.0,0.0,0.0
-1470148099397288960,0.006,0.0,0.0,0.0,0.0,0.0
-1470148099469910613,0.006,0.0,0.0,0.0,0.0,0.0
-1470148099546492071,0.006,0.0,0.0,0.0,0.0,0.0
-1470148099620680412,0.006,0.0,0.0,0.0,0.0,0.0
-1470148099693692132,0.006,0.0,0.0,0.0,0.0,0.0
-1470148099766742417,0.006,0.0,0.0,0.0,0.0,0.0
-1470148099841363515,0.006,0.0,0.0,0.0,0.0,0.0
-1470148099913876483,0.0,0.0,0.0,0.0,0.0,0.00342743372216
-1470148099985485028,0.006,0.0,0.0,0.0,0.0,0.0
-1470148100055585584,0.006,0.0,0.0,0.0,0.0,0.0
-1470148100132470484,0.006,0.0,0.0,0.0,0.0,0.0
-1470148100211411211,0.006,0.0,0.0,0.0,0.0,0.0
-1470148100290410135,0.006,0.0,0.0,0.0,0.0,0.0
-1470148100375898362,0.006,0.0,0.0,0.0,0.0,0.0
-1470148100447837151,0.006,0.0,0.0,0.0,0.0,0.0
-1470148100520580793,0.006,0.0,0.0,0.0,0.0,0.0
-1470148100593149243,0.0,0.0,0.0,0.0,0.0,0.00293192681422
-1470148100668072750,0.006,0.0,0.0,0.0,0.0,0.0
-1470148100751826749,0.006,0.0,0.0,0.0,0.0,0.0
-1470148100824311541,0.006,0.0,0.0,0.0,0.0,0.0
-1470148100897483348,0.0,0.0,0.0,0.0,0.0,0.00291423434926
-1470148100969506522,0.006,0.0,0.0,0.0,0.0,0.0
-1470148101044683739,0.0,0.0,0.0,0.0,0.0,0.00528682823704
-1470148101119298817,0.006,0.0,0.0,0.0,0.0,0.0
-1470148101192448800,0.0,0.0,0.0,0.0,0.0,0.00281153161528
-1470148101267186804,0.006,0.0,0.0,0.0,0.0,0.0
-1470148101341274293,0.006,0.0,0.0,0.0,0.0,0.0
-1470148101414836725,0.006,0.0,0.0,0.0,0.0,0.0
-1470148101486707702,0.0,0.0,0.0,0.0,0.0,0.00608908481108
-1470148101563206495,0.0,0.0,0.0,0.0,0.0,0.00326095140607
-1470148101638504894,0.006,0.0,0.0,0.0,0.0,0.0
-1470148101712232809,0.006,0.0,0.0,0.0,0.0,0.0
-1470148101782959753,0.006,0.0,0.0,0.0,0.0,0.0
-1470148101857511023,0.006,0.0,0.0,0.0,0.0,0.0
-1470148101929369290,0.0,0.0,0.0,0.0,0.0,0.00461954659633
-1470148102002525896,0.006,0.0,0.0,0.0,0.0,0.0
-1470148102078172871,0.006,0.0,0.0,0.0,0.0,0.0
-1470148102152889069,0.006,0.0,0.0,0.0,0.0,0.0
-1470148102227726949,0.006,0.0,0.0,0.0,0.0,0.0
-1470148102302512780,0.006,0.0,0.0,0.0,0.0,0.0
-1470148102373212330,0.0,0.0,0.0,0.0,0.0,0.00279880145178
-1470148102449838016,0.006,0.0,0.0,0.0,0.0,0.0
-1470148102525489201,0.006,0.0,0.0,0.0,0.0,0.0
-1470148102599248614,0.006,0.0,0.0,0.0,0.0,0.0
-1470148102672728395,0.006,0.0,0.0,0.0,0.0,0.0
-1470148102750185802,0.0,0.0,0.0,0.0,0.0,0.00433453055724
-1470148102829398070,0.0,0.0,0.0,0.0,0.0,0.00284795225828
-1470148102901988764,0.006,0.0,0.0,0.0,0.0,0.0
-1470148102978536373,0.0,0.0,0.0,0.0,0.0,0.00373828671375
-1470148103055276082,0.006,0.0,0.0,0.0,0.0,0.0
-1470148103127592737,0.006,0.0,0.0,0.0,0.0,0.0
-1470148103200325136,0.0,0.0,0.0,0.0,0.0,0.00451738356185
-1470148103273341836,0.0,0.0,0.0,0.0,0.0,0.00332368925387
-1470148103350969894,0.006,0.0,0.0,0.0,0.0,0.0
-1470148103426478391,0.0,0.0,0.0,0.0,0.0,0.0037547215852
-1470148103498747919,0.0,0.0,0.0,0.0,0.0,0.00321380447831
-1470148103570155675,0.0,0.0,0.0,0.0,0.0,0.00380924862859
-1470148103650456363,0.0,0.0,0.0,0.0,0.0,0.00654838154549
-1470148103725169913,0.0,0.0,0.0,0.0,0.0,0.00364505546442
-1470148103798195924,0.0,0.000101993940107,0.0,0.0,0.0,0.0
-1470148103870365836,0.0,0.00035277442034,0.0,0.0,0.0,0.0
-1470148103943301824,0.0,0.000352345856116,0.0,0.0,0.0,0.0
-1470148104015570306,0.0,0.000397133073484,0.0,0.0,0.0,0.0
-1470148104099886326,0.0,0.000542706208687,0.0,0.0,0.0,0.003918540672
-1470148104172262141,0.0,0.000514419968547,0.0,0.0,0.0,0.00393062284414
-1470148104246411165,0.0,0.000504711980278,0.0,0.0,0.0,0.0
-1470148104315572567,0.0,0.000433048183813,0.0,0.0,0.0,0.00283367150042
-1470148104395381891,0.0,0.00034198469474,0.0,0.0,0.0,0.0
-1470148104469509457,0.0,0.000372873165625,0.0,0.0,0.0,0.0
-1470148104546102229,0.0,0.000446490818539,0.0,0.0,0.0,0.00628019051796
-1470148104616600505,0.0,0.000474386589895,0.0,0.0,0.0,0.0
-1470148104690527813,0.0,0.000381858941222,0.0,0.0,0.0,0.00404728242525
-1470148104766852700,0.0,0.000410071133149,0.0,0.0,0.0,0.00425502514004
-1470148104844842196,0.0,0.000404041660643,0.0,0.0,0.0,0.00432029061564
-1470148104928606151,0.0,0.000381473392005,0.0,0.0,0.0,0.0046357543309
-1470148105006745205,0.0,0.000371401714121,0.0,0.0,0.0,0.00504057513485
-1470148105080228069,0.0,0.000371565469262,0.0,0.0,0.0,0.00411899950184
-1470148105164943143,0.0,0.000386708053964,0.0,0.0,0.0,0.00432060883268
-1470148105241730563,0.0,0.000363031745667,0.0,0.0,0.0,0.00423957764179
-1470148105318259241,0.0,0.000370781540806,0.0,0.0,0.0,0.00415104016823
-1470148105396068030,0.0,0.000349132662476,0.0,0.0,0.0,0.0040153174038
-1470148105472716012,0.0,0.000300573373393,0.0,0.0,0.0,0.00301134438065
-1470148105550841142,0.0,0.00030493265268,0.0,0.0,0.0,0.0
-1470148105635585916,0.0,0.000263547594314,0.0,0.0,0.0,0.0
-1470148105709159365,0.0,0.0,0.0,0.0,0.0,0.00384500267257
-1470148105780817809,0.0,0.0,0.0,0.0,0.0,0.00331989062036
-1470148105851512654,0.0,0.0,0.0,0.0,0.0,0.00321686301408
-1470148105924674379,0.006,0.0,0.0,0.0,0.0,0.0
-1470148106008338967,0.006,0.0,0.0,0.0,0.0,0.0
-1470148106091331654,0.0,0.0,0.0,0.0,0.0,0.00285179012659
-1470148106164689954,0.0,0.0,0.0,0.0,0.0,0.00301821165928
-1470148106242190640,0.006,0.0,0.0,0.0,0.0,0.0
-1470148106321487467,0.006,0.0,0.0,0.0,0.0,0.0
-1470148106399048004,0.006,0.0,0.0,0.0,0.0,0.0
-1470148106474996770,0.006,0.0,0.0,0.0,0.0,0.0
-1470148106552862474,0.006,0.0,0.0,0.0,0.0,0.0
-1470148106629986492,0.006,0.0,0.0,0.0,0.0,0.0
-1470148106709776152,0.006,0.0,0.0,0.0,0.0,0.0
-1470148106786638894,0.006,0.0,0.0,0.0,0.0,0.0
-1470148106863392383,0.006,0.0,0.0,0.0,0.0,0.0
-1470148106939313559,0.006,0.0,0.0,0.0,0.0,0.0
-1470148107012212977,0.006,0.0,0.0,0.0,0.0,0.0
-1470148107087794423,0.006,0.0,0.0,0.0,0.0,0.0
-1470148107163165760,0.0,0.0,0.0,0.0,0.0,0.00339005033071
-1470148107239543719,0.006,0.0,0.0,0.0,0.0,0.0
-1470148107312443937,0.006,0.0,0.0,0.0,0.0,0.0
-1470148107386708195,0.006,0.0,0.0,0.0,0.0,0.0
-1470148107460851039,0.006,0.0,0.0,0.0,0.0,0.0
-1470148107533959769,0.0,0.0,0.0,0.0,0.0,0.00421960122736
-1470148107607194184,0.006,0.0,0.0,0.0,0.0,0.0
-1470148107679371668,0.006,0.0,0.0,0.0,0.0,0.0
-1470148107759707276,0.006,0.0,0.0,0.0,0.0,0.0
-1470148107833037393,0.0,0.0,0.0,0.0,0.0,0.00484516850642
-1470148107910203426,0.0,0.000251316445436,0.0,0.0,0.0,0.00425570424502
-1470148107986969464,0.0,0.000289002225261,0.0,0.0,0.0,0.0
-1470148108062537722,0.006,0.0,0.0,0.0,0.0,0.0
-1470148108140054651,0.006,0.0,0.0,0.0,0.0,0.0
-1470148108217788222,0.006,0.0,0.0,0.0,0.0,0.0
-1470148108297637994,0.0,0.0,0.0,0.0,0.0,0.00300382460437
-1470148108381445124,0.006,0.0,0.0,0.0,0.0,0.0
-1470148108455560021,0.0,0.0,0.0,0.0,0.0,0.00331803128082
-1470148108530369655,0.0,0.0,0.0,0.0,0.0,0.00465773147004
-1470148108603113596,0.0,0.000263917586263,0.0,0.0,0.0,0.0
-1470148108680084166,0.0,0.000274289623046,0.0,0.0,0.0,0.0
-1470148108753016109,0.0,0.000270088939901,0.0,0.0,0.0,0.00284997412511
+1470584451623235007,0.15,-0.496597540868,0.0,0.0,0.0,0.0165024390985
+1470584451706006745,0.15,-0.22960961567,0.0,0.0,0.0,0.0165024390985
+1470584451781135478,0.15,-0.229377465115,0.0,0.0,0.0,0.0178775743482
+1470584451859270583,0.15,-0.229734427796,0.0,0.0,0.0,0.0165024390985
+1470584451933118974,0.15,-0.230418262349,0.0,0.0,0.0,0.0170891995203
+1470584452007959338,0.15,-0.230204182134,0.0,0.0,0.0,0.0156940133449
+1470584452078738130,0.15,-0.229864863024,0.0,0.0,0.0,0.0170891995203
+1470584452150642265,0.15,-0.22998350607,0.0,0.0,0.0,0.0170891995203
+1470584452223038287,0.15,-0.229951189028,0.0,0.0,0.0,0.0162132585477
+1470584452296288379,0.15,-0.228950826393,0.0,0.0,0.0,0.0169305028698
+1470584452375536038,0.15,-0.230768727527,0.0,0.0,0.0,0.0156940133449
+1470584452445762658,0.15,-0.228569853173,0.0,0.0,0.0,0.0183321100368
+1470584452526947106,0.15,-0.23090042399,0.0,0.0,0.0,0.0156940133449
+1470584452596203676,0.15,-0.228814808593,0.0,0.0,0.0,0.0169305028698
+1470584452669958595,0.15,-0.229497997032,0.0,0.0,0.0,0.0169305028698
+1470584452739361729,0.15,-0.229507254229,0.0,0.0,0.0,0.0178775743482
+1470584452811045885,0.15,-0.230531045662,0.0,0.0,0.0,0.0161145390557
+1470584452881656136,0.15,-0.229744297133,0.0,0.0,0.0,0.0175379486787
+1470584452952860591,0.15,-0.230103561149,0.0,0.0,0.0,0.0161145390557
+1470584453025026919,0.15,-0.22997794436,0.0,0.0,0.0,0.0161145390557
+1470584453108552973,0.15,-0.22997794436,0.0,0.0,0.0,0.0161145390557
+1470584453183985778,0.15,-0.22997794436,0.0,0.0,0.0,0.0161145390557
+1470584453257992642,0.15,-0.22997794436,0.0,0.0,0.0,0.0161145390557
+1470584453334170982,0.15,-0.228939918743,0.0,0.0,0.0,0.0169305028698
+1470584453412567767,0.15,-0.230768727527,0.0,0.0,0.0,0.0156940133449
+1470584453495259668,0.15,-0.229852834211,0.0,0.0,0.0,0.0161145390557
+1470584453568884653,0.15,-0.229405217634,0.0,0.0,0.0,0.0269327985299
+1470584453675939240,0.15,-0.198395814763,0.0,0.0,0.0,0.0125673888592
+1470584453811373948,0.15,-0.170784567462,0.0,0.0,0.0,0.0218807012313
+1470584453973508170,0.15,0.181734388156,0.0,0.0,0.0,0.0176661289969
+1470584454109787442,0.15,0.0311845816696,0.0,0.0,0.0,0.0184174386574
+1470584454215516752,0.15,0.0822464368703,0.0,0.0,0.0,0.0239773200522
+1470584454342962833,0.15,0.143441065534,0.0,0.0,0.0,0.0216473076375
+1470584454526327033,0.15,0.137826654001,0.0,0.0,0.0,0.0271426543162
+1470584454755371802,0.15,0.163848272993,0.0,0.0,0.0,0.0167114613222
+1470584454973367337,0.15,0.195964305832,0.0,0.0,0.0,0.0156931220273
+1470584455129164418,0.15,0.203220256402,0.0,0.0,0.0,0.0139293668888
+1470584455224364700,0.15,0.212069391443,0.0,0.0,0.0,0.0230850434228
+1470584455428365923,0.15,0.151943100824,0.0,0.0,0.0,0.0164037507552
+1470584455499486541,0.15,0.116533994211,0.0,0.0,0.0,0.0124480495061
+1470584455655519948,0.15,0.119787324204,0.0,0.0,0.0,0.0174860103699
+1470584455763700233,0.15,0.0701763811546,0.0,0.0,0.0,0.0124993042228
+1470584455883701142,0.15,0.0723311981397,0.0,0.0,0.0,0.0
+1470584456005005541,0.15,0.0512261955278,0.0,0.0,0.0,0.0175414349844
+1470584456149868010,0.15,0.0165781098442,0.0,0.0,0.0,0.0194269753975
+1470584456283364257,0.15,-0.00878363340849,0.0,0.0,0.0,0.00992128684537
+1470584456457546823,0.15,-0.041530400419,0.0,0.0,0.0,0.0190930313921
+1470584456579880618,0.15,-0.0699561739875,0.0,0.0,0.0,0.0150351300964
+1470584456735158601,0.15,-0.0607388089759,0.0,0.0,0.0,0.0106942365046
+1470584456916522085,0.15,-0.0725883291824,0.0,0.0,0.0,0.0239575974933
+1470584457108712283,0.15,-0.0801591508252,0.0,0.0,0.0,0.0172824358094
+1470584457301287370,0.15,-0.0899663826985,0.0,0.0,0.0,0.0133585447951
+1470584457431422074,0.15,-0.0955751528008,0.0,0.0,0.0,0.0180922813624
+1470584457562808079,0.15,-0.0862226998968,0.0,0.0,0.0,0.016765772012
+1470584457693858705,0.15,-0.0749063867492,0.0,0.0,0.0,0.0195092996488
+1470584457791083414,0.15,-0.0762735396785,0.0,0.0,0.0,0.0158887177983
+1470584457961303240,0.15,-0.0701756395561,0.0,0.0,0.0,0.0157251904345
+1470584458091091220,0.15,-0.0583502237661,0.0,0.0,0.0,0.0182646108297
+1470584458257350725,0.15,-0.0572052493853,0.0,0.0,0.0,0.018546035809
+1470584458375494710,0.15,-0.0455940336151,0.0,0.0,0.0,0.0148644871617
+1470584458472246768,0.15,-0.0356279027624,0.0,0.0,0.0,0.018633467374
+1470584458629183083,0.15,-0.0306398867233,0.0,0.0,0.0,0.0168071114941
+1470584458728833800,0.15,-0.024596585573,0.0,0.0,0.0,0.0151562743842
+1470584458854338016,0.15,-0.0197503243549,0.0,0.0,0.0,0.0160903234554
+1470584459091821639,0.0,-0.0168788594914,0.0,0.0,0.0,0.0130751582689
+1470584459183882467,0.0,-0.0105308228893,0.0,0.0,0.0,0.0129115053928
+1470584459349074520,0.0,-0.00883664155135,0.0,0.0,0.0,0.0123391797842
+1470584459423040251,0.0,-0.00319613853225,0.0,0.0,0.0,0.0129527806105
+1470584459529178952,0.0,-0.00294694496074,0.0,0.0,0.0,0.0127196517559
+1470584459685663504,0.0,-0.00456205324957,0.0,0.0,0.0,0.0109230128224
+1470584459805984714,0.0,-0.000588713565261,0.0,0.0,0.0,0.0140804451973
+1470584459954337608,0.0,-0.00177655236551,0.0,0.0,0.0,0.0128690307642
+1470584460107504811,0.0,-0.00448290852586,0.0,0.0,0.0,0.0130320017269
+1470584460240083382,0.0,-0.00230662138888,0.0,0.0,0.0,0.0126513959402
+1470584460314786163,0.0,-0.00494527639577,0.0,0.0,0.0,0.0114824594366
+1470584460450294256,0.0,-0.00411397682259,0.0,0.0,0.0,0.0114557267614
+1470584460566901797,0.0,-0.00474764017144,0.0,0.0,0.0,0.0109565277462
+1470584460701153804,0.0,-0.00641846762726,0.0,0.0,0.0,0.0116994644309
+1470584460857797055,0.0,-0.00603440588096,0.0,0.0,0.0,0.0102465414973
+1470584460993276849,0.0,-0.00714548116306,0.0,0.0,0.0,0.00995901069024
+1470584461080277859,0.0,-0.00721587279567,0.0,0.0,0.0,0.0105838098611
+1470584461211704100,0.0,-0.00828199973086,0.0,0.0,0.0,0.011116910784
+1470584461348794168,0.0,-0.0087636733962,0.0,0.0,0.0,0.0109088154185
+1470584461485784499,0.0,-0.00921666832397,0.0,0.0,0.0,0.0115651363176
+1470584461663194612,0.0,-0.00942071074376,0.0,0.0,0.0,0.010635908065
+1470584461753498743,0.0,-0.00984574125835,0.0,0.0,0.0,0.0103160322116
+1470584461908164430,0.0,-0.00977776461968,0.0,0.0,0.0,0.0114930831919
+1470584462000361057,0.0,-0.0100215531302,0.0,0.0,0.0,0.0124633280153
+1470584462186333192,0.0,-0.00990295434126,0.0,0.0,0.0,0.0111676454414
+1470584462261283918,0.0,-0.0100143306492,0.0,0.0,0.0,0.0104592408578
+1470584462375981994,0.0,-0.00985094284395,0.0,0.0,0.0,0.0101768282906
+1470584462527506395,0.0,-0.0096953852264,0.0,0.0,0.0,0.00988397297404
+1470584462656221380,0.0,-0.00948752233514,0.0,0.0,0.0,0.0113980685414
+1470584462812585560,0.0,-0.0094088046042,0.0,0.0,0.0,0.0101137076659
+1470584462885757986,0.0,-0.00901386776695,0.0,0.0,0.0,0.00889704810094
+1470584463029213294,0.0,-0.00883799491206,0.0,0.0,0.0,0.00975142982562
+1470584463160074645,0.0,-0.00854359457025,0.0,0.0,0.0,0.00919096783341
+1470584463301775225,0.0,-0.0082790320901,0.0,0.0,0.0,0.00657047965402
+1470584463433499906,0.0,-0.00796101944277,0.0,0.0,0.0,0.00742027401616
+1470584463584363049,0.0,-0.00754589983949,0.0,0.0,0.0,0.0072800084064
+1470584463672576041,0.0,-0.00735960261652,0.0,0.0,0.0,0.00819530557039
+1470584463853673760,0.0,-0.00701767364273,0.0,0.0,0.0,0.00747896594116
+1470584464018586682,0.0,-0.00682983031252,0.0,0.0,0.0,0.00616251068693
+1470584464171281408,0.0,-0.00641707570979,0.0,0.0,0.0,0.00552920151757
+1470584464312670645,0.0,-0.00599165351817,0.0,0.0,0.0,0.00527944649047
+1470584464433788184,0.0,-0.00586416719237,0.0,0.0,0.0,0.00662123632972
+1470584464587754458,0.0,-0.00543866922835,0.0,0.0,0.0,0.00625494914071
+1470584464718800034,0.0,-0.00517511533329,0.0,0.0,0.0,0.00464795213097
+1470584464861855035,0.0,-0.00498163146654,0.0,0.0,0.0,0.00629992339965
+1470584464961305296,0.0,-0.00470385772863,0.0,0.0,0.0,0.00633988192165
+1470584465179369282,0.0,-0.00443537534902,0.0,0.0,0.0,0.00568229180206
+1470584465323487629,0.0,-0.00414988828579,0.0,0.0,0.0,0.00658511650551
+1470584465451940201,0.0,-0.00390958966443,0.0,0.0,0.0,0.00858392114551
+1470584465668730806,0.0,-0.00377798923978,0.0,0.0,0.0,0.00655486144493
+1470584465797115425,0.0,-0.00392542773613,0.0,0.0,0.0,0.0068851396631
+1470584465965165758,0.0,-0.00353787841031,0.0,0.0,0.0,0.00523880678925
+1470584466075837730,0.0,-0.00346789696941,0.0,0.0,0.0,0.00620405123265
+1470584466231031195,0.0,-0.00358994899073,0.0,0.0,0.0,0.00521026438749
+1470584466324644035,0.0,-0.00348735796043,0.0,0.0,0.0,0.00626586502579
+1470584466472198731,0.0,-0.00363776461908,0.0,0.0,0.0,0.00517029162049
+1470584466647872565,0.0,-0.00364451883116,0.0,0.0,0.0,0.00377309705065
+1470584466770882578,0.0,-0.003771790692,0.0,0.0,0.0,0.00610192900625
+1470584466879758561,0.0,-0.00368446750322,0.0,0.0,0.0,0.00375610494866
+1470584467010092193,0.0,-0.00384154608229,0.0,0.0,0.0,0.00506566251045
+1470584467103900358,0.0,-0.00385553898046,0.0,0.0,0.0,0.0
+1470584467211495320,0.0,-0.00388053761551,0.0,0.0,0.0,0.00608071640579
+1470584467403234811,0.0,-0.00390082316229,0.0,0.0,0.0,0.00548292876459
+1470584467484908972,0.0,-0.0038092529563,0.0,0.0,0.0,0.00495459092062
+1470584467647565613,0.0,-0.00373103448877,0.0,0.0,0.0,0.0055234669175
+1470584467833055958,0.0,-0.00371636835614,0.0,0.0,0.0,0.00475434780124
+1470584467995415742,0.0,-0.00367493873218,0.0,0.0,0.0,0.00286429629736
+1470584468163467206,0.0,-0.00361617957929,0.0,0.0,0.0,0.00289530992323
+1470584468284152845,0.0,-0.00354792253801,0.0,0.0,0.0,0.00323931808091
+1470584468382857874,0.0,-0.0036030410392,0.0,0.0,0.0,0.0
+1470584468472911735,0.0,-0.00361075689772,0.0,0.0,0.0,0.0
+1470584468558655537,0.0,-0.00356071119884,0.0,0.0,0.0,0.00305460835119
+1470584468678199597,0.0,-0.00357507018128,0.0,0.0,0.0,0.0
+1470584468815412859,0.0,-0.00353294124583,0.0,0.0,0.0,0.00306488277811
+1470584468943127743,0.0,-0.00331238647679,0.0,0.0,0.0,0.0
+1470584469093608558,0.0,-0.00271670287231,0.0,0.0,0.0,0.0
+1470584469192009706,0.0,-0.00264309050271,0.0,0.0,0.0,0.0
+1470584469324758911,0.0,-0.00225899176428,0.0,0.0,0.0,0.0
+1470584469411980921,0.0,-0.00205843114981,0.0,0.0,0.0,0.0
+1470584469566150967,0.0,-0.00190278233716,0.0,0.0,0.0,0.0
+1470584469684377332,0.0,-0.001614078374,0.0,0.0,0.0,0.0
+1470584469853618870,0.006,0.0,0.0,0.0,0.0,0.0
+1470584470027241614,0.006,0.0,0.0,0.0,0.0,0.0
+1470584470158076077,0.006,0.0,0.0,0.0,0.0,0.0
+1470584470261854010,0.006,0.0,0.0,0.0,0.0,0.0
+1470584470457101466,0.006,0.0,0.0,0.0,0.0,0.0
+1470584470535418687,0.006,0.0,0.0,0.0,0.0,0.0
+1470584470707720638,0.006,0.0,0.0,0.0,0.0,0.0
+1470584470836195751,0.006,0.0,0.0,0.0,0.0,0.0
+1470584470973264748,0.006,0.0,0.0,0.0,0.0,0.0
+1470584471052216974,0.0,0.0,0.0,0.0,0.0,0.00379671602241
+1470584471199485939,0.0,0.0,0.0,0.0,0.0,0.0028129892425
+1470584471308305779,0.006,0.0,0.0,0.0,0.0,0.0
+1470584471463501203,0.0,0.0,0.0,0.0,0.0,0.00374438694263
+1470584471565568534,0.006,0.0,0.0,0.0,0.0,0.0
+1470584471723468354,0.006,0.0,0.0,0.0,0.0,0.0
+1470584471915589852,0.006,0.0,0.0,0.0,0.0,0.0
+1470584472095777119,0.0,0.0,0.0,0.0,0.0,0.00333032028926
+1470584472228344506,0.0,0.0,0.0,0.0,0.0,0.00339462755019
+1470584472358173020,0.006,0.0,0.0,0.0,0.0,0.0
+1470584472498159630,0.006,0.0,0.0,0.0,0.0,0.0
+1470584472611761663,0.0,0.0,0.0,0.0,0.0,0.00331402666285
+1470584472727281291,0.006,0.0,0.0,0.0,0.0,0.0
+1470584472869785953,0.006,0.0,0.0,0.0,0.0,0.0
+1470584472996317470,0.0,0.0,0.0,0.0,0.0,0.00373658862085
+1470584473204299707,0.006,0.0,0.0,0.0,0.0,0.0
+1470584473321351767,0.006,0.0,0.0,0.0,0.0,0.0
+1470584473509471649,0.006,0.0,0.0,0.0,0.0,0.0
+1470584473629165463,0.0,0.0,0.0,0.0,0.0,0.00393432148193
+1470584473739315972,0.006,0.0,0.0,0.0,0.0,0.0
+1470584473872673661,0.006,0.0,0.0,0.0,0.0,0.0
+1470584474005263815,0.006,0.0,0.0,0.0,0.0,0.0
+1470584474137588161,0.0,0.0,0.0,0.0,0.0,0.00312678689004
+1470584474234565344,0.006,0.0,0.0,0.0,0.0,0.0
+1470584474388718431,0.0,0.0,0.0,0.0,0.0,0.00286856543077
+1470584474533792557,0.0,0.0,0.0,0.0,0.0,0.00293580240937
+1470584474676290657,0.006,0.0,0.0,0.0,0.0,0.0
+1470584474784177892,0.0,0.0,0.0,0.0,0.0,0.00529582686097
+1470584474988712607,0.006,0.0,0.0,0.0,0.0,0.0
+1470584475146184365,0.006,0.0,0.0,0.0,0.0,0.0
+1470584475313577651,0.006,0.0,0.0,0.0,0.0,0.0
+1470584475433467713,0.006,0.0,0.0,0.0,0.0,0.0
+1470584475565264755,0.0,-0.00174895731488,0.0,0.0,0.0,0.0
+1470584475709118295,0.0,-0.00256819264719,0.0,0.0,0.0,0.0
+1470584475898144093,0.0,-0.00252799493948,0.0,0.0,0.0,0.0
+1470584476011423765,0.0,-0.00297450577596,0.0,0.0,0.0,0.0
+1470584476112573902,0.0,-0.00299744931737,0.0,0.0,0.0,0.0
+1470584476236181860,0.0,-0.00288885729143,0.0,0.0,0.0,0.0
+1470584476382429312,0.0,-0.00303641253838,0.0,0.0,0.0,0.00323980719715
+1470584476502166702,0.0,-0.00310745073238,0.0,0.0,0.0,0.00347692567442
+1470584476608927352,0.0,-0.00236579345295,0.0,0.0,0.0,0.00306422170356
+1470584476775310515,0.0,-0.00181094621995,0.0,0.0,0.0,0.0
+1470584476883391843,0.0,-0.00167377499619,0.0,0.0,0.0,0.0
+1470584477003644751,0.0,-0.00149113693962,0.0,0.0,0.0,0.0
+1470584477151602289,0.006,0.0,0.0,0.0,0.0,0.0
+1470584477279261929,0.006,0.0,0.0,0.0,0.0,0.0
+1470584477448891660,0.006,0.0,0.0,0.0,0.0,0.0
+1470584477555577935,0.006,0.0,0.0,0.0,0.0,0.0
+1470584477651953816,0.006,0.0,0.0,0.0,0.0,0.0
+1470584477821387525,0.006,0.0,0.0,0.0,0.0,0.0
+1470584477953300138,0.006,0.0,0.0,0.0,0.0,0.0
+1470584478083137805,0.006,0.0,0.0,0.0,0.0,0.0
+1470584478232006089,0.006,0.0,0.0,0.0,0.0,0.0
+1470584478321513561,0.006,0.0,0.0,0.0,0.0,0.0
+1470584478469008687,0.006,0.0,0.0,0.0,0.0,0.0
+1470584478596813181,0.006,0.0,0.0,0.0,0.0,0.0
+1470584478692141119,0.006,0.0,0.0,0.0,0.0,0.0
+1470584478863706991,0.006,0.0,0.0,0.0,0.0,0.0
+1470584478982820464,0.006,0.0,0.0,0.0,0.0,0.0
+1470584479080419092,0.006,0.0,0.0,0.0,0.0,0.0
+1470584479250075519,0.006,0.0,0.0,0.0,0.0,0.0
+1470584479366972390,0.006,0.0,0.0,0.0,0.0,0.0
+1470584479498967809,0.006,0.0,0.0,0.0,0.0,0.0
+1470584479678806217,0.006,0.0,0.0,0.0,0.0,0.0
+1470584479839708970,0.006,0.0,0.0,0.0,0.0,0.0
+1470584479943466207,0.006,0.0,0.0,0.0,0.0,0.0
+1470584480183690652,0.006,0.0,0.0,0.0,0.0,0.0
+1470584480339893889,0.006,0.0,0.0,0.0,0.0,0.0
+1470584480526325327,0.006,0.0,0.0,0.0,0.0,0.0
+1470584480648969911,0.006,0.0,0.0,0.0,0.0,0.0
+1470584480941362046,0.006,0.0,0.0,0.0,0.0,0.0
+1470584481013824800,0.006,0.0,0.0,0.0,0.0,0.0
+1470584481143606452,0.006,0.0,0.0,0.0,0.0,0.0
+1470584481361490841,0.006,0.0,0.0,0.0,0.0,0.0
+1470584481457653772,0.006,0.0,0.0,0.0,0.0,0.0
+1470584481584780374,0.006,0.0,0.0,0.0,0.0,0.0
+1470584481759298358,0.006,0.0,0.0,0.0,0.0,0.0
+1470584481975270812,0.006,0.0,0.0,0.0,0.0,0.0
+1470584482090243830,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~
index 67390894c5e65151b3038949216e134a4c6beeb3..fdef06cae2f009e6026405b66536a0d0bec6e5f1 100644
--- a/MobileRobot/docking_data/Vel3.txt~
+++ b/MobileRobot/docking_data/Vel3.txt~
@@ -1,547 +1,480 @@
 %time,field.linear.x,field.linear.y,field.linear.z,field.angular.x,field.angular.y,field.angular.z
-1470147390516371149,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390526022830,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390535936821,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390546074154,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390555897490,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390565977217,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390575964537,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390585957001,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390595979618,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390606029202,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390615882733,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390626001319,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390635908505,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390646048831,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390655885449,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390666233313,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390675949128,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390686044904,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390695954223,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390706045866,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390715986348,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390725937634,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147390735878885,-0.0,-0.0,0.0,0.0,0.0,-0.0
-1470147391008518970,0.0,0.0,0.0,0.0,0.0,0.0
-1470147392531832648,0.15,-0.369499528535,0.0,0.0,0.0,0.0418684049192
-1470147392625316888,0.15,-0.186658512613,0.0,0.0,0.0,0.0419875213484
-1470147392703791012,0.15,-0.186239174621,0.0,0.0,0.0,0.0419058329017
-1470147392791035172,0.15,-0.186858971207,0.0,0.0,0.0,0.0419492335746
-1470147392875747811,0.15,-0.186764690142,0.0,0.0,0.0,0.0412638622851
-1470147392951253432,0.15,-0.186579978462,0.0,0.0,0.0,0.0416021053321
-1470147393031631691,0.15,-0.186543462597,0.0,0.0,0.0,0.0413904798667
-1470147393109860252,0.15,-0.186143758494,0.0,0.0,0.0,0.0420075904909
-1470147393185068311,0.15,-0.191704905953,0.0,0.0,0.0,0.0445218945677
-1470147393260337678,0.15,-0.193080762031,0.0,0.0,0.0,0.030975320988
-1470147393340500532,0.15,-0.183020834414,0.0,0.0,0.0,0.0221507358694
-1470147393415565292,0.15,-0.181131826684,0.0,0.0,0.0,0.0295304945983
-1470147393491808771,0.15,-0.166740537809,0.0,0.0,0.0,0.0327195391371
-1470147393569001303,0.15,-0.167429339924,0.0,0.0,0.0,0.028658849995
-1470147393640435970,0.15,-0.164784654928,0.0,0.0,0.0,0.0181571190096
-1470147393714282387,0.15,-0.162282431516,0.0,0.0,0.0,0.0254599833127
-1470147393789769325,0.15,-0.14789271446,0.0,0.0,0.0,0.024769353581
-1470147393866651613,0.15,-0.147379151698,0.0,0.0,0.0,0.0315047144677
-1470147393939935152,0.15,-0.148032608498,0.0,0.0,0.0,0.027402234789
-1470147394011839353,0.15,-0.140220604783,0.0,0.0,0.0,0.0354834742092
-1470147394084846096,0.15,-0.13751063948,0.0,0.0,0.0,0.0287368196663
-1470147394171355472,0.15,-0.129616514674,0.0,0.0,0.0,0.0222188338846
-1470147394250911140,0.15,-0.123385242786,0.0,0.0,0.0,0.0273752881507
-1470147394334368580,0.15,-0.120443509207,0.0,0.0,0.0,0.0180954516518
-1470147394411181795,0.15,-0.115412489073,0.0,0.0,0.0,0.0252737065826
-1470147394486871704,0.15,-0.106329945593,0.0,0.0,0.0,0.0421796197679
-1470147394560263131,0.15,-0.104149793631,0.0,0.0,0.0,0.0310473566088
-1470147394631492982,0.15,-0.0985718179509,0.0,0.0,0.0,0.0207659694435
-1470147394707550696,0.15,-0.0948170626584,0.0,0.0,0.0,0.0247965599965
-1470147394786264028,0.15,-0.0935528576016,0.0,0.0,0.0,0.0275500004007
-1470147394860517519,0.15,-0.0894401936191,0.0,0.0,0.0,0.0153227503324
-1470147394934773479,0.15,-0.0857476083545,0.0,0.0,0.0,0.021023226408
-1470147395008526349,0.15,-0.0809390846239,0.0,0.0,0.0,0.0235866158971
-1470147395084328649,0.15,-0.0768468457681,0.0,0.0,0.0,0.0273005475449
-1470147395161073884,0.15,-0.0767372973063,0.0,0.0,0.0,0.0288742894235
-1470147395235335070,0.15,-0.0737992807974,0.0,0.0,0.0,0.015118532539
-1470147395310127533,0.15,-0.0666118229985,0.0,0.0,0.0,0.0230781172048
-1470147395387259059,0.15,-0.0659032719839,0.0,0.0,0.0,0.0156345908602
-1470147395459956616,0.15,-0.0644869160473,0.0,0.0,0.0,0.0195633171315
-1470147395534678684,0.15,-0.0632419937867,0.0,0.0,0.0,0.0300042862003
-1470147395608860312,0.15,-0.0573476785941,0.0,0.0,0.0,0.0172246267618
-1470147395682240495,0.15,-0.0570944326585,0.0,0.0,0.0,0.0161824626246
-1470147395753505016,0.15,-0.0556241091201,0.0,0.0,0.0,0.0196914030407
-1470147395825797369,0.15,-0.0520975482036,0.0,0.0,0.0,0.0216364673548
-1470147395896742476,0.15,-0.0509619845749,0.0,0.0,0.0,0.0220231045326
-1470147395971090113,0.15,-0.0493140327618,0.0,0.0,0.0,0.00876423137951
-1470147396049202003,0.15,-0.0467123459324,0.0,0.0,0.0,0.0123498340943
-1470147396126628545,0.15,-0.045835447853,0.0,0.0,0.0,0.0173522666555
-1470147396201287457,0.15,-0.0452494249086,0.0,0.0,0.0,0.0147914115644
-1470147396282537561,0.15,-0.0414724784801,0.0,0.0,0.0,0.0164335469116
-1470147396358384003,0.15,-0.0407325767921,0.0,0.0,0.0,0.0226811164838
-1470147396451164131,0.15,-0.0398556427387,0.0,0.0,0.0,0.00841333454133
-1470147396530306402,0.15,-0.0381629296103,0.0,0.0,0.0,0.0202188741751
-1470147396603984826,0.15,-0.0363071161811,0.0,0.0,0.0,0.00909183109629
-1470147396676263863,0.15,-0.0351340941116,0.0,0.0,0.0,0.0284258712513
-1470147396748835294,0.15,-0.0353553333267,0.0,0.0,0.0,0.0190035341976
-1470147396823179931,0.15,-0.0320689413927,0.0,0.0,0.0,0.0244369311297
-1470147396900791253,0.15,-0.0322206040583,0.0,0.0,0.0,0.0100534486782
-1470147396975461710,0.15,-0.0298336769393,0.0,0.0,0.0,0.0160878766539
-1470147397050818923,0.15,-0.0297989258336,0.0,0.0,0.0,0.015185860594
-1470147397127622836,0.15,-0.0281784523388,0.0,0.0,0.0,0.0132464313602
-1470147397204330399,0.15,-0.0267339345218,0.0,0.0,0.0,0.0261645452308
-1470147397284755755,0.15,-0.0267386808595,0.0,0.0,0.0,0.0236262094341
-1470147397360330443,0.15,-0.0257530823235,0.0,0.0,0.0,0.011881429406
-1470147397435563075,0.15,-0.0246345311459,0.0,0.0,0.0,0.0161440844261
-1470147397516599003,0.15,-0.0244941598905,0.0,0.0,0.0,0.0101226861347
-1470147397588775016,0.15,-0.0225043982445,0.0,0.0,0.0,0.0
-1470147397664790970,0.15,-0.0224609010971,0.0,0.0,0.0,0.00833973057623
-1470147397743281373,0.15,-0.022275775829,0.0,0.0,0.0,0.0148410726015
-1470147397818385053,0.15,-0.0213493710683,0.0,0.0,0.0,0.030803428277
-1470147397896723758,0.15,-0.0206642035599,0.0,0.0,0.0,0.0144238510597
-1470147397986251217,0.15,-0.0206048319199,0.0,0.0,0.0,0.010581526743
-1470147398057674138,0.15,-0.0195975874212,0.0,0.0,0.0,0.0
-1470147398129941360,0.15,-0.0198943186594,0.0,0.0,0.0,0.0227832865056
-1470147398199639116,0.15,-0.018748780098,0.0,0.0,0.0,0.0150282757615
-1470147398284897407,0.15,-0.0187713374457,0.0,0.0,0.0,0.017058661629
-1470147398358382892,0.15,-0.0177108754392,0.0,0.0,0.0,0.00789817388995
-1470147398430446039,0.15,-0.0173926213172,0.0,0.0,0.0,0.0143496082972
-1470147398501708790,0.15,-0.0167807234926,0.0,0.0,0.0,0.0140870779262
-1470147398572351614,0.15,-0.0155022517168,0.0,0.0,0.0,0.00416323951447
-1470147398643740360,0.15,-0.0154254906575,0.0,0.0,0.0,0.0120026680347
-1470147398715378014,0.15,-0.0150223320302,0.0,0.0,0.0,0.00801542747455
-1470147398788362908,0.15,-0.015326388716,0.0,0.0,0.0,0.0212486526624
-1470147398863110417,0.15,-0.0146080409767,0.0,0.0,0.0,0.00886480080243
-1470147398946518026,0.15,-0.0142226256834,0.0,0.0,0.0,0.00633306305392
-1470147399023745764,0.15,-0.0138609712749,0.0,0.0,0.0,0.00507203924053
-1470147399097918367,0.15,-0.0140901672395,0.0,0.0,0.0,0.0137413826193
-1470147399170425365,0.15,-0.0135059613541,0.0,0.0,0.0,0.00980598810987
-1470147399242244137,0.15,-0.0131397085363,0.0,0.0,0.0,0.0129339282951
-1470147399315969141,0.15,-0.0129012432744,0.0,0.0,0.0,0.0118576745954
-1470147399388466715,0.15,-0.0126398030988,0.0,0.0,0.0,0.0185684707241
-1470147399462776762,0.15,-0.0123365865139,0.0,0.0,0.0,0.00958099477416
-1470147399539451442,0.15,-0.0117189968204,0.0,0.0,0.0,0.0115688442325
-1470147399612306080,0.15,-0.0115808648029,0.0,0.0,0.0,0.0150762008853
-1470147399687641022,0.15,-0.0111532078292,0.0,0.0,0.0,0.012549891361
-1470147399761972277,0.15,-0.011047541964,0.0,0.0,0.0,0.016797379789
-1470147399837217233,0.0,-0.0103216487395,0.0,0.0,0.0,0.0131379317668
-1470147399915915331,0.0,-0.0104178114167,0.0,0.0,0.0,0.0123510494444
-1470147399990807846,0.0,-0.0102156288684,0.0,0.0,0.0,0.0226764807854
-1470147400069670948,0.0,-0.00990610579361,0.0,0.0,0.0,0.017607264861
-1470147400142981201,0.0,-0.00980755320911,0.0,0.0,0.0,0.0198770777569
-1470147400213919516,0.0,-0.00944931370372,0.0,0.0,0.0,0.0144195534144
-1470147400286159164,0.0,-0.00946740185175,0.0,0.0,0.0,0.0213225568871
-1470147400365783241,0.0,-0.00934059045529,0.0,0.0,0.0,0.0113629168096
-1470147400442685721,0.0,-0.00909658578472,0.0,0.0,0.0,0.01520045356
-1470147400514539602,0.0,-0.0093337936733,0.0,0.0,0.0,0.0101824414955
-1470147400587900197,0.0,-0.00932966170019,0.0,0.0,0.0,0.00806276603247
-1470147400662090223,0.0,-0.0094801511667,0.0,0.0,0.0,0.00927473322996
-1470147400731530149,0.0,-0.0102842556646,0.0,0.0,0.0,0.00677059333282
-1470147400810241811,0.0,-0.00997562905637,0.0,0.0,0.0,0.0110099716495
-1470147400888714253,0.0,-0.0101100689468,0.0,0.0,0.0,0.0106984386806
-1470147400963241511,0.0,-0.0103698164745,0.0,0.0,0.0,0.0107938089377
-1470147401039115329,0.0,-0.0105181877391,0.0,0.0,0.0,0.0112628551291
-1470147401116427621,0.0,-0.0105798653579,0.0,0.0,0.0,0.00897842512475
-1470147401189915425,0.0,-0.010479285795,0.0,0.0,0.0,0.00728327896471
-1470147401263876034,0.0,-0.0104432108987,0.0,0.0,0.0,0.00679962957195
-1470147401340735560,0.0,-0.0103464125151,0.0,0.0,0.0,0.00533007611914
-1470147401418238172,0.0,-0.0102668168655,0.0,0.0,0.0,0.00627570383414
-1470147401491585057,0.0,-0.0101907588267,0.0,0.0,0.0,0.00670329522889
-1470147401568580181,0.0,-0.0101450398398,0.0,0.0,0.0,0.00629473415733
-1470147401642528272,0.0,-0.00993910370745,0.0,0.0,0.0,0.00585182120901
-1470147401715859460,0.0,-0.00989669868529,0.0,0.0,0.0,0.00603913915584
-1470147401791405516,0.0,-0.00981603294478,0.0,0.0,0.0,0.00515111872557
-1470147401870235266,0.0,-0.00971620397906,0.0,0.0,0.0,0.00665507809745
-1470147401941776247,0.0,-0.00949243207088,0.0,0.0,0.0,0.00622880452698
-1470147402015688128,0.0,-0.00936338068549,0.0,0.0,0.0,0.00808866828582
-1470147402088831612,0.0,-0.00911305178301,0.0,0.0,0.0,0.00874526837409
-1470147402163163389,0.0,-0.00900462126905,0.0,0.0,0.0,0.00598577820909
-1470147402241894134,0.0,-0.00860805630033,0.0,0.0,0.0,0.00563018453782
-1470147402319005857,0.0,-0.00854318130451,0.0,0.0,0.0,0.00674175161412
-1470147402396511421,0.0,-0.0083096352055,0.0,0.0,0.0,0.00691156277338
-1470147402470297121,0.0,-0.00817878918683,0.0,0.0,0.0,0.00876437435869
-1470147402543359300,0.0,-0.00775489210974,0.0,0.0,0.0,0.00785626318695
-1470147402616226522,0.0,-0.00765622180123,0.0,0.0,0.0,0.00673163109579
-1470147402691267332,0.0,-0.00745742843137,0.0,0.0,0.0,0.0060718499208
-1470147402767635627,0.0,-0.00732861916778,0.0,0.0,0.0,0.00648178029756
-1470147402842372423,0.0,-0.00691054552651,0.0,0.0,0.0,0.00462799965575
-1470147402925970522,0.0,-0.00688693392875,0.0,0.0,0.0,0.00797452253759
-1470147403000491028,0.0,-0.00668788316155,0.0,0.0,0.0,0.0051352427098
-1470147403073341636,0.0,-0.00657714246692,0.0,0.0,0.0,0.00498973660124
-1470147403150789432,0.0,-0.00625510792275,0.0,0.0,0.0,0.00650036338823
-1470147403229983331,0.0,-0.00625108620967,0.0,0.0,0.0,0.00527876152492
-1470147403308774112,0.0,-0.00614837809392,0.0,0.0,0.0,0.00671433675906
-1470147403383484263,0.0,-0.00590487195809,0.0,0.0,0.0,0.00682204904344
-1470147403460379378,0.0,-0.00584385584576,0.0,0.0,0.0,0.00775659890898
-1470147403542656390,0.0,-0.0057653635849,0.0,0.0,0.0,0.00519080195043
-1470147403614030762,0.0,-0.00565560059001,0.0,0.0,0.0,0.00707222884125
-1470147403687216273,0.0,-0.00551130425771,0.0,0.0,0.0,0.00551349909848
-1470147403766508604,0.0,-0.0054580205237,0.0,0.0,0.0,0.00754524328072
-1470147403838499780,0.0,-0.00530826326171,0.0,0.0,0.0,0.00460577439104
-1470147403910622933,0.0,-0.00520943041459,0.0,0.0,0.0,0.00644576398275
-1470147403990630847,0.0,-0.00502782658815,0.0,0.0,0.0,0.00451856759435
-1470147404064108382,0.0,-0.00505625555382,0.0,0.0,0.0,0.00364458722563
-1470147404138304735,0.0,-0.00492907013225,0.0,0.0,0.0,0.00588095033592
-1470147404211110668,0.0,-0.00484665385046,0.0,0.0,0.0,0.00462041938636
-1470147404289172236,0.0,-0.00479688106518,0.0,0.0,0.0,0.00381944451525
-1470147404370418711,0.0,-0.00472057707207,0.0,0.0,0.0,0.00467106632246
-1470147404443388047,0.0,-0.00467789599817,0.0,0.0,0.0,0.00564027082562
-1470147404521873593,0.0,-0.00466595115067,0.0,0.0,0.0,0.00616999866021
-1470147404599525933,0.0,-0.00463067256396,0.0,0.0,0.0,0.00336323507884
-1470147404679934189,0.0,-0.00457281665693,0.0,0.0,0.0,0.0
-1470147404752304401,0.0,-0.00448057089511,0.0,0.0,0.0,0.00474600937631
-1470147404829335047,0.0,-0.00440147182219,0.0,0.0,0.0,0.00416199516337
-1470147404906911284,0.0,-0.00441532813087,0.0,0.0,0.0,0.00563352291553
-1470147404980447052,0.0,-0.00425227090619,0.0,0.0,0.0,0.0
-1470147405052898609,0.0,-0.00425272805952,0.0,0.0,0.0,0.0
-1470147405124074988,0.0,-0.00415832307214,0.0,0.0,0.0,0.00376232800009
-1470147405195209176,0.0,-0.00416365046559,0.0,0.0,0.0,0.00393782077616
-1470147405270172278,0.0,-0.00402723694525,0.0,0.0,0.0,0.0
-1470147405348677483,0.0,-0.0039934352021,0.0,0.0,0.0,0.00320285241668
-1470147405429702229,0.0,-0.00397364571969,0.0,0.0,0.0,0.00290049891084
-1470147405505071973,0.0,-0.00392522015883,0.0,0.0,0.0,0.00507640128043
-1470147405578792991,0.0,-0.00392252877225,0.0,0.0,0.0,0.00321209404382
-1470147405651072166,0.0,-0.00373065068271,0.0,0.0,0.0,0.0
-1470147405723045241,0.0,-0.00364611107704,0.0,0.0,0.0,0.0
-1470147405796999558,0.0,-0.00365248023176,0.0,0.0,0.0,0.00294566158255
-1470147405875309945,0.0,-0.00349995212516,0.0,0.0,0.0,0.0
-1470147405951600939,0.0,-0.00334873926219,0.0,0.0,0.0,0.0
-1470147406028268427,0.0,-0.00334084690203,0.0,0.0,0.0,0.0
-1470147406106286083,0.0,-0.0032425225738,0.0,0.0,0.0,0.0
-1470147406180164871,0.0,-0.00312019796009,0.0,0.0,0.0,0.00287229296504
-1470147406254304177,0.0,-0.00309896514491,0.0,0.0,0.0,0.0
-1470147406330756398,0.0,-0.00302228489008,0.0,0.0,0.0,0.0
-1470147406406713522,0.0,-0.00287024747038,0.0,0.0,0.0,0.0
-1470147406479575013,0.0,-0.00286222818618,0.0,0.0,0.0,0.0
-1470147406554695211,0.0,-0.00273606964311,0.0,0.0,0.0,0.0
-1470147406631696199,0.0,-0.00261934633096,0.0,0.0,0.0,0.0
-1470147406707293190,0.0,-0.00236896306942,0.0,0.0,0.0,0.0
-1470147406789292869,0.0,-0.00240792830801,0.0,0.0,0.0,0.0
-1470147406864668914,0.0,-0.0022741089781,0.0,0.0,0.0,0.0
-1470147406938754131,0.0,-0.00218172597808,0.0,0.0,0.0,0.0
-1470147407017068953,0.0,-0.00197360279125,0.0,0.0,0.0,0.0
-1470147407094099093,0.0,-0.00191781136541,0.0,0.0,0.0,0.0
-1470147407180867441,0.0,-0.00189896974158,0.0,0.0,0.0,0.0
-1470147407261246627,0.0,-0.00163086785343,0.0,0.0,0.0,0.0
-1470147407337069704,0.006,0.0,0.0,0.0,0.0,0.0
-1470147407414607938,0.006,0.0,0.0,0.0,0.0,0.0
-1470147407489585589,0.006,0.0,0.0,0.0,0.0,0.0
-1470147407570185979,0.006,0.0,0.0,0.0,0.0,0.0
-1470147407641528547,0.006,0.0,0.0,0.0,0.0,0.0
-1470147407713499616,0.006,0.0,0.0,0.0,0.0,0.0
-1470147407786407669,0.0,0.0,0.0,0.0,0.0,0.00307975911952
-1470147407858529137,0.006,0.0,0.0,0.0,0.0,0.0
-1470147407930658119,0.0,0.0,0.0,0.0,0.0,0.00336247243341
-1470147408002636166,0.006,0.0,0.0,0.0,0.0,0.0
-1470147408075419356,0.006,0.0,0.0,0.0,0.0,0.0
-1470147408153688143,0.006,0.0,0.0,0.0,0.0,0.0
-1470147408232268302,0.006,0.0,0.0,0.0,0.0,0.0
-1470147408306681028,0.006,0.0,0.0,0.0,0.0,0.0
-1470147408379188288,0.0,0.0,0.0,0.0,0.0,0.00515482033188
-1470147408456976105,0.0,0.0,0.0,0.0,0.0,0.00392278015111
-1470147408534194780,0.0,0.0,0.0,0.0,0.0,0.0070041745509
-1470147408606297532,0.0,0.0,0.0,0.0,0.0,0.00521475471366
-1470147408677023292,0.0,0.0,0.0,0.0,0.0,0.00525304366537
-1470147408763208037,0.0,0.0,0.0,0.0,0.0,0.00389011404404
-1470147408840488370,0.006,0.0,0.0,0.0,0.0,0.0
-1470147408914924831,0.006,0.0,0.0,0.0,0.0,0.0
-1470147408992309600,0.0,0.0,0.0,0.0,0.0,0.00331285123846
-1470147409071721407,0.0,0.0,0.0,0.0,0.0,0.00301591462106
-1470147409150858022,0.0,0.0,0.0,0.0,0.0,0.00386324911901
-1470147409226859015,0.0,0.0,0.0,0.0,0.0,0.00448728602208
-1470147409300332276,0.0,0.0,0.0,0.0,0.0,0.00397270143473
-1470147409373295968,0.0,0.0,0.0,0.0,0.0,0.00425514301318
-1470147409451450864,0.0,0.0,0.0,0.0,0.0,0.00323620644507
-1470147409525486189,0.0,0.0,0.0,0.0,0.0,0.00461120896586
-1470147409600745505,0.0,0.0,0.0,0.0,0.0,0.00582824696168
-1470147409678725397,0.0,0.0,0.0,0.0,0.0,0.00292933999975
-1470147409755814931,0.0,0.0,0.0,0.0,0.0,0.00346399140275
-1470147409831930325,0.0,0.0,0.0,0.0,0.0,0.00555314364923
-1470147409906864132,0.0,0.0,0.0,0.0,0.0,0.00316947982398
-1470147409980861139,0.0,0.0,0.0,0.0,0.0,0.00287631643181
-1470147410054919392,0.0,0.0,0.0,0.0,0.0,0.00318209713839
-1470147410127344123,0.0,0.0,0.0,0.0,0.0,0.0031455402195
-1470147410199240892,0.0,0.0,0.0,0.0,0.0,0.00706520027702
-1470147410272684815,0.0,0.0,0.0,0.0,0.0,0.00332777134561
-1470147410346431186,0.0,0.0,0.0,0.0,0.0,0.0028358879608
-1470147410416673238,0.0,0.0,0.0,0.0,0.0,0.00296120687748
-1470147410488394207,0.0,0.0,0.0,0.0,0.0,0.0029896371026
-1470147410569081343,0.006,0.0,0.0,0.0,0.0,0.0
-1470147410642706854,0.0,0.0,0.0,0.0,0.0,0.00320123762051
-1470147410717077532,0.006,0.0,0.0,0.0,0.0,0.0
-1470147410789310226,0.0,0.0,0.0,0.0,0.0,0.00282854886054
-1470147410862683984,0.0,0.0,0.0,0.0,0.0,0.00401004695068
-1470147410936257575,0.0,-0.00174301317423,0.0,0.0,0.0,0.0
-1470147411011024578,0.0,-0.00189989990933,0.0,0.0,0.0,0.0
-1470147411087181271,0.0,-0.0019947060344,0.0,0.0,0.0,0.0048993405695
-1470147411160538816,0.0,-0.00201097331464,0.0,0.0,0.0,0.0
-1470147411231526684,0.0,-0.00232637545162,0.0,0.0,0.0,0.00414087661843
-1470147411306608593,0.0,-0.00260597511967,0.0,0.0,0.0,0.00343500713736
-1470147411382320075,0.0,-0.00265878857951,0.0,0.0,0.0,0.0
-1470147411455635315,0.0,-0.00282425263701,0.0,0.0,0.0,0.0
-1470147411530106015,0.0,-0.00292804401117,0.0,0.0,0.0,0.0
-1470147411606112600,0.0,-0.00304339629632,0.0,0.0,0.0,0.0
-1470147411678822636,0.0,-0.00298731095071,0.0,0.0,0.0,0.0
-1470147411755700975,0.0,-0.0028042308904,0.0,0.0,0.0,0.0
-1470147411830062812,0.0,-0.00268127923257,0.0,0.0,0.0,0.0
-1470147411905514795,0.0,-0.00245447436188,0.0,0.0,0.0,0.0
-1470147411979571767,0.0,-0.00256683146301,0.0,0.0,0.0,0.0
-1470147412057848109,0.0,-0.00241385295042,0.0,0.0,0.0,0.0
-1470147412133972098,0.0,-0.00232535922323,0.0,0.0,0.0,0.0
-1470147412215807607,0.0,-0.00224892023328,0.0,0.0,0.0,0.0
-1470147412290864809,0.0,-0.00207441603325,0.0,0.0,0.0,0.0
-1470147412367556799,0.0,-0.00204271557138,0.0,0.0,0.0,0.0
-1470147412445055969,0.0,-0.00195954845668,0.0,0.0,0.0,0.0
-1470147412516075304,0.0,-0.00177423657099,0.0,0.0,0.0,0.0
-1470147412590828128,0.0,-0.00177768039578,0.0,0.0,0.0,0.0
-1470147412670174779,0.006,0.0,0.0,0.0,0.0,0.0
-1470147412746571755,0.006,0.0,0.0,0.0,0.0,0.0
-1470147412825388950,0.006,0.0,0.0,0.0,0.0,0.0
-1470147412901392126,0.006,0.0,0.0,0.0,0.0,0.0
-1470147412976266067,0.006,0.0,0.0,0.0,0.0,0.0
-1470147413050111826,0.006,0.0,0.0,0.0,0.0,0.0
-1470147413128685571,0.006,0.0,0.0,0.0,0.0,0.0
-1470147413206957717,0.006,0.0,0.0,0.0,0.0,0.0
-1470147413282030025,0.006,0.0,0.0,0.0,0.0,0.0
-1470147413356383223,0.006,0.0,0.0,0.0,0.0,0.0
-1470147413433123616,0.006,0.0,0.0,0.0,0.0,0.0
-1470147413509329782,0.006,0.0,0.0,0.0,0.0,0.0
-1470147413585795759,0.006,0.0,0.0,0.0,0.0,0.0
-1470147413658267805,0.0,0.0,0.0,0.0,0.0,0.00724946723907
-1470147413730087122,0.0,0.0,0.0,0.0,0.0,0.00349618067521
-1470147413802585124,0.006,0.0,0.0,0.0,0.0,0.0
-1470147413879955951,0.006,0.0,0.0,0.0,0.0,0.0
-1470147413954950772,0.006,0.0,0.0,0.0,0.0,0.0
-1470147414030426961,0.006,0.0,0.0,0.0,0.0,0.0
-1470147414109357427,0.006,0.0,0.0,0.0,0.0,0.0
-1470147414195036672,0.0,0.0,0.0,0.0,0.0,0.0051920429925
-1470147414270851524,0.0,0.0,0.0,0.0,0.0,0.00425719379534
-1470147414345864516,0.006,0.0,0.0,0.0,0.0,0.0
-1470147414423203700,0.006,0.0,0.0,0.0,0.0,0.0
-1470147414500606901,0.0,0.0,0.0,0.0,0.0,0.00281638475901
-1470147414578830976,0.006,0.0,0.0,0.0,0.0,0.0
-1470147414662133094,0.006,0.0,0.0,0.0,0.0,0.0
-1470147414735250339,0.006,0.0,0.0,0.0,0.0,0.0
-1470147414809869113,0.006,0.0,0.0,0.0,0.0,0.0
-1470147414884599305,0.0,0.0,0.0,0.0,0.0,0.00334298187056
-1470147414960325656,0.0,0.0,0.0,0.0,0.0,0.00317264804204
-1470147415032336573,0.0,0.0,0.0,0.0,0.0,0.00370601626569
-1470147415104875287,0.006,0.0,0.0,0.0,0.0,0.0
-1470147415178254805,0.006,0.0,0.0,0.0,0.0,0.0
-1470147415252961518,0.006,0.0,0.0,0.0,0.0,0.0
-1470147415329331314,0.006,0.0,0.0,0.0,0.0,0.0
-1470147415406509651,0.0,0.0,0.0,0.0,0.0,0.00286438730694
-1470147415482535883,0.006,0.0,0.0,0.0,0.0,0.0
-1470147415561470757,0.006,0.0,0.0,0.0,0.0,0.0
-1470147415636496943,0.006,0.0,0.0,0.0,0.0,0.0
-1470147415709835948,0.006,0.0,0.0,0.0,0.0,0.0
-1470147415788732246,0.006,0.0,0.0,0.0,0.0,0.0
-1470147415866347762,0.006,0.0,0.0,0.0,0.0,0.0
-1470147415938505692,0.006,0.0,0.0,0.0,0.0,0.0
-1470147416018899746,0.006,0.0,0.0,0.0,0.0,0.0
-1470147416093954285,0.0,0.0,0.0,0.0,0.0,0.00357802809206
-1470147416171367913,0.006,0.0,0.0,0.0,0.0,0.0
-1470147416246679884,0.006,0.0,0.0,0.0,0.0,0.0
-1470147416318451485,0.006,0.0,0.0,0.0,0.0,0.0
-1470147416403409750,0.006,0.0,0.0,0.0,0.0,0.0
-1470147416476444494,0.006,0.0,0.0,0.0,0.0,0.0
-1470147416548157505,0.006,0.0,0.0,0.0,0.0,0.0
-1470147416620087671,0.006,0.0,0.0,0.0,0.0,0.0
-1470147416692361038,0.006,0.0,0.0,0.0,0.0,0.0
-1470147416764995471,0.006,0.0,0.0,0.0,0.0,0.0
-1470147416841520892,0.006,0.0,0.0,0.0,0.0,0.0
-1470147416920120574,0.0,0.0,0.0,0.0,0.0,0.00478629011868
-1470147416994987711,0.006,0.0,0.0,0.0,0.0,0.0
-1470147417072320007,0.006,0.0,0.0,0.0,0.0,0.0
-1470147417146186165,0.006,0.0,0.0,0.0,0.0,0.0
-1470147417218324911,0.006,0.0,0.0,0.0,0.0,0.0
-1470147417291082803,0.006,0.0,0.0,0.0,0.0,0.0
-1470147417362581156,0.006,0.0,0.0,0.0,0.0,0.0
-1470147417436438056,0.0,0.0,0.0,0.0,0.0,0.00375280980917
-1470147417510557467,0.006,0.0,0.0,0.0,0.0,0.0
-1470147417587751371,0.006,0.0,0.0,0.0,0.0,0.0
-1470147417661164096,0.006,0.0,0.0,0.0,0.0,0.0
-1470147417737486027,0.006,0.0,0.0,0.0,0.0,0.0
-1470147417816613164,0.0,0.0,0.0,0.0,0.0,0.00369242027047
-1470147417893857670,0.006,0.0,0.0,0.0,0.0,0.0
-1470147417980526471,0.006,0.0,0.0,0.0,0.0,0.0
-1470147418059254349,0.006,0.0,0.0,0.0,0.0,0.0
-1470147418135463172,0.006,0.0,0.0,0.0,0.0,0.0
-1470147418211501866,0.006,0.0,0.0,0.0,0.0,0.0
-1470147418286118205,0.006,0.0,0.0,0.0,0.0,0.0
-1470147418360749213,0.006,0.0,0.0,0.0,0.0,0.0
-1470147418434259939,0.006,0.0,0.0,0.0,0.0,0.0
-1470147418506518279,0.006,0.0,0.0,0.0,0.0,0.0
-1470147418579024876,0.0,0.0,0.0,0.0,0.0,0.00402715375476
-1470147418660577314,0.006,0.0,0.0,0.0,0.0,0.0
-1470147418736185202,0.006,0.0,0.0,0.0,0.0,0.0
-1470147418815089133,0.006,0.0,0.0,0.0,0.0,0.0
-1470147418889459378,0.006,0.0,0.0,0.0,0.0,0.0
-1470147418960968160,0.006,0.0,0.0,0.0,0.0,0.0
-1470147419034044837,0.0,0.0,0.0,0.0,0.0,0.0033777907592
-1470147419108511563,0.006,0.0,0.0,0.0,0.0,0.0
-1470147419186854509,0.006,0.0,0.0,0.0,0.0,0.0
-1470147419258823005,0.006,0.0,0.0,0.0,0.0,0.0
-1470147419332075738,0.006,0.0,0.0,0.0,0.0,0.0
-1470147419405808805,0.006,0.0,0.0,0.0,0.0,0.0
-1470147419486480376,0.0,0.0,0.0,0.0,0.0,0.00280147663508
-1470147419559370795,0.006,0.0,0.0,0.0,0.0,0.0
-1470147419635924718,0.0,0.0,0.0,0.0,0.0,0.00311001674613
-1470147419711440558,0.006,0.0,0.0,0.0,0.0,0.0
-1470147419792694900,0.0,0.0,0.0,0.0,0.0,0.00361449816964
-1470147419872620374,0.006,0.0,0.0,0.0,0.0,0.0
-1470147419947143523,0.006,0.0,0.0,0.0,0.0,0.0
-1470147420026165240,0.006,0.0,0.0,0.0,0.0,0.0
-1470147420099506239,0.006,0.0,0.0,0.0,0.0,0.0
-1470147420173655478,0.006,0.0,0.0,0.0,0.0,0.0
-1470147420248506533,0.006,0.0,0.0,0.0,0.0,0.0
-1470147420325378246,0.006,0.0,0.0,0.0,0.0,0.0
-1470147420400210202,0.006,0.0,0.0,0.0,0.0,0.0
-1470147420474829245,0.0,0.0,0.0,0.0,0.0,0.00425622272248
-1470147420546904582,0.0,0.0,0.0,0.0,0.0,0.00408943069661
-1470147420628046136,0.0,0.0,0.0,0.0,0.0,0.00279735381997
-1470147420701321506,0.006,0.0,0.0,0.0,0.0,0.0
-1470147420775150708,0.0,0.0,0.0,0.0,0.0,0.003005353628
-1470147420851056372,0.006,0.0,0.0,0.0,0.0,0.0
-1470147420924411187,0.006,0.0,0.0,0.0,0.0,0.0
-1470147421000145148,0.006,0.0,0.0,0.0,0.0,0.0
-1470147421071055841,0.006,0.0,0.0,0.0,0.0,0.0
-1470147421142852940,0.006,0.0,0.0,0.0,0.0,0.0
-1470147421215632815,0.006,0.0,0.0,0.0,0.0,0.0
-1470147421295341188,0.006,0.0,0.0,0.0,0.0,0.0
-1470147421368665870,0.006,0.0,0.0,0.0,0.0,0.0
-1470147421440544871,0.006,0.0,0.0,0.0,0.0,0.0
-1470147421514691015,0.0,0.0,0.0,0.0,0.0,0.00403744600125
-1470147421584415802,0.006,0.0,0.0,0.0,0.0,0.0
-1470147421659283203,0.006,0.0,0.0,0.0,0.0,0.0
-1470147421732162915,0.006,0.0,0.0,0.0,0.0,0.0
-1470147421810269690,0.006,0.0,0.0,0.0,0.0,0.0
-1470147421886264901,0.006,0.0,0.0,0.0,0.0,0.0
-1470147421959070842,0.006,0.0,0.0,0.0,0.0,0.0
-1470147422037403033,0.006,0.0,0.0,0.0,0.0,0.0
-1470147422116821694,0.006,0.0,0.0,0.0,0.0,0.0
-1470147422192034759,0.006,0.0,0.0,0.0,0.0,0.0
-1470147422268646351,0.006,0.0,0.0,0.0,0.0,0.0
-1470147422346503684,0.006,0.0,0.0,0.0,0.0,0.0
-1470147422425985745,0.006,0.0,0.0,0.0,0.0,0.0
-1470147422502813756,0.006,0.0,0.0,0.0,0.0,0.0
-1470147422580869084,0.006,0.0,0.0,0.0,0.0,0.0
-1470147422656984777,0.006,0.0,0.0,0.0,0.0,0.0
-1470147422729001543,0.006,0.0,0.0,0.0,0.0,0.0
-1470147422802761314,0.006,0.0,0.0,0.0,0.0,0.0
-1470147422876139593,0.006,0.0,0.0,0.0,0.0,0.0
-1470147422953204666,0.0,-0.00170714092772,0.0,0.0,0.0,0.0
-1470147423030572885,0.0,-0.00182744609957,0.0,0.0,0.0,0.0
-1470147423102449557,0.0,-0.00183118858647,0.0,0.0,0.0,0.0
-1470147423174983315,0.0,-0.00183355113922,0.0,0.0,0.0,0.0
-1470147423252168130,0.0,-0.00181579103752,0.0,0.0,0.0,0.00484810316546
-1470147423330247208,0.0,-0.00174033789438,0.0,0.0,0.0,0.0
-1470147423401118846,0.0,-0.00178765563261,0.0,0.0,0.0,0.0
-1470147423473670258,0.0,-0.00177626324939,0.0,0.0,0.0,0.0
-1470147423552705485,0.0,-0.00178218384074,0.0,0.0,0.0,0.0
-1470147423628881105,0.0,-0.00184412171423,0.0,0.0,0.0,0.0
-1470147423704088508,0.0,-0.00185148032072,0.0,0.0,0.0,0.0
-1470147423779037536,0.006,0.0,0.0,0.0,0.0,0.0
-1470147423852682369,0.006,0.0,0.0,0.0,0.0,0.0
-1470147423925965433,0.006,0.0,0.0,0.0,0.0,0.0
-1470147423995858610,0.006,0.0,0.0,0.0,0.0,0.0
-1470147424069585758,0.006,0.0,0.0,0.0,0.0,0.0
-1470147424141759116,0.006,0.0,0.0,0.0,0.0,0.0
-1470147424214205594,0.0,0.0,0.0,0.0,0.0,0.00292612903604
-1470147424286514430,0.006,0.0,0.0,0.0,0.0,0.0
-1470147424359544236,0.006,0.0,0.0,0.0,0.0,0.0
-1470147424431379973,0.006,0.0,0.0,0.0,0.0,0.0
-1470147424502727179,0.006,0.0,0.0,0.0,0.0,0.0
-1470147424573874061,0.006,0.0,0.0,0.0,0.0,0.0
-1470147424646822620,0.006,0.0,0.0,0.0,0.0,0.0
-1470147424721578663,0.0,0.0,0.0,0.0,0.0,0.00418635299888
-1470147424796523105,0.0,0.0,0.0,0.0,0.0,0.00286305335333
-1470147424870997086,0.006,0.0,0.0,0.0,0.0,0.0
-1470147424945908368,0.006,0.0,0.0,0.0,0.0,0.0
-1470147425017161690,0.006,0.0,0.0,0.0,0.0,0.0
-1470147425090631669,0.0,0.0,0.0,0.0,0.0,0.00567990483593
-1470147425163647588,0.006,0.0,0.0,0.0,0.0,0.0
-1470147425235968345,0.006,0.0,0.0,0.0,0.0,0.0
-1470147425313539865,0.006,0.0,0.0,0.0,0.0,0.0
-1470147425387348793,0.006,0.0,0.0,0.0,0.0,0.0
-1470147425459882592,0.006,0.0,0.0,0.0,0.0,0.0
-1470147425531545984,0.0,0.00238082484412,0.0,0.0,0.0,0.0
-1470147425603913788,0.0,0.000360862943078,0.0,0.0,0.0,0.0
-1470147425677692251,0.0,0.000320925944236,0.0,0.0,0.0,0.0
-1470147425750085578,0.0,0.000311298577558,0.0,0.0,0.0,0.0
-1470147425826986209,0.0,0.000284732500598,0.0,0.0,0.0,0.0028840865365
-1470147425898708917,0.0,0.000285437401955,0.0,0.0,0.0,0.0
-1470147425973779740,0.0,0.000324248515914,0.0,0.0,0.0,0.0
-1470147426048540315,0.0,0.000334423897811,0.0,0.0,0.0,0.0
-1470147426135369846,0.0,0.00031531512236,0.0,0.0,0.0,0.00288992634212
-1470147426207533088,0.0,0.000327646175969,0.0,0.0,0.0,0.0
-1470147426280731726,0.0,0.000359503159467,0.0,0.0,0.0,0.0
-1470147426352756495,0.0,0.000390709423016,0.0,0.0,0.0,0.0
-1470147426427789188,0.0,0.000488647183582,0.0,0.0,0.0,0.00592405289519
-1470147426504723733,0.0,0.000453548411406,0.0,0.0,0.0,0.00305939319521
-1470147426579683065,0.0,0.000471615629926,0.0,0.0,0.0,0.0
-1470147426653265844,0.0,0.000523795451035,0.0,0.0,0.0,0.0
-1470147426726115226,0.0,0.000577331818445,0.0,0.0,0.0,0.00358761475845
-1470147426795052969,0.0,0.000565724077433,0.0,0.0,0.0,0.00384316192735
-1470147426868220042,0.0,0.00059354568152,0.0,0.0,0.0,0.0
-1470147426940294741,0.0,0.00056808259049,0.0,0.0,0.0,0.0
-1470147427011385610,0.0,0.000545625233873,0.0,0.0,0.0,0.00281792385411
-1470147427086132954,0.0,0.000567186489196,0.0,0.0,0.0,0.00319640607132
-1470147427161133852,0.0,0.000556567495922,0.0,0.0,0.0,0.0
-1470147427235963175,0.0,0.000530302352662,0.0,0.0,0.0,0.00340396904542
-1470147427310930797,0.0,0.000548242120457,0.0,0.0,0.0,0.0034446289899
-1470147427381463398,0.0,0.000558441056736,0.0,0.0,0.0,0.0
-1470147427453799466,0.0,0.000552863811375,0.0,0.0,0.0,0.0
-1470147427525813813,0.0,0.00052694211066,0.0,0.0,0.0,0.0
-1470147427599982810,0.0,0.000512993104114,0.0,0.0,0.0,0.00359377556195
-1470147427678380973,0.0,0.000505871912772,0.0,0.0,0.0,0.00376277084135
-1470147427753200312,0.0,0.00049892646442,0.0,0.0,0.0,0.00390285953542
-1470147427827372517,0.0,0.000493868202033,0.0,0.0,0.0,0.00375183832445
-1470147427902737039,0.0,0.000476777646863,0.0,0.0,0.0,0.00303708508469
-1470147427971161856,0.0,0.000417828005649,0.0,0.0,0.0,0.0
-1470147428041033436,0.0,0.000430440280444,0.0,0.0,0.0,0.0
-1470147428113039073,0.0,0.000409448688352,0.0,0.0,0.0,0.0
-1470147428186032461,0.0,0.000358439547577,0.0,0.0,0.0,0.0
-1470147428259863578,0.0,0.000379239632238,0.0,0.0,0.0,0.0
-1470147428333429965,0.0,0.000363707513567,0.0,0.0,0.0,0.0
-1470147428408530090,0.0,0.000350042978873,0.0,0.0,0.0,0.0
-1470147428483569637,0.0,0.00034586118926,0.0,0.0,0.0,0.0
-1470147428559319161,0.0,0.000302308893786,0.0,0.0,0.0,0.00406537940582
-1470147428633882215,0.0,0.000298611038871,0.0,0.0,0.0,0.00403213484031
-1470147428714923327,0.0,0.000293995034287,0.0,0.0,0.0,0.00364584722621
-1470147428790392898,0.0,0.000290144439163,0.0,0.0,0.0,0.00386307742164
-1470147428863851615,0.0,0.000309435025695,0.0,0.0,0.0,0.00396705827169
-1470147428939937285,0.0,0.000314945285132,0.0,0.0,0.0,0.00375363103607
-1470147429012001529,0.0,0.000298208236705,0.0,0.0,0.0,0.00367700201467
-1470147429085923397,0.0,0.000310505473315,0.0,0.0,0.0,0.00386781706407
-1470147429161058293,0.0,0.000307289907241,0.0,0.0,0.0,0.00368842306309
-1470147429234530382,0.0,0.000288315847252,0.0,0.0,0.0,0.00375237075944
-1470147429312484722,0.0,0.000278093056949,0.0,0.0,0.0,0.00319054066533
-1470147429387637290,0.006,0.0,0.0,0.0,0.0,0.0
-1470147429461205419,0.006,0.0,0.0,0.0,0.0,0.0
-1470147429534000187,0.0,0.0,0.0,0.0,0.0,0.0036137897277
-1470147429606702910,0.0,0.0,0.0,0.0,0.0,0.00341416142499
-1470147429684038454,0.006,0.0,0.0,0.0,0.0,0.0
-1470147429758595845,0.006,0.0,0.0,0.0,0.0,0.0
-1470147429830600657,0.006,0.0,0.0,0.0,0.0,0.0
-1470147429903082818,0.006,0.0,0.0,0.0,0.0,0.0
-1470147429976687950,0.006,0.0,0.0,0.0,0.0,0.0
-1470147430051632804,0.006,0.0,0.0,0.0,0.0,0.0
-1470147430130073137,0.006,0.0,0.0,0.0,0.0,0.0
-1470147430207038675,0.006,0.0,0.0,0.0,0.0,0.0
-1470147430277773887,0.006,0.0,0.0,0.0,0.0,0.0
-1470147430351924607,0.006,0.0,0.0,0.0,0.0,0.0
-1470147430427342036,0.006,0.0,0.0,0.0,0.0,0.0
-1470147430499538123,0.006,0.0,0.0,0.0,0.0,0.0
-1470147430571465490,0.0,0.0,0.0,0.0,0.0,0.0033009202566
-1470147430644296942,0.0,0.0,0.0,0.0,0.0,0.00315368041919
-1470147430715906424,0.006,0.0,0.0,0.0,0.0,0.0
-1470147430789382739,0.006,0.0,0.0,0.0,0.0,0.0
-1470147430862803804,0.0,0.0,0.0,0.0,0.0,0.00348547741342
-1470147430934038088,0.006,0.0,0.0,0.0,0.0,0.0
-1470147431006067139,0.006,0.0,0.0,0.0,0.0,0.0
-1470147431080413167,0.006,0.0,0.0,0.0,0.0,0.0
-1470147431161803819,0.006,0.0,0.0,0.0,0.0,0.0
-1470147431230268580,0.006,0.0,0.0,0.0,0.0,0.0
-1470147431303395956,0.006,0.0,0.0,0.0,0.0,0.0
-1470147431376851099,0.0,0.0,0.0,0.0,0.0,0.00556764915123
-1470147431449590314,0.006,0.0,0.0,0.0,0.0,0.0
-1470147431523174083,0.006,0.0,0.0,0.0,0.0,0.0
-1470147431602828571,0.006,0.0,0.0,0.0,0.0,0.0
-1470147431681277922,0.0,0.0,0.0,0.0,0.0,0.0040416237728
-1470147431754481036,0.0,0.0,0.0,0.0,0.0,0.00315737606322
+1470148072567969162,0.15,-0.368810708228,0.0,0.0,0.0,0.0307812709877
+1470148072648350081,0.15,-0.186258444896,0.0,0.0,0.0,0.0307812709877
+1470148072723976768,0.15,-0.186276701948,0.0,0.0,0.0,0.0307812709877
+1470148072808083667,0.15,-0.186294959,0.0,0.0,0.0,0.0307812709877
+1470148072888426150,0.15,-0.186313216052,0.0,0.0,0.0,0.0307812709877
+1470148072965392949,0.15,-0.186331473104,0.0,0.0,0.0,0.0307812709877
+1470148073042767609,0.15,-0.186349730156,0.0,0.0,0.0,0.0307812709877
+1470148073117220063,0.15,-0.186367987208,0.0,0.0,0.0,0.0307812709877
+1470148073195372621,0.15,-0.184548737902,0.0,0.0,0.0,0.0234517423256
+1470148073272591476,0.15,-0.184933749375,0.0,0.0,0.0,0.0446299865589
+1470148073356777395,0.15,-0.192698710282,0.0,0.0,0.0,0.0292742763102
+1470148073431433957,0.15,-0.177483611667,0.0,0.0,0.0,0.0218635044077
+1470148073510185556,0.15,-0.168628330419,0.0,0.0,0.0,0.0241097936062
+1470148073586737325,0.15,-0.163262602769,0.0,0.0,0.0,0.040347265638
+1470148073659538638,0.15,-0.162518548202,0.0,0.0,0.0,0.022285908279
+1470148073735199806,0.15,-0.14944028023,0.0,0.0,0.0,0.0342380477098
+1470148073809541670,0.15,-0.148862753724,0.0,0.0,0.0,0.0307176441619
+1470148073884542949,0.15,-0.143612625602,0.0,0.0,0.0,0.0303209510837
+1470148073961527744,0.15,-0.134538499101,0.0,0.0,0.0,0.0432759578326
+1470148074036874310,0.15,-0.13064589777,0.0,0.0,0.0,0.0244789833729
+1470148074110544555,0.15,-0.128163988662,0.0,0.0,0.0,0.0281545248704
+1470148074186833002,0.15,-0.127744038129,0.0,0.0,0.0,0.0285891341646
+1470148074260225853,0.15,-0.114387138841,0.0,0.0,0.0,0.0263832449933
+1470148074337622354,0.15,-0.110044225125,0.0,0.0,0.0,0.0271857398206
+1470148074410034046,0.15,-0.111134524436,0.0,0.0,0.0,0.0338832117723
+1470148074486076493,0.15,-0.100399706041,0.0,0.0,0.0,0.0288576071941
+1470148074562715235,0.15,-0.0950746462543,0.0,0.0,0.0,0.0375149467006
+1470148074640329705,0.15,-0.0949671513684,0.0,0.0,0.0,0.0247066225971
+1470148074715885375,0.15,-0.0923488915976,0.0,0.0,0.0,0.0242866596705
+1470148074794833811,0.15,-0.0880123017497,0.0,0.0,0.0,0.0283668858123
+1470148074868343792,0.15,-0.0830356507088,0.0,0.0,0.0,0.0297982095102
+1470148074944570860,0.15,-0.0822642009324,0.0,0.0,0.0,0.0292023382697
+1470148075023153266,0.15,-0.0786747779691,0.0,0.0,0.0,0.021890429531
+1470148075097019442,0.15,-0.070015798301,0.0,0.0,0.0,0.0357154837146
+1470148075170474922,0.15,-0.0721569013984,0.0,0.0,0.0,0.0292542927898
+1470148075249980162,0.15,-0.0706949784849,0.0,0.0,0.0,0.0283905940984
+1470148075330141347,0.15,-0.0686282090716,0.0,0.0,0.0,0.0273536983406
+1470148075411582708,0.15,-0.0618225701969,0.0,0.0,0.0,0.0246090510052
+1470148075501004512,0.15,-0.0620521566696,0.0,0.0,0.0,0.0164202343024
+1470148075578357693,0.15,-0.0600670498225,0.0,0.0,0.0,0.0179181433889
+1470148075657559794,0.15,-0.0572359740978,0.0,0.0,0.0,0.0313031837847
+1470148075740812663,0.15,-0.0556430886594,0.0,0.0,0.0,0.0279565145426
+1470148075818622123,0.15,-0.0536380812956,0.0,0.0,0.0,0.0239601907831
+1470148075895618052,0.15,-0.0510834125114,0.0,0.0,0.0,0.0216180961473
+1470148075971493551,0.15,-0.0504739707593,0.0,0.0,0.0,0.0180152809486
+1470148076047160676,0.15,-0.0494164978903,0.0,0.0,0.0,0.0155582903877
+1470148076124909791,0.15,-0.0468308775682,0.0,0.0,0.0,0.0213303182421
+1470148076200054550,0.15,-0.0459123893454,0.0,0.0,0.0,0.0247657934974
+1470148076273993760,0.15,-0.0437062563269,0.0,0.0,0.0,0.0250830710553
+1470148076362856339,0.15,-0.0440355088571,0.0,0.0,0.0,0.0280654772689
+1470148076442739887,0.15,-0.0419532504329,0.0,0.0,0.0,0.0106274070212
+1470148076515700850,0.15,-0.0399344246948,0.0,0.0,0.0,0.0286439359651
+1470148076593880800,0.15,-0.0402228466467,0.0,0.0,0.0,0.0247195333889
+1470148076669420535,0.15,-0.0394811105963,0.0,0.0,0.0,0.0254939204819
+1470148076743991552,0.15,-0.0358573961474,0.0,0.0,0.0,0.0154965161751
+1470148076821878127,0.15,-0.0357561981529,0.0,0.0,0.0,0.0401862229791
+1470148076897904093,0.15,-0.0355381866406,0.0,0.0,0.0,0.0225941825778
+1470148076970033400,0.15,-0.0336360611684,0.0,0.0,0.0,0.0214230169145
+1470148077047642676,0.15,-0.034234444411,0.0,0.0,0.0,0.0226124725155
+1470148077125572867,0.15,-0.0337933252091,0.0,0.0,0.0,0.0305713895036
+1470148077198056123,0.15,-0.0316721828779,0.0,0.0,0.0,0.0195163377181
+1470148077277989896,0.15,-0.0327918691543,0.0,0.0,0.0,0.0162733896642
+1470148077351056403,0.15,-0.0307364495163,0.0,0.0,0.0,0.0232809267165
+1470148077428480942,0.15,-0.0313641699508,0.0,0.0,0.0,0.0213761580768
+1470148077505293160,0.15,-0.0295373092979,0.0,0.0,0.0,0.0151796406854
+1470148077580143300,0.15,-0.0297593588672,0.0,0.0,0.0,0.011761448321
+1470148077655460902,0.15,-0.0292168994083,0.0,0.0,0.0,0.0258750956626
+1470148077735643243,0.15,-0.0280912722091,0.0,0.0,0.0,0.0170928274755
+1470148077806851127,0.15,-0.0273439255094,0.0,0.0,0.0,0.00942826377069
+1470148077879860046,0.15,-0.0275525230834,0.0,0.0,0.0,0.0184763606497
+1470148077952086506,0.15,-0.0264591260375,0.0,0.0,0.0,0.0184125920266
+1470148078042179644,0.15,-0.0263343185057,0.0,0.0,0.0,0.0216021889604
+1470148078118521033,0.15,-0.026044701094,0.0,0.0,0.0,0.0134312439505
+1470148078193376016,0.15,-0.0248616285667,0.0,0.0,0.0,0.00946775982708
+1470148078267069431,0.15,-0.0249946171149,0.0,0.0,0.0,0.0226268297796
+1470148078340905440,0.15,-0.0239259137024,0.0,0.0,0.0,0.0185946188962
+1470148078418456240,0.15,-0.0233627909776,0.0,0.0,0.0,0.0216793297043
+1470148078496761042,0.15,-0.0226656431468,0.0,0.0,0.0,0.0229264120195
+1470148078574915655,0.15,-0.0221407110421,0.0,0.0,0.0,0.0176715690948
+1470148078649876112,0.15,-0.0217458802161,0.0,0.0,0.0,0.0116656602542
+1470148078727120995,0.15,-0.0214320767262,0.0,0.0,0.0,0.0135284957916
+1470148078801243358,0.15,-0.0211120558678,0.0,0.0,0.0,0.0149184823497
+1470148078877394048,0.15,-0.0202485286389,0.0,0.0,0.0,0.0206633030224
+1470148078951156840,0.15,-0.0196498108148,0.0,0.0,0.0,0.0221069532287
+1470148079030764530,0.15,-0.019613029962,0.0,0.0,0.0,0.00656122461732
+1470148079105106419,0.15,-0.0193184710207,0.0,0.0,0.0,0.0181627083222
+1470148079178390112,0.15,-0.0188219973186,0.0,0.0,0.0,0.0153324570931
+1470148079257147619,0.15,-0.0188379189683,0.0,0.0,0.0,0.0137320799441
+1470148079332677368,0.15,-0.0182254996784,0.0,0.0,0.0,0.0214606130164
+1470148079406771451,0.15,-0.0178611386021,0.0,0.0,0.0,0.0133485602494
+1470148079479967388,0.15,-0.0175783264937,0.0,0.0,0.0,0.0124488741447
+1470148079558502236,0.15,-0.0176920612183,0.0,0.0,0.0,0.0116849228497
+1470148079641220468,0.15,-0.0164163770105,0.0,0.0,0.0,0.00959426653384
+1470148079714098552,0.15,-0.0164740107035,0.0,0.0,0.0,0.00985966583635
+1470148079786360256,0.15,-0.0164848625143,0.0,0.0,0.0,0.0130503717906
+1470148079858894548,0.15,-0.0159977223536,0.0,0.0,0.0,0.0124038915751
+1470148079940531062,0.0,-0.0157159415271,0.0,0.0,0.0,0.0163480484461
+1470148080017992188,0.0,-0.0154352978032,0.0,0.0,0.0,0.0138055610616
+1470148080090447737,0.0,-0.0151780204942,0.0,0.0,0.0,0.0142702828584
+1470148080165620996,0.0,-0.0147932136108,0.0,0.0,0.0,0.0133869124878
+1470148080241953028,0.0,-0.0146484678669,0.0,0.0,0.0,0.0123921030636
+1470148080315727671,0.0,-0.0142465759246,0.0,0.0,0.0,0.00999580865303
+1470148080391074188,0.0,-0.0134008959153,0.0,0.0,0.0,0.00853870306856
+1470148080467433923,0.0,-0.0135509101258,0.0,0.0,0.0,0.0130067162385
+1470148080541143168,0.0,-0.0130922723728,0.0,0.0,0.0,0.00957298310061
+1470148080617150123,0.0,-0.012965346957,0.0,0.0,0.0,0.00822478965832
+1470148080690107253,0.0,-0.013198590113,0.0,0.0,0.0,0.0104172209794
+1470148080766796094,0.0,-0.0135944253179,0.0,0.0,0.0,0.00898939239187
+1470148080840051539,0.0,-0.0145979759882,0.0,0.0,0.0,0.00862519168799
+1470148080922284447,0.0,-0.0150052381385,0.0,0.0,0.0,0.00806273726119
+1470148081000778978,0.0,-0.0148782212693,0.0,0.0,0.0,0.00905348418388
+1470148081081884875,0.0,-0.0143496492033,0.0,0.0,0.0,0.00830191783812
+1470148081155266217,0.0,-0.0143082270109,0.0,0.0,0.0,0.00732838963069
+1470148081228130627,0.0,-0.0139593347407,0.0,0.0,0.0,0.00663673687783
+1470148081301122614,0.0,-0.0134983006938,0.0,0.0,0.0,0.00450647467939
+1470148081374389715,0.0,-0.0134682897199,0.0,0.0,0.0,0.00406052584975
+1470148081450647304,0.0,-0.013237452138,0.0,0.0,0.0,0.00467978930195
+1470148081526727051,0.0,-0.0127402230612,0.0,0.0,0.0,0.00623938932726
+1470148081599481953,0.0,-0.0125645478735,0.0,0.0,0.0,0.00646468213776
+1470148081672030216,0.0,-0.0123281313986,0.0,0.0,0.0,0.00752738616726
+1470148081745975359,0.0,-0.0120402794115,0.0,0.0,0.0,0.0069962781068
+1470148081818039756,0.0,-0.0116606928538,0.0,0.0,0.0,0.00593173004149
+1470148081893440673,0.0,-0.0110929251295,0.0,0.0,0.0,0.00595143418229
+1470148081970613531,0.0,-0.0109616446648,0.0,0.0,0.0,0.0061154255696
+1470148082046478392,0.0,-0.0105759124435,0.0,0.0,0.0,0.00607233970874
+1470148082122046038,0.0,-0.0102289131957,0.0,0.0,0.0,0.00406894513811
+1470148082195531634,0.0,-0.0096935274031,0.0,0.0,0.0,0.00510216064122
+1470148082267835231,0.0,-0.00939682343272,0.0,0.0,0.0,0.00420274873969
+1470148082343245878,0.0,-0.00919834976468,0.0,0.0,0.0,0.00412016936464
+1470148082416109636,0.0,-0.00896404164496,0.0,0.0,0.0,0.00410454687304
+1470148082492666369,0.0,-0.00825161421432,0.0,0.0,0.0,0.0
+1470148082568882064,0.0,-0.00822445604818,0.0,0.0,0.0,0.00321680567088
+1470148082642624459,0.0,-0.0080251795391,0.0,0.0,0.0,0.00289547927776
+1470148082715232297,0.0,-0.00778670897409,0.0,0.0,0.0,0.002945780796
+1470148082788838683,0.0,-0.00725403493266,0.0,0.0,0.0,0.00394961390738
+1470148082860247453,0.0,-0.00716737116092,0.0,0.0,0.0,0.00485982437118
+1470148082932914211,0.0,-0.00693777486865,0.0,0.0,0.0,0.00442744830923
+1470148083003367786,0.0,-0.00676113248507,0.0,0.0,0.0,0.00349325900306
+1470148083075712680,0.0,-0.00630659032555,0.0,0.0,0.0,0.00372922073736
+1470148083148275252,0.0,-0.00626993339512,0.0,0.0,0.0,0.00536184692544
+1470148083220772034,0.0,-0.0060284741003,0.0,0.0,0.0,0.00391061004679
+1470148083295837034,0.0,-0.00583720601802,0.0,0.0,0.0,0.0
+1470148083372626367,0.0,-0.00568693778515,0.0,0.0,0.0,0.00280652400469
+1470148083449531154,0.0,-0.00551232203353,0.0,0.0,0.0,0.00472775139201
+1470148083522527096,0.0,-0.00527033878362,0.0,0.0,0.0,0.00421953411286
+1470148083595854785,0.0,-0.00498493723318,0.0,0.0,0.0,0.00402492214907
+1470148083672233869,0.0,-0.00501668553551,0.0,0.0,0.0,0.0
+1470148083747835661,0.0,-0.00480785064501,0.0,0.0,0.0,0.00437757475342
+1470148083822105141,0.0,-0.00462410885035,0.0,0.0,0.0,0.00292269257878
+1470148083900478964,0.0,-0.00446879173443,0.0,0.0,0.0,0.0
+1470148083981169632,0.0,-0.00439427690819,0.0,0.0,0.0,0.00520728237862
+1470148084058144237,0.0,-0.00423141076399,0.0,0.0,0.0,0.0
+1470148084132725594,0.0,-0.00415748627314,0.0,0.0,0.0,0.0044536948365
+1470148084204630677,0.0,-0.00396846822847,0.0,0.0,0.0,0.0
+1470148084277512387,0.0,-0.00393987803122,0.0,0.0,0.0,0.00379773651439
+1470148084351338763,0.0,-0.00381886184639,0.0,0.0,0.0,0.0
+1470148084428324469,0.0,-0.00367743204557,0.0,0.0,0.0,0.00414066746239
+1470148084508067743,0.0,-0.00362901797868,0.0,0.0,0.0,0.00338399840288
+1470148084579410432,0.0,-0.00350182955261,0.0,0.0,0.0,0.00309988448937
+1470148084655233671,0.0,-0.00348600022138,0.0,0.0,0.0,0.0041015945969
+1470148084729369055,0.0,-0.00328654066238,0.0,0.0,0.0,0.0
+1470148084802253200,0.0,-0.00323958706663,0.0,0.0,0.0,0.00318742152462
+1470148084881304258,0.0,-0.00318228945549,0.0,0.0,0.0,0.00410670215249
+1470148084959144252,0.0,-0.00305091617093,0.0,0.0,0.0,0.0
+1470148085034393573,0.0,-0.00291184028946,0.0,0.0,0.0,0.00426518057132
+1470148085117174527,0.0,-0.00286033975133,0.0,0.0,0.0,0.0
+1470148085190861852,0.0,-0.00272124815738,0.0,0.0,0.0,0.00281722706576
+1470148085264391681,0.0,-0.00266191443221,0.0,0.0,0.0,0.00418812876884
+1470148085341572041,0.0,-0.00261269687561,0.0,0.0,0.0,0.00300013871227
+1470148085415636869,0.0,-0.00251942281046,0.0,0.0,0.0,0.00398078186615
+1470148085488374762,0.0,-0.00247952294344,0.0,0.0,0.0,0.00416922618264
+1470148085564351537,0.0,-0.00247027250644,0.0,0.0,0.0,0.00487107342838
+1470148085641916948,0.0,-0.00240579757849,0.0,0.0,0.0,0.0
+1470148085714846795,0.0,-0.00242122332809,0.0,0.0,0.0,0.00337362563948
+1470148085788702175,0.0,-0.0022778214445,0.0,0.0,0.0,0.00313533921051
+1470148085861530471,0.0,-0.00225312121895,0.0,0.0,0.0,0.00289709977269
+1470148085935703554,0.0,-0.00217686620609,0.0,0.0,0.0,0.00486429221156
+1470148086011661498,0.0,-0.00202572232651,0.0,0.0,0.0,0.00422554849771
+1470148086084939983,0.0,-0.00203836752879,0.0,0.0,0.0,0.00474227116213
+1470148086160317814,0.0,-0.00201571262749,0.0,0.0,0.0,0.00585692062894
+1470148086233577879,0.0,-0.00192794199633,0.0,0.0,0.0,0.00533608944319
+1470148086314846151,0.0,-0.00193513511681,0.0,0.0,0.0,0.00460025059933
+1470148086389944996,0.0,-0.00193515958671,0.0,0.0,0.0,0.00451478484376
+1470148086468120233,0.0,-0.00199797197541,0.0,0.0,0.0,0.00620540421591
+1470148086543068637,0.0,-0.0019159484654,0.0,0.0,0.0,0.00388472756375
+1470148086618482795,0.0,-0.00190887303892,0.0,0.0,0.0,0.00470891064373
+1470148086694876124,0.0,-0.00188646677932,0.0,0.0,0.0,0.00538089538352
+1470148086771726947,0.0,-0.00173750501219,0.0,0.0,0.0,0.00522609925511
+1470148086850727773,0.0,0.0,0.0,0.0,0.0,0.0040259594185
+1470148086928257225,0.0,0.0,0.0,0.0,0.0,0.00588309732692
+1470148087001783352,0.0,0.0,0.0,0.0,0.0,0.00470107189984
+1470148087075151710,0.0,0.0,0.0,0.0,0.0,0.00577144249528
+1470148087156421866,0.0,0.0,0.0,0.0,0.0,0.00573287635664
+1470148087230162181,0.0,0.0,0.0,0.0,0.0,0.00403125094304
+1470148087307462938,0.0,0.0,0.0,0.0,0.0,0.00592751772418
+1470148087383153052,0.0,-0.00174021891696,0.0,0.0,0.0,0.00562721022845
+1470148087458909055,0.0,-0.00184809246405,0.0,0.0,0.0,0.00389193721066
+1470148087533431723,0.0,0.0,0.0,0.0,0.0,0.00632499744281
+1470148087615235305,0.006,0.0,0.0,0.0,0.0,0.0
+1470148087693538890,0.0,0.0,0.0,0.0,0.0,0.0048581302951
+1470148087767271027,0.0,0.0,0.0,0.0,0.0,0.00315292970752
+1470148087841631796,0.0,0.0,0.0,0.0,0.0,0.00613299694966
+1470148087915012430,0.0,0.0,0.0,0.0,0.0,0.00390230692632
+1470148087988875389,0.0,-0.00208136881368,0.0,0.0,0.0,0.00470435722112
+1470148088075511550,0.0,-0.00219927190494,0.0,0.0,0.0,0.00352358560037
+1470148088148733670,0.0,-0.00230434635425,0.0,0.0,0.0,0.00345965447212
+1470148088226337025,0.0,-0.00240014938446,0.0,0.0,0.0,0.0
+1470148088300761476,0.0,-0.00264535432514,0.0,0.0,0.0,0.00336581751359
+1470148088377420828,0.0,-0.00269928529286,0.0,0.0,0.0,0.00399992541543
+1470148088454356508,0.0,-0.00273080093596,0.0,0.0,0.0,0.0
+1470148088531507233,0.0,-0.00283462170681,0.0,0.0,0.0,0.0
+1470148088606089960,0.0,-0.00303602085814,0.0,0.0,0.0,0.00355713728212
+1470148088679323874,0.0,-0.00316122095816,0.0,0.0,0.0,0.0
+1470148088751674383,0.0,-0.00327074641947,0.0,0.0,0.0,0.0032801139957
+1470148088822938006,0.0,-0.00351856603589,0.0,0.0,0.0,0.0
+1470148088895050853,0.0,-0.00386428372441,0.0,0.0,0.0,0.0
+1470148088984557763,0.0,-0.00448797362396,0.0,0.0,0.0,0.0
+1470148089065073366,0.0,-0.00471934581819,0.0,0.0,0.0,0.0
+1470148089138148388,0.0,-0.00464102391682,0.0,0.0,0.0,0.0
+1470148089211246815,0.0,-0.00451721333491,0.0,0.0,0.0,0.0
+1470148089287963371,0.0,-0.00450440153981,0.0,0.0,0.0,0.0
+1470148089363943703,0.0,-0.00438714723703,0.0,0.0,0.0,0.0
+1470148089436834848,0.0,-0.0043762790123,0.0,0.0,0.0,0.0
+1470148089510208075,0.0,-0.00428511962952,0.0,0.0,0.0,0.0
+1470148089585109803,0.0,-0.00419545889563,0.0,0.0,0.0,0.0
+1470148089660240969,0.0,-0.00399289678183,0.0,0.0,0.0,0.0
+1470148089735270188,0.0,-0.00389267254819,0.0,0.0,0.0,0.0
+1470148089808285424,0.0,-0.00371631978469,0.0,0.0,0.0,0.0
+1470148089882745917,0.0,-0.00362692663748,0.0,0.0,0.0,0.0
+1470148089958600375,0.0,-0.00334461494521,0.0,0.0,0.0,0.0
+1470148090033673673,0.0,-0.00321600143341,0.0,0.0,0.0,0.0
+1470148090109753488,0.0,-0.00311442726702,0.0,0.0,0.0,0.0
+1470148090181881189,0.0,-0.00297517745468,0.0,0.0,0.0,0.0
+1470148090254374398,0.0,-0.00268932528912,0.0,0.0,0.0,0.0
+1470148090330465509,0.0,-0.0026054143545,0.0,0.0,0.0,0.0
+1470148090407590079,0.0,-0.00251818057539,0.0,0.0,0.0,0.0
+1470148090480799394,0.0,-0.00241955835655,0.0,0.0,0.0,0.0
+1470148090552645017,0.0,-0.00226610759813,0.0,0.0,0.0,0.0
+1470148090626463145,0.0,-0.0020187098213,0.0,0.0,0.0,0.0
+1470148090701430387,0.0,-0.00202442016402,0.0,0.0,0.0,0.0
+1470148090777544694,0.0,-0.00186701100242,0.0,0.0,0.0,0.0
+1470148090851237095,0.0,-0.00182905671031,0.0,0.0,0.0,0.0
+1470148090927605683,0.006,0.0,0.0,0.0,0.0,0.0
+1470148091001813502,0.006,0.0,0.0,0.0,0.0,0.0
+1470148091078609006,0.006,0.0,0.0,0.0,0.0,0.0
+1470148091150229171,0.006,0.0,0.0,0.0,0.0,0.0
+1470148091219713401,0.006,0.0,0.0,0.0,0.0,0.0
+1470148091294176189,0.006,0.0,0.0,0.0,0.0,0.0
+1470148091375253418,0.006,0.0,0.0,0.0,0.0,0.0
+1470148091450117131,0.006,0.0,0.0,0.0,0.0,0.0
+1470148091529705665,0.006,0.0,0.0,0.0,0.0,0.0
+1470148091607542153,0.006,0.0,0.0,0.0,0.0,0.0
+1470148091681556352,0.006,0.0,0.0,0.0,0.0,0.0
+1470148091753394023,0.006,0.0,0.0,0.0,0.0,0.0
+1470148091831861459,0.006,0.0,0.0,0.0,0.0,0.0
+1470148091905871937,0.006,0.0,0.0,0.0,0.0,0.0
+1470148091979429126,0.006,0.0,0.0,0.0,0.0,0.0
+1470148092053935969,0.0,0.0,0.0,0.0,0.0,0.00420639637286
+1470148092132780187,0.006,0.0,0.0,0.0,0.0,0.0
+1470148092208687056,0.0,0.0,0.0,0.0,0.0,0.00532501135301
+1470148092283014800,0.0,0.0,0.0,0.0,0.0,0.0055829484079
+1470148092368161109,0.0,0.0,0.0,0.0,0.0,0.00458665979744
+1470148092446557428,0.006,0.0,0.0,0.0,0.0,0.0
+1470148092522238648,0.006,0.0,0.0,0.0,0.0,0.0
+1470148092601935959,0.006,0.0,0.0,0.0,0.0,0.0
+1470148092677051722,0.006,0.0,0.0,0.0,0.0,0.0
+1470148092751653019,0.0,0.0,0.0,0.0,0.0,0.0033054311331
+1470148092827309496,0.0,0.0,0.0,0.0,0.0,0.00456796623294
+1470148092902316457,0.0,0.00262365386439,0.0,0.0,0.0,0.0
+1470148092978428680,0.0,0.000803248500511,0.0,0.0,0.0,0.0
+1470148093059976206,0.0,0.0009087467057,0.0,0.0,0.0,0.00515959666372
+1470148093134561080,0.0,0.000699450783758,0.0,0.0,0.0,0.0
+1470148093212732664,0.0,0.000328366274451,0.0,0.0,0.0,0.0
+1470148093289648141,0.006,0.0,0.0,0.0,0.0,0.0
+1470148093362659079,0.006,0.0,0.0,0.0,0.0,0.0
+1470148093440911020,0.006,0.0,0.0,0.0,0.0,0.0
+1470148093516222629,0.006,0.0,0.0,0.0,0.0,0.0
+1470148093589340527,0.006,0.0,0.0,0.0,0.0,0.0
+1470148093663053182,0.006,0.0,0.0,0.0,0.0,0.0
+1470148093740310916,0.006,0.0,0.0,0.0,0.0,0.0
+1470148093814951405,0.006,0.0,0.0,0.0,0.0,0.0
+1470148093889776677,0.006,0.0,0.0,0.0,0.0,0.0
+1470148093967568980,0.006,0.0,0.0,0.0,0.0,0.0
+1470148094043138010,0.006,0.0,0.0,0.0,0.0,0.0
+1470148094120647721,0.006,0.0,0.0,0.0,0.0,0.0
+1470148094196751171,0.006,0.0,0.0,0.0,0.0,0.0
+1470148094271081965,0.006,0.0,0.0,0.0,0.0,0.0
+1470148094345878034,0.006,0.0,0.0,0.0,0.0,0.0
+1470148094419681483,0.006,0.0,0.0,0.0,0.0,0.0
+1470148094500286728,0.006,0.0,0.0,0.0,0.0,0.0
+1470148094576955704,0.006,0.0,0.0,0.0,0.0,0.0
+1470148094653152765,0.006,0.0,0.0,0.0,0.0,0.0
+1470148094725879012,0.006,0.0,0.0,0.0,0.0,0.0
+1470148094799181316,0.006,0.0,0.0,0.0,0.0,0.0
+1470148094874752152,0.0,0.0,0.0,0.0,0.0,0.00327486838173
+1470148094954909448,0.0,0.0,0.0,0.0,0.0,0.0113228920904
+1470148095026414841,0.006,0.0,0.0,0.0,0.0,0.0
+1470148095096832780,0.0,0.0,0.0,0.0,0.0,0.00287674148571
+1470148095171347833,0.006,0.0,0.0,0.0,0.0,0.0
+1470148095245814267,0.006,0.0,0.0,0.0,0.0,0.0
+1470148095319334351,0.0,0.0,0.0,0.0,0.0,0.00511768283707
+1470148095404900915,0.0,0.0,0.0,0.0,0.0,0.00321993959349
+1470148095483110243,0.006,0.0,0.0,0.0,0.0,0.0
+1470148095556744122,0.006,0.0,0.0,0.0,0.0,0.0
+1470148095630618867,0.0,0.0,0.0,0.0,0.0,0.00320167177025
+1470148095708014067,0.006,0.0,0.0,0.0,0.0,0.0
+1470148095784120685,0.006,0.0,0.0,0.0,0.0,0.0
+1470148095856546620,0.006,0.0,0.0,0.0,0.0,0.0
+1470148095934035739,0.006,0.0,0.0,0.0,0.0,0.0
+1470148096013098962,0.006,0.0,0.0,0.0,0.0,0.0
+1470148096087757591,0.006,0.0,0.0,0.0,0.0,0.0
+1470148096168401181,0.006,0.0,0.0,0.0,0.0,0.0
+1470148096242814998,0.006,0.0,0.0,0.0,0.0,0.0
+1470148096322708542,0.0,0.0,0.0,0.0,0.0,0.00433513739865
+1470148096396286358,0.006,0.0,0.0,0.0,0.0,0.0
+1470148096468871947,0.0,0.0,0.0,0.0,0.0,0.00283905576128
+1470148096546625043,0.006,0.0,0.0,0.0,0.0,0.0
+1470148096622110001,0.006,0.0,0.0,0.0,0.0,0.0
+1470148096695651501,0.006,0.0,0.0,0.0,0.0,0.0
+1470148096770541535,0.006,0.0,0.0,0.0,0.0,0.0
+1470148096848283314,0.006,0.0,0.0,0.0,0.0,0.0
+1470148096921183252,0.006,0.0,0.0,0.0,0.0,0.0
+1470148096994277801,0.006,0.0,0.0,0.0,0.0,0.0
+1470148097078676605,0.006,0.0,0.0,0.0,0.0,0.0
+1470148097163459288,0.006,0.0,0.0,0.0,0.0,0.0
+1470148097238249120,0.006,0.0,0.0,0.0,0.0,0.0
+1470148097318183369,0.006,0.0,0.0,0.0,0.0,0.0
+1470148097391562902,0.006,0.0,0.0,0.0,0.0,0.0
+1470148097464044106,0.006,0.0,0.0,0.0,0.0,0.0
+1470148097536652561,0.006,0.0,0.0,0.0,0.0,0.0
+1470148097610019677,0.006,0.0,0.0,0.0,0.0,0.0
+1470148097686732872,0.006,0.0,0.0,0.0,0.0,0.0
+1470148097761353852,0.006,0.0,0.0,0.0,0.0,0.0
+1470148097836347596,0.006,0.0,0.0,0.0,0.0,0.0
+1470148097908718039,0.006,0.0,0.0,0.0,0.0,0.0
+1470148097979836765,0.0,0.0,0.0,0.0,0.0,0.0028708866079
+1470148098052475924,0.006,0.0,0.0,0.0,0.0,0.0
+1470148098129312547,0.006,0.0,0.0,0.0,0.0,0.0
+1470148098205385258,0.006,0.0,0.0,0.0,0.0,0.0
+1470148098278642550,0.006,0.0,0.0,0.0,0.0,0.0
+1470148098351566480,0.006,0.0,0.0,0.0,0.0,0.0
+1470148098429101547,0.006,0.0,0.0,0.0,0.0,0.0
+1470148098502653474,0.006,0.0,0.0,0.0,0.0,0.0
+1470148098577322055,0.006,0.0,0.0,0.0,0.0,0.0
+1470148098648231428,0.006,0.0,0.0,0.0,0.0,0.0
+1470148098721928941,0.006,0.0,0.0,0.0,0.0,0.0
+1470148098794909251,0.006,0.0,0.0,0.0,0.0,0.0
+1470148098875942609,0.006,0.0,0.0,0.0,0.0,0.0
+1470148098948297446,0.006,0.0,0.0,0.0,0.0,0.0
+1470148099021672590,0.006,0.0,0.0,0.0,0.0,0.0
+1470148099096164561,0.006,0.0,0.0,0.0,0.0,0.0
+1470148099168061821,0.006,0.0,0.0,0.0,0.0,0.0
+1470148099243994312,0.006,0.0,0.0,0.0,0.0,0.0
+1470148099325091295,0.006,0.0,0.0,0.0,0.0,0.0
+1470148099397288960,0.006,0.0,0.0,0.0,0.0,0.0
+1470148099469910613,0.006,0.0,0.0,0.0,0.0,0.0
+1470148099546492071,0.006,0.0,0.0,0.0,0.0,0.0
+1470148099620680412,0.006,0.0,0.0,0.0,0.0,0.0
+1470148099693692132,0.006,0.0,0.0,0.0,0.0,0.0
+1470148099766742417,0.006,0.0,0.0,0.0,0.0,0.0
+1470148099841363515,0.006,0.0,0.0,0.0,0.0,0.0
+1470148099913876483,0.0,0.0,0.0,0.0,0.0,0.00342743372216
+1470148099985485028,0.006,0.0,0.0,0.0,0.0,0.0
+1470148100055585584,0.006,0.0,0.0,0.0,0.0,0.0
+1470148100132470484,0.006,0.0,0.0,0.0,0.0,0.0
+1470148100211411211,0.006,0.0,0.0,0.0,0.0,0.0
+1470148100290410135,0.006,0.0,0.0,0.0,0.0,0.0
+1470148100375898362,0.006,0.0,0.0,0.0,0.0,0.0
+1470148100447837151,0.006,0.0,0.0,0.0,0.0,0.0
+1470148100520580793,0.006,0.0,0.0,0.0,0.0,0.0
+1470148100593149243,0.0,0.0,0.0,0.0,0.0,0.00293192681422
+1470148100668072750,0.006,0.0,0.0,0.0,0.0,0.0
+1470148100751826749,0.006,0.0,0.0,0.0,0.0,0.0
+1470148100824311541,0.006,0.0,0.0,0.0,0.0,0.0
+1470148100897483348,0.0,0.0,0.0,0.0,0.0,0.00291423434926
+1470148100969506522,0.006,0.0,0.0,0.0,0.0,0.0
+1470148101044683739,0.0,0.0,0.0,0.0,0.0,0.00528682823704
+1470148101119298817,0.006,0.0,0.0,0.0,0.0,0.0
+1470148101192448800,0.0,0.0,0.0,0.0,0.0,0.00281153161528
+1470148101267186804,0.006,0.0,0.0,0.0,0.0,0.0
+1470148101341274293,0.006,0.0,0.0,0.0,0.0,0.0
+1470148101414836725,0.006,0.0,0.0,0.0,0.0,0.0
+1470148101486707702,0.0,0.0,0.0,0.0,0.0,0.00608908481108
+1470148101563206495,0.0,0.0,0.0,0.0,0.0,0.00326095140607
+1470148101638504894,0.006,0.0,0.0,0.0,0.0,0.0
+1470148101712232809,0.006,0.0,0.0,0.0,0.0,0.0
+1470148101782959753,0.006,0.0,0.0,0.0,0.0,0.0
+1470148101857511023,0.006,0.0,0.0,0.0,0.0,0.0
+1470148101929369290,0.0,0.0,0.0,0.0,0.0,0.00461954659633
+1470148102002525896,0.006,0.0,0.0,0.0,0.0,0.0
+1470148102078172871,0.006,0.0,0.0,0.0,0.0,0.0
+1470148102152889069,0.006,0.0,0.0,0.0,0.0,0.0
+1470148102227726949,0.006,0.0,0.0,0.0,0.0,0.0
+1470148102302512780,0.006,0.0,0.0,0.0,0.0,0.0
+1470148102373212330,0.0,0.0,0.0,0.0,0.0,0.00279880145178
+1470148102449838016,0.006,0.0,0.0,0.0,0.0,0.0
+1470148102525489201,0.006,0.0,0.0,0.0,0.0,0.0
+1470148102599248614,0.006,0.0,0.0,0.0,0.0,0.0
+1470148102672728395,0.006,0.0,0.0,0.0,0.0,0.0
+1470148102750185802,0.0,0.0,0.0,0.0,0.0,0.00433453055724
+1470148102829398070,0.0,0.0,0.0,0.0,0.0,0.00284795225828
+1470148102901988764,0.006,0.0,0.0,0.0,0.0,0.0
+1470148102978536373,0.0,0.0,0.0,0.0,0.0,0.00373828671375
+1470148103055276082,0.006,0.0,0.0,0.0,0.0,0.0
+1470148103127592737,0.006,0.0,0.0,0.0,0.0,0.0
+1470148103200325136,0.0,0.0,0.0,0.0,0.0,0.00451738356185
+1470148103273341836,0.0,0.0,0.0,0.0,0.0,0.00332368925387
+1470148103350969894,0.006,0.0,0.0,0.0,0.0,0.0
+1470148103426478391,0.0,0.0,0.0,0.0,0.0,0.0037547215852
+1470148103498747919,0.0,0.0,0.0,0.0,0.0,0.00321380447831
+1470148103570155675,0.0,0.0,0.0,0.0,0.0,0.00380924862859
+1470148103650456363,0.0,0.0,0.0,0.0,0.0,0.00654838154549
+1470148103725169913,0.0,0.0,0.0,0.0,0.0,0.00364505546442
+1470148103798195924,0.0,0.000101993940107,0.0,0.0,0.0,0.0
+1470148103870365836,0.0,0.00035277442034,0.0,0.0,0.0,0.0
+1470148103943301824,0.0,0.000352345856116,0.0,0.0,0.0,0.0
+1470148104015570306,0.0,0.000397133073484,0.0,0.0,0.0,0.0
+1470148104099886326,0.0,0.000542706208687,0.0,0.0,0.0,0.003918540672
+1470148104172262141,0.0,0.000514419968547,0.0,0.0,0.0,0.00393062284414
+1470148104246411165,0.0,0.000504711980278,0.0,0.0,0.0,0.0
+1470148104315572567,0.0,0.000433048183813,0.0,0.0,0.0,0.00283367150042
+1470148104395381891,0.0,0.00034198469474,0.0,0.0,0.0,0.0
+1470148104469509457,0.0,0.000372873165625,0.0,0.0,0.0,0.0
+1470148104546102229,0.0,0.000446490818539,0.0,0.0,0.0,0.00628019051796
+1470148104616600505,0.0,0.000474386589895,0.0,0.0,0.0,0.0
+1470148104690527813,0.0,0.000381858941222,0.0,0.0,0.0,0.00404728242525
+1470148104766852700,0.0,0.000410071133149,0.0,0.0,0.0,0.00425502514004
+1470148104844842196,0.0,0.000404041660643,0.0,0.0,0.0,0.00432029061564
+1470148104928606151,0.0,0.000381473392005,0.0,0.0,0.0,0.0046357543309
+1470148105006745205,0.0,0.000371401714121,0.0,0.0,0.0,0.00504057513485
+1470148105080228069,0.0,0.000371565469262,0.0,0.0,0.0,0.00411899950184
+1470148105164943143,0.0,0.000386708053964,0.0,0.0,0.0,0.00432060883268
+1470148105241730563,0.0,0.000363031745667,0.0,0.0,0.0,0.00423957764179
+1470148105318259241,0.0,0.000370781540806,0.0,0.0,0.0,0.00415104016823
+1470148105396068030,0.0,0.000349132662476,0.0,0.0,0.0,0.0040153174038
+1470148105472716012,0.0,0.000300573373393,0.0,0.0,0.0,0.00301134438065
+1470148105550841142,0.0,0.00030493265268,0.0,0.0,0.0,0.0
+1470148105635585916,0.0,0.000263547594314,0.0,0.0,0.0,0.0
+1470148105709159365,0.0,0.0,0.0,0.0,0.0,0.00384500267257
+1470148105780817809,0.0,0.0,0.0,0.0,0.0,0.00331989062036
+1470148105851512654,0.0,0.0,0.0,0.0,0.0,0.00321686301408
+1470148105924674379,0.006,0.0,0.0,0.0,0.0,0.0
+1470148106008338967,0.006,0.0,0.0,0.0,0.0,0.0
+1470148106091331654,0.0,0.0,0.0,0.0,0.0,0.00285179012659
+1470148106164689954,0.0,0.0,0.0,0.0,0.0,0.00301821165928
+1470148106242190640,0.006,0.0,0.0,0.0,0.0,0.0
+1470148106321487467,0.006,0.0,0.0,0.0,0.0,0.0
+1470148106399048004,0.006,0.0,0.0,0.0,0.0,0.0
+1470148106474996770,0.006,0.0,0.0,0.0,0.0,0.0
+1470148106552862474,0.006,0.0,0.0,0.0,0.0,0.0
+1470148106629986492,0.006,0.0,0.0,0.0,0.0,0.0
+1470148106709776152,0.006,0.0,0.0,0.0,0.0,0.0
+1470148106786638894,0.006,0.0,0.0,0.0,0.0,0.0
+1470148106863392383,0.006,0.0,0.0,0.0,0.0,0.0
+1470148106939313559,0.006,0.0,0.0,0.0,0.0,0.0
+1470148107012212977,0.006,0.0,0.0,0.0,0.0,0.0
+1470148107087794423,0.006,0.0,0.0,0.0,0.0,0.0
+1470148107163165760,0.0,0.0,0.0,0.0,0.0,0.00339005033071
+1470148107239543719,0.006,0.0,0.0,0.0,0.0,0.0
+1470148107312443937,0.006,0.0,0.0,0.0,0.0,0.0
+1470148107386708195,0.006,0.0,0.0,0.0,0.0,0.0
+1470148107460851039,0.006,0.0,0.0,0.0,0.0,0.0
+1470148107533959769,0.0,0.0,0.0,0.0,0.0,0.00421960122736
+1470148107607194184,0.006,0.0,0.0,0.0,0.0,0.0
+1470148107679371668,0.006,0.0,0.0,0.0,0.0,0.0
+1470148107759707276,0.006,0.0,0.0,0.0,0.0,0.0
+1470148107833037393,0.0,0.0,0.0,0.0,0.0,0.00484516850642
+1470148107910203426,0.0,0.000251316445436,0.0,0.0,0.0,0.00425570424502
+1470148107986969464,0.0,0.000289002225261,0.0,0.0,0.0,0.0
+1470148108062537722,0.006,0.0,0.0,0.0,0.0,0.0
+1470148108140054651,0.006,0.0,0.0,0.0,0.0,0.0
+1470148108217788222,0.006,0.0,0.0,0.0,0.0,0.0
+1470148108297637994,0.0,0.0,0.0,0.0,0.0,0.00300382460437
+1470148108381445124,0.006,0.0,0.0,0.0,0.0,0.0
+1470148108455560021,0.0,0.0,0.0,0.0,0.0,0.00331803128082
+1470148108530369655,0.0,0.0,0.0,0.0,0.0,0.00465773147004
+1470148108603113596,0.0,0.000263917586263,0.0,0.0,0.0,0.0
+1470148108680084166,0.0,0.000274289623046,0.0,0.0,0.0,0.0
+1470148108753016109,0.0,0.000270088939901,0.0,0.0,0.0,0.00284997412511