WEEK11 Input devices
WEEK11 Input devices
Group Assignment
probe an input device’s analog levels and digital signals
Individual Assignment
measure something: add a sensor to a microcontroller board that you have designed and read it
For this assignment, I would like to delve deeper into the use of the accelerometer sensor in the Final Project. In the Final Project, the goal is to attach an accelerometer sensor to a racket and display the swing speed and the number of practice swings on a connected smartphone via Bluetooth.
First, I will consider how to derive the speed from the accelerometer data (X, Y, Z acceleration) and gyro data (GX, GY, GZ). Next, I will think about how to detect the start and end points of a swing.
I will use the board I made in Session 8.
Creating sample data
First, I execute the sample code in the Arduino IDE to display the accelerometer and gyro data from the MPU6050 on the Serial Monitor.
Then, I will copy the data displayed on the Serial Monitor to create a sample data set.
The board was not recognized properly from the Arduino IDE, and the i2c_scanner program used in Assignment 8 helped solve the problem. The cause was a simple mistake of using the wrong board.
// MPU-6050 Short Example Sketch
// By Arduino User JohnChi
// August 17, 2014
// Public Domain
#include<Wire.h>
const int MPU_addr=0x68; // I2C address of the MPU-6050
int16_t AcX,AcY,AcZ,Tmp,GyX,GyY,GyZ;
void setup(){
Wire.begin();
Wire.beginTransmission(MPU_addr);
Wire.write(0x6B); // PWR_MGMT_1 register
Wire.write(0); // set to zero (wakes up the MPU-6050)
Wire.endTransmission(true);
Serial.begin(9600);
}
void loop(){
Wire.beginTransmission(MPU_addr);
Wire.write(0x3B); // starting with register 0x3B (ACCEL_XOUT_H)
Wire.endTransmission(false);
Wire.requestFrom(MPU_addr,14,true); // request a total of 14 registers
AcX=Wire.read()<<8|Wire.read(); // 0x3B (ACCEL_XOUT_H) & 0x3C (ACCEL_XOUT_L)
AcY=Wire.read()<<8|Wire.read(); // 0x3D (ACCEL_YOUT_H) & 0x3E (ACCEL_YOUT_L)
AcZ=Wire.read()<<8|Wire.read(); // 0x3F (ACCEL_ZOUT_H) & 0x40 (ACCEL_ZOUT_L)
Tmp=Wire.read()<<8|Wire.read(); // 0x41 (TEMP_OUT_H) & 0x42 (TEMP_OUT_L)
GyX=Wire.read()<<8|Wire.read(); // 0x43 (GYRO_XOUT_H) & 0x44 (GYRO_XOUT_L)
GyY=Wire.read()<<8|Wire.read(); // 0x45 (GYRO_YOUT_H) & 0x46 (GYRO_YOUT_L)
GyZ=Wire.read()<<8|Wire.read(); // 0x47 (GYRO_ZOUT_H) & 0x48 (GYRO_ZOUT_L)
Serial.print("AcX = "); Serial.print(AcX);
Serial.print(" , AcY = "); Serial.print(AcY);
Serial.print(" , AcZ = "); Serial.print(AcZ);
//Serial.print(" , Tmp = "); Serial.print(Tmp/340.00+36.53); //equation for temperature in degrees C from datasheet
Serial.print(" , Gx = "); Serial.print(GyX);
Serial.print(" , Gy = "); Serial.print(GyY);
Serial.print(" , Gz = "); Serial.println(GyZ);
delay(333);
}
Sample data
AcX = -1340, AcY = 16344, AcZ = -2480, Gx = -4480, Gy = 5981, Gz = 337
AcX = -1360, AcY = 16320, AcZ = -2564, Gx = -4480, Gy = 5977, Gz = 384
AcX = -1468, AcY = 16364, AcZ = -2372, Gx = -4448, Gy = 5974, Gz = 372
AcX = -1392, AcY = 16400, AcZ = -2460, Gx = -4448, Gy = 5985, Gz = 358
AcX = -1528, AcY = 16444, AcZ = -2468, Gx = -4432, Gy = 5973, Gz = 366
AcX = -1624, AcY = 16184, AcZ = -2280, Gx = -4400, Gy = 5837, Gz = 680
AcX = -1456, AcY = 16504, AcZ = -2772, Gx = -4416, Gy = 6145, Gz = 314
AcX = -1428, AcY = 16300, AcZ = -2388, Gx = -4400, Gy = 5972, Gz = 327
AcX = 840, AcY = 14964, AcZ = -4496, Gx = -4400, Gy = -396, Gz = 4395
AcX = 3860, AcY = 13236, AcZ = -5996, Gx = -4384, Gy = 5496, Gz = -35
AcX = -11640, AcY = -20580, AcZ = -16856, Gx = -4384, Gy = -32768, Gz = 18097
AcX = 2508, AcY = -2776, AcZ = -14324, Gx = -4368, Gy = 8152, Gz = -21
AcX = 1528, AcY = -1016, AcZ = -15804, Gx = -4336, Gy = 19600, Gz = 5028
AcX = -2628, AcY = -20, AcZ = -15544, Gx = -4336, Gy = -2376, Gz = -14080
AcX = -13568, AcY = 5092, AcZ = -5032, Gx = -4336, Gy = 5002, Gz = 1136
AcX = -13760, AcY = 8172, AcZ = -3764, Gx = -4352, Gy = 6979, Gz = 217
AcX = -12484, AcY = 8592, AcZ = -4688, Gx = -4304, Gy = 6213, Gz = 507
AcX = -12988, AcY = 8584, AcZ = -2780, Gx = -4336, Gy = 6077, Gz = -387
AcX = -13196, AcY = 8776, AcZ = -2772, Gx = -4288, Gy = 5948, Gz = 299
AcX = -12796, AcY = 9148, AcZ = -2796, Gx = -4304, Gy = 6088, Gz = 429
AcX = -32768, AcY = 32767, AcZ = -32768, Gx = -4272, Gy = 32767, Gz = -32768
AcX = 7804, AcY = -5236, AcZ = -14148, Gx = -4304, Gy = 834, Gz = -359
AcX = 5348, AcY = -5744, AcZ = -24352, Gx = -4288, Gy = 6183, Gz = 14962
AcX = -11584, AcY = 6648, AcZ = 2876, Gx = -4272, Gy = 4733, Gz = -7217
AcX = -13332, AcY = 8624, AcZ = 1364, Gx = -4272, Gy = 6619, Gz = 1104
AcX = -13196, AcY = 9528, AcZ = -5024, Gx = -4256, Gy = 3142, Gz = -362
AcX = -11168, AcY = 11260, AcZ = 2920, Gx = -4272, Gy = 4108, Gz = 373
Execution Results:
A Python code that derives speed from sample data generated by ChatGPT
ChatGPT Prompt
Please write a Python code that calculates the speed in kilometers per hour from the data obtained from MPU-6050 (acceleration X, Y, Z & gyro Gx, Gy, Gz). The speed should be displayed as a single value by integrating all the data. Please use a Kalman filter.
Code
import numpy as np
def read_sensor_data(file_path):
sensor_data = []
with open(file_path, 'r') as file:
for line in file:
line = line.strip().replace(" ", "")
parts = line.split(",")
values = {
'ax': int(parts[0].split("=")[1]),
'ay': int(parts[1].split("=")[1]),
'az': int(parts[2].split("=")[1]),
'gx': int(parts[3].split("=")[1]),
'gy': int(parts[4].split("=")[1]),
'gz': int(parts[5].split("=")[1])
}
sensor_data.append(values)
return sensor_data
def kalman_filter(sensor_data, dt, accel_scale, gyro_scale, g):
# Calculate velocity and orientation from accelerometer and gyroscope data
velocity = np.array([0.0, 0.0, 0.0]) # Initial velocity
orientation = np.array([0.0, 0.0, 0.0]) # Orientation (roll, pitch, yaw)
covariance = np.eye(6) # Covariance matrix for estimating errors in velocity and orientation
process_noise = np.diag([0.1, 0.1, 0.1, 0.01, 0.01, 0.01]) # Process noise
measurement_noise = np.diag([20.0, 20.0, 20.0, 0.1, 0.1, 0.1]) # Measurement noise
I = np.eye(6) # Identity matrix
for data in sensor_data:
ax, ay, az = data['ax'] / accel_scale * g, data['ay'] / accel_scale * g, data['az'] / accel_scale * g
gx, gy, gz = data['gx'] / gyro_scale, data['gy'] / gyro_scale, data['gz'] / gyro_scale
# Update orientation based on gyroscope data
orientation += np.array([gx, gy, gz]) * dt
# Update state estimates
state = np.hstack((velocity, orientation))
state[0:3] += np.array([ax, ay, az]) * dt # Update velocity
# Prediction step of the Kalman filter
covariance = covariance + process_noise
# Update step
kalman_gain = covariance @ np.linalg.inv(covariance + measurement_noise)
state += kalman_gain @ (np.hstack([ax, ay, az, gx, gy, gz]) - state)
covariance = (I - kalman_gain) @ covariance
velocity = state[0:3] # Updated velocity
orientation = state[3:6] # Updated orientation
return velocity
def convert_velocity_to_kmph(velocity):
speed_ms = np.linalg.norm(velocity) # Velocity in m/s
speed_kmph = speed_ms * 3.6 # Convert m/s to km/h
return speed_kmph
def main():
file_path = "C:/Users/budob/Downloads/mpu6050.txt"
sensor_data = read_sensor_data(file_path)
accel_scale = 16384.0 # Accelerometer scale factor
gyro_scale = 131.0 # Gyroscope scale factor
g = 9.81 # Acceleration due to gravity in m/s^2
dt = 0.1 # Sampling interval in seconds
velocity = kalman_filter(sensor_data, dt, accel_scale, gyro_scale, g)
speed_kmph = convert_velocity_to_kmph(velocity)
print(f"Estimated speed: {speed_kmph:.2f} km/h")
if __name__ == "__main__":
main()
Execution Results
How to detect the start and end points of a swing
To measure accurate hourly speed and the number of practice swings, it is necessary to determine the starting and ending points of the swing from the data.
The following code is particularly organized to read the sensor data from a file, analyze the data to detect movements based on the acceleration changes, and then print out where these movements start and stop.
ChatGPT Prompt
Please write a Python code that attaches an MPU6050 accelerometer to a badminton racket to determine the starting and ending points of a swing. The data should be read from the uploaded file and the code should also use gyroscope data.
Code
import re
def read_sensor_data(file_path):
# Read data from the file line by line into a list
with open(file_path, 'r') as file:
lines = file.readlines()
return lines
def detect_swings(lines, accel_threshold=5000, gyro_threshold=2000):
previous_acx, previous_gz = None, None
swings = []
swing_active = False
start_line = None
for i, line in enumerate(lines):
# Use regular expression to extract the values of AcX and Gz
match = re.search(r"AcX = ([-\d]+),.*Gz = ([-\d]+)", line)
if match:
acx, gz = int(match.group(1)), int(match.group(2))
# Detect the start of a swing
if not swing_active and (abs(acx - (previous_acx if previous_acx is not None else 0)) > accel_threshold or
abs(gz - (previous_gz if previous_gz is not None else 0)) > gyro_threshold):
swing_active = True
start_line = i + 1 # Line numbers start from 1
# Detect the end of a swing
elif swing_active and abs(acx - previous_acx) <= accel_threshold and abs(gz - previous_gz) <= gyro_threshold:
swings.append((start_line, i))
swing_active = False
previous_acx, previous_gz = acx, gz
# Handle the last swing if it did not end within the data
if swing_active:
swings.append((start_line, len(lines)))
return swings
def main():
file_path = "C:\\Users\\budob\\Downloads\\mpu6050.txt"
lines = read_sensor_data(file_path)
swings = detect_swings(lines)
for swing in swings:
# Print the start and end line numbers of each detected swing
print(f"Swing started at line {swing[0]} and ended at line {swing[1]}")
if __name__ == "__main__":
main()
Execution Results
Going forward, it will be necessary to repeatedly test and adjust the threshold to improve the accuracy of the detection.
Afterward
As I progressed with the Final Project, I realized that the above method was not very practical. Therefore, I decided to proceed with development using ML (TensorFlow Lite). By adjusting the threshold of the accelerometer during the acquisition of training data, it is possible to obtain more accurate data.
Preparation for Machine Learning Using TensorFlow
Obtain acceleration and gyroscopic data from a sensor device attached to the racket. Perform about 10 swings for each shot and save the obtained dataset to a CSV file.
Initially, I received the dataset via BLE, but since it took over 40 seconds to receive data for a single swing, I switched to data acquisition via USB. To obtain swing data, a sufficiently long cable was required, so I connected the sensor to the PC with a 5m USB cable, but the sensor could not be recognized. Maybe the cable is too long.
Ultimately, I resolved the issue by connecting a shorter USB cable (1.5m) to a smartphone, as shown in the photo.
I used the following code to obtain the data.
Arduino IDE -> File -> Examples -> Seeed_Arduino_LSM6DS3 ->IMUCapture.ino
#include <LSM6DS3.h>
#include <Wire.h>
//Create a instance of class LSM6DS3
LSM6DS3 myIMU(I2C_MODE, 0x6A); //I2C device address 0x6A
float aX, aY, aZ, gX, gY, gZ;
const float accelerationThreshold = 5.5; // threshold of significant in G's
const int numSamples = 119;
int samplesRead = numSamples;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
while (!Serial);
//Call .begin() to configure the IMUs
if (myIMU.begin() != 0) {
Serial.println("Device error");
} else {
Serial.println("aX,aY,aZ,gX,gY,gZ");
}
}
void loop() {
// wait for significant motion
while (samplesRead == numSamples) {
// read the acceleration data
aX = myIMU.readFloatAccelX();
aY = myIMU.readFloatAccelY();
aZ = myIMU.readFloatAccelZ();
// sum up the absolutes
float aSum = fabs(aX) + fabs(aY) + fabs(aZ);
// check if it's above the threshold
if (aSum >= accelerationThreshold) {
// reset the sample read count
samplesRead = 0;
break;
}
}
// check if the all the required samples have been read since
// the last time the significant motion was detected
while (samplesRead < numSamples) {
// check if both new acceleration and gyroscope data is
// available
// read the acceleration and gyroscope data
samplesRead++;
// print the data in CSV format
Serial.print(myIMU.readFloatAccelX(), 3);
Serial.print(',');
Serial.print(myIMU.readFloatAccelY(), 3);
Serial.print(',');
Serial.print(myIMU.readFloatAccelZ(), 3);
Serial.print(',');
Serial.print(myIMU.readFloatGyroX(), 3);
Serial.print(',');
Serial.print(myIMU.readFloatGyroY(), 3);
Serial.print(',');
Serial.print(myIMU.readFloatGyroZ(), 3);
Serial.println();
if (samplesRead == numSamples) {
// add an empty line if it's the last sample
Serial.println();
}
}
}
10 reps dataset obtained from the sensor
13:22:45 Connected to CDC device
13:22:45 aX,aY,aZ,gX,gY,gZ
13:22:55 -4.046,0.098,-1.801,337.120,458.780,170.940
13:22:55 -4.887,0.125,-2.002,387.870,497.560,142.030
13:22:55 -5.703,0.166,-2.113,443.380,547.610,108.850
13:22:55 -6.665,0.232,-2.162,473.130,600.110,79.170
13:22:55 -7.700,0.327,-2.164,469.700,639.310,36.960
13:22:55 -8.966,0.593,-2.209,451.990,692.650,8.820
13:22:55 -10.118,1.213,-2.086,387.870,730.730,-10.850
13:22:55 -11.878,1.642,-1.399,306.810,772.730,-8.680
13:22:55 -13.372,1.641,-0.381,173.180,792.050,14.280
13:22:55 -14.671,0.580,1.996,152.110,793.730,35.630
13:22:55 -14.989,-3.426,6.087,286.650,734.510,0.350
13:22:55 -13.537,-12.760,13.999,386.750,501.830,-343.700
13:22:55 -13.221,-15.989,15.989,592.620,-166.250,-1067.290
13:22:55 -15.989,-15.989,15.989,561.050,-927.710,-1499.820
13:22:55 -15.989,-10.808,15.989,685.160,-1817.690,-1620.500
13:22:55 -15.989,-5.484,15.989,1012.200,-2293.480,-1295.770
13:22:55 -15.989,8.638,15.989,1859.760,-2293.480,329.910
13:22:55 -15.989,6.026,15.028,1332.100,-2293.480,1521.730
13:22:55 -15.989,-15.989,-6.754,1129.450,-1791.510,1292.970
13:22:55 -15.989,-15.989,-15.978,172.340,-984.130,663.250
13:22:55 -15.989,-15.989,-15.978,-351.890,-297.850,206.780
13:22:55 -5.212,-14.577,-15.978,40.460,200.340,-137.550
13:22:55 -2.355,-3.890,-9.173,10.360,519.820,-238.770
13:22:55 -6.211,3.840,-0.295,-83.790,610.470,-18.060
13:22:55 -5.547,4.524,6.456,-120.120,438.970,140.350
13:22:55 -3.000,0.917,9.175,-132.510,200.130,188.790
13:22:55 -1.381,-0.838,8.011,-73.640,-69.440,173.950
13:22:55 -1.378,-2.054,3.609,67.480,-221.830,135.870
13:22:55 -1.594,-2.390,0.377,142.450,-230.090,101.780
13:22:55 -1.392,-2.441,-1.893,149.030,-185.780,66.710
13:22:55 -1.059,-2.132,-3.161,69.090,-89.390,20.370
13:22:55 -0.873,-1.450,-3.131,7.210,-8.960,2.310
13:22:55 -0.962,-0.659,-2.285,-56.700,55.160,9.940
13:22:55 -1.074,-0.383,-1.607,-77.700,85.680,22.470
13:22:55 -1.112,-0.739,-0.998,-52.500,94.150,23.100
13:22:55 -0.953,-1.220,-0.644,-18.270,92.960,8.260
13:22:55 -0.807,-1.261,-0.360,-1.400,87.710,-4.970
13:22:55 -0.734,-1.147,-0.155,7.350,82.110,-17.500
13:22:55 -0.682,-0.946,0.038,14.490,71.750,-25.690
13:22:55 -0.695,-0.589,0.074,11.830,57.050,-27.020
13:22:55 -0.749,-0.363,-0.080,1.260,44.100,-20.510
13:22:55 -0.750,-0.366,-0.264,-4.130,36.540,-15.820
13:22:55 -0.698,-0.462,-0.412,0.350,33.040,-13.650
13:22:55 -0.549,-0.529,-0.430,4.200,30.240,-14.350
13:22:55 -0.452,-0.502,-0.464,0.490,29.050,-14.630
13:22:55 -0.479,-0.363,-0.502,-9.240,28.210,-8.610
13:22:55 -0.561,-0.234,-0.596,-19.950,26.880,0.210
13:22:55 -0.616,-0.306,-0.698,-22.750,27.090,9.520
13:22:55 -0.574,-0.531,-0.692,-17.920,27.160,6.650
13:22:55 -0.459,-0.749,-0.659,-20.720,26.810,2.380
13:22:56 -0.473,-0.732,-0.668,-22.680,26.460,-1.400
13:22:56 -0.524,-0.703,-0.670,-17.080,26.110,-4.130
13:22:56 -0.504,-0.686,-0.632,-11.130,25.130,-5.600
13:22:56 -0.488,-0.624,-0.567,-6.020,22.890,-6.160
13:22:56 -0.479,-0.583,-0.525,0.700,20.090,-5.250
13:22:56 -0.462,-0.585,-0.482,9.520,16.800,-5.600
13:22:56 -0.453,-0.561,-0.455,10.640,13.090,-5.460
13:22:56 -0.446,-0.562,-0.477,2.800,10.290,-5.320
13:22:56 -0.467,-0.549,-0.491,-7.350,7.210,-4.620
13:22:56 -0.497,-0.547,-0.501,-13.860,4.410,-2.450
13:22:56 -0.492,-0.603,-0.503,-9.940,-0.910,-1.610
13:22:56 -0.472,-0.655,-0.554,-1.540,-5.040,-1.540
13:22:56 -0.463,-0.741,-0.653,6.300,-7.700,-3.850
13:22:56 -0.376,-0.778,-0.693,15.330,-8.190,-8.820
13:22:56 -0.340,-0.738,-0.658,18.410,-9.100,-13.650
13:22:56 -0.332,-0.562,-0.643,8.680,-10.360,-13.860
13:22:56 -0.402,-0.409,-0.697,-2.310,-10.640,-9.730
13:22:56 -0.462,-0.393,-0.734,-7.420,-10.150,-5.250
13:22:56 -0.438,-0.444,-0.769,-7.560,-9.520,-2.030
13:22:56 -0.419,-0.595,-0.741,3.570,-8.120,-2.520
13:22:56 -0.335,-0.646,-0.679,5.880,-8.750,-4.900
13:22:56 -0.332,-0.609,-0.700,4.270,-9.170,-5.460
13:22:56 -0.398,-0.538,-0.827,5.950,-7.000,-3.430
13:22:56 -0.402,-0.564,-0.862,8.330,-2.240,-2.800
13:22:56 -0.386,-0.594,-0.837,6.860,1.190,-3.430
13:22:56 -0.363,-0.615,-0.794,2.590,4.620,-4.900
13:22:56 -0.364,-0.579,-0.719,1.260,5.810,-4.970
13:22:56 -0.374,-0.536,-0.663,1.680,5.460,-4.060
13:22:56 -0.388,-0.510,-0.630,-2.170,4.550,-2.660
13:22:56 -0.399,-0.529,-0.632,-3.010,3.780,-1.470
13:22:56 -0.414,-0.554,-0.644,-4.480,2.800,0.280
13:22:56 -0.420,-0.642,-0.662,0.700,2.240,-0.280
13:22:56 -0.386,-0.723,-0.641,0.770,1.680,-5.180
13:22:56 -0.360,-0.693,-0.612,-2.100,0.910,-9.030
13:22:56 -0.370,-0.578,-0.633,-8.960,-0.700,-8.680
13:22:56 -0.417,-0.512,-0.689,-5.810,-0.770,-6.160
13:22:56 -0.428,-0.524,-0.738,-10.850,-0.630,-4.970
13:22:56 -0.430,-0.577,-0.794,-9.940,1.400,-4.620
13:22:56 -0.407,-0.632,-0.818,-7.770,4.200,-5.530
13:22:56 -0.389,-0.656,-0.769,-4.200,6.090,-7.910
13:22:56 -0.376,-0.586,-0.740,-8.750,6.790,-7.980
13:22:56 -0.427,-0.529,-0.781,-11.620,7.980,-6.370
13:22:56 -0.438,-0.565,-0.780,-8.260,9.100,-6.090
13:22:56 -0.403,-0.592,-0.787,-9.030,9.940,-6.930
13:22:56 -0.373,-0.625,-0.788,-1.680,11.760,-8.120
13:22:56 -0.327,-0.578,-0.779,0.840,13.510,-8.540
13:22:56 -0.347,-0.516,-0.791,-4.690,17.500,-7.280
13:22:56 -0.376,-0.459,-0.759,-15.190,21.070,-3.710
13:22:56 -0.394,-0.515,-0.715,-14.770,21.980,-2.450
13:22:56 -0.374,-0.574,-0.705,-16.940,21.980,-2.240
13:22:56 -0.368,-0.648,-0.708,-15.190,22.190,-4.480
13:22:56 -0.354,-0.650,-0.676,-8.890,20.650,-6.440
13:22:56 -0.355,-0.634,-0.655,-1.470,17.920,-7.910
13:22:56 -0.340,-0.597,-0.669,0.350,15.960,-8.400
13:22:56 -0.349,-0.550,-0.726,-2.450,16.170,-7.350
13:22:56 -0.377,-0.532,-0.772,-7.490,17.290,-5.670
13:22:56 -0.376,-0.574,-0.728,-8.260,18.690,-5.320
13:22:56 -0.350,-0.631,-0.638,-8.610,17.360,-6.090
13:22:56 -0.326,-0.668,-0.583,-7.000,12.740,-9.030
13:22:56 -0.308,-0.680,-0.596,-3.710,9.170,-10.990
13:22:56 -0.305,-0.658,-0.633,-4.410,5.600,-12.950
13:22:56 -0.314,-0.605,-0.676,-0.630,2.870,-13.300
13:22:56 -0.301,-0.553,-0.693,3.150,0.560,-12.600
13:22:56 -0.281,-0.523,-0.677,0.280,-1.890,-11.900
13:22:56 -0.274,-0.505,-0.695,-2.520,-3.290,-10.570
13:22:56 -0.285,-0.500,-0.733,-4.200,-4.340,-9.380
13:22:56 -0.291,-0.515,-0.762,-0.840,-4.270,-8.120
13:22:56 -0.273,-0.517,-0.741,2.170,-4.970,-6.440
13:22:56 -0.260,-0.515,-0.762,1.540,-5.040,-4.690
13:22:56
13:23:01 -4.084,-0.505,-1.071,428.330,404.040,277.480
13:23:01 -4.430,-0.437,-1.266,465.570,443.170,234.360
13:23:01 -4.884,-0.178,-1.432,486.290,483.910,183.470
13:23:01 -5.456,0.172,-1.581,507.500,516.740,157.080
13:23:01 -6.233,0.470,-1.742,516.180,560.490,113.330
13:23:01 -6.973,0.949,-1.925,534.590,606.900,82.460
13:23:01 -8.212,1.704,-2.126,523.810,642.460,47.530
13:23:01 -9.562,2.432,-2.275,510.020,691.040,34.090
13:23:01 -11.797,3.608,-2.015,442.820,733.740,44.520
13:23:01 -14.437,4.603,-0.657,427.560,769.370,123.760
13:23:01 -15.989,0.916,3.293,775.950,739.200,68.740
13:23:01 -15.989,-5.979,8.554,726.950,584.920,-132.300
13:23:01 -13.899,-15.989,15.989,464.730,183.750,-712.460
13:23:01 -15.989,-15.989,15.989,746.270,-310.450,-1439.900
13:23:01 -15.989,-15.989,15.989,794.640,-1041.600,-1724.030
13:23:01 -15.989,-9.743,15.989,736.470,-1885.100,-1747.970
13:23:01 -15.989,-5.797,15.989,951.580,-2293.480,-1651.790
13:23:01 -15.989,4.070,15.989,1502.480,-2293.480,-604.380
13:23:01 -15.989,15.978,15.989,1862.420,-2293.480,1326.010
13:23:01 -15.989,-12.936,14.764,1435.280,-2293.480,1865.080
13:23:01 -15.989,-15.989,-5.596,806.050,-1493.450,1605.870
13:23:01 -15.989,-15.989,-15.978,187.810,-754.530,816.970
13:23:01 -15.989,-15.989,-15.978,-262.010,-165.760,158.480
13:23:01 -4.341,-15.989,-15.978,-237.580,419.020,-413.420
13:23:01 -7.450,-14.650,-15.978,-174.160,778.050,-550.270
13:23:01 -11.361,-1.411,-7.009,-193.060,939.540,-507.990
13:23:01 -13.683,3.480,2.806,-198.870,921.620,-376.740
13:23:01 -11.348,6.383,11.732,-59.010,717.500,-219.870
13:23:01 -7.312,7.566,14.702,285.950,480.340,-109.830
13:23:01 -2.444,7.318,15.989,126.630,195.930,21.630
13:23:01 -1.098,5.160,15.165,34.510,-76.160,121.590
13:23:01 -1.299,1.847,11.211,68.950,-316.400,184.380
13:23:01 -2.430,0.213,5.956,95.060,-436.030,203.840
13:23:01 -3.032,-1.408,1.869,108.850,-467.180,192.360
13:23:01 -2.913,-2.272,-1.846,101.920,-445.900,165.480
13:23:01 -2.418,-2.617,-4.580,102.830,-357.350,140.910
13:23:01 -1.827,-2.736,-6.279,78.610,-259.280,107.240
13:23:01 -1.214,-2.711,-6.929,34.930,-129.360,74.340
13:23:01 -0.739,-2.088,-6.072,-5.110,-18.200,53.760
13:23:01 -0.977,-1.652,-4.715,-19.740,64.330,44.100
13:23:01 -1.004,-1.736,-3.100,-21.980,113.400,34.510
13:23:01 -0.942,-1.774,-1.923,-23.450,128.870,19.530
13:23:01 -0.772,-2.097,-0.879,-45.640,132.230,-11.620
13:23:01 -0.621,-2.014,0.120,-39.200,118.230,-33.040
13:23:01 -0.619,-1.392,0.537,-8.260,97.300,-49.210
13:23:01 -0.632,-0.879,0.708,11.760,79.800,-48.160
13:23:01 -0.600,-0.366,0.716,13.930,59.360,-39.620
13:23:01 -0.594,-0.165,0.693,13.930,45.640,-27.510
13:23:01 -0.558,-0.139,0.758,7.140,31.290,-13.370
13:23:01 -0.487,-0.217,0.789,0.700,15.540,-4.130
13:23:01 -0.463,-0.366,0.732,-2.240,-4.690,4.060
13:23:01 -0.414,-0.447,0.668,10.150,-20.790,7.630
13:23:01 -0.425,-0.421,0.462,15.680,-31.150,14.420
13:23:01 -0.481,-0.422,0.243,26.250,-40.740,21.280
13:23:01 -0.497,-0.470,-0.129,36.680,-44.310,26.950
13:23:01 -0.497,-0.598,-0.380,34.510,-41.230,30.590
13:23:01 -0.493,-0.754,-0.528,22.890,-35.420,29.540
13:23:01 -0.445,-0.852,-0.561,1.750,-28.840,25.690
13:23:01 -0.473,-0.892,-0.584,-15.750,-23.030,23.450
13:23:01 -0.522,-0.976,-0.596,-19.460,-18.830,19.530
13:23:01 -0.517,-1.056,-0.569,-16.520,-15.820,14.910
13:23:01 -0.475,-1.098,-0.583,-8.540,-13.370,8.680
13:23:01 -0.471,-1.085,-0.593,1.680,-10.290,3.990
13:23:01 -0.495,-0.988,-0.568,-1.260,-6.510,0.000
13:23:01 -0.474,-0.908,-0.526,-3.010,-2.380,-2.730
13:23:01 -0.467,-0.830,-0.375,-14.770,-1.260,-3.150
13:23:01 -0.447,-0.721,-0.264,-24.080,-2.590,-1.400
13:23:01 -0.479,-0.684,-0.187,-21.420,-5.740,1.330
13:23:01 -0.476,-0.632,-0.210,-11.900,-10.430,5.950
13:23:01 -0.513,-0.588,-0.290,-5.600,-12.320,12.320
13:23:01 -0.532,-0.630,-0.292,8.960,-13.370,15.680
13:23:02 -0.488,-0.660,-0.238,10.290,-15.610,18.340
13:23:02 -0.444,-0.695,-0.262,7.490,-17.710,21.350
13:23:02 -0.469,-0.797,-0.288,11.480,-19.740,20.860
13:23:02 -0.474,-0.826,-0.323,7.280,-21.490,20.160
13:23:02 -0.447,-0.905,-0.396,5.180,-21.980,18.340
13:23:02 -0.443,-0.921,-0.467,6.580,-21.070,16.940
13:23:02 -0.464,-0.897,-0.528,7.000,-18.900,17.570
13:23:02 -0.515,-0.954,-0.561,9.590,-15.470,16.310
13:23:02 -0.506,-1.021,-0.544,10.010,-12.670,14.070
13:23:02 -0.470,-1.114,-0.547,9.030,-10.500,8.400
13:23:02 -0.441,-1.143,-0.535,7.630,-8.120,1.960
13:23:02 -0.437,-1.094,-0.542,4.620,-5.740,-2.240
13:23:02 -0.450,-1.020,-0.502,1.960,-2.870,-5.880
13:23:02 -0.438,-0.926,-0.363,-3.710,-2.590,-7.980
13:23:02 -0.434,-0.852,-0.261,-11.270,-4.340,-8.890
13:23:02 -0.447,-0.764,-0.185,-13.090,-7.280,-7.840
13:23:02 -0.456,-0.709,-0.217,-11.060,-11.060,-4.550
13:23:02 -0.476,-0.737,-0.303,-5.040,-12.600,-3.150
13:23:02 -0.451,-0.764,-0.387,-3.430,-12.600,-2.450
13:23:02 -0.439,-0.786,-0.455,-1.330,-11.690,-2.590
13:23:02 -0.412,-0.782,-0.513,0.630,-9.870,-2.590
13:23:02 -0.401,-0.747,-0.551,3.080,-7.280,-2.310
13:23:02 -0.407,-0.708,-0.561,3.920,-4.410,-1.610
13:23:02 -0.416,-0.648,-0.546,4.340,-1.890,1.260
13:23:02 -0.442,-0.610,-0.550,2.800,0.840,5.180
13:23:02 -0.462,-0.637,-0.546,1.820,4.620,7.630
13:23:02 -0.483,-0.700,-0.512,-0.210,7.070,10.290
13:23:02 -0.477,-0.772,-0.444,0.420,9.030,10.500
13:23:02 -0.467,-0.852,-0.331,-0.280,9.240,9.240
13:23:02 -0.446,-0.894,-0.251,-0.770,6.720,7.280
13:23:02 -0.453,-0.903,-0.206,0.280,4.060,4.900
13:23:02 -0.480,-0.883,-0.183,2.030,0.980,3.500
13:23:02 -0.490,-0.822,-0.192,3.430,-3.010,3.360
13:23:02 -0.506,-0.781,-0.236,2.870,-6.370,4.690
13:23:02 -0.526,-0.784,-0.341,2.030,-7.420,6.580
13:23:02 -0.529,-0.845,-0.413,5.390,-7.070,6.090
13:23:02 -0.518,-0.932,-0.467,5.600,-5.880,4.060
13:23:02 -0.483,-0.986,-0.469,4.340,-4.620,0.000
13:23:02 -0.450,-0.983,-0.456,4.200,-3.990,-3.780
13:23:02 -0.460,-0.912,-0.460,3.080,-3.220,-5.180
13:23:02 -0.495,-0.816,-0.471,2.660,-2.520,-5.320
13:23:02 -0.517,-0.763,-0.483,2.870,-1.470,-4.060
13:23:02 -0.522,-0.747,-0.497,1.680,0.490,-2.520
13:23:02 -0.486,-0.761,-0.462,1.260,1.890,-1.960
13:23:02 -0.457,-0.762,-0.445,0.280,2.310,-1.120
13:23:02 -0.449,-0.774,-0.463,-0.140,4.270,-0.840
13:23:02 -0.443,-0.776,-0.455,-1.540,5.670,-0.770
13:23:02 -0.439,-0.764,-0.433,-3.220,6.510,-0.210
13:23:02
13:23:09 -3.565,1.075,-1.050,345.100,405.510,251.510
13:23:09 -4.331,1.126,-1.174,364.210,438.270,245.280
13:23:09 -4.870,1.229,-1.266,381.710,472.290,237.790
13:23:09 -5.479,1.223,-1.376,416.010,508.550,223.300
13:23:09 -6.187,1.120,-1.564,474.880,549.850,197.050
13:23:09 -6.758,1.077,-1.702,501.690,592.970,169.470
13:23:09 -7.622,1.101,-1.860,536.130,627.200,124.460
13:23:09 -8.448,1.222,-1.975,582.890,673.960,66.430
13:23:09 -9.607,1.581,-2.019,622.300,717.500,24.780
13:23:09 -11.116,1.994,-2.200,650.860,750.260,-34.020
13:23:09 -13.158,2.854,-2.311,636.860,800.170,-88.550
13:23:09 -15.648,4.741,-2.052,542.010,835.240,-97.440
13:23:09 -15.989,5.445,-0.828,440.510,847.210,-63.350
13:23:09 -15.989,-2.525,6.083,1000.090,705.600,-381.710
13:23:09 -15.989,-15.405,15.989,777.840,183.330,-824.950
13:23:09 -15.989,-15.989,15.989,697.690,-466.900,-1314.040
13:23:09 -15.989,-15.970,15.989,879.760,-1232.910,-1461.530
13:23:09 -15.989,-12.480,15.989,824.110,-1940.610,-1551.130
13:23:09 -15.989,-9.014,15.989,755.930,-2293.480,-1532.090
13:23:09 -15.989,-3.801,15.989,949.900,-2293.480,-1272.110
13:23:09 -15.989,4.961,15.989,1652.000,-2293.480,-490.770
13:23:09 -15.989,15.012,15.989,1767.290,-2293.480,1250.760
13:23:09 -15.989,-8.113,15.663,1659.420,-2293.480,1974.210
13:23:09 -15.989,-15.989,12.382,1186.010,-1994.300,1972.740
13:23:09 -15.989,-15.989,-15.978,752.220,-1094.380,1322.510
13:23:09 -15.989,-15.989,-15.978,-308.420,-366.240,659.960
13:23:09 -13.648,-15.989,-15.978,-403.970,46.060,144.970
13:23:09 -4.475,-15.989,-15.978,-197.890,373.800,-309.540
13:23:09 -5.054,-14.277,-15.224,-42.630,656.040,-466.480
13:23:09 -8.620,-3.301,-8.174,-28.280,783.580,-515.130
13:23:09 -10.588,2.967,-0.450,-62.930,798.420,-454.020
13:23:09 -10.881,7.444,4.602,-87.290,725.060,-258.090
13:23:09 -7.435,9.918,10.729,-64.750,567.280,-68.950
13:23:09 -4.283,8.695,14.567,-38.780,267.820,88.130
13:23:09 -2.219,4.865,15.193,-21.700,8.050,187.460
13:23:09 -1.773,1.943,13.208,52.010,-217.350,234.500
13:23:09 -2.688,-0.220,8.499,110.670,-375.270,248.500
13:23:09 -3.436,-1.901,4.273,125.020,-461.510,221.200
13:23:09 -3.664,-3.915,0.426,165.970,-466.340,165.760
13:23:09 -2.725,-5.021,-2.063,155.120,-437.010,100.730
13:23:09 -2.281,-4.595,-4.695,94.360,-345.310,44.450
13:23:09 -1.668,-3.205,-6.658,44.240,-241.290,11.060
13:23:09 -1.357,-1.854,-7.035,5.880,-101.780,-0.490
13:23:09 -1.132,-0.767,-6.264,8.190,20.020,5.950
13:23:09 -1.180,-0.297,-5.041,6.650,78.540,19.040
13:23:09 -1.302,-0.167,-3.805,-2.730,151.550,32.760
13:23:09 -1.420,-0.472,-2.497,-15.890,187.110,39.270
13:23:09 -1.419,-0.870,-1.020,-34.230,203.280,38.850
13:23:09 -1.330,-1.280,-0.026,-50.750,202.440,26.880
13:23:09 -1.173,-1.550,0.612,-62.930,187.040,13.860
13:23:09 -1.018,-1.645,1.318,-51.870,162.330,1.540
13:23:09 -0.946,-1.391,1.702,-25.760,132.020,-4.620
13:23:09 -0.910,-1.229,1.943,-5.810,95.200,-12.460
13:23:09 -0.759,-1.004,2.074,6.370,66.290,-19.180
13:23:10 -0.690,-0.955,1.898,20.790,29.050,-22.470
13:23:10 -0.656,-0.803,1.786,39.130,3.570,-23.800
13:23:10 -0.637,-0.588,1.442,51.940,-25.760,-21.280
13:23:10 -0.653,-0.399,1.057,61.600,-48.090,-14.630
13:23:10 -0.677,-0.271,0.691,58.450,-62.860,-6.370
13:23:10 -0.715,-0.212,0.427,53.620,-72.030,2.870
13:23:10 -0.708,-0.239,0.243,50.540,-77.420,10.080
13:23:10 -0.689,-0.372,0.109,39.200,-81.620,15.330
13:23:10 -0.642,-0.533,-0.147,22.050,-83.090,17.990
13:23:10 -0.682,-0.698,-0.466,15.470,-76.930,17.360
13:23:10 -0.700,-0.829,-0.747,18.410,-66.990,15.050
13:23:10 -0.649,-0.850,-0.866,18.130,-57.750,12.740
13:23:10 -0.619,-0.818,-0.961,19.740,-47.530,11.410
13:23:10 -0.628,-0.724,-1.027,22.260,-31.990,11.760
13:23:10 -0.642,-0.620,-1.031,19.880,-19.390,14.490
13:23:10 -0.666,-0.527,-0.999,10.640,-6.860,18.760
13:23:10 -0.716,-0.517,-0.965,1.610,5.250,22.610
13:23:10 -0.725,-0.563,-0.843,0.560,16.100,25.130
13:23:10 -0.751,-0.624,-0.683,0.560,23.310,26.390
13:23:10 -0.748,-0.696,-0.560,2.240,28.140,26.740
13:23:10 -0.753,-0.798,-0.445,11.410,32.130,25.900
13:23:10 -0.728,-0.879,-0.307,19.460,33.040,23.100
13:23:10 -0.681,-0.906,-0.142,16.730,31.220,19.670
13:23:10 -0.655,-0.905,-0.048,11.200,28.140,16.100
13:23:10 -0.659,-0.874,-0.009,6.930,24.430,12.950
13:23:10 -0.677,-0.828,0.009,4.970,20.230,11.060
13:23:10 -0.693,-0.810,-0.041,4.550,17.290,9.800
13:23:10 -0.698,-0.834,-0.057,2.590,14.980,7.980
13:23:10 -0.683,-0.827,-0.054,-2.660,11.480,6.510
13:23:10 -0.690,-0.813,-0.086,-3.360,9.450,5.110
13:23:10 -0.691,-0.802,-0.097,1.540,7.630,3.850
13:23:10 -0.692,-0.772,-0.079,1.260,4.900,2.730
13:23:10 -0.664,-0.751,-0.067,0.490,1.960,1.540
13:23:10 -0.629,-0.705,-0.068,0.770,-1.470,0.840
13:23:10 -0.628,-0.617,-0.103,3.990,-6.020,1.820
13:23:10 -0.644,-0.551,-0.185,7.840,-8.610,4.760
13:23:10 -0.669,-0.537,-0.270,16.590,-9.100,7.770
13:23:10 -0.671,-0.568,-0.311,25.900,-8.400,9.870
13:23:10 -0.644,-0.595,-0.315,28.630,-7.490,11.410
13:23:10 -0.635,-0.618,-0.305,22.470,-6.580,11.760
13:23:10 -0.628,-0.650,-0.279,15.400,-5.950,11.340
13:23:10 -0.609,-0.624,-0.263,9.800,-5.740,12.320
13:23:10 -0.651,-0.570,-0.315,8.820,-4.130,15.050
13:23:10 -0.726,-0.581,-0.378,10.920,-1.120,18.200
13:23:10 -0.736,-0.648,-0.398,13.090,3.290,19.600
13:23:10 -0.702,-0.764,-0.358,9.520,6.790,17.500
13:23:10 -0.651,-0.785,-0.236,2.940,7.700,15.610
13:23:10 -0.668,-0.737,-0.192,0.840,6.860,14.840
13:23:10 -0.721,-0.712,-0.175,1.470,5.740,15.330
13:23:10 -0.757,-0.715,-0.181,3.500,5.250,16.030
13:23:10 -0.760,-0.753,-0.180,3.290,4.970,15.540
13:23:10 -0.728,-0.812,-0.142,-0.700,3.920,14.070
13:23:10 -0.683,-0.844,-0.090,-4.410,1.400,11.690
13:23:10 -0.648,-0.817,-0.055,-10.080,-2.310,9.730
13:23:10 -0.669,-0.625,0.043,-44.450,-8.890,10.920
13:23:10 -0.702,-0.737,-0.123,3.710,-9.100,10.360
13:23:10 -0.734,-0.655,-0.182,3.290,-10.640,11.270
13:23:10 -0.774,-0.666,-0.229,8.120,-10.640,12.740
13:23:10 -0.785,-0.716,-0.252,9.590,-9.520,13.510
13:23:10 -0.769,-0.758,-0.255,8.330,-8.680,13.650
13:23:10 -0.753,-0.798,-0.227,3.710,-8.540,12.530
13:23:10 -0.749,-0.824,-0.187,1.750,-9.380,10.990
13:23:10 -0.749,-0.850,-0.169,-0.840,-11.830,8.960
13:23:10 -0.799,-0.537,-0.130,-37.520,-16.240,10.150
13:23:10 -0.770,-0.757,-0.264,3.780,-15.610,9.310
13:23:10
13:23:15 -3.784,1.138,-0.814,499.800,407.050,83.790
13:23:15 -4.597,1.654,-1.081,540.540,444.780,64.540
13:23:15 -5.558,2.055,-1.431,553.560,474.880,54.600
13:23:15 -6.323,2.257,-1.619,561.960,509.180,40.880
13:23:15 -7.130,2.063,-1.783,586.670,546.560,13.300
13:23:15 -7.820,1.751,-1.852,613.760,583.240,-35.350
13:23:15 -8.448,1.505,-1.915,662.900,618.100,-84.210
13:23:15 -9.546,1.425,-2.065,698.880,641.620,-163.030
13:23:15 -10.764,2.130,-2.230,706.930,681.660,-263.130
13:23:15 -14.182,3.937,-1.651,629.580,695.870,-280.840
13:23:15 -15.755,5.424,-0.752,551.460,695.870,-260.540
13:23:15 -15.989,4.907,1.169,581.350,672.630,-267.190
13:23:15 -15.989,0.893,4.524,754.670,600.040,-314.160
13:23:15 -15.989,-3.830,9.226,715.540,475.860,-500.220
13:23:15 -15.192,-12.784,15.989,615.020,170.030,-843.500
13:23:15 -15.989,-15.989,15.989,658.630,-370.860,-1220.170
13:23:15 -15.989,-15.988,15.989,822.150,-1282.680,-1427.090
13:23:15 -15.989,-11.737,15.989,701.960,-1993.600,-1493.310
13:23:15 -15.989,-6.392,15.989,710.570,-2293.480,-1446.900
13:23:15 -15.989,-2.330,15.989,892.710,-2293.480,-1131.130
13:23:15 -15.989,4.753,15.989,1586.410,-2293.480,-284.970
13:23:15 -15.989,10.494,15.989,1741.810,-2293.480,1193.920
13:23:15 -15.989,-14.797,15.989,1543.710,-2293.480,1815.450
13:23:15 -15.989,-15.989,13.979,1195.390,-1991.360,1770.090
13:23:15 -15.989,-15.989,-15.978,-249.200,-1248.030,652.540
13:23:15 -15.989,-15.989,-15.978,-425.390,-487.550,-136.080
13:23:15 -5.753,-15.989,-15.978,-424.550,109.620,-578.830
13:23:15 -5.223,-13.920,-15.978,-103.740,530.180,-680.260
13:23:15 -9.566,-0.440,-15.978,197.260,759.010,-673.680
13:23:15 -13.992,4.945,-14.005,30.100,988.260,-610.680
13:23:15 -15.989,8.572,-6.946,-95.620,1106.840,-458.850
13:23:15 -15.989,10.193,2.639,-170.590,1093.400,-252.350
13:23:15 -15.970,12.250,9.638,-216.300,970.620,-4.200
13:23:15 -11.484,10.037,15.869,-131.180,731.290,179.900
13:23:15 -6.537,6.305,15.989,-121.240,391.720,286.860
13:23:15 -3.708,2.505,15.989,-41.930,128.590,354.690
13:23:15 -2.368,-0.142,15.964,55.720,-172.340,357.840
13:23:15 -2.953,-2.355,11.484,130.480,-377.930,334.600
13:23:15 -3.709,-3.766,6.043,196.770,-472.080,294.140
13:23:15 -3.674,-5.203,2.380,266.420,-492.100,233.870
13:23:15 -3.191,-5.929,-0.459,224.980,-479.640,164.080
13:23:15 -3.023,-5.756,-2.701,163.800,-425.880,115.920
13:23:15 -2.724,-4.951,-5.160,108.080,-336.140,60.130
13:23:15 -2.128,-4.047,-6.995,63.700,-228.550,16.940
13:23:15 -1.458,-3.252,-7.357,22.540,-112.280,-17.150
13:23:15 -0.996,-2.439,-6.949,-14.630,-5.810,-40.040
13:23:15 -0.865,-1.659,-5.880,-43.610,82.950,-50.820
13:23:15 -0.919,-1.035,-4.088,-72.450,148.470,-51.800
13:23:15 -1.062,-0.612,-2.594,-95.060,190.680,-45.710
13:23:15 -1.211,-0.382,-1.579,-103.810,211.330,-37.380
13:23:15 -1.344,-0.275,-0.460,-80.360,215.110,-27.160
13:23:15 -1.330,-0.284,0.629,-69.160,201.250,-15.820
13:23:15 -1.261,-0.370,1.459,-41.510,172.900,-7.350
13:23:15 -1.016,-0.453,1.980,-21.070,145.390,-0.910
13:23:15 -0.782,-0.637,2.211,3.920,104.930,1.050
13:23:15 -0.687,-0.765,2.196,43.680,74.550,1.470
13:23:15 -0.657,-0.801,1.979,72.730,38.080,1.890
13:23:15 -0.652,-0.786,1.781,94.710,7.560,1.820
13:23:15 -0.664,-0.664,1.457,92.750,-17.710,3.710
13:23:15 -0.706,-0.514,1.273,79.170,-38.290,7.980
13:23:15 -0.739,-0.388,1.020,52.640,-50.680,15.190
13:23:15 -0.830,-0.374,0.728,27.370,-62.300,22.540
13:23:15 -0.850,-0.494,0.450,14.000,-69.510,27.370
13:23:15 -0.789,-0.644,0.164,-0.140,-73.220,29.540
13:23:15 -0.795,-0.791,-0.087,-5.810,-72.030,29.610
13:23:15 -0.774,-0.933,-0.390,-3.290,-66.640,27.860
13:23:15 -0.694,-1.015,-0.589,-1.050,-59.640,23.870
13:23:15 -0.642,-1.042,-0.771,4.410,-50.890,19.670
13:23:15 -0.646,-1.043,-0.970,19.040,-38.640,16.170
13:23:15 -0.602,-1.059,-1.041,31.850,-25.340,11.480
13:23:15 -0.576,-1.007,-1.007,33.600,-15.540,6.790
13:23:15 -0.575,-0.897,-0.951,24.150,-3.150,3.990
13:23:15 -0.622,-0.824,-0.893,13.370,8.400,2.450
13:23:15 -0.666,-0.725,-0.785,0.840,18.620,3.500
13:23:15 -0.724,-0.691,-0.669,-6.020,27.440,4.690
13:23:15 -0.743,-0.764,-0.485,-8.190,34.230,3.990
13:23:15 -0.651,-0.842,-0.277,-12.320,35.910,1.960
13:23:15 -0.576,-0.874,-0.103,-12.600,34.790,-1.260
13:23:15 -0.524,-0.800,0.061,-11.760,30.590,-3.220
13:23:15 -0.566,-0.654,0.140,-6.860,24.920,-1.260
13:23:15 -0.670,-0.524,0.126,-1.890,19.390,1.960
13:23:15 -0.735,-0.450,0.081,2.520,14.840,7.980
13:23:15 -0.774,-0.466,-0.026,9.240,12.040,15.610
13:23:15 -0.738,-0.574,-0.096,16.730,11.550,19.180
13:23:15 -0.676,-0.709,-0.068,18.340,10.430,20.090
13:23:15 -0.627,-0.830,-0.056,20.720,9.030,19.180
13:23:15 -0.597,-0.903,-0.020,21.630,7.140,15.890
13:23:15 -0.613,-0.972,-0.010,17.290,3.990,11.410
13:23:15 -0.647,-0.999,-0.043,9.380,1.190,6.790
13:23:15 -0.693,-1.022,-0.119,4.130,0.070,2.310
13:23:15 -0.689,-1.056,-0.169,-0.840,0.910,-1.400
13:23:16 -0.645,-1.056,-0.188,-7.420,2.380,-6.160
13:23:16 -0.589,-1.006,-0.159,-12.180,3.430,-10.360
13:23:16 -0.590,-0.900,-0.125,-12.950,3.220,-12.810
13:23:16 -0.611,-0.764,-0.094,-11.480,1.960,-13.090
13:23:16 -0.623,-0.677,-0.103,-6.440,0.350,-11.620
13:23:16 -0.625,-0.588,-0.129,2.590,-0.770,-7.210
13:23:16 -0.649,-0.538,-0.144,8.610,-1.960,-3.290
13:23:16 -0.641,-0.527,-0.187,10.780,-2.100,0.560
13:23:16 -0.630,-0.528,-0.219,9.730,-1.120,4.620
13:23:16 -0.638,-0.564,-0.236,8.400,0.840,7.000
13:23:16 -0.636,-0.612,-0.205,2.940,2.380,9.800
13:23:16 -0.633,-0.660,-0.147,-3.220,2.800,11.410
13:23:16 -0.618,-0.737,-0.084,-5.460,2.100,11.690
13:23:16 -0.610,-0.801,-0.032,-5.530,-0.070,10.850
13:23:16 -0.631,-0.849,-0.011,-3.080,-2.660,9.730
13:23:16 -0.638,-0.883,-0.021,-3.220,-5.740,7.770
13:23:16 -0.646,-0.904,-0.075,-5.040,-8.120,6.440
13:23:16 -0.641,-0.911,-0.143,-2.030,-8.960,4.200
13:23:16 -0.642,-0.904,-0.169,-0.350,-9.030,2.940
13:23:16 -0.625,-0.885,-0.183,0.910,-9.030,1.260
13:23:16 -0.594,-0.862,-0.184,2.240,-8.680,0.280
13:23:16 -0.594,-0.816,-0.150,1.680,-9.380,0.140
13:23:16 -0.610,-0.776,-0.157,0.140,-10.290,0.630
13:23:16 -0.624,-0.744,-0.188,0.910,-10.640,1.540
13:23:16 -0.637,-0.739,-0.227,1.820,-9.870,2.940
13:23:16 -0.647,-0.736,-0.268,2.590,-8.050,4.760
13:23:16 -0.646,-0.750,-0.276,2.940,-6.370,5.810
13:23:16 -0.640,-0.780,-0.238,2.240,-4.410,6.510
13:23:16
13:23:21 -3.679,0.817,-1.173,354.340,375.200,241.150
13:23:21 -4.070,0.621,-1.204,409.150,408.520,224.700
13:23:21 -4.596,0.333,-1.190,474.530,450.450,187.600
13:23:21 -5.166,0.171,-1.207,525.210,484.330,144.550
13:23:21 -5.668,0.170,-1.267,555.590,516.600,93.240
13:23:21 -6.120,0.403,-1.455,589.400,549.290,38.360
13:23:21 -6.883,0.815,-1.627,615.860,582.190,-4.060
13:23:21 -7.761,1.321,-1.805,617.400,605.640,-58.870
13:23:21 -8.780,1.735,-1.978,604.240,635.950,-97.720
13:23:21 -9.753,2.428,-2.112,577.500,658.140,-140.140
13:23:21 -11.323,3.031,-2.273,546.210,688.520,-168.000
13:23:21 -12.621,3.960,-2.349,507.570,719.880,-175.140
13:23:21 -15.192,4.906,-1.709,464.100,740.320,-159.040
13:23:21 -15.989,4.675,-0.344,654.920,737.940,-164.920
13:23:21 -15.989,3.043,1.529,937.860,692.020,-247.800
13:23:21 -15.989,-0.460,4.061,1035.580,602.210,-419.510
13:23:21 -15.989,-5.586,12.151,891.800,426.860,-650.510
13:23:21 -15.989,-13.175,15.989,535.850,29.190,-970.760
13:23:21 -15.989,-15.989,15.989,610.330,-680.750,-1290.940
13:23:21 -15.989,-13.808,15.989,872.340,-1532.440,-1395.590
13:23:21 -15.989,-7.961,15.989,754.810,-2246.720,-1363.250
13:23:21 -15.989,-1.947,15.989,738.430,-2293.480,-1170.890
13:23:21 -15.989,1.898,15.989,1036.070,-2293.480,-768.810
13:23:21 -15.989,8.487,15.989,2229.850,-2293.480,399.560
13:23:21 -15.989,9.474,15.989,1819.720,-2293.480,1753.920
13:23:21 -15.989,-12.904,15.989,1600.130,-2293.480,2293.480
13:23:21 -15.989,-15.989,13.785,922.530,-1735.860,1980.090
13:23:21 -15.989,-15.989,-15.978,-123.340,-954.800,971.180
13:23:21 -15.989,-15.989,-15.978,-485.450,-148.680,107.240
13:23:21 -6.365,-15.989,-15.978,-389.480,363.860,-534.730
13:23:21 -7.443,-14.908,-15.978,-9.170,768.320,-678.790
13:23:21 -14.051,0.093,-13.527,45.920,956.970,-654.990
13:23:21 -15.989,4.939,-5.915,-175.140,1084.580,-551.250
13:23:21 -15.989,8.067,3.046,-147.000,1033.550,-342.160
13:23:21 -15.547,9.818,10.908,-61.670,822.080,-157.010
13:23:21 -8.124,7.966,15.989,-64.470,439.180,85.050
13:23:22 -2.566,5.224,15.989,38.920,16.730,214.480
13:23:22 -1.837,1.863,13.693,151.830,-298.620,286.230
13:23:22 -3.297,-0.262,7.170,176.260,-486.150,315.840
13:23:22 -4.216,-2.660,1.155,221.550,-496.930,287.350
13:23:22 -3.499,-4.227,-1.979,170.380,-437.360,210.700
13:23:22 -2.681,-4.754,-5.093,60.060,-339.010,134.680
13:23:22 -2.028,-4.225,-6.508,14.140,-190.470,61.110
13:23:22 -1.460,-2.861,-6.378,-18.200,-13.510,7.070
13:23:22 -1.175,-2.513,-5.378,-14.140,70.980,-14.210
13:23:22 -1.167,-2.097,-4.162,-23.590,136.010,-26.040
13:23:22 -1.271,-1.803,-2.952,-37.520,182.560,-39.060
13:23:22 -1.342,-1.591,-2.068,-52.780,205.660,-50.050
13:23:22 -1.363,-1.460,-0.989,-71.540,222.110,-58.450
13:23:22 -1.314,-1.291,-0.033,-78.750,223.790,-64.820
13:23:22 -1.245,-1.100,0.818,-75.320,212.380,-67.970
13:23:22 -1.103,-0.869,1.532,-53.760,188.930,-68.530
13:23:22 -0.972,-0.641,2.038,-47.670,154.350,-65.940
13:23:22 -0.874,-0.522,2.200,-28.280,113.680,-61.390
13:23:22 -0.781,-0.426,2.277,-3.010,71.540,-55.160
13:23:22 -0.673,-0.324,2.224,18.900,39.970,-47.110
13:23:22 -0.575,-0.255,1.999,34.510,1.330,-38.360
13:23:22 -0.558,-0.151,1.661,40.390,-32.340,-28.560
13:23:22 -0.555,-0.044,1.212,48.440,-58.310,-16.170
13:23:22 -0.594,0.065,0.766,54.740,-75.040,-5.530
13:23:22 -0.644,0.104,0.447,56.770,-81.900,9.590
13:23:22 -0.663,0.102,0.104,52.220,-83.790,21.210
13:23:22 -0.688,0.037,-0.077,41.790,-81.760,34.650
13:23:22 -0.640,-0.137,-0.234,23.940,-76.440,45.920
13:23:22 -0.658,-0.252,-0.324,4.270,-71.260,53.830
13:23:22 -0.688,-0.446,-0.393,-4.060,-66.290,57.540
13:23:22 -0.681,-0.596,-0.484,-8.120,-62.370,59.150
13:23:22 -0.641,-0.785,-0.591,-9.800,-57.330,57.890
13:23:22 -0.620,-1.002,-0.755,-6.650,-50.190,53.270
13:23:22 -0.561,-1.254,-0.867,3.080,-41.300,46.410
13:23:22 -0.475,-1.457,-0.897,6.720,-31.850,33.670
13:23:22 -0.413,-1.520,-0.922,2.730,-24.780,20.440
13:23:22 -0.456,-1.480,-0.938,0.910,-15.260,9.030
13:23:22 -0.535,-1.353,-0.945,2.380,-5.250,0.630
13:23:22 -0.636,-1.184,-0.920,6.300,4.620,-3.360
13:23:22 -0.677,-1.049,-0.856,9.730,14.630,-6.930
13:23:22 -0.628,-0.989,-0.710,9.100,22.540,-10.290
13:23:22 -0.558,-0.845,-0.517,-1.260,27.860,-12.110
13:23:22 -0.537,-0.705,-0.343,-12.670,30.380,-11.410
13:23:22 -0.563,-0.603,-0.206,-18.690,30.380,-8.470
13:23:22 -0.619,-0.501,-0.096,-20.020,28.630,-3.220
13:23:22 -0.642,-0.467,-0.015,-18.200,25.060,2.240
13:23:22 -0.633,-0.498,0.026,-13.580,19.390,7.140
13:23:22 -0.623,-0.550,0.049,-9.170,15.540,11.410
13:23:22 -0.626,-0.594,0.048,-2.870,11.130,14.140
13:23:22 -0.634,-0.668,0.061,7.910,7.350,17.430
13:23:22 -0.602,-0.864,0.134,14.630,3.570,17.640
13:23:22 -0.580,-0.810,0.203,10.710,-3.080,16.520
13:23:22 -0.545,-0.848,0.204,5.600,-10.010,14.560
13:23:22 -0.537,-0.856,0.145,-2.800,-16.240,12.600
13:23:22 -0.562,-0.850,0.058,-7.350,-20.790,10.990
13:23:22 -0.585,-0.860,-0.034,-7.840,-23.730,9.800
13:23:22 -0.567,-0.883,-0.106,-8.050,-25.550,7.840
13:23:22 -0.581,-0.878,-0.170,-7.000,-26.880,6.370
13:23:22 -0.602,-0.871,-0.230,-3.500,-27.230,4.830
13:23:22 -0.601,-0.847,-0.273,1.680,-26.950,3.570
13:23:22 -0.608,-0.821,-0.295,5.740,-25.970,3.080
13:23:22 -0.586,-0.800,-0.323,7.280,-24.710,2.380
13:23:22 -0.552,-0.785,-0.371,7.070,-22.890,2.310
13:23:22 -0.549,-0.758,-0.423,4.760,-19.320,2.520
13:23:22 -0.551,-0.728,-0.462,1.190,-14.980,3.360
13:23:22 -0.569,-0.700,-0.483,-1.610,-10.220,4.690
13:23:22 -0.576,-0.689,-0.481,-1.540,-4.760,6.650
13:23:22 -0.583,-0.673,-0.451,-3.920,-0.910,8.400
13:23:22 -0.617,-0.682,-0.383,-7.070,3.570,10.220
13:23:22 -0.627,-0.723,-0.316,-8.400,6.930,12.320
13:23:22 -0.625,-0.763,-0.203,-11.410,8.050,13.020
13:23:22 -0.638,-0.805,-0.105,-14.350,7.840,13.300
13:23:22 -0.642,-0.863,-0.030,-14.910,5.810,12.670
13:23:22 -0.637,-0.914,0.031,-15.750,2.310,10.920
13:23:22 -0.616,-0.921,0.074,-17.290,-2.450,9.310
13:23:22 -0.617,-0.911,0.097,-13.370,-8.050,8.260
13:23:22 -0.625,-0.881,0.075,-7.420,-13.930,7.210
13:23:22 -0.651,-0.866,0.012,-2.590,-17.360,6.720
13:23:22 -0.674,-0.873,-0.095,0.630,-19.880,6.510
13:23:22 -0.694,-0.895,-0.191,-0.560,-20.370,5.250
13:23:22 -0.691,-0.931,-0.248,-3.710,-19.320,3.430
13:23:22 -0.659,-0.953,-0.289,-9.030,-17.080,1.680
13:23:22 -0.634,-0.999,-0.303,-11.340,-14.630,-1.820
13:23:22
13:23:28 -4.307,0.492,-0.935,538.510,414.890,7.980
13:23:28 -4.832,0.637,-0.989,557.060,434.140,-30.660
13:23:28 -5.300,0.780,-1.090,575.330,446.880,-85.050
13:23:28 -5.870,0.834,-1.246,583.380,458.430,-133.910
13:23:28 -6.440,0.843,-1.504,592.480,477.120,-219.240
13:23:28 -7.599,0.948,-2.054,607.110,493.080,-266.140
13:23:28 -9.089,1.417,-2.306,603.330,506.450,-323.610
13:23:28 -10.565,2.205,-2.246,592.410,521.570,-355.460
13:23:28 -12.800,3.824,-1.781,623.420,526.400,-364.420
13:23:28 -14.562,4.721,-0.347,743.120,508.480,-354.130
13:23:28 -15.592,3.272,1.668,865.970,450.660,-407.260
13:23:28 -15.812,-1.258,5.719,839.930,353.570,-551.390
13:23:28 -14.895,-7.541,15.468,548.940,33.040,-790.860
13:23:28 -15.989,-15.439,15.989,354.200,-508.620,-1104.110
13:23:28 -15.989,-15.180,15.989,526.190,-1253.350,-1418.830
13:23:28 -15.989,-10.084,15.989,525.350,-2007.600,-1510.390
13:23:28 -15.989,-3.094,15.989,492.380,-2293.480,-1463.700
13:23:28 -15.989,2.900,15.989,698.180,-2293.480,-1235.710
13:23:28 -15.989,10.746,15.989,1444.100,-2293.480,-216.650
13:23:28 -15.989,15.978,15.989,1756.720,-2293.480,1359.400
13:23:28 -15.989,0.586,15.989,1586.620,-2293.480,2142.910
13:23:28 -15.989,-15.989,14.779,1249.640,-2248.260,2111.690
13:23:28 -15.989,-15.989,-11.949,540.540,-1525.930,1603.490
13:23:28 -15.989,-15.989,-15.978,-127.260,-783.930,692.300
13:23:28 -15.375,-15.989,-15.978,-479.290,-171.220,-187.880
13:23:28 -5.381,-15.989,-15.978,-218.750,322.140,-526.330
13:23:28 -6.288,-10.664,-15.978,147.840,643.160,-630.070
13:23:28 -10.890,0.520,-14.979,209.580,874.510,-622.440
13:23:28 -15.625,5.992,-9.397,-95.690,1047.200,-534.590
13:23:28 -15.989,9.838,0.158,-190.470,1061.480,-354.200
13:23:28 -15.397,11.081,6.877,-250.810,981.470,-119.840
13:23:28 -11.478,9.760,14.343,-188.860,771.120,73.290
13:23:28 -7.640,6.971,15.989,-131.670,452.970,181.440
13:23:28 -3.701,4.150,15.989,-71.750,93.030,289.310
13:23:28 -2.569,1.774,15.989,42.210,-140.560,330.120
13:23:28 -3.176,-0.460,12.758,125.650,-371.420,341.250
13:23:28 -4.358,-1.876,7.393,166.810,-502.390,332.850
13:23:28 -4.943,-3.256,2.525,249.550,-532.210,303.590
13:23:28 -4.681,-4.876,-0.686,266.700,-507.710,248.080
13:23:28 -3.655,-6.177,-3.689,189.000,-445.830,168.630
13:23:28 -2.713,-6.367,-6.207,94.640,-346.010,86.240
13:23:28 -1.958,-5.597,-7.812,24.150,-222.740,18.900
13:23:28 -1.577,-4.395,-8.264,-22.610,-89.880,-20.300
13:23:28 -1.264,-3.083,-7.817,-68.670,33.110,-54.530
13:23:28 -1.183,-2.155,-6.409,-84.630,109.970,-68.390
13:23:28 -1.301,-1.139,-4.697,-100.100,187.740,-66.850
13:23:28 -1.695,-0.575,-2.999,-103.250,238.490,-58.030
13:23:28 -1.908,-0.318,-1.457,-94.710,263.620,-45.920
13:23:28 -2.007,-0.224,-0.075,-86.730,264.950,-32.690
13:23:28 -1.953,-0.317,1.073,-66.640,247.590,-24.920
13:23:28 -1.653,-0.465,1.821,-37.730,213.990,-18.760
13:23:28 -1.333,-0.504,2.612,-26.250,178.430,-13.720
13:23:28 -1.158,-0.559,2.983,6.370,124.040,-10.500
13:23:28 -0.994,-0.601,3.004,22.330,67.830,-8.610
13:23:28 -0.839,-0.688,2.857,42.630,13.650,-9.170
13:23:28 -0.765,-0.865,2.408,47.810,-21.770,-10.850
13:23:28 -0.766,-0.800,1.810,53.620,-58.940,-13.160
13:23:28 -0.781,-0.793,1.277,61.950,-85.260,-14.770
13:23:28 -0.767,-0.709,0.797,63.490,-103.390,-15.260
13:23:28 -0.779,-0.586,0.305,64.190,-112.840,-13.020
13:23:28 -0.783,-0.451,-0.128,59.850,-114.520,-8.190
13:23:28 -0.808,-0.336,-0.568,50.610,-108.990,-3.360
13:23:28 -0.827,-0.258,-0.854,39.830,-100.380,4.900
13:23:28 -0.833,-0.234,-1.239,32.830,-82.530,12.250
13:23:28 -0.849,-0.289,-1.461,31.500,-58.800,21.000
13:23:28 -0.813,-0.449,-1.578,30.870,-39.760,25.760
13:23:28 -0.699,-0.580,-1.480,20.090,-15.750,26.040
13:23:28 -0.584,-0.732,-1.255,7.000,3.920,23.240
13:23:28 -0.551,-0.799,-1.014,-4.270,18.270,19.740
13:23:28 -0.650,-0.844,-0.808,-7.630,28.490,16.240
13:23:28 -0.688,-0.892,-0.617,-8.540,35.350,12.250
13:23:28 -0.674,-0.927,-0.435,-5.880,39.270,8.050
13:23:28 -0.672,-0.939,-0.294,-4.060,40.950,3.290
13:23:28 -0.678,-0.915,-0.183,-3.220,41.650,0.000
13:23:28 -0.715,-0.872,-0.077,-5.740,40.740,-2.870
13:23:28 -0.732,-0.834,0.023,-9.030,38.850,-4.900
13:23:28 -0.744,-0.801,0.092,-9.870,35.070,-6.440
13:23:28 -0.749,-0.781,0.147,-7.490,30.450,-7.560
13:23:28 -0.746,-0.756,0.187,-5.950,24.990,-8.820
13:23:28 -0.728,-0.736,0.235,-8.960,20.860,-9.730
13:23:28 -0.697,-0.717,0.265,-13.160,14.840,-10.290
13:23:28 -0.647,-0.677,0.308,-16.800,9.660,-10.080
13:23:28 -0.655,-0.592,0.344,-19.390,1.890,-8.260
13:23:28 -0.691,-0.508,0.338,-19.110,-6.930,-5.180
13:23:28 -0.713,-0.450,0.280,-15.470,-15.680,-0.560
13:23:28 -0.752,-0.418,0.162,-8.960,-23.170,4.760
13:23:28 -0.781,-0.446,0.006,-1.750,-28.070,8.190
13:23:28 -0.765,-0.513,-0.111,4.900,-29.820,11.690
13:23:28 -0.740,-0.586,-0.235,8.260,-29.470,14.000
13:23:28 -0.716,-0.641,-0.328,5.460,-27.790,14.420
13:23:28 -0.699,-0.715,-0.398,-0.140,-24.640,13.440
13:23:28 -0.687,-0.771,-0.439,-4.970,-20.860,12.040
13:23:28 -0.706,-0.818,-0.459,-6.580,-15.680,10.500
13:23:28 -0.724,-0.895,-0.479,-5.040,-11.060,6.930
13:23:28 -0.710,-0.951,-0.471,-10.150,-7.070,3.640
13:23:28 -0.691,-0.980,-0.470,-17.290,-4.060,-0.910
13:23:28 -0.674,-0.989,-0.470,-18.970,-0.210,-5.530
13:23:29 -0.658,-0.967,-0.444,-18.550,2.660,-9.870
13:23:29 -0.643,-0.903,-0.427,-17.710,5.180,-12.320
13:23:29 -0.631,-0.841,-0.417,-15.960,6.790,-14.140
13:23:29 -0.646,-0.747,-0.409,-12.670,8.820,-14.420
13:23:29 -0.678,-0.648,-0.428,-5.880,11.340,-12.110
13:23:29 -0.727,-0.571,-0.424,-1.890,14.140,-8.610
13:23:29 -0.740,-0.541,-0.388,-3.430,16.520,-5.110
13:23:29 -0.729,-0.558,-0.340,-8.960,17.990,-1.680
13:23:29 -0.717,-0.591,-0.296,-13.650,19.110,0.560
13:23:29 -0.719,-0.653,-0.271,-14.770,19.320,1.540
13:23:29 -0.704,-0.708,-0.216,-14.910,18.410,1.540
13:23:29 -0.661,-0.736,-0.166,-15.190,16.940,0.630
13:23:29 -0.655,-0.769,-0.148,-13.790,14.350,-0.560
13:23:29 -0.664,-0.785,-0.159,-11.130,11.830,-2.170
13:23:29 -0.676,-0.793,-0.199,-9.240,10.290,-3.290
13:23:29 -0.679,-0.806,-0.251,-7.420,9.870,-4.830
13:23:29 -0.655,-0.818,-0.253,-6.020,9.940,-6.440
13:23:29 -0.651,-0.793,-0.225,-8.610,9.660,-8.050
13:23:29 -0.648,-0.752,-0.211,-12.530,9.310,-8.400
13:23:29 -0.669,-0.717,-0.220,-12.320,9.520,-7.980
13:23:29 -0.707,-0.712,-0.228,-14.210,9.800,-7.910
13:23:29 -0.687,-0.731,-0.256,-20.930,10.640,-8.330
13:23:29
13:23:38 -3.663,0.889,-1.182,402.220,325.010,335.020
13:23:38 -4.203,1.289,-1.174,412.370,371.350,332.570
13:23:38 -4.937,1.563,-1.207,415.870,419.510,331.940
13:23:38 -5.768,1.807,-1.268,440.790,483.070,329.700
13:23:38 -6.925,1.879,-1.307,474.110,516.670,321.650
13:23:38 -7.737,1.704,-1.321,500.780,562.660,300.580
13:23:38 -8.748,1.609,-1.404,533.050,611.730,275.800
13:23:38 -9.685,1.666,-1.422,573.160,648.830,231.840
13:23:38 -11.047,1.868,-1.338,604.310,695.450,183.400
13:23:38 -12.306,2.560,-1.054,611.800,731.360,152.040
13:23:38 -13.973,3.325,-0.700,605.150,750.330,121.100
13:23:38 -15.286,3.798,0.041,600.740,759.640,106.260
13:23:38 -15.935,3.854,0.902,625.240,750.960,83.860
13:23:38 -15.989,2.992,2.455,718.060,710.570,47.250
13:23:38 -15.989,-0.106,3.884,997.150,653.170,-72.800
13:23:38 -15.989,-3.666,7.239,1150.030,523.530,-224.700
13:23:38 -15.662,-11.070,12.306,961.660,359.660,-514.430
13:23:38 -15.856,-15.989,15.989,710.220,6.020,-939.540
13:23:39 -15.989,-15.989,15.989,668.080,-569.590,-1302.350
13:23:39 -15.989,-15.060,15.989,864.290,-1294.160,-1423.520
13:23:39 -15.989,-11.204,15.989,761.110,-2131.570,-1478.050
13:23:39 -15.989,-7.878,15.989,747.040,-2293.480,-1470.980
13:23:39 -15.989,-2.751,15.989,1100.890,-2293.480,-937.090
13:23:39 -15.989,11.239,15.989,2293.130,-2293.480,1034.250
13:23:39 -15.989,-1.124,15.989,1626.450,-2293.480,2154.950
13:23:39 -15.989,-15.989,13.786,812.280,-1703.940,1861.720
13:23:39 -15.989,-15.989,-15.978,27.440,-1156.470,1145.480
13:23:39 -15.989,-15.989,-15.978,-299.390,-532.980,372.540
13:23:39 -9.848,-15.989,-15.978,-344.330,-45.080,-193.970
13:23:39 -3.539,-15.989,-15.978,-206.920,335.580,-506.520
13:23:39 -6.412,-9.682,-15.974,-52.920,661.150,-574.840
13:23:39 -9.837,1.097,-11.039,-122.220,842.730,-511.140
13:23:39 -12.857,4.798,-1.297,-160.510,910.280,-370.580
13:23:39 -12.142,8.047,5.411,-76.930,822.640,-209.790
13:23:39 -9.508,8.495,10.242,-10.150,610.050,-43.050
13:23:39 -5.525,6.796,14.211,32.760,375.130,88.900
13:23:39 -2.663,4.277,15.495,32.200,102.200,186.970
13:23:39 -1.666,1.635,13.293,92.260,-123.410,235.410
13:23:39 -1.733,-0.263,8.872,122.220,-283.500,250.250
13:23:39 -2.280,-1.468,5.005,159.320,-369.110,240.590
13:23:39 -2.599,-2.414,2.023,159.250,-395.010,215.320
13:23:39 -2.433,-3.030,-0.128,135.660,-385.630,181.020
13:23:39 -2.246,-3.352,-2.344,109.410,-342.440,144.060
13:23:39 -2.013,-3.306,-4.020,88.480,-275.170,109.130
13:23:39 -1.632,-3.117,-5.014,63.070,-194.390,78.050
13:23:39 -1.303,-2.890,-5.253,45.220,-112.490,50.050
13:23:39 -1.028,-2.591,-4.833,25.410,-39.620,25.620
13:23:39 -0.895,-2.176,-4.053,9.100,19.110,4.410
13:23:39 -0.898,-1.782,-3.014,-7.560,62.860,-6.860
13:23:39 -0.936,-1.501,-2.189,-22.820,93.800,-16.730
13:23:39 -0.931,-1.216,-1.390,-39.130,115.570,-23.730
13:23:39 -0.845,-1.005,-0.494,-47.250,120.400,-30.380
13:23:39 -0.845,-0.563,0.260,-31.640,109.970,-22.960
13:23:39 -0.760,-0.409,0.792,10.080,84.840,-17.220
13:23:39 -0.723,-0.272,0.946,10.710,68.950,-8.190
13:23:39 -0.698,-0.247,0.930,16.590,47.950,1.330
13:23:39 -0.676,-0.274,0.803,26.880,29.050,10.290
13:23:39 -0.656,-0.294,0.672,35.140,12.600,18.760
13:23:39 -0.586,-0.338,0.595,41.930,-1.050,23.170
13:23:39 -0.520,-0.393,0.562,43.190,-13.790,27.790
13:23:39 -0.503,-0.401,0.494,36.190,-22.890,31.780
13:23:39 -0.572,-0.437,0.346,34.930,-33.460,35.840
13:23:39 -0.617,-0.524,0.124,33.320,-39.340,38.850
13:23:39 -0.645,-0.631,-0.034,29.050,-41.230,40.530
13:23:39 -0.674,-0.739,-0.246,23.240,-40.110,42.280
13:23:39 -0.688,-0.854,-0.441,17.080,-35.140,40.670
13:23:39 -0.651,-0.993,-0.522,10.290,-28.630,36.470
13:23:39 -0.625,-1.085,-0.556,4.270,-22.470,30.660
13:23:39 -0.592,-1.141,-0.581,-2.870,-17.150,23.800
13:23:39 -0.561,-1.145,-0.584,-6.440,-12.250,17.570
13:23:39 -0.569,-1.123,-0.561,-7.630,-8.260,11.830
13:23:39 -0.584,-1.082,-0.544,-3.850,-4.550,6.860
13:23:39 -0.573,-1.028,-0.511,-2.240,-1.190,2.800
13:23:39 -0.559,-0.931,-0.449,-4.060,2.030,-0.770
13:23:39 -0.563,-0.841,-0.409,-7.560,3.990,-2.730
13:23:39 -0.599,-0.752,-0.396,-9.940,5.460,-3.360
13:23:39 -0.601,-0.644,-0.390,-13.020,7.140,-1.750
13:23:39 -0.610,-0.552,-0.399,-13.860,8.960,1.330
13:23:39 -0.662,-0.498,-0.405,-11.480,11.270,5.880
13:23:39 -0.661,-0.474,-0.379,-8.400,13.580,10.850
13:23:39 -0.646,-0.484,-0.334,-7.840,15.050,15.050
13:23:39 -0.638,-0.539,-0.316,-4.060,16.730,19.670
13:23:39 -0.646,-0.613,-0.278,3.150,17.640,23.170
13:23:39 -0.682,-0.691,-0.218,6.720,17.500,25.690
13:23:39 -0.670,-0.781,-0.168,13.720,16.520,25.200
13:23:39 -0.679,-0.861,-0.049,6.020,13.300,22.890
13:23:39 -0.639,-0.931,0.010,5.040,7.980,20.160
13:23:39 -0.589,-0.957,0.039,3.710,3.360,15.750
13:23:39 -0.606,-0.944,0.063,0.210,-4.130,12.040
13:23:39 -0.616,-0.917,0.000,-1.540,-10.780,9.170
13:23:39 -0.620,-0.880,-0.087,3.990,-15.260,8.190
13:23:39 -0.656,-0.855,-0.167,8.750,-17.500,7.700
13:23:39 -0.666,-0.826,-0.194,13.370,-19.320,7.630
13:23:39 -0.681,-0.797,-0.224,13.440,-20.230,8.680
13:23:39 -0.690,-0.813,-0.255,13.510,-20.650,8.680
13:23:39 -0.684,-0.845,-0.267,11.970,-20.790,7.910
13:23:39 -0.662,-0.867,-0.286,9.100,-20.790,6.300
13:23:39 -0.648,-0.884,-0.321,3.290,-20.300,4.130
13:23:39 -0.653,-0.881,-0.351,-3.640,-19.250,2.380
13:23:39 -0.637,-0.867,-0.383,-9.030,-17.920,0.000
13:23:39 -0.615,-0.841,-0.394,-9.730,-16.450,-1.540
13:23:39 -0.602,-0.798,-0.384,-8.820,-15.540,-2.170
13:23:39 -0.610,-0.770,-0.400,-6.090,-14.490,-1.680
13:23:39 -0.625,-0.753,-0.427,-3.850,-12.740,-1.260
13:23:39 -0.619,-0.755,-0.447,-3.500,-10.570,-1.120
13:23:39 -0.599,-0.766,-0.459,-2.730,-7.910,-1.050
13:23:39 -0.580,-0.769,-0.446,-4.900,-5.040,-1.330
13:23:39 -0.573,-0.770,-0.431,-7.280,-2.660,-1.680
13:23:39 -0.559,-0.761,-0.408,-8.470,-0.420,-1.820
13:23:39 -0.567,-0.735,-0.363,-7.910,0.910,-1.190
13:23:39 -0.585,-0.722,-0.309,-6.090,1.330,-0.630
13:23:39 -0.594,-0.706,-0.270,-4.200,0.910,0.980
13:23:39 -0.608,-0.712,-0.219,-2.170,0.070,1.680
13:23:39 -0.608,-0.723,-0.178,-2.800,-1.680,2.030
13:23:39 -0.592,-0.726,-0.157,-6.020,-4.060,2.380
13:23:39 -0.596,-0.736,-0.153,-8.540,-6.930,2.730
13:23:39 -0.607,-0.755,-0.183,-7.420,-8.610,2.800
13:23:39 -0.604,-0.787,-0.226,-3.430,-10.430,2.660
13:23:39 -0.600,-0.812,-0.276,-0.420,-10.920,2.450
13:23:40
13:23:45 -4.752,0.217,-0.626,456.610,440.580,269.220
13:23:45 -5.366,0.664,-0.732,466.410,477.680,236.250
13:23:45 -6.074,1.309,-0.852,482.370,517.230,210.910
13:23:45 -6.746,1.787,-0.940,477.120,547.960,183.120
13:23:45 -7.523,2.179,-1.102,499.310,583.450,188.790
13:23:45 -8.544,2.582,-1.121,500.920,617.820,178.500
13:23:45 -9.343,2.605,-1.141,502.950,643.300,161.280
13:23:45 -10.484,2.450,-1.100,515.480,675.290,140.490
13:23:45 -11.343,2.094,-1.016,561.960,696.920,97.160
13:23:45 -12.578,1.996,-0.779,618.100,720.650,54.810
13:23:45 -13.651,2.308,-0.169,677.600,724.010,1.610
13:23:45 -14.790,3.344,1.409,734.440,684.670,-35.490
13:23:45 -15.244,2.803,3.517,850.570,609.140,-80.710
13:23:45 -15.493,-0.107,6.040,1016.750,485.100,-180.040
13:23:45 -14.566,-4.092,11.869,1008.210,332.220,-358.540
13:23:45 -13.752,-11.693,15.989,841.330,-19.740,-566.790
13:23:45 -15.692,-15.982,15.989,687.260,-435.890,-911.750
13:23:45 -15.989,-15.989,15.989,717.150,-1150.100,-1126.580
13:23:45 -15.989,-15.603,15.989,747.950,-1868.300,-1286.670
13:23:45 -15.989,-10.986,15.989,618.100,-2288.020,-1357.090
13:23:45 -15.989,-6.181,15.989,643.160,-2293.480,-1284.080
13:23:45 -15.989,-1.253,15.989,796.250,-2293.480,-1018.500
13:23:45 -15.989,8.713,15.989,1603.210,-2293.480,-352.520
13:23:45 -15.989,15.352,15.989,1890.980,-2293.480,1491.980
13:23:45 -15.989,-3.192,15.989,1790.180,-2293.480,2290.330
13:23:45 -15.989,-15.989,14.336,1530.340,-1953.070,2282.070
13:23:45 -15.989,-15.989,-15.104,-202.160,-1240.050,1251.670
13:23:45 -15.989,-15.989,-15.978,-516.180,-437.150,416.220
13:23:45 -8.188,-15.989,-15.978,-574.070,197.330,-437.850
13:23:45 -5.349,-15.989,-15.978,-93.380,639.590,-777.770
13:23:45 -13.479,-2.916,-15.978,291.970,906.080,-793.520
13:23:45 -15.989,6.626,-9.665,-90.230,1107.470,-657.370
13:23:45 -15.989,11.167,2.478,-152.950,1126.370,-437.640
13:23:45 -15.989,12.343,7.112,-131.040,1056.510,-266.420
13:23:45 -13.549,11.107,14.404,81.550,847.910,-97.930
13:23:45 -8.884,9.001,15.989,90.300,521.290,24.500
13:23:45 -3.673,7.322,15.989,31.990,237.370,181.300
13:23:45 -1.948,4.848,15.989,126.420,-103.320,267.960
13:23:45 -2.004,2.003,14.827,179.690,-358.330,316.960
13:23:45 -3.485,0.168,10.065,188.930,-504.000,338.940
13:23:45 -4.868,-1.395,3.786,188.300,-537.600,347.060
13:23:45 -4.939,-2.592,-0.868,219.590,-511.420,330.120
13:23:45 -3.864,-4.198,-4.331,191.380,-433.790,283.080
13:23:45 -2.617,-5.432,-6.768,101.990,-301.140,211.330
13:23:45 -1.555,-5.621,-7.703,20.090,-178.360,138.390
13:23:45 -1.201,-5.379,-7.628,-29.470,-42.700,72.590
13:23:45 -0.977,-4.740,-6.676,-54.740,24.640,19.600
13:23:45 -0.945,-3.931,-5.143,-78.960,104.020,-20.090
13:23:45 -0.995,-3.115,-3.486,-97.440,158.270,-46.830
13:23:45 -1.040,-2.407,-1.869,-114.450,186.620,-63.280
13:23:45 -1.143,-1.895,-0.448,-118.930,192.220,-71.540
13:23:45 -1.160,-1.503,0.492,-114.940,176.820,-77.140
13:23:45 -1.057,-1.236,1.446,-89.180,145.530,-80.010
13:23:45 -0.886,-1.037,2.038,-53.620,115.850,-80.640
13:23:45 -0.641,-0.784,2.406,-7.910,70.700,-79.310
13:23:45 -0.461,-0.496,2.449,24.920,23.660,-74.130
13:23:45 -0.397,-0.159,2.140,55.930,-18.130,-65.450
13:23:45 -0.445,0.223,1.764,64.330,-44.240,-48.160
13:23:45 -0.547,0.366,1.303,55.930,-69.930,-31.920
13:23:45 -0.650,0.467,0.646,40.320,-84.490,-8.820
13:23:45 -0.699,0.424,0.043,33.670,-89.110,13.790
13:23:45 -0.671,0.277,-0.465,32.830,-86.730,33.810
13:23:45 -0.665,0.097,-0.838,40.950,-76.930,49.140
13:23:45 -0.610,-0.208,-1.020,46.550,-62.720,58.870
13:23:45 -0.498,-0.480,-1.038,47.530,-48.300,64.470
13:23:45 -0.487,-0.733,-0.999,39.970,-35.490,65.520
13:23:45 -0.488,-0.960,-0.937,31.570,-24.360,64.960
13:23:45 -0.501,-1.188,-0.866,25.970,-13.580,61.670
13:23:45 -0.390,-1.412,-0.708,15.120,-7.770,52.080
13:23:45 -0.351,-1.628,-0.603,-2.870,-0.910,39.270
13:23:45 -0.493,-1.743,-0.482,-10.010,4.270,25.830
13:23:45 -0.405,-1.768,-0.313,-12.180,6.370,16.520
13:23:45 -0.413,-1.726,-0.170,-9.170,4.900,4.620
13:23:45 -0.429,-1.635,-0.011,-8.680,0.280,-6.090
13:23:45 -0.448,-1.549,0.036,-6.720,-3.290,-14.840
13:23:45 -0.464,-1.452,0.039,-2.450,-7.910,-23.100
13:23:45 -0.438,-1.304,0.030,3.500,-12.600,-29.470
13:23:45 -0.423,-1.124,-0.001,12.180,-16.100,-32.340
13:23:45 -0.393,-0.907,0.001,15.330,-19.320,-33.670
13:23:45 -0.398,-0.675,0.017,8.890,-22.050,-31.570
13:23:45 -0.407,-0.506,-0.002,6.790,-25.060,-25.130
13:23:45 -0.416,-0.335,-0.065,4.970,-27.020,-16.240
13:23:45 -0.454,-0.258,-0.156,2.240,-27.160,-6.020
13:23:45 -0.477,-0.277,-0.263,-0.210,-25.130,3.360
13:23:45 -0.459,-0.375,-0.332,1.470,-21.350,8.750
13:23:45 -0.413,-0.463,-0.358,2.730,-18.200,14.070
13:23:45 -0.343,-0.590,-0.309,6.160,-14.980,16.870
13:23:45 -0.277,-0.688,-0.220,8.820,-13.720,18.270
13:23:45 -0.211,-0.743,-0.149,16.240,-14.700,19.670
13:23:45 -0.239,-0.763,-0.108,23.100,-16.800,20.790
13:23:45 -0.293,-0.750,-0.135,27.580,-17.920,22.330
13:23:45 -0.333,-0.732,-0.170,28.840,-18.270,23.660
13:23:45 -0.397,-0.745,-0.225,22.610,-17.570,24.920
13:23:45 -0.407,-0.801,-0.265,16.660,-15.330,25.340
13:23:45 -0.404,-0.859,-0.247,9.100,-12.950,24.640
13:23:45 -0.365,-0.903,-0.172,4.200,-12.670,23.660
13:23:45 -0.298,-0.892,-0.144,7.140,-15.120,23.590
13:23:45 -0.277,-0.885,-0.202,20.440,-16.520,23.870
13:23:45 -0.348,-0.875,-0.312,38.080,-17.220,24.010
13:23:46 -0.393,-0.834,-0.467,49.980,-14.420,25.410
13:23:46 -0.408,-0.829,-0.584,51.800,-7.770,26.180
13:23:46 -0.424,-0.830,-0.500,42.770,0.980,26.600
13:23:46 -0.411,-0.816,-0.588,24.010,7.560,27.090
13:23:46 -0.397,-0.813,-0.485,5.880,14.490,27.720
13:23:46 -0.397,-0.798,-0.369,-2.520,18.690,29.400
13:23:46 -0.431,-0.803,-0.247,-3.850,20.160,30.660
13:23:46 -0.421,-0.824,-0.150,1.400,19.600,31.570
13:23:46 -0.434,-0.852,-0.063,8.120,16.730,32.620
13:23:46 -0.480,-0.891,-0.043,17.640,13.860,33.390
13:23:46 -0.511,-1.008,-0.036,21.420,11.760,32.550
13:23:46 -0.494,-1.087,-0.010,19.250,10.010,29.120
13:23:46 -0.467,-1.164,0.044,14.140,7.070,24.570
13:23:46 -0.436,-1.184,0.102,8.540,2.800,21.000
13:23:46 -0.447,-1.171,0.130,3.080,-0.770,16.240
13:23:46 -0.444,-1.158,0.137,1.470,-6.020,11.550
13:23:46 -0.425,-1.107,0.124,3.080,-11.270,7.840
13:23:46 -0.390,-0.976,0.077,7.490,-16.730,7.000
13:23:46 -0.440,-0.819,-0.046,14.910,-20.510,9.310
13:23:46 -0.536,-0.719,-0.232,26.320,-19.110,13.510
13:23:46
13:23:49 -3.323,1.067,-1.473,519.680,307.930,287.840
13:23:49 -4.117,1.084,-1.671,577.710,366.170,275.100
13:23:49 -4.823,1.058,-1.861,623.630,430.010,250.040
13:23:49 -5.660,1.013,-2.040,657.160,480.130,211.400
13:23:49 -6.422,1.108,-2.159,652.120,547.750,177.100
13:23:49 -7.463,1.291,-2.180,663.390,597.660,127.400
13:23:49 -8.282,1.604,-2.009,645.890,655.550,89.740
13:23:49 -9.489,1.969,-1.932,631.750,694.260,38.850
13:23:49 -10.454,2.227,-1.819,618.380,738.920,0.980
13:23:49 -11.973,2.633,-1.798,601.160,769.090,-49.350
13:23:49 -14.434,3.304,-1.485,571.340,802.130,-83.650
13:23:49 -15.939,4.620,-0.338,521.010,814.940,-75.950
13:23:49 -15.989,5.078,1.835,608.020,788.690,-67.620
13:23:50 -15.989,1.812,4.211,874.300,720.300,-170.100
13:23:50 -15.989,-4.753,8.743,995.890,588.700,-334.950
13:23:50 -15.989,-13.884,15.300,740.740,405.440,-659.960
13:23:50 -15.989,-15.989,15.989,479.360,-31.640,-1102.570
13:23:50 -15.989,-15.989,15.989,541.870,-668.220,-1472.170
13:23:50 -15.989,-15.989,15.989,711.410,-1406.580,-1634.150
13:23:50 -15.989,-12.792,15.989,644.560,-2068.360,-1766.940
13:23:50 -15.989,-5.906,15.989,665.280,-2293.480,-1761.690
13:23:50 -15.989,1.558,15.989,939.540,-2293.480,-1514.660
13:23:50 -15.989,10.068,15.989,1692.040,-2293.480,-889.700
13:23:50 -15.989,15.978,15.989,1919.680,-2293.480,1052.590
13:23:50 -15.989,1.710,15.989,1805.650,-2293.480,2063.110
13:23:50 -15.989,-15.947,14.719,1300.250,-2227.260,2254.770
13:23:50 -15.989,-15.989,-2.362,496.860,-1368.080,1869.070
13:23:50 -15.989,-15.989,-15.978,-130.340,-704.550,1005.340
13:23:50 -15.658,-15.989,-15.978,-293.580,-139.650,274.610
13:23:50 -4.177,-15.989,-15.978,30.590,303.100,-289.170
13:23:50 -5.579,-15.989,-15.978,261.450,614.250,-571.620
13:23:50 -11.037,-6.245,-12.191,213.290,800.940,-636.300
13:23:50 -14.077,1.732,-6.171,-47.880,944.160,-586.040
13:23:50 -15.884,7.027,1.259,-144.760,976.220,-436.730
13:23:50 -14.889,10.323,5.771,-101.220,916.300,-288.050
13:23:50 -11.425,11.201,11.032,-80.290,713.370,-75.460
13:23:50 -6.972,8.492,15.989,-77.350,354.130,152.390
13:23:50 -2.861,4.802,15.864,35.840,63.630,230.020
13:23:50 -1.670,1.466,12.557,141.680,-164.780,269.570
13:23:50 -2.231,0.273,7.994,198.170,-304.710,289.030
13:23:50 -2.659,-1.040,3.882,222.250,-359.730,289.870
13:23:50 -2.762,-2.406,1.171,249.480,-358.610,266.070
13:23:50 -2.325,-3.429,-0.124,205.240,-342.580,236.810
13:23:50 -2.196,-3.903,-1.143,132.090,-312.270,189.980
13:23:50 -2.126,-3.973,-2.381,57.120,-267.890,139.020
13:23:50 -1.844,-3.649,-3.318,-5.530,-227.920,95.620
13:23:50 -1.696,-2.987,-3.973,-41.510,-166.320,63.630
13:23:50 -1.467,-2.436,-4.155,-63.700,-102.410,38.010
13:23:50 -1.187,-1.968,-3.970,-64.470,-43.750,19.670
13:23:50 -1.079,-1.636,-3.598,-50.400,7.420,6.580
13:23:50 -1.093,-1.317,-3.121,-23.870,51.170,-0.210
13:23:50 -1.074,-1.081,-2.730,-17.990,86.800,-6.020
13:23:50 -1.122,-1.014,-2.326,-22.610,111.370,-11.200
13:23:50 -1.076,-0.961,-1.786,-29.260,138.180,-15.540
13:23:50 -1.043,-0.914,-1.383,-39.270,157.570,-18.900
13:23:50 -1.052,-0.850,-0.822,-46.690,166.810,-22.120
13:23:50 -1.055,-0.678,-0.232,-48.510,170.870,-22.400
13:23:50 -1.060,-0.504,0.302,-43.260,165.760,-19.390
13:23:50 -1.072,-0.354,0.731,-30.450,152.180,-13.650
13:23:50 -1.110,-0.292,1.056,-18.200,131.670,-6.510
13:23:50 -1.118,-0.329,1.237,-3.010,105.840,-0.980
13:23:50 -1.014,-0.402,1.281,11.970,78.750,2.450
13:23:50 -0.886,-0.447,1.234,29.610,41.370,5.880
13:23:50 -0.838,-0.444,1.137,44.310,36.190,8.680
13:23:50 -0.806,-0.428,1.051,47.530,15.470,10.710
13:23:50 -0.787,-0.367,0.950,38.850,-3.360,13.650
13:23:50 -0.836,-0.325,0.824,21.980,-18.830,18.130
13:23:50 -0.845,-0.325,0.638,8.400,-28.560,23.100
13:23:50 -0.853,-0.338,0.433,2.800,-39.130,28.000
13:23:50 -0.862,-0.341,0.191,1.680,-48.160,32.970
13:23:50 -0.878,-0.415,-0.043,8.330,-50.680,37.940
13:23:50 -0.844,-0.501,-0.230,15.960,-51.590,40.110
13:23:50 -0.830,-0.600,-0.420,21.980,-50.190,41.160
13:23:50 -0.822,-0.662,-0.631,30.100,-44.170,42.070
13:23:50 -0.810,-0.704,-0.765,35.350,-34.300,41.930
13:23:50 -0.796,-0.734,-0.809,31.500,-22.890,41.230
13:23:50 -0.777,-0.724,-0.796,25.270,-11.690,40.810
13:23:50 -0.830,-0.729,-0.728,19.040,-1.750,40.180
13:23:50 -0.875,-0.733,-0.590,12.390,3.710,39.410
13:23:50 -0.915,-0.761,-0.463,4.200,8.680,38.080
13:23:50 -0.912,-0.865,-0.347,-0.420,11.480,34.020
13:23:50 -0.860,-0.965,-0.256,-5.180,12.460,28.140
13:23:50 -0.772,-1.023,-0.204,-5.600,12.110,22.890
13:23:50 -0.722,-1.010,-0.143,-1.820,10.850,16.240
13:23:50 -0.722,-0.943,-0.090,-0.350,9.170,11.060
13:23:50 -0.763,-0.827,-0.076,1.750,7.420,9.100
13:23:50 -0.808,-0.746,-0.097,4.970,5.880,8.120
13:23:50 -0.834,-0.651,-0.109,10.290,5.180,8.820
13:23:50 -0.867,-0.590,-0.092,12.740,4.410,10.430
13:23:50 -0.853,-0.558,-0.066,11.200,3.290,11.550
13:23:50 -0.813,-0.549,-0.036,6.720,1.400,12.810
13:23:50 -0.803,-0.563,-0.022,0.490,-0.350,13.230
13:23:50 -0.793,-0.595,-0.024,-3.150,-2.660,13.300
13:23:50 -0.784,-0.618,-0.021,-5.530,-5.600,12.880
13:23:50 -0.811,-0.642,-0.056,-2.240,-7.700,12.460
13:23:50 -0.809,-0.671,-0.075,0.210,-9.450,10.990
13:23:50 -0.807,-0.666,-0.086,0.140,-11.410,9.800
13:23:50 -0.811,-0.639,-0.128,1.470,-12.880,9.170
13:23:50 -0.813,-0.614,-0.161,2.870,-13.440,8.960
13:23:50 -0.822,-0.611,-0.178,3.640,-13.650,9.030
13:23:50 -0.798,-0.621,-0.195,4.200,-13.650,8.820
13:23:50 -0.798,-0.633,-0.207,3.360,-13.650,8.050
13:23:50 -0.812,-0.634,-0.249,2.660,-12.600,7.630
13:23:50 -0.828,-0.635,-0.294,2.170,-10.920,7.420
13:23:50 -0.847,-0.680,-0.351,1.400,-8.190,5.670
13:23:50 -0.798,-0.727,-0.355,-0.210,-5.460,2.870
13:23:50 -0.734,-0.753,-0.361,-7.210,-2.450,-0.350
13:23:50 -0.741,-0.754,-0.365,-16.380,0.490,-2.240
13:23:50 -0.760,-0.740,-0.356,-22.260,3.360,-4.690
13:23:50 -0.782,-0.703,-0.324,-25.410,5.180,-6.160
13:23:50 -0.800,-0.665,-0.307,-24.220,6.440,-6.580
13:23:50 -0.816,-0.646,-0.304,-21.420,7.280,-6.790
13:23:50 -0.810,-0.618,-0.274,-18.340,8.120,-6.860
13:23:50 -0.797,-0.577,-0.222,-18.900,7.770,-5.880
13:23:50 -0.799,-0.547,-0.213,-19.950,7.210,-4.480
13:23:50 -0.804,-0.526,-0.219,-19.880,6.650,-2.310
13:23:50 -0.816,-0.530,-0.223,-18.200,6.370,-0.560
13:23:50 -0.817,-0.542,-0.243,-14.560,6.370,1.120
13:23:50 -0.820,-0.576,-0.262,-14.000,6.930,1.890
13:23:51
13:23:54 -4.333,0.405,-0.949,474.950,385.560,348.880
13:23:54 -4.995,0.621,-1.065,515.200,430.990,332.570
13:23:54 -5.680,0.903,-1.220,525.350,480.900,316.120
13:23:54 -6.534,1.307,-1.406,511.910,521.220,297.710
13:23:54 -7.400,1.662,-1.555,519.050,578.340,285.180
13:23:54 -8.499,1.794,-1.664,499.520,621.180,259.420
13:23:54 -9.346,1.831,-1.874,513.730,680.330,232.960
13:23:54 -10.683,1.900,-1.791,537.880,724.640,189.210
13:23:54 -11.834,2.158,-1.760,571.200,766.920,151.690
13:23:54 -13.696,2.474,-1.586,601.580,818.090,109.480
13:23:54 -15.631,3.483,-1.285,638.610,849.380,61.600
13:23:54 -15.989,4.917,-0.056,676.830,872.340,51.380
13:23:54 -15.989,6.028,1.809,813.540,850.850,56.140
13:23:54 -15.989,3.616,4.639,1007.230,803.530,-40.670
13:23:54 -15.989,-3.281,10.083,1007.160,678.650,-258.440
13:23:54 -15.989,-14.121,15.981,672.210,472.850,-526.680
13:23:54 -15.989,-15.989,15.989,572.600,-43.260,-1054.340
13:23:54 -15.989,-15.989,15.989,797.090,-780.430,-1390.970
13:23:54 -15.989,-15.773,15.989,840.770,-1522.920,-1572.760
13:23:54 -15.989,-10.284,15.989,651.070,-2004.520,-1648.290
13:23:54 -15.989,-5.947,15.989,633.710,-2293.480,-1620.150
13:23:54 -15.989,-0.964,15.989,834.820,-2293.480,-1428.280
13:23:54 -15.989,7.165,15.989,1334.480,-2293.480,-567.560
13:23:54 -15.989,15.978,15.989,2011.240,-2293.480,883.400
13:23:54 -15.989,0.646,15.989,1944.950,-2293.480,2047.570
13:23:54 -15.989,-15.462,15.676,1234.520,-2293.480,2291.030
13:23:54 -15.989,-15.989,8.439,607.530,-1662.570,1822.030
13:23:54 -15.989,-15.989,-15.978,-414.400,-959.280,1151.990
13:23:54 -15.989,-15.989,-15.978,-511.000,-474.320,321.300
13:23:54 -9.858,-15.989,-15.978,-389.550,86.450,-151.060
13:23:54 -3.883,-15.989,-15.978,-117.530,498.470,-496.230
13:23:54 -7.729,-6.684,-14.955,188.580,725.550,-604.940
13:23:54 -11.969,1.614,-8.186,64.260,873.530,-565.530
13:23:54 -14.764,5.138,-3.544,-193.340,963.130,-454.930
13:23:54 -14.423,6.995,2.910,-186.130,949.130,-313.880
13:23:54 -13.322,8.424,7.461,-50.050,848.190,-197.820
13:23:54 -9.624,7.483,10.875,29.540,660.590,-70.770
13:23:54 -5.217,5.411,14.716,-30.240,463.960,35.560
13:23:54 -2.570,4.759,15.258,-12.530,178.920,129.360
13:23:54 -1.817,3.172,13.233,107.380,-53.200,174.370
13:23:54 -1.399,1.787,9.684,184.800,-182.980,220.080
13:23:54 -1.897,0.962,5.502,209.160,-280.210,265.300
13:23:54 -2.110,-0.176,3.040,214.690,-303.660,264.320
13:23:54 -1.981,-0.935,1.017,175.980,-305.060,262.150
13:23:54 -2.047,-1.602,-0.753,127.400,-284.130,250.810
13:23:54 -2.278,-2.202,-2.381,63.910,-241.080,217.000
13:23:54 -2.192,-2.672,-3.294,5.810,-183.960,207.340
13:23:54 -2.098,-3.072,-4.070,-40.180,-136.080,175.140
13:23:54 -1.866,-3.549,-4.305,-59.990,-70.490,132.720
13:23:54 -1.378,-4.028,-3.864,-67.550,-13.230,82.390
13:23:54 -1.139,-4.120,-3.194,-75.180,30.170,32.760
13:23:54 -1.000,-3.851,-2.678,-64.260,61.880,-1.890
13:23:54 -1.003,-3.260,-2.034,-52.430,82.950,-40.810
13:23:54 -1.129,-2.554,-1.562,-40.320,94.080,-69.650
13:23:54 -1.148,-2.041,-1.156,-25.830,105.280,-88.270
13:23:54 -1.067,-1.434,-0.714,-22.820,111.300,-98.840
13:23:54 -1.008,-0.910,-0.317,-26.600,111.790,-101.780
13:23:55 -0.946,-0.456,0.015,-22.680,107.590,-98.070
13:23:55 -0.932,-0.057,0.356,-8.050,98.210,-90.790
13:23:55 -0.950,0.307,0.453,4.130,88.410,-74.690
13:23:55 -0.989,0.539,0.570,7.910,72.590,-58.590
13:23:55 -1.006,0.692,0.706,8.540,59.150,-40.040
13:23:55 -0.897,0.781,0.772,10.500,44.800,-14.980
13:23:55 -0.751,0.768,0.767,17.290,25.900,9.100
13:23:55 -0.687,0.665,0.696,29.890,8.470,30.450
13:23:55 -0.654,0.494,0.572,42.630,-7.280,48.510
13:23:55 -0.621,0.264,0.377,57.330,-19.600,59.010
13:23:55 -0.625,0.048,0.190,67.270,-25.620,70.000
13:23:55 -0.659,-0.082,-0.059,64.610,-29.330,78.750
13:23:55 -0.705,-0.248,-0.254,50.120,-29.540,84.560
13:23:55 -0.800,-0.436,-0.390,33.040,-27.370,88.060
13:23:55 -0.846,-0.646,-0.493,0.840,-23.800,88.620
13:23:55 -0.806,-0.882,-0.563,7.070,-19.110,85.260
13:23:55 -0.767,-1.126,-0.635,10.570,-12.810,78.190
13:23:55 -0.730,-1.284,-0.622,11.970,-6.720,69.230
13:23:55 -0.673,-1.417,-0.559,15.680,-1.470,57.050
13:23:55 -0.611,-1.461,-0.490,16.240,1.540,47.180
13:23:55 -0.596,-1.394,-0.424,10.920,2.310,34.300
13:23:55 -0.637,-1.283,-0.421,7.630,3.080,24.150
13:23:55 -0.706,-1.109,-0.442,10.220,4.690,17.570
13:23:55 -0.750,-0.956,-0.434,11.620,6.370,13.020
13:23:55 -0.776,-0.847,-0.438,10.990,7.630,11.130
13:23:55 -0.765,-0.780,-0.456,13.720,11.130,10.780
13:23:55 -0.771,-0.700,-0.393,11.830,14.700,11.060
13:23:55 -0.765,-0.632,-0.285,8.470,16.590,11.550
13:23:55 -0.759,-0.575,-0.184,6.230,16.660,12.880
13:23:55 -0.763,-0.510,-0.094,3.710,14.980,14.770
13:23:55 -0.760,-0.462,-0.042,4.970,11.690,17.640
13:23:55 -0.779,-0.430,0.020,9.520,8.260,21.770
13:23:55 -0.777,-0.409,0.064,9.940,2.660,26.110
13:23:55 -0.793,-0.438,0.051,13.230,-2.870,29.330
13:23:55 -0.788,-0.501,0.041,22.260,-7.840,31.920
13:23:55 -0.775,-0.531,0.047,23.240,-11.620,34.090
13:23:55 -0.785,-0.555,0.020,22.260,-16.170,35.490
13:23:55 -0.776,-0.583,-0.024,22.680,-19.740,36.050
13:23:55 -0.784,-0.588,-0.065,20.860,-22.260,36.750
13:23:55 -0.795,-0.594,-0.130,20.020,-23.870,37.170
13:23:55 -0.810,-0.618,-0.217,21.560,-24.010,37.730
13:23:55 -0.835,-0.675,-0.291,22.890,-22.610,38.010
13:23:55 -0.858,-0.765,-0.346,24.710,-19.950,37.310
13:23:55 -0.848,-0.865,-0.355,23.590,-17.290,34.090
13:23:55 -0.832,-0.938,-0.346,16.170,-14.910,29.820
13:23:55 -0.838,-0.990,-0.368,8.190,-12.810,24.360
13:23:55 -0.815,-1.027,-0.397,3.640,-10.360,17.640
13:23:55 -0.763,-1.056,-0.419,0.000,-7.630,10.430
13:23:55 -0.698,-1.034,-0.408,-6.930,-4.620,3.570
13:23:55 -0.669,-0.965,-0.391,-10.290,-1.960,-2.030
13:23:55 -0.659,-0.869,-0.351,-14.840,0.210,-5.950
13:23:55 -0.658,-0.746,-0.322,-18.410,1.470,-7.280
13:23:55 -0.695,-0.619,-0.310,-20.930,2.100,-6.580
13:23:55 -0.737,-0.551,-0.306,-21.700,2.940,-4.200
13:23:55 -0.756,-0.502,-0.307,-17.010,3.780,-1.260
13:23:55 -0.766,-0.483,-0.305,-9.800,4.900,2.100
13:23:55 -0.734,-0.489,-0.287,-6.860,5.740,4.340
13:23:55 -0.703,-0.508,-0.258,-7.490,6.300,5.880
13:23:55 -0.698,-0.522,-0.236,-7.280,6.510,6.860
13:23:55 -0.693,-0.541,-0.215,-5.600,6.370,7.770
13:23:55 -0.681,-0.556,-0.203,-9.170,5.250,8.400
13:23:55 -0.682,-0.571,-0.216,-13.090,4.130,8.890
13:23:55