LSM303D Calibration and Tilt Compensated

Hi everyone ... I'm trying to calibrate my compass LSM303D by of this description:

This is my first time doing this, so forgive my questions.

I used this code:

#include <Wire.h>
#include <LSM303.h>
LSM303 compass;

void setup()
{
Serial.begin(9600);
Wire.begin();
compass.init();
compass.enableDefault();
Serial.println("Magnetometer Uncalibrated (Units in Nanotesla)"); 
}

void loop()
{
compass.read();
float Xm_print, Ym_print, Zm_print;

Xm_print = compass.m.x*(100000.0/1100.0); // Gain X [LSB/Gauss] for selected sensor input field range (1.3 in these case)
Ym_print = compass.m.y*(100000.0/1100.0); // Gain Y [LSB/Gauss] for selected sensor input field range
Zm_print = compass.m.z*(100000.0/980.0 );  // Gain Z [LSB/Gauss] for selected sensor input field range

Serial.print(Xm_print, 10); Serial.print(" "); Serial.print(Ym_print, 10); Serial.print(" "); Serial.println(Zm_print, 10);
delay(100);
}

I move the compass on the table very slowly in all directions. And now the question is whether I should make movements similar to 8 in the air with the compass? Will it suffice that I rotate it around 360 degrees on the table several times.

And I got the raw data

raw_mag_1.zip (9.8 KB)

I set everything in the magnet and click calibrate:

Then I paste the data from the first part into the code below

#include <Wire.h>
#include <LSM303.h>
LSM303 compass;

void setup()
{
Serial.begin(9600);
Wire.begin();
compass.init();
compass.enableDefault();
Serial.println("Magnetometer Calibrated (Units in Nanotesla)"); 
}

void loop()
{
compass.read();
float Xm_off, Ym_off, Zm_off, Xm_cal, Ym_cal, Zm_cal;

Xm_off = compass.m.x*(100000.0/1100.0) + 3468.773708; //X-axis combined bias (Non calibrated data - bias)
Ym_off = compass.m.y*(100000.0/1100.0) +13493.601503; //Y-axis combined bias (Default: substracting bias)
Zm_off = compass.m.z*(100000.0/980.0 ) -132660.251821; //Z-axis combined bias

Xm_cal =  0.253088*Xm_off + 0.000019*Ym_off -0.016298*Zm_off; //X-axis correction for combined scale factors (Default: positive factors)
Ym_cal = 0.000019*Xm_off + 0.254566*Ym_off -0.016239*Zm_off; //Y-axis correction for combined scale factors
Zm_cal =  -0.016298*Xm_off -0.016239*Ym_off + 0.350500*Zm_off; //Z-axis correction for combined scale factors

Serial.print(Xm_cal, 10); Serial.print(" "); Serial.print(Ym_cal, 10); Serial.print(" "); Serial.println(Zm_cal, 10);
delay(125);
}

I collect raw data again
raw_mag_2.zip (10.2 KB)

Imports to the magneto

And the next question is, is the data correct ?? Am I doing something wrong? Thank you in advance for your help, this is all new to me so I can make mistakes.

Why do you collect the "raw data" a second time? If you want to know that the corrections have been applied properly, run Magneto on the corrected data.

Remove the incorrect scale factors in this code:

Xm_print = compass.m.x*(100000.0/1100.0); // Gain X [LSB/Gauss] for selected sensor input field range (1.3 in these case)
Ym_print = compass.m.y*(100000.0/1100.0); // Gain Y [LSB/Gauss] for selected sensor input field range
Zm_print = compass.m.z*(100000.0/980.0 );  // Gain Z [LSB/Gauss] for selected sensor input field range

The raw data are these, and it is to these data that you apply the corrections from Magneto. Similarly for the accelerometer.

Xm_raw = compass.m.x;
Ym_raw = compass.m.y;
Zm_raw = compass.m.z;

Ok i remove the incorrect scale

I collect raw data and put to magneto

I applied the correction factors and collected the data into the magneto.

For accelerometer raw data:

And with corrections

Are the data corrected correctly ?? Thank you in advance for your help :wink:

No. The bias and diagonal scale factor elements should be about 0.0 and 1.00 after correction. Post your code, using code tags. Please also post the raw data, before correction. You can append the files to the post.

I did everything thoroughly once again.
First, I ran this program and collected the data

#include <Wire.h>
#include <LSM303.h>
LSM303 compass;

void setup()
{
Serial.begin(9600);
Wire.begin();
compass.init();
compass.enableDefault();
Serial.println("Magnetometer Uncalibrated (Units in Nanotesla)"); 
}

void loop()
{
compass.read();
float Xm_print, Ym_print, Zm_print;

Xm_print = compass.m.x; // Gain X [LSB/Gauss] for selected sensor input field range (1.3 in these case)
Ym_print = compass.m.y; // Gain Y [LSB/Gauss] for selected sensor input field range
Zm_print = compass.m.z;  // Gain Z [LSB/Gauss] for selected sensor input field range

Serial.print(Xm_print, 10); Serial.print(" "); Serial.print(Ym_print, 10); Serial.print(" "); Serial.println(Zm_print, 10);
delay(50);
}

Raw data:
raw_mag_1.zip (6.6 KB)

Magneto:

Now it corrects my code by the coefficients

#include <Wire.h>
#include <LSM303.h>
LSM303 compass;

void setup()
{
Serial.begin(9600);
Wire.begin();
compass.init();
compass.enableDefault();
Serial.println("Magnetometer Calibrated (Units in Nanotesla)"); 
}

void loop()
{
compass.read();
float Xm_off, Ym_off, Zm_off, Xm_cal, Ym_cal, Zm_cal;

Xm_off = compass.m.x -34.487997; //X-axis combined bias (Non calibrated data - bias)
Ym_off = compass.m.y +67.928330; //Y-axis combined bias (Default: substracting bias)
Zm_off = compass.m.z +161.429010; //Z-axis combined bias

Xm_cal =  17.103591*Xm_off + 0.241650*Ym_off + 0.091792*Zm_off; //X-axis correction for combined scale factors (Default: positive factors)
Ym_cal =  0.241650*Xm_off + 17.157825*Ym_off + 0.383122*Zm_off; //Y-axis correction for combined scale factors
Zm_cal =  0.091792*Xm_off + 0.383122*Ym_off + 17.255100*Zm_off; //Z-axis correction for combined scale factors

Serial.print(Xm_cal, 10); Serial.print(" "); Serial.print(Ym_cal, 10); Serial.print(" "); Serial.println(Zm_cal, 10);
delay(50);
}

Once again I am collecting the corrected data already

correct_mag_2.zip (12.8 KB)

And magneto with corrected data:

Wrong signs. The offsets are subtractive, not additive.

Also, remove the ", 10" in these lines. Most of those 10 digits are nonsense.

Serial.print(Xm_print, 10)

I correct code:

Xm_off = compass.m.x +34.487997;
Ym_off = compass.m.y -67.928330;
Zm_off = compass.m.z -161.429010;

And magneto with corrected data:

And the diagonal is [1.035 , 0.999 , 1.028 ] , approximately equal to ‘1’

Is it correct now ??

The offsets are subtractive

Which means subtractive?

I have subtract all the values ??

Xm_off = compass.m.x -34.487997;
Ym_off = compass.m.y -67.928330;
Zm_off = compass.m.z -161.429010;

1c

I don't know what to do now or should I subtract these values ??

No, there is something very wrong. Please post the raw magnetometer data (append a .txt file to your post) and I will take a look at it.

Subtractive means you subtract the values. To subtract -34, you add 34.

Txt files cannot be attached

-1155.0000000000 1759.0000000000 -2553.0000000000
-1155.0000000000 1759.0000000000 -2553.0000000000
-1155.0000000000 1754.0000000000 -2564.0000000000
-1155.0000000000 1754.0000000000 -2564.0000000000
-1155.0000000000 1754.0000000000 -2564.0000000000
-1155.0000000000 1753.0000000000 -2548.0000000000
-1155.0000000000 1753.0000000000 -2548.0000000000
-1155.0000000000 1753.0000000000 -2548.0000000000
-1163.0000000000 1753.0000000000 -2561.0000000000
-1163.0000000000 1753.0000000000 -2561.0000000000
-1163.0000000000 1753.0000000000 -2561.0000000000
-1157.0000000000 1754.0000000000 -2555.0000000000
-1157.0000000000 1754.0000000000 -2555.0000000000
-1157.0000000000 1754.0000000000 -2555.0000000000
-1163.0000000000 1752.0000000000 -2560.0000000000
-1163.0000000000 1752.0000000000 -2560.0000000000
-1163.0000000000 1752.0000000000 -2560.0000000000
-1160.0000000000 1748.0000000000 -2564.0000000000
-1160.0000000000 1748.0000000000 -2564.0000000000
-1160.0000000000 1748.0000000000 -2564.0000000000
-1158.0000000000 1748.0000000000 -2552.0000000000
-1158.0000000000 1748.0000000000 -2552.0000000000
-1158.0000000000 1748.0000000000 -2552.0000000000
-1158.0000000000 1748.0000000000 -2552.0000000000
-1169.0000000000 1758.0000000000 -2560.0000000000
-1169.0000000000 1758.0000000000 -2560.0000000000
-1169.0000000000 1758.0000000000 -2560.0000000000
-1152.0000000000 1747.0000000000 -2564.0000000000
-1152.0000000000 1747.0000000000 -2564.0000000000
-1152.0000000000 1747.0000000000 -2564.0000000000
-1018.0000000000 1913.0000000000 -2496.0000000000
-1018.0000000000 1913.0000000000 -2496.0000000000
-1018.0000000000 1913.0000000000 -2496.0000000000
-1186.0000000000 1717.0000000000 -2569.0000000000
-1186.0000000000 1717.0000000000 -2569.0000000000
-1186.0000000000 1717.0000000000 -2569.0000000000
-1618.0000000000 1116.0000000000 -2661.0000000000
-1618.0000000000 1116.0000000000 -2661.0000000000
-1618.0000000000 1116.0000000000 -2661.0000000000
-1637.0000000000 1100.0000000000 -2595.0000000000
-1637.0000000000 1100.0000000000 -2595.0000000000
-1637.0000000000 1100.0000000000 -2595.0000000000
-1155.0000000000 1083.0000000000 -2626.0000000000
-1155.0000000000 1083.0000000000 -2626.0000000000
-1155.0000000000 1083.0000000000 -2626.0000000000
-779.0000000000 1104.0000000000 -2584.0000000000
-779.0000000000 1104.0000000000 -2584.0000000000
-779.0000000000 1104.0000000000 -2584.0000000000
-563.0000000000 1147.0000000000 -2522.0000000000
-563.0000000000 1147.0000000000 -2522.0000000000
-563.0000000000 1147.0000000000 -2522.0000000000
-452.0000000000 1319.0000000000 -2428.0000000000
-452.0000000000 1319.0000000000 -2428.0000000000
-452.0000000000 1319.0000000000 -2428.0000000000
-594.0000000000 1657.0000000000 -2187.0000000000
-594.0000000000 1657.0000000000 -2187.0000000000
-594.0000000000 1657.0000000000 -2187.0000000000
-921.0000000000 1738.0000000000 -2011.0000000000
-921.0000000000 1738.0000000000 -2011.0000000000
-921.0000000000 1738.0000000000 -2011.0000000000
-1308.0000000000 1702.0000000000 -1829.0000000000
-1308.0000000000 1702.0000000000 -1829.0000000000
-1308.0000000000 1702.0000000000 -1829.0000000000
-1308.0000000000 1702.0000000000 -1829.0000000000
-1657.0000000000 1570.0000000000 -1687.0000000000
-1657.0000000000 1570.0000000000 -1687.0000000000
-1657.0000000000 1570.0000000000 -1687.0000000000
-1970.0000000000 1403.0000000000 -1497.0000000000
-1970.0000000000 1403.0000000000 -1497.0000000000
-1970.0000000000 1403.0000000000 -1497.0000000000
-2182.0000000000 1244.0000000000 -1354.0000000000
-2182.0000000000 1244.0000000000 -1354.0000000000
-2182.0000000000 1244.0000000000 -1354.0000000000
-2322.0000000000 1151.0000000000 -1193.0000000000
-2322.0000000000 1151.0000000000 -1193.0000000000
-2322.0000000000 1151.0000000000 -1193.0000000000
-2531.0000000000 886.0000000000 -998.0000000000
-2531.0000000000 886.0000000000 -998.0000000000
-2531.0000000000 886.0000000000 -998.0000000000
-2735.0000000000 558.0000000000 -711.0000000000
-2735.0000000000 558.0000000000 -711.0000000000
-2735.0000000000 558.0000000000 -711.0000000000
-2858.0000000000 -15.0000000000 -422.0000000000
-2858.0000000000 -15.0000000000 -422.0000000000
-2858.0000000000 -15.0000000000 -422.0000000000
-2802.0000000000 -782.0000000000 146.0000000000
-2802.0000000000 -782.0000000000 146.0000000000
-2802.0000000000 -782.0000000000 146.0000000000
-2486.0000000000 -1399.0000000000 704.0000000000
-2486.0000000000 -1399.0000000000 704.0000000000
-2486.0000000000 -1399.0000000000 704.0000000000
-2031.0000000000 -1698.0000000000 1400.0000000000
-2031.0000000000 -1698.0000000000 1400.0000000000
-2031.0000000000 -1698.0000000000 1400.0000000000
-1482.0000000000 -1876.0000000000 1829.0000000000
-1482.0000000000 -1876.0000000000 1829.0000000000
-1482.0000000000 -1876.0000000000 1829.0000000000
-1344.0000000000 -1684.0000000000 2144.0000000000
-1344.0000000000 -1684.0000000000 2144.0000000000
-1344.0000000000 -1684.0000000000 2144.0000000000
-1344.0000000000 -1684.0000000000 2144.0000000000
-1373.0000000000 -1434.0000000000 2312.0000000000
-1373.0000000000 -1434.0000000000 2312.0000000000
-1373.0000000000 -1434.0000000000 2312.0000000000
-1275.0000000000 -1181.0000000000 2492.0000000000
-1275.0000000000 -1181.0000000000 2492.0000000000
-1275.0000000000 -1181.0000000000 2492.0000000000
-1093.0000000000 -998.0000000000 2665.0000000000
-1093.0000000000 -998.0000000000 2665.0000000000
-1093.0000000000 -998.0000000000 2665.0000000000
-710.0000000000 -959.0000000000 2794.0000000000
-710.0000000000 -959.0000000000 2794.0000000000
-710.0000000000 -959.0000000000 2794.0000000000
-415.0000000000 -864.0000000000 2894.0000000000
-415.0000000000 -864.0000000000 2894.0000000000
-415.0000000000 -864.0000000000 2894.0000000000
-55.0000000000 -639.0000000000 2967.0000000000
-55.0000000000 -639.0000000000 2967.0000000000
-55.0000000000 -639.0000000000 2967.0000000000
525.0000000000 -496.0000000000 2938.0000000000
525.0000000000 -496.0000000000 2938.0000000000
525.0000000000 -496.0000000000 2938.0000000000
821.0000000000 -347.0000000000 2868.0000000000
821.0000000000 -347.0000000000 2868.0000000000
821.0000000000 -347.0000000000 2868.0000000000
1292.0000000000 -233.0000000000 2668.0000000000
1292.0000000000 -233.0000000000 2668.0000000000
1292.0000000000 -233.0000000000 2668.0000000000
1761.0000000000 -332.0000000000 2348.0000000000
1761.0000000000 -332.0000000000 2348.0000000000
1761.0000000000 -332.0000000000 2348.0000000000
2061.0000000000 -568.0000000000 2028.0000000000
2061.0000000000 -568.0000000000 2028.0000000000
2061.0000000000 -568.0000000000 2028.0000000000
2291.0000000000 -710.0000000000 1678.0000000000
2291.0000000000 -710.0000000000 1678.0000000000
2291.0000000000 -710.0000000000 1678.0000000000
2291.0000000000 -710.0000000000 1678.0000000000
2457.0000000000 -875.0000000000 1266.0000000000
2457.0000000000 -875.0000000000 1266.0000000000
2457.0000000000 -875.0000000000 1266.0000000000
2630.0000000000 -924.0000000000 689.0000000000
2630.0000000000 -924.0000000000 689.0000000000
2630.0000000000 -924.0000000000 689.0000000000
2669.0000000000 -862.0000000000 -199.0000000000
2669.0000000000 -862.0000000000 -199.0000000000
2669.0000000000 -862.0000000000 -199.0000000000
2507.0000000000 -885.0000000000 -726.0000000000
2507.0000000000 -885.0000000000 -726.0000000000
2507.0000000000 -885.0000000000 -726.0000000000
2397.0000000000 -879.0000000000 -1005.0000000000
2397.0000000000 -879.0000000000 -1005.0000000000
2397.0000000000 -879.0000000000 -1005.0000000000
2201.0000000000 -855.0000000000 -1348.0000000000
2201.0000000000 -855.0000000000 -1348.0000000000
2201.0000000000 -855.0000000000 -1348.0000000000
2036.0000000000 -880.0000000000 -1538.0000000000
2036.0000000000 -880.0000000000 -1538.0000000000
2036.0000000000 -880.0000000000 -1538.0000000000
1993.0000000000 -812.0000000000 -1617.0000000000
1993.0000000000 -812.0000000000 -1617.0000000000
1993.0000000000 -812.0000000000 -1617.0000000000
2074.0000000000 -749.0000000000 -1578.0000000000
2074.0000000000 -749.0000000000 -1578.0000000000
2074.0000000000 -749.0000000000 -1578.0000000000
2055.0000000000 -670.0000000000 -1613.0000000000
2055.0000000000 -670.0000000000 -1613.0000000000
2055.0000000000 -670.0000000000 -1613.0000000000
1902.0000000000 -605.0000000000 -1779.0000000000
1902.0000000000 -605.0000000000 -1779.0000000000
1902.0000000000 -605.0000000000 -1779.0000000000
1734.0000000000 -359.0000000000 -1998.0000000000
1734.0000000000 -359.0000000000 -1998.0000000000
1734.0000000000 -359.0000000000 -1998.0000000000
1164.0000000000 -32.0000000000 -2386.0000000000
1164.0000000000 -32.0000000000 -2386.0000000000
1164.0000000000 -32.0000000000 -2386.0000000000
1164.0000000000 -32.0000000000 -2386.0000000000
618.0000000000 210.0000000000 -2560.0000000000
618.0000000000 210.0000000000 -2560.0000000000
618.0000000000 210.0000000000 -2560.0000000000
-57.0000000000 344.0000000000 -2623.0000000000
-57.0000000000 344.0000000000 -2623.0000000000
-57.0000000000 344.0000000000 -2623.0000000000
-694.0000000000 428.0000000000 -2541.0000000000
-694.0000000000 428.0000000000 -2541.0000000000
-694.0000000000 428.0000000000 -2541.0000000000
-1006.0000000000 395.0000000000 -2457.0000000000
-1006.0000000000 395.0000000000 -2457.0000000000
-1006.0000000000 395.0000000000 -2457.0000000000
-1239.0000000000 381.0000000000 -2367.0000000000
-1239.0000000000 381.0000000000 -2367.0000000000
-1239.0000000000 381.0000000000 -2367.0000000000
-1587.0000000000 356.0000000000 -2179.0000000000
-1587.0000000000 356.0000000000 -2179.0000000000
-1587.0000000000 356.0000000000 -2179.0000000000
-2025.0000000000 252.0000000000 -1859.0000000000
-2025.0000000000 252.0000000000 -1859.0000000000
-2025.0000000000 252.0000000000 -1859.0000000000
-2240.0000000000 173.0000000000 -1653.0000000000
-2240.0000000000 173.0000000000 -1653.0000000000
-2240.0000000000 173.0000000000 -1653.0000000000
-2497.0000000000 29.0000000000 -1295.0000000000
-2497.0000000000 29.0000000000 -1295.0000000000
-2497.0000000000 29.0000000000 -1295.0000000000
-2697.0000000000 -90.0000000000 -912.0000000000
-2697.0000000000 -90.0000000000 -912.0000000000
-2697.0000000000 -90.0000000000 -912.0000000000
-2799.0000000000 -262.0000000000 -625.0000000000
-2799.0000000000 -262.0000000000 -625.0000000000
-2799.0000000000 -262.0000000000 -625.0000000000
-2851.0000000000 -291.0000000000 -336.0000000000
-2851.0000000000 -291.0000000000 -336.0000000000
-2851.0000000000 -291.0000000000 -336.0000000000
-2851.0000000000 -291.0000000000 -336.0000000000
-2901.0000000000 -372.0000000000 128.0000000000
-2901.0000000000 -372.0000000000 128.0000000000
-2901.0000000000 -372.0000000000 128.0000000000
-2892.0000000000 -421.0000000000 331.0000000000
-2892.0000000000 -421.0000000000 331.0000000000
-2892.0000000000 -421.0000000000 331.0000000000
-2831.0000000000 -623.0000000000 555.0000000000
-2831.0000000000 -623.0000000000 555.0000000000
-2831.0000000000 -623.0000000000 555.0000000000
-2725.0000000000 -928.0000000000 678.0000000000
-2725.0000000000 -928.0000000000 678.0000000000
-2725.0000000000 -928.0000000000 678.0000000000
-2651.0000000000 -1068.0000000000 850.0000000000
-2651.0000000000 -1068.0000000000 850.0000000000
-2651.0000000000 -1068.0000000000 850.0000000000
-2416.0000000000 -1311.0000000000 1139.0000000000
-2416.0000000000 -1311.0000000000 1139.0000000000
-2416.0000000000 -1311.0000000000 1139.0000000000
-2194.0000000000 -1348.0000000000 1536.0000000000
-2194.0000000000 -1348.0000000000 1536.0000000000
-2194.0000000000 -1348.0000000000 1536.0000000000
-1858.0000000000 -1231.0000000000 2044.0000000000
-1858.0000000000 -1231.0000000000 2044.0000000000
-1858.0000000000 -1231.0000000000 2044.0000000000
-1478.0000000000 -1155.0000000000 2392.0000000000
-1478.0000000000 -1155.0000000000 2392.0000000000
-1478.0000000000 -1155.0000000000 2392.0000000000
-887.0000000000 -1545.0000000000 2451.0000000000
-887.0000000000 -1545.0000000000 2451.0000000000
-887.0000000000 -1545.0000000000 2451.0000000000
-295.0000000000 -1585.0000000000 2560.0000000000
-295.0000000000 -1585.0000000000 2560.0000000000
-295.0000000000 -1585.0000000000 2560.0000000000
-33.0000000000 -1833.0000000000 2391.0000000000
-33.0000000000 -1833.0000000000 2391.0000000000
-33.0000000000 -1833.0000000000 2391.0000000000
262.0000000000 -1836.0000000000 2363.0000000000
262.0000000000 -1836.0000000000 2363.0000000000
262.0000000000 -1836.0000000000 2363.0000000000
262.0000000000 -1836.0000000000 2363.0000000000
614.0000000000 -1796.0000000000 2334.0000000000
614.0000000000 -1796.0000000000 2334.0000000000
614.0000000000 -1796.0000000000 2334.0000000000
1354.0000000000 -1923.0000000000 1818.0000000000
1354.0000000000 -1923.0000000000 1818.0000000000
1354.0000000000 -1923.0000000000 1818.0000000000
1835.0000000000 -1870.0000000000 1333.0000000000
1835.0000000000 -1870.0000000000 1333.0000000000
1835.0000000000 -1870.0000000000 1333.0000000000
2167.0000000000 -1821.0000000000 611.0000000000
2167.0000000000 -1821.0000000000 611.0000000000
2167.0000000000 -1821.0000000000 611.0000000000
2214.0000000000 -1799.0000000000 195.0000000000
2214.0000000000 -1799.0000000000 195.0000000000
2214.0000000000 -1799.0000000000 195.0000000000
2128.0000000000 -1878.0000000000 17.0000000000
2128.0000000000 -1878.0000000000 17.0000000000
2128.0000000000 -1878.0000000000 17.0000000000
1863.0000000000 -2127.0000000000 -115.0000000000
1863.0000000000 -2127.0000000000 -115.0000000000
1863.0000000000 -2127.0000000000 -115.0000000000
1947.0000000000 -2090.0000000000 70.0000000000
1947.0000000000 -2090.0000000000 70.0000000000
1947.0000000000 -2090.0000000000 70.0000000000
2106.0000000000 -1934.0000000000 167.0000000000
2106.0000000000 -1934.0000000000 167.0000000000
2106.0000000000 -1934.0000000000 167.0000000000
2270.0000000000 -1653.0000000000 -364.0000000000
2270.0000000000 -1653.0000000000 -364.0000000000
2270.0000000000 -1653.0000000000 -364.0000000000
2421.0000000000 -1311.0000000000 -631.0000000000
2421.0000000000 -1311.0000000000 -631.0000000000
2421.0000000000 -1311.0000000000 -631.0000000000
2454.0000000000 -1134.0000000000 -811.0000000000
2454.0000000000 -1134.0000000000 -811.0000000000
2454.0000000000 -1134.0000000000 -811.0000000000
2454.0000000000 -1134.0000000000 -811.0000000000
2453.0000000000 -865.0000000000 -1061.0000000000
2453.0000000000 -865.0000000000 -1061.0000000000
2453.0000000000 -865.0000000000 -1061.0000000000
2449.0000000000 -594.0000000000 -1216.0000000000
2449.0000000000 -594.0000000000 -1216.0000000000
2449.0000000000 -594.0000000000 -1216.0000000000
2419.0000000000 -658.0000000000 -1226.0000000000
2419.0000000000 -658.0000000000 -1226.0000000000
2419.0000000000 -658.0000000000 -1226.0000000000
2409.0000000000 -771.0000000000 -1216.0000000000
2409.0000000000 -771.0000000000 -1216.0000000000
2409.0000000000 -771.0000000000 -1216.0000000000
2430.0000000000 -842.0000000000 -1147.0000000000
2430.0000000000 -842.0000000000 -1147.0000000000
2430.0000000000 -842.0000000000 -1147.0000000000
2388.0000000000 -861.0000000000 -1227.0000000000
2388.0000000000 -861.0000000000 -1227.0000000000
2388.0000000000 -861.0000000000 -1227.0000000000
2402.0000000000 -797.0000000000 -1226.0000000000
2402.0000000000 -797.0000000000 -1226.0000000000
2402.0000000000 -797.0000000000 -1226.0000000000
2399.0000000000 -511.0000000000 -1372.0000000000
2399.0000000000 -511.0000000000 -1372.0000000000
2399.0000000000 -511.0000000000 -1372.0000000000
2195.0000000000 -354.0000000000 -1695.0000000000
2195.0000000000 -354.0000000000 -1695.0000000000
2195.0000000000 -354.0000000000 -1695.0000000000
1715.0000000000 180.0000000000 -2185.0000000000
1715.0000000000 180.0000000000 -2185.0000000000
1715.0000000000 180.0000000000 -2185.0000000000
843.0000000000 670.0000000000 -2577.0000000000
843.0000000000 670.0000000000 -2577.0000000000
843.0000000000 670.0000000000 -2577.0000000000
-36.0000000000 785.0000000000 -2649.0000000000
-36.0000000000 785.0000000000 -2649.0000000000
-36.0000000000 785.0000000000 -2649.0000000000
-790.0000000000 781.0000000000 -2549.0000000000
-790.0000000000 781.0000000000 -2549.0000000000
-790.0000000000 781.0000000000 -2549.0000000000
-790.0000000000 781.0000000000 -2549.0000000000
-990.0000000000 719.0000000000 -2492.0000000000
-990.0000000000 719.0000000000 -2492.0000000000
-990.0000000000 719.0000000000 -2492.0000000000
-652.0000000000 812.0000000000 -2567.0000000000
-652.0000000000 812.0000000000 -2567.0000000000
-652.0000000000 812.0000000000 -2567.0000000000
-14.0000000000 563.0000000000 -2696.0000000000
-14.0000000000 563.0000000000 -2696.0000000000
-14.0000000000 563.0000000000 -2696.0000000000
398.0000000000 92.0000000000 -2700.0000000000
398.0000000000 92.0000000000 -2700.0000000000
398.0000000000 92.0000000000 -2700.0000000000
1208.0000000000 130.0000000000 -2472.0000000000
1208.0000000000 130.0000000000 -2472.0000000000
1208.0000000000 130.0000000000 -2472.0000000000
2177.0000000000 -91.0000000000 -1762.0000000000
2177.0000000000 -91.0000000000 -1762.0000000000
2177.0000000000 -91.0000000000 -1762.0000000000
2656.0000000000 -554.0000000000 -837.0000000000
2656.0000000000 -554.0000000000 -837.0000000000
2656.0000000000 -554.0000000000 -837.0000000000
2703.0000000000 -982.0000000000 59.0000000000
2703.0000000000 -982.0000000000 59.0000000000
2703.0000000000 -982.0000000000 59.0000000000
2418.0000000000 -1412.0000000000 760.0000000000
2418.0000000000 -1412.0000000000 760.0000000000
2418.0000000000 -1412.0000000000 760.0000000000
1882.0000000000 -1871.0000000000 1208.0000000000
1882.0000000000 -1871.0000000000 1208.0000000000
1882.0000000000 -1871.0000000000 1208.0000000000
1425.0000000000 -2085.0000000000 1514.0000000000
1425.0000000000 -2085.0000000000 1514.0000000000
1425.0000000000 -2085.0000000000 1514.0000000000
598.0000000000 -2267.0000000000 1818.0000000000
598.0000000000 -2267.0000000000 1818.0000000000
598.0000000000 -2267.0000000000 1818.0000000000
598.0000000000 -2267.0000000000 1818.0000000000
-190.0000000000 -2519.0000000000 1546.0000000000
-190.0000000000 -2519.0000000000 1546.0000000000
-190.0000000000 -2519.0000000000 1546.0000000000
-919.0000000000 -2541.0000000000 1205.0000000000
-919.0000000000 -2541.0000000000 1205.0000000000
-919.0000000000 -2541.0000000000 1205.0000000000
-1642.0000000000 -2298.0000000000 886.0000000000
-1642.0000000000 -2298.0000000000 886.0000000000
-1642.0000000000 -2298.0000000000 886.0000000000
-2227.0000000000 -1882.0000000000 503.0000000000
-2227.0000000000 -1882.0000000000 503.0000000000
-2227.0000000000 -1882.0000000000 503.0000000000
-2537.0000000000 -1485.0000000000 -27.0000000000
-2537.0000000000 -1485.0000000000 -27.0000000000
-2537.0000000000 -1485.0000000000 -27.0000000000
-2552.0000000000 -1187.0000000000 -675.0000000000
-2552.0000000000 -1187.0000000000 -675.0000000000
-2552.0000000000 -1187.0000000000 -675.0000000000
-2405.0000000000 -992.0000000000 -1158.0000000000
-2405.0000000000 -992.0000000000 -1158.0000000000
-2405.0000000000 -992.0000000000 -1158.0000000000
-1627.0000000000 -890.0000000000 -2055.0000000000
-1627.0000000000 -890.0000000000 -2055.0000000000
-1627.0000000000 -890.0000000000 -2055.0000000000
-1242.0000000000 -587.0000000000 -2369.0000000000
-1242.0000000000 -587.0000000000 -2369.0000000000
-1242.0000000000 -587.0000000000 -2369.0000000000
-491.0000000000 -216.0000000000 -2668.0000000000
-491.0000000000 -216.0000000000 -2668.0000000000
-491.0000000000 -216.0000000000 -2668.0000000000
52.0000000000 -144.0000000000 -2700.0000000000
52.0000000000 -144.0000000000 -2700.0000000000
52.0000000000 -144.0000000000 -2700.0000000000
289.0000000000 56.0000000000 -2700.0000000000
289.0000000000 56.0000000000 -2700.0000000000
289.0000000000 56.0000000000 -2700.0000000000
289.0000000000 56.0000000000 -2677.0000000000
446.0000000000 250.0000000000 -2677.0000000000
446.0000000000 250.0000000000 -2677.0000000000
446.0000000000 250.0000000000 -2677.0000000000
711.0000000000 491.0000000000 -2610.0000000000
711.0000000000 491.0000000000 -2610.0000000000
711.0000000000 491.0000000000 -2610.0000000000
798.0000000000 700.0000000000 -2556.0000000000
798.0000000000 700.0000000000 -2556.0000000000
798.0000000000 700.0000000000 -2556.0000000000
805.0000000000 939.0000000000 -2494.0000000000
805.0000000000 939.0000000000 -2494.0000000000
805.0000000000 939.0000000000 -2494.0000000000
674.0000000000 1286.0000000000 -2390.0000000000
674.0000000000 1286.0000000000 -2390.0000000000
674.0000000000 1286.0000000000 -2390.0000000000
457.0000000000 1625.0000000000 -2275.0000000000
457.0000000000 1625.0000000000 -2275.0000000000
457.0000000000 1625.0000000000 -2275.0000000000
315.0000000000 1780.0000000000 -2203.0000000000
315.0000000000 1780.0000000000 -2203.0000000000
315.0000000000 1780.0000000000 -2203.0000000000
190.0000000000 1988.0000000000 -2047.0000000000
190.0000000000 1988.0000000000 -2047.0000000000
190.0000000000 1988.0000000000 -2047.0000000000
104.0000000000 2033.0000000000 -2024.0000000000
104.0000000000 2033.0000000000 -2024.0000000000
104.0000000000 2033.0000000000 -2024.0000000000
-229.0000000000 2073.0000000000 -1973.0000000000
-229.0000000000 2073.0000000000 -1973.0000000000
-229.0000000000 2073.0000000000 -1973.0000000000
-523.0000000000 1938.0000000000 -2020.0000000000
-523.0000000000 1938.0000000000 -2020.0000000000
-523.0000000000 1938.0000000000 -2020.0000000000
-816.0000000000 1693.0000000000 -2116.0000000000
-816.0000000000 1693.0000000000 -2116.0000000000
-816.0000000000 1693.0000000000 -2116.0000000000
-1087.0000000000 1379.0000000000 -2211.0000000000
-1087.0000000000 1379.0000000000 -2211.0000000000
-1087.0000000000 1379.0000000000 -2211.0000000000
-1087.0000000000 1379.0000000000 -2211.0000000000
-1248.0000000000 1033.0000000000 -2283.0000000000
-1248.0000000000 1033.0000000000 -2283.0000000000
-1248.0000000000 1033.0000000000 -2283.0000000000
-1190.0000000000 795.0000000000 -2366.0000000000
-1190.0000000000 795.0000000000 -2366.0000000000
-1190.0000000000 795.0000000000 -2366.0000000000
-1067.0000000000 623.0000000000 -2457.0000000000
-1067.0000000000 623.0000000000 -2457.0000000000
-1067.0000000000 623.0000000000 -2457.0000000000
-1055.0000000000 548.0000000000 -2468.0000000000
-1055.0000000000 548.0000000000 -2468.0000000000
-1055.0000000000 548.0000000000 -2468.0000000000
-1029.0000000000 368.0000000000 -2497.0000000000
-1029.0000000000 368.0000000000 -2497.0000000000
-1029.0000000000 368.0000000000 -2497.0000000000
-1054.0000000000 279.0000000000 -2496.0000000000
-1054.0000000000 279.0000000000 -2496.0000000000
-1054.0000000000 279.0000000000 -2496.0000000000
-954.0000000000 102.0000000000 -2529.0000000000
-954.0000000000 102.0000000000 -2529.0000000000
-954.0000000000 102.0000000000 -2529.0000000000
-798.0000000000 -5.0000000000 -2559.0000000000
-798.0000000000 -5.0000000000 -2559.0000000000
-798.0000000000 -5.0000000000 -2559.0000000000
-729.0000000000 -68.0000000000 -2581.0000000000
-729.0000000000 -68.0000000000 -2581.0000000000
-729.0000000000 -68.0000000000 -2581.0000000000
-645.0000000000 -241.0000000000 -2587.0000000000
-645.0000000000 -241.0000000000 -2587.0000000000
-645.0000000000 -241.0000000000 -2587.0000000000
-572.0000000000 -391.0000000000 -2582.0000000000
-572.0000000000 -391.0000000000 -2582.0000000000
-572.0000000000 -391.0000000000 -2582.0000000000
-467.0000000000 -503.0000000000 -2569.0000000000
-467.0000000000 -503.0000000000 -2569.0000000000
-467.0000000000 -503.0000000000 -2569.0000000000
-467.0000000000 -503.0000000000 -2569.0000000000
-265.0000000000 -579.0000000000 -2575.0000000000
-265.0000000000 -579.0000000000 -2575.0000000000
-265.0000000000 -579.0000000000 -2575.0000000000
-131.0000000000 -679.0000000000 -2569.0000000000
-131.0000000000 -679.0000000000 -2569.0000000000
-131.0000000000 -679.0000000000 -2569.0000000000
-5.0000000000 -763.0000000000 -2527.0000000000
-5.0000000000 -763.0000000000 -2527.0000000000
-5.0000000000 -763.0000000000 -2527.0000000000
318.0000000000 -847.0000000000 -2495.0000000000
318.0000000000 -847.0000000000 -2495.0000000000
318.0000000000 -847.0000000000 -2495.0000000000
691.0000000000 -831.0000000000 -2437.0000000000
691.0000000000 -831.0000000000 -2437.0000000000
691.0000000000 -831.0000000000 -2437.0000000000
926.0000000000 -803.0000000000 -2382.0000000000
926.0000000000 -803.0000000000 -2382.0000000000
926.0000000000 -803.0000000000 -2382.0000000000
1136.0000000000 -698.0000000000 -2341.0000000000
1136.0000000000 -698.0000000000 -2341.0000000000
1136.0000000000 -698.0000000000 -2341.0000000000
1340.0000000000 -539.0000000000 -2303.0000000000
1340.0000000000 -539.0000000000 -2303.0000000000
1340.0000000000 -539.0000000000 -2303.0000000000
1377.0000000000 -362.0000000000 -2319.0000000000
1377.0000000000 -362.0000000000 -2319.0000000000
1377.0000000000 -362.0000000000 -2319.0000000000
1379.0000000000 -94.0000000000 -2364.0000000000
1379.0000000000 -94.0000000000 -2364.0000000000
1379.0000000000 -94.0000000000 -2364.0000000000
1353.0000000000 84.0000000000 -2391.0000000000
1353.0000000000 84.0000000000 -2391.0000000000
1353.0000000000 84.0000000000 -2391.0000000000
1286.0000000000 158.0000000000 -2425.0000000000
1286.0000000000 158.0000000000 -2425.0000000000
1286.0000000000 158.0000000000 -2425.0000000000
1287.0000000000 104.0000000000 -2418.0000000000
1287.0000000000 104.0000000000 -2418.0000000000
1287.0000000000 104.0000000000 -2418.0000000000
1287.0000000000 104.0000000000 -2418.0000000000
1334.0000000000 -109.0000000000 -2393.0000000000
1334.0000000000 -109.0000000000 -2393.0000000000
1334.0000000000 -109.0000000000 -2393.0000000000
1234.0000000000 -278.0000000000 -2397.0000000000
1234.0000000000 -278.0000000000 -2397.0000000000
1234.0000000000 -278.0000000000 -2397.0000000000
969.0000000000 -539.0000000000 -2460.0000000000
969.0000000000 -539.0000000000 -2460.0000000000
969.0000000000 -539.0000000000 -2460.0000000000
755.0000000000 -725.0000000000 -2469.0000000000
755.0000000000 -725.0000000000 -2469.0000000000
755.0000000000 -725.0000000000 -2469.0000000000
314.0000000000 -898.0000000000 -2468.0000000000
314.0000000000 -898.0000000000 -2468.0000000000
314.0000000000 -898.0000000000 -2468.0000000000
-17.0000000000 -921.0000000000 -2484.0000000000
-17.0000000000 -921.0000000000 -2484.0000000000
-17.0000000000 -921.0000000000 -2484.0000000000
-57.0000000000 -911.0000000000 -2476.0000000000
-57.0000000000 -911.0000000000 -2476.0000000000
-57.0000000000 -911.0000000000 -2476.0000000000
-233.0000000000 -855.0000000000 -2480.0000000000
-233.0000000000 -855.0000000000 -2480.0000000000
-233.0000000000 -855.0000000000 -2480.0000000000
-218.0000000000 -572.0000000000 -2560.0000000000
-218.0000000000 -572.0000000000 -2560.0000000000
-218.0000000000 -572.0000000000 -2560.0000000000
-252.0000000000 -663.0000000000 -2540.0000000000
-252.0000000000 -663.0000000000 -2540.0000000000
-252.0000000000 -663.0000000000 -2540.0000000000
-249.0000000000 -710.0000000000 -2528.0000000000
-249.0000000000 -710.0000000000 -2528.0000000000
-249.0000000000 -710.0000000000 -2528.0000000000
-99.0000000000 -557.0000000000 -2573.0000000000
-99.0000000000 -557.0000000000 -2573.0000000000
-99.0000000000 -557.0000000000 -2573.0000000000
-99.0000000000 -557.0000000000 -2573.0000000000
-174.0000000000 -571.0000000000 -2575.0000000000
-174.0000000000 -571.0000000000 -2575.0000000000
-174.0000000000 -571.0000000000 -2575.0000000000
-291.0000000000 -523.0000000000 -2570.0000000000
-291.0000000000 -523.0000000000 -2570.0000000000
-291.0000000000 -523.0000000000 -2570.0000000000
-479.0000000000 -550.0000000000 -2550.0000000000
-479.0000000000 -550.0000000000 -2550.0000000000
-479.0000000000 -550.0000000000 -2550.0000000000
-579.0000000000 -408.0000000000 -2566.0000000000
-579.0000000000 -408.0000000000 -2566.0000000000
-579.0000000000 -408.0000000000 -2566.0000000000
-741.0000000000 -251.0000000000 -2557.0000000000
-741.0000000000 -251.0000000000 -2557.0000000000
-741.0000000000 -251.0000000000 -2557.0000000000
-903.0000000000 92.0000000000 -2542.0000000000
-903.0000000000 92.0000000000 -2542.0000000000
-903.0000000000 92.0000000000 -2542.0000000000
-876.0000000000 176.0000000000 -2541.0000000000
-876.0000000000 176.0000000000 -2541.0000000000
-876.0000000000 176.0000000000 -2541.0000000000
-903.0000000000 338.0000000000 -2542.0000000000
-903.0000000000 338.0000000000 -2542.0000000000
-903.0000000000 338.0000000000 -2542.0000000000
-948.0000000000 575.0000000000 -2496.0000000000
-948.0000000000 575.0000000000 -2496.0000000000
-948.0000000000 575.0000000000 -2496.0000000000
-833.0000000000 745.0000000000 -2503.0000000000
-833.0000000000 745.0000000000 -2503.0000000000
-833.0000000000 745.0000000000 -2503.0000000000
-757.0000000000 897.0000000000 -2477.0000000000
-757.0000000000 897.0000000000 -2477.0000000000
-757.0000000000 897.0000000000 -2477.0000000000
-650.0000000000 1024.0000000000 -2481.0000000000
-650.0000000000 1024.0000000000 -2481.0000000000
-650.0000000000 1024.0000000000 -2481.0000000000
-438.0000000000 1333.0000000000 -2395.0000000000
-438.0000000000 1333.0000000000 -2395.0000000000
-438.0000000000 1333.0000000000 -2395.0000000000
-438.0000000000 1333.0000000000 -2395.0000000000
-261.0000000000 1554.0000000000 -2314.0000000000
-261.0000000000 1554.0000000000 -2314.0000000000
-261.0000000000 1554.0000000000 -2314.0000000000
-90.0000000000 1625.0000000000 -2298.0000000000
-90.0000000000 1625.0000000000 -2298.0000000000
-90.0000000000 1625.0000000000 -2298.0000000000
32.0000000000 1650.0000000000 -2269.0000000000
32.0000000000 1650.0000000000 -2269.0000000000
32.0000000000 1650.0000000000 -2269.0000000000
282.0000000000 1750.0000000000 -2203.0000000000
282.0000000000 1750.0000000000 -2203.0000000000
282.0000000000 1750.0000000000 -2203.0000000000
461.0000000000 1676.0000000000 -2235.0000000000
461.0000000000 1676.0000000000 -2235.0000000000
461.0000000000 1676.0000000000 -2235.0000000000
468.0000000000 1648.0000000000 -2238.0000000000
468.0000000000 1648.0000000000 -2238.0000000000
468.0000000000 1648.0000000000 -2238.0000000000
447.0000000000 1669.0000000000 -2236.0000000000
447.0000000000 1669.0000000000 -2236.0000000000
447.0000000000 1669.0000000000 -2236.0000000000
464.0000000000 1573.0000000000 -2289.0000000000
464.0000000000 1573.0000000000 -2289.0000000000
464.0000000000 1573.0000000000 -2289.0000000000
506.0000000000 1491.0000000000 -2331.0000000000
506.0000000000 1491.0000000000 -2331.0000000000
506.0000000000 1491.0000000000 -2331.0000000000
593.0000000000 1396.0000000000 -2356.0000000000
593.0000000000 1396.0000000000 -2356.0000000000
593.0000000000 1396.0000000000 -2356.0000000000
677.0000000000 1270.0000000000 -2408.0000000000
677.0000000000 1270.0000000000 -2408.0000000000
677.0000000000 1270.0000000000 -2408.0000000000
774.0000000000 1176.0000000000 -2432.0000000000
774.0000000000 1176.0000000000 -2432.0000000000
774.0000000000 1176.0000000000 -2432.0000000000
774.0000000000 1176.0000000000 -2432.0000000000
880.0000000000 1047.0000000000 -2446.0000000000
880.0000000000 1047.0000000000 -2446.0000000000
880.0000000000 1047.0000000000 -2446.0000000000
984.0000000000 978.0000000000 -2435.0000000000
984.0000000000 978.0000000000 -2435.0000000000
984.0000000000 978.0000000000 -2435.0000000000
1046.0000000000 863.0000000000 -2447.0000000000
1046.0000000000 863.0000000000 -2447.0000000000
1046.0000000000 863.0000000000 -2447.0000000000
1100.0000000000 638.0000000000 -2468.0000000000
1100.0000000000 638.0000000000 -2468.0000000000
1100.0000000000 638.0000000000 -2468.0000000000
1132.0000000000 429.0000000000 -2481.0000000000
1132.0000000000 429.0000000000 -2481.0000000000
1132.0000000000 429.0000000000 -2481.0000000000
983.0000000000 381.0000000000 -2542.0000000000
983.0000000000 381.0000000000 -2542.0000000000
983.0000000000 381.0000000000 -2542.0000000000
937.0000000000 427.0000000000 -2544.0000000000
937.0000000000 427.0000000000 -2544.0000000000
937.0000000000 427.0000000000 -2544.0000000000
915.0000000000 191.0000000000 -2550.0000000000
915.0000000000 191.0000000000 -2550.0000000000
915.0000000000 191.0000000000 -2550.0000000000
732.0000000000 -433.0000000000 -2542.0000000000
732.0000000000 -433.0000000000 -2542.0000000000
732.0000000000 -433.0000000000 -2542.0000000000
533.0000000000 -611.0000000000 -2543.0000000000
533.0000000000 -611.0000000000 -2543.0000000000
533.0000000000 -611.0000000000 -2543.0000000000
154.0000000000 -840.0000000000 -2515.0000000000
154.0000000000 -840.0000000000 -2515.0000000000
154.0000000000 -840.0000000000 -2515.0000000000
-124.0000000000 -1026.0000000000 -2438.0000000000
-124.0000000000 -1026.0000000000 -2438.0000000000
-124.0000000000 -1026.0000000000 -2438.0000000000
-124.0000000000 -1026.0000000000 -2438.0000000000
-279.0000000000 -1042.0000000000 -2419.0000000000
-279.0000000000 -1042.0000000000 -2419.0000000000
-279.0000000000 -1042.0000000000 -2419.0000000000
-582.0000000000 -921.0000000000 -2405.0000000000
-582.0000000000 -921.0000000000 -2405.0000000000
-582.0000000000 -921.0000000000 -2405.0000000000
-555.0000000000 -927.0000000000 -2413.0000000000
-555.0000000000 -927.0000000000 -2413.0000000000
-555.0000000000 -927.0000000000 -2413.0000000000
-726.0000000000 -842.0000000000 -2395.0000000000
-726.0000000000 -842.0000000000 -2395.0000000000
-726.0000000000 -842.0000000000 -2395.0000000000
-798.0000000000 -736.0000000000 -2402.0000000000
-798.0000000000 -736.0000000000 -2402.0000000000
-798.0000000000 -736.0000000000 -2402.0000000000
-771.0000000000 -549.0000000000 -2451.0000000000
-771.0000000000 -549.0000000000 -2451.0000000000
-771.0000000000 -549.0000000000 -2451.0000000000
-980.0000000000 -507.0000000000 -2401.0000000000
-980.0000000000 -507.0000000000 -2401.0000000000
-980.0000000000 -507.0000000000 -2401.0000000000
-942.0000000000 -204.0000000000 -2470.0000000000
-942.0000000000 -204.0000000000 -2470.0000000000
-942.0000000000 -204.0000000000 -2470.0000000000
-1112.0000000000 14.0000000000 -2423.0000000000
-1112.0000000000 14.0000000000 -2423.0000000000
-1112.0000000000 14.0000000000 -2423.0000000000
-1099.0000000000 173.0000000000 -2424.0000000000
-1099.0000000000 173.0000000000 -2424.0000000000
-1099.0000000000 173.0000000000 -2424.0000000000
-994.0000000000 370.0000000000 -2457.0000000000
-994.0000000000 370.0000000000 -2457.0000000000
-994.0000000000 370.0000000000 -2457.0000000000
-898.0000000000 774.0000000000 -2423.0000000000
-898.0000000000 774.0000000000 -2423.0000000000
-898.0000000000 774.0000000000 -2423.0000000000
-876.0000000000 974.0000000000 -2363.0000000000
-876.0000000000 974.0000000000 -2363.0000000000
-876.0000000000 974.0000000000 -2363.0000000000
-876.0000000000 974.0000000000 -2363.0000000000
-925.0000000000 1151.0000000000 -2294.0000000000
-925.0000000000 1151.0000000000 -2294.0000000000
-925.0000000000 1151.0000000000 -2294.0000000000
-905.0000000000 1041.0000000000 -2340.0000000000
-905.0000000000 1041.0000000000 -2340.0000000000
-905.0000000000 1041.0000000000 -2340.0000000000
-1058.0000000000 1135.0000000000 -2254.0000000000
-1058.0000000000 1135.0000000000 -2254.0000000000
-1058.0000000000 1135.0000000000 -2254.0000000000
-878.0000000000 1304.0000000000 -2248.0000000000
-878.0000000000 1304.0000000000 -2248.0000000000
-878.0000000000 1304.0000000000 -2248.0000000000
-371.0000000000 1596.0000000000 -2219.0000000000
-371.0000000000 1596.0000000000 -2219.0000000000
-371.0000000000 1596.0000000000 -2219.0000000000
-40.0000000000 1741.0000000000 -2160.0000000000
-40.0000000000 1741.0000000000 -2160.0000000000
-40.0000000000 1741.0000000000 -2160.0000000000
5.0000000000 1704.0000000000 -2193.0000000000
5.0000000000 1704.0000000000 -2193.0000000000
5.0000000000 1704.0000000000 -2193.0000000000
140.0000000000 1559.0000000000 -2317.0000000000
140.0000000000 1559.0000000000 -2317.0000000000
140.0000000000 1559.0000000000 -2317.0000000000
481.0000000000 1453.0000000000 -2333.0000000000
481.0000000000 1453.0000000000 -2333.0000000000
481.0000000000 1453.0000000000 -2333.0000000000
913.0000000000 1296.0000000000 -2297.0000000000
913.0000000000 1296.0000000000 -2297.0000000000
913.0000000000 1296.0000000000 -2297.0000000000
1099.0000000000 1310.0000000000 -2233.0000000000
1099.0000000000 1310.0000000000 -2233.0000000000
1099.0000000000 1310.0000000000 -2233.0000000000
1293.0000000000 1222.0000000000 -2193.0000000000
1293.0000000000 1222.0000000000 -2193.0000000000
1293.0000000000 1222.0000000000 -2193.0000000000
1293.0000000000 1222.0000000000 -2193.0000000000
1338.0000000000 981.0000000000 -2277.0000000000
1338.0000000000 981.0000000000 -2277.0000000000
1338.0000000000 981.0000000000 -2277.0000000000
1223.0000000000 770.0000000000 -2394.0000000000
1223.0000000000 770.0000000000 -2394.0000000000
1223.0000000000 770.0000000000 -2394.0000000000
1369.0000000000 510.0000000000 -2387.0000000000
1369.0000000000 510.0000000000 -2387.0000000000
1369.0000000000 510.0000000000 -2387.0000000000
1369.0000000000 434.0000000000 -2386.0000000000
1369.0000000000 434.0000000000 -2386.0000000000
1369.0000000000 434.0000000000 -2386.0000000000
1436.0000000000 99.0000000000 -2370.0000000000
1436.0000000000 99.0000000000 -2370.0000000000
1436.0000000000 99.0000000000 -2370.0000000000
1306.0000000000 -704.0000000000 -2291.0000000000
1306.0000000000 -704.0000000000 -2291.0000000000
1306.0000000000 -704.0000000000 -2291.0000000000
956.0000000000 -1342.0000000000 -2140.0000000000
956.0000000000 -1342.0000000000 -2140.0000000000
956.0000000000 -1342.0000000000 -2140.0000000000
603.0000000000 -1735.0000000000 -1981.0000000000
603.0000000000 -1735.0000000000 -1981.0000000000
603.0000000000 -1735.0000000000 -1981.0000000000
530.0000000000 -1860.0000000000 -1888.0000000000
530.0000000000 -1860.0000000000 -1888.0000000000
530.0000000000 -1860.0000000000 -1888.0000000000
578.0000000000 -1956.0000000000 -1795.0000000000
578.0000000000 -1956.0000000000 -1795.0000000000
578.0000000000 -1956.0000000000 -1795.0000000000
425.0000000000 -2189.0000000000 -1571.0000000000
425.0000000000 -2189.0000000000 -1571.0000000000
425.0000000000 -2189.0000000000 -1571.0000000000
130.0000000000 -2418.0000000000 -1271.0000000000
130.0000000000 -2418.0000000000 -1271.0000000000
130.0000000000 -2418.0000000000 -1271.0000000000
-574.0000000000 -2415.0000000000 -1113.0000000000
-574.0000000000 -2415.0000000000 -1113.0000000000
-574.0000000000 -2415.0000000000 -1113.0000000000
-574.0000000000 -2415.0000000000 -1113.0000000000
-1265.0000000000 -2216.0000000000 -1024.0000000000
-1265.0000000000 -2216.0000000000 -1024.0000000000
-1265.0000000000 -2216.0000000000 -1024.0000000000
-1752.0000000000 -2019.0000000000 -839.0000000000
-1752.0000000000 -2019.0000000000 -839.0000000000
-1752.0000000000 -2019.0000000000 -839.0000000000
-2178.0000000000 -1837.0000000000 -245.0000000000
-2178.0000000000 -1837.0000000000 -245.0000000000
-2178.0000000000 -1837.0000000000 -245.0000000000
-2416.0000000000 -1551.0000000000 552.0000000000
-2416.0000000000 -1551.0000000000 552.0000000000
-2416.0000000000 -1551.0000000000 552.0000000000
-2439.0000000000 -1188.0000000000 1192.0000000000
-2439.0000000000 -1188.0000000000 1192.0000000000
-2439.0000000000 -1188.0000000000 1192.0000000000
-2372.0000000000 -923.0000000000 1581.0000000000
-2372.0000000000 -923.0000000000 1581.0000000000
-2372.0000000000 -923.0000000000 1581.0000000000
-2378.0000000000 -769.0000000000 1657.0000000000
-2378.0000000000 -769.0000000000 1657.0000000000
-2378.0000000000 -769.0000000000 1657.0000000000
-2430.0000000000 -562.0000000000 1657.0000000000
-2430.0000000000 -562.0000000000 1657.0000000000
-2430.0000000000 -562.0000000000 1657.0000000000
-2435.0000000000 -505.0000000000 1661.0000000000
-2435.0000000000 -505.0000000000 1661.0000000000
-2435.0000000000 -505.0000000000 1661.0000000000
-2160.0000000000 -145.0000000000 2097.0000000000
-2160.0000000000 -145.0000000000 2097.0000000000
-2160.0000000000 -145.0000000000 2097.0000000000
-1590.0000000000 148.0000000000 2558.0000000000
-1590.0000000000 148.0000000000 2558.0000000000
-1590.0000000000 148.0000000000 2558.0000000000
-1262.0000000000 71.0000000000 2727.0000000000
-1262.0000000000 71.0000000000 2727.0000000000
-1262.0000000000 71.0000000000 2727.0000000000
-1262.0000000000 71.0000000000 2727.0000000000
-892.0000000000 228.0000000000 2869.0000000000
-892.0000000000 228.0000000000 2869.0000000000
-892.0000000000 228.0000000000 2869.0000000000
-522.0000000000 286.0000000000 2949.0000000000
-522.0000000000 286.0000000000 2949.0000000000
-522.0000000000 286.0000000000 2949.0000000000
-48.0000000000 248.0000000000 3010.0000000000
-48.0000000000 248.0000000000 3010.0000000000
-48.0000000000 248.0000000000 3010.0000000000
561.0000000000 142.0000000000 2953.0000000000
561.0000000000 142.0000000000 2953.0000000000
561.0000000000 142.0000000000 2953.0000000000
1280.0000000000 39.0000000000 2728.0000000000
1280.0000000000 39.0000000000 2728.0000000000
1280.0000000000 39.0000000000 2728.0000000000
1677.0000000000 20.0000000000 2497.0000000000
1677.0000000000 20.0000000000 2497.0000000000
1677.0000000000 20.0000000000 2497.0000000000
2048.0000000000 -3.0000000000 2192.0000000000
2048.0000000000 -3.0000000000 2192.0000000000
2048.0000000000 -3.0000000000 2192.0000000000
2323.0000000000 -176.0000000000 1849.0000000000
2323.0000000000 -176.0000000000 1849.0000000000
2323.0000000000 -176.0000000000 1849.0000000000
2473.0000000000 -410.0000000000 1578.0000000000
2473.0000000000 -410.0000000000 1578.0000000000
2473.0000000000 -410.0000000000 1578.0000000000
2590.0000000000 -522.0000000000 1298.0000000000
2590.0000000000 -522.0000000000 1298.0000000000
2590.0000000000 -522.0000000000 1298.0000000000
2670.0000000000 -802.0000000000 813.0000000000
2670.0000000000 -802.0000000000 813.0000000000
2670.0000000000 -802.0000000000 813.0000000000
2710.0000000000 -887.0000000000 168.0000000000
2710.0000000000 -887.0000000000 168.0000000000
2710.0000000000 -887.0000000000 168.0000000000
2710.0000000000 -887.0000000000 168.0000000000
2636.0000000000 -981.0000000000 -280.0000000000
2636.0000000000 -981.0000000000 -280.0000000000
2636.0000000000 -981.0000000000 -280.0000000000
2614.0000000000 -759.0000000000 -694.0000000000
2614.0000000000 -759.0000000000 -694.0000000000
2614.0000000000 -759.0000000000 -694.0000000000
2635.0000000000 -290.0000000000 -924.0000000000
2635.0000000000 -290.0000000000 -924.0000000000
2635.0000000000 -290.0000000000 -924.0000000000
2529.0000000000 -29.0000000000 -1197.0000000000
2529.0000000000 -29.0000000000 -1197.0000000000
2529.0000000000 -29.0000000000 -1197.0000000000
2237.0000000000 -75.0000000000 -1629.0000000000
2237.0000000000 -75.0000000000 -1629.0000000000
2237.0000000000 -75.0000000000 -1629.0000000000
2124.0000000000 -79.0000000000 -1742.0000000000
2124.0000000000 -79.0000000000 -1742.0000000000
2124.0000000000 -79.0000000000 -1742.0000000000
2028.0000000000 5.0000000000 -1851.0000000000
2028.0000000000 5.0000000000 -1851.0000000000
2028.0000000000 5.0000000000 -1851.0000000000
1826.0000000000 25.0000000000 -2034.0000000000
1826.0000000000 25.0000000000 -2034.0000000000
1826.0000000000 25.0000000000 -2034.0000000000
1582.0000000000 153.0000000000 -2215.0000000000
1582.0000000000 153.0000000000 -2215.0000000000
1582.0000000000 153.0000000000 -2215.0000000000
1197.0000000000 221.0000000000 -2409.0000000000
1197.0000000000 221.0000000000 -2409.0000000000
1197.0000000000 221.0000000000 -2409.0000000000
773.0000000000 283.0000000000 -2568.0000000000
773.0000000000 283.0000000000 -2568.0000000000
773.0000000000 283.0000000000 -2568.0000000000
290.0000000000 173.0000000000 -2661.0000000000
290.0000000000 173.0000000000 -2661.0000000000
290.0000000000 173.0000000000 -2661.0000000000
-332.0000000000 202.0000000000 -2668.0000000000
-332.0000000000 202.0000000000 -2668.0000000000
-332.0000000000 202.0000000000 -2668.0000000000
-332.0000000000 202.0000000000 -2668.0000000000
-939.0000000000 140.0000000000 -2541.0000000000
-939.0000000000 140.0000000000 -2541.0000000000
-939.0000000000 140.0000000000 -2541.0000000000
-1517.0000000000 -37.0000000000 -2287.0000000000
-1517.0000000000 -37.0000000000 -2287.0000000000
-1517.0000000000 -37.0000000000 -2287.0000000000
-1947.0000000000 -55.0000000000 -1990.0000000000
-1947.0000000000 -55.0000000000 -1990.0000000000
-1947.0000000000 -55.0000000000 -1990.0000000000
-2328.0000000000 -66.0000000000 -1590.0000000000
-2328.0000000000 -66.0000000000 -1590.0000000000
-2328.0000000000 -66.0000000000 -1590.0000000000
-2534.0000000000 -174.0000000000 -1255.0000000000
-2534.0000000000 -174.0000000000 -1255.0000000000
-2534.0000000000 -174.0000000000 -1255.0000000000
-2758.0000000000 -155.0000000000 -790.0000000000
-2758.0000000000 -155.0000000000 -790.0000000000
-2758.0000000000 -155.0000000000 -790.0000000000
-2873.0000000000 -177.0000000000 -309.0000000000
-2873.0000000000 -177.0000000000 -309.0000000000
-2873.0000000000 -177.0000000000 -309.0000000000
-2924.0000000000 -170.0000000000 262.0000000000
-2924.0000000000 -170.0000000000 262.0000000000
-2924.0000000000 -170.0000000000 262.0000000000
-2863.0000000000 -387.0000000000 631.0000000000
-2863.0000000000 -387.0000000000 631.0000000000
-2863.0000000000 -387.0000000000 631.0000000000
-2822.0000000000 -519.0000000000 764.0000000000
-2822.0000000000 -519.0000000000 764.0000000000
-2822.0000000000 -519.0000000000 764.0000000000
-2699.0000000000 -615.0000000000 1074.0000000000
-2699.0000000000 -615.0000000000 1074.0000000000
-2699.0000000000 -615.0000000000 1074.0000000000
-2372.0000000000 -891.0000000000 1615.0000000000
-2372.0000000000 -891.0000000000 1615.0000000000
-2372.0000000000 -891.0000000000 1615.0000000000
-2372.0000000000 -891.0000000000 1615.0000000000
-2003.0000000000 -878.0000000000 2063.0000000000
-2003.0000000000 -878.0000000000 2063.0000000000
-2003.0000000000 -878.0000000000 2063.0000000000
-1714.0000000000 -804.0000000000 2333.0000000000
-1714.0000000000 -804.0000000000 2333.0000000000
-1714.0000000000 -804.0000000000 2333.0000000000
-1484.0000000000 -732.0000000000 2509.0000000000
-1484.0000000000 -732.0000000000 2509.0000000000
-1484.0000000000 -732.0000000000 2509.0000000000
-1291.0000000000 -635.0000000000 2640.0000000000
-1291.0000000000 -635.0000000000 2640.0000000000
-1291.0000000000 -635.0000000000 2640.0000000000
-982.0000000000 -548.0000000000 2782.0000000000
-982.0000000000 -548.0000000000 2782.0000000000
-982.0000000000 -548.0000000000 2782.0000000000
-292.0000000000 -398.0000000000 2957.0000000000
-292.0000000000 -398.0000000000 2957.0000000000
-292.0000000000 -398.0000000000 2957.0000000000
293.0000000000 -376.0000000000 2937.0000000000
293.0000000000 -376.0000000000 2937.0000000000
293.0000000000 -376.0000000000 2937.0000000000
843.0000000000 -350.0000000000 2831.0000000000
843.0000000000 -350.0000000000 2831.0000000000
843.0000000000 -350.0000000000 2831.0000000000
1293.0000000000 -119.0000000000 2672.0000000000
1293.0000000000 -119.0000000000 2672.0000000000
1293.0000000000 -119.0000000000 2672.0000000000
1381.0000000000 199.0000000000 2616.0000000000
1381.0000000000 199.0000000000 2616.0000000000
1381.0000000000 199.0000000000 2616.0000000000
1744.0000000000 280.0000000000 2356.0000000000
1744.0000000000 280.0000000000 2356.0000000000
1744.0000000000 280.0000000000 2356.0000000000
1963.0000000000 441.0000000000 2147.0000000000
1963.0000000000 441.0000000000 2147.0000000000
1963.0000000000 441.0000000000 2147.0000000000
1963.0000000000 441.0000000000 1891.0000000000
2219.0000000000 493.0000000000 1870.0000000000
2219.0000000000 493.0000000000 1870.0000000000
2219.0000000000 493.0000000000 1870.0000000000
2336.0000000000 517.0000000000 1720.0000000000
2336.0000000000 517.0000000000 1720.0000000000
2336.0000000000 517.0000000000 1720.0000000000
2449.0000000000 481.0000000000 1537.0000000000
2449.0000000000 481.0000000000 1537.0000000000
2449.0000000000 481.0000000000 1537.0000000000
2626.0000000000 196.0000000000 1235.0000000000
2626.0000000000 196.0000000000 1235.0000000000
2626.0000000000 196.0000000000 1235.0000000000
2765.0000000000 106.0000000000 892.0000000000
2765.0000000000 106.0000000000 892.0000000000
2765.0000000000 106.0000000000 892.0000000000
2863.0000000000 81.0000000000 379.0000000000
2863.0000000000 81.0000000000 379.0000000000
2863.0000000000 81.0000000000 379.0000000000
2862.0000000000 -30.0000000000 -57.0000000000
2862.0000000000 -30.0000000000 -57.0000000000
2862.0000000000 -30.0000000000 -57.0000000000
2793.0000000000 -16.0000000000 -516.0000000000
2793.0000000000 -16.0000000000 -516.0000000000
2793.0000000000 -16.0000000000 -516.0000000000
2629.0000000000 3.0000000000 -1017.0000000000
2629.0000000000 3.0000000000 -1017.0000000000
2629.0000000000 3.0000000000 -1017.0000000000
2521.0000000000 68.0000000000 -1251.0000000000
2521.0000000000 68.0000000000 -1251.0000000000
2521.0000000000 68.0000000000 -1251.0000000000
2503.0000000000 335.0000000000 -1281.0000000000
2503.0000000000 335.0000000000 -1281.0000000000
2503.0000000000 335.0000000000 -1281.0000000000
2445.0000000000 633.0000000000 -1306.0000000000
2445.0000000000 633.0000000000 -1306.0000000000
2445.0000000000 633.0000000000 -1306.0000000000
2190.0000000000 643.0000000000 -1643.0000000000
2190.0000000000 643.0000000000 -1643.0000000000
2190.0000000000 643.0000000000 -1643.0000000000
2190.0000000000 643.0000000000 -1643.0000000000
2021.0000000000 648.0000000000 -1814.0000000000
2021.0000000000 648.0000000000 -1814.0000000000
2021.0000000000 648.0000000000 -1814.0000000000
1779.0000000000 640.0000000000 -2029.0000000000
1779.0000000000 640.0000000000 -2029.0000000000
1779.0000000000 640.0000000000 -2029.0000000000
1518.0000000000 526.0000000000 -2232.0000000000
1518.0000000000 526.0000000000 -2232.0000000000
1518.0000000000 526.0000000000 -2232.0000000000
1126.0000000000 540.0000000000 -2423.0000000000
1126.0000000000 540.0000000000 -2423.0000000000
1126.0000000000 540.0000000000 -2423.0000000000
560.0000000000 662.0000000000 -2578.0000000000
560.0000000000 662.0000000000 -2578.0000000000
560.0000000000 662.0000000000 -2578.0000000000
317.0000000000 488.0000000000 -2633.0000000000
317.0000000000 488.0000000000 -2633.0000000000
317.0000000000 488.0000000000 -2633.0000000000
-225.0000000000 361.0000000000 -2663.0000000000
-225.0000000000 361.0000000000 -2663.0000000000
-225.0000000000 361.0000000000 -2663.0000000000
-671.0000000000 195.0000000000 -2594.0000000000
-671.0000000000 195.0000000000 -2594.0000000000
-671.0000000000 195.0000000000 -2594.0000000000
-1001.0000000000 290.0000000000 -2482.0000000000
-1001.0000000000 290.0000000000 -2482.0000000000
-1001.0000000000 290.0000000000 -2482.0000000000
-1418.0000000000 95.0000000000 -2314.0000000000
-1418.0000000000 95.0000000000 -2314.0000000000
-1418.0000000000 95.0000000000 -2314.0000000000
-1882.0000000000 -130.0000000000 -2025.0000000000
-1882.0000000000 -130.0000000000 -2025.0000000000
-1882.0000000000 -130.0000000000 -2025.0000000000
-2094.0000000000 -183.0000000000 -1817.0000000000
-2094.0000000000 -183.0000000000 -1817.0000000000
-2094.0000000000 -183.0000000000 -1817.0000000000
-2094.0000000000 -183.0000000000 -1817.0000000000
-2401.0000000000 -317.0000000000 -1439.0000000000
-2401.0000000000 -317.0000000000 -1439.0000000000
-2401.0000000000 -317.0000000000 -1439.0000000000
-2530.0000000000 -437.0000000000 -1170.0000000000
-2530.0000000000 -437.0000000000 -1170.0000000000
-2530.0000000000 -437.0000000000 -1170.0000000000
-2684.0000000000 -644.0000000000 -748.0000000000
-2684.0000000000 -644.0000000000 -748.0000000000
-2684.0000000000 -644.0000000000 -748.0000000000
-2784.0000000000 -891.0000000000 -26.0000000000
-2784.0000000000 -891.0000000000 -26.0000000000
-2784.0000000000 -891.0000000000 -26.0000000000
-2714.0000000000 -1095.0000000000 554.0000000000
-2714.0000000000 -1095.0000000000 554.0000000000
-2714.0000000000 -1095.0000000000 554.0000000000
-2605.0000000000 -1260.0000000000 667.0000000000
-2605.0000000000 -1260.0000000000 667.0000000000
-2605.0000000000 -1260.0000000000 667.0000000000
-2355.0000000000 -1276.0000000000 1424.0000000000
-2355.0000000000 -1276.0000000000 1424.0000000000
-2355.0000000000 -1276.0000000000 1424.0000000000
-1821.0000000000 -1236.0000000000 2153.0000000000
-1821.0000000000 -1236.0000000000 2153.0000000000
-1821.0000000000 -1236.0000000000 2153.0000000000
-1179.0000000000 -1177.0000000000 2598.0000000000
-1179.0000000000 -1177.0000000000 2598.0000000000
-1179.0000000000 -1177.0000000000 2598.0000000000
-566.0000000000 -922.0000000000 2877.0000000000
-566.0000000000 -922.0000000000 2877.0000000000
-566.0000000000 -922.0000000000 2877.0000000000
-205.0000000000 -1101.0000000000 2851.0000000000
-205.0000000000 -1101.0000000000 2851.0000000000
-205.0000000000 -1101.0000000000 2851.0000000000
161.0000000000 -828.0000000000 2949.0000000000
161.0000000000 -828.0000000000 2949.0000000000
161.0000000000 -828.0000000000 2949.0000000000
567.0000000000 -909.0000000000 2850.0000000000
567.0000000000 -909.0000000000 2850.0000000000
567.0000000000 -909.0000000000 2850.0000000000
567.0000000000 -909.0000000000 2850.0000000000
1141.0000000000 -842.0000000000 2672.0000000000
1141.0000000000 -842.0000000000 2672.0000000000
1141.0000000000 -842.0000000000 2672.0000000000
1728.0000000000 -769.0000000000 2312.0000000000
1728.0000000000 -769.0000000000 2312.0000000000
1728.0000000000 -769.0000000000 2312.0000000000
2108.0000000000 -749.0000000000 1954.0000000000
2108.0000000000 -749.0000000000 1954.0000000000
2108.0000000000 -749.0000000000 1954.0000000000
2447.0000000000 -729.0000000000 1494.0000000000
2447.0000000000 -729.0000000000 1494.0000000000
2447.0000000000 -729.0000000000 1494.0000000000
2663.0000000000 -718.0000000000 947.0000000000
2663.0000000000 -718.0000000000 947.0000000000
2663.0000000000 -718.0000000000 947.0000000000
2768.0000000000 -492.0000000000 777.0000000000
2768.0000000000 -492.0000000000 777.0000000000
2768.0000000000 -492.0000000000 777.0000000000
2774.0000000000 -407.0000000000 754.0000000000
2774.0000000000 -407.0000000000 754.0000000000
2774.0000000000 -407.0000000000 754.0000000000
2801.0000000000 -326.0000000000 739.0000000000
2801.0000000000 -326.0000000000 739.0000000000
2801.0000000000 -326.0000000000 739.0000000000
2816.0000000000 -290.0000000000 736.0000000000
2816.0000000000 -290.0000000000 736.0000000000
2816.0000000000 -290.0000000000 736.0000000000
2842.0000000000 -210.0000000000 596.0000000000
2842.0000000000 -210.0000000000 596.0000000000
2842.0000000000 -210.0000000000 596.0000000000
2887.0000000000 -243.0000000000 290.0000000000
2887.0000000000 -243.0000000000 290.0000000000
2887.0000000000 -243.0000000000 290.0000000000
2880.0000000000 -136.0000000000 418.0000000000
2880.0000000000 -136.0000000000 418.0000000000
2880.0000000000 -136.0000000000 418.0000000000
2880.0000000000 -136.0000000000 418.0000000000
2886.0000000000 -18.0000000000 420.0000000000
2886.0000000000 -18.0000000000 420.0000000000
2886.0000000000 -18.0000000000 420.0000000000
2894.0000000000 142.0000000000 278.0000000000
2894.0000000000 142.0000000000 278.0000000000
2894.0000000000 142.0000000000 278.0000000000
2856.0000000000 225.0000000000 -206.0000000000
2856.0000000000 225.0000000000 -206.0000000000
2856.0000000000 225.0000000000 -206.0000000000
2727.0000000000 282.0000000000 -758.0000000000
2727.0000000000 282.0000000000 -758.0000000000
2727.0000000000 282.0000000000 -758.0000000000
2650.0000000000 96.0000000000 -944.0000000000
2650.0000000000 96.0000000000 -944.0000000000
2650.0000000000 96.0000000000 -944.0000000000
2640.0000000000 153.0000000000 -953.0000000000
2640.0000000000 153.0000000000 -953.0000000000
2640.0000000000 153.0000000000 -953.0000000000
2700.0000000000 312.0000000000 -811.0000000000
2700.0000000000 312.0000000000 -811.0000000000
2700.0000000000 312.0000000000 -811.0000000000
2797.0000000000 428.0000000000 -479.0000000000
2797.0000000000 428.0000000000 -479.0000000000
2797.0000000000 428.0000000000 -479.0000000000
2784.0000000000 694.0000000000 -335.0000000000
2784.0000000000 694.0000000000 -335.0000000000
2784.0000000000 694.0000000000 -335.0000000000
2664.0000000000 1156.0000000000 -211.0000000000
2664.0000000000 1156.0000000000 -211.0000000000
2664.0000000000 1156.0000000000 -211.0000000000
2593.0000000000 1300.0000000000 -353.0000000000
2593.0000000000 1300.0000000000 -353.0000000000
2593.0000000000 1300.0000000000 -353.0000000000
2307.0000000000 1618.0000000000 -760.0000000000
2307.0000000000 1618.0000000000 -760.0000000000
2307.0000000000 1618.0000000000 -760.0000000000
2307.0000000000 1618.0000000000 -760.0000000000
1915.0000000000 1707.0000000000 -1307.0000000000
1915.0000000000 1707.0000000000 -1307.0000000000
1915.0000000000 1707.0000000000 -1307.0000000000
1580.0000000000 1676.0000000000 -1689.0000000000
1580.0000000000 1676.0000000000 -1689.0000000000
1580.0000000000 1676.0000000000 -1689.0000000000
1218.0000000000 1645.0000000000 -1961.0000000000
1218.0000000000 1645.0000000000 -1961.0000000000
1218.0000000000 1645.0000000000 -1961.0000000000
752.0000000000 1669.0000000000 -2137.0000000000
752.0000000000 1669.0000000000 -2137.0000000000
752.0000000000 1669.0000000000 -2137.0000000000
372.0000000000 1752.0000000000 -2176.0000000000
372.0000000000 1752.0000000000 -2176.0000000000
372.0000000000 1752.0000000000 -2176.0000000000
-9.0000000000 1814.0000000000 -2155.0000000000
-9.0000000000 1814.0000000000 -2155.0000000000
-9.0000000000 1814.0000000000 -2155.0000000000
-458.0000000000 1767.0000000000 -2136.0000000000
-458.0000000000 1767.0000000000 -2136.0000000000
-458.0000000000 1767.0000000000 -2136.0000000000
-864.0000000000 1752.0000000000 -2031.0000000000
-864.0000000000 1752.0000000000 -2031.0000000000
-864.0000000000 1752.0000000000 -2031.0000000000
-1276.0000000000 1687.0000000000 -1899.0000000000
-1276.0000000000 1687.0000000000 -1899.0000000000
-1276.0000000000 1687.0000000000 -1899.0000000000
-1562.0000000000 1559.0000000000 -1809.0000000000
-1562.0000000000 1559.0000000000 -1809.0000000000
-1562.0000000000 1559.0000000000 -1809.0000000000
-1815.0000000000 1496.0000000000 -1624.0000000000
-1815.0000000000 1496.0000000000 -1624.0000000000
-1815.0000000000 1496.0000000000 -1624.0000000000
-2082.0000000000 1341.0000000000 -1475.0000000000
-2082.0000000000 1341.0000000000 -1475.0000000000
-2082.0000000000 1341.0000000000 -1475.0000000000
-2082.0000000000 1226.0000000000 -1267.0000000000
-2290.0000000000 1226.0000000000 -1267.0000000000
-2290.0000000000 1226.0000000000 -1267.0000000000
-2290.0000000000 1226.0000000000 -1267.0000000000
-2428.0000000000 1229.0000000000 -1048.0000000000
-2428.0000000000 1229.0000000000 -1048.0000000000
-2428.0000000000 1229.0000000000 -1048.0000000000
-2493.0000000000 1258.0000000000 -901.0000000000
-2493.0000000000 1258.0000000000 -901.0000000000
-2493.0000000000 1258.0000000000 -901.0000000000
-2631.0000000000 1240.0000000000 -565.0000000000
-2631.0000000000 1240.0000000000 -565.0000000000
-2631.0000000000 1240.0000000000 -565.0000000000
-2747.0000000000 1141.0000000000 -52.0000000000
-2747.0000000000 1141.0000000000 -52.0000000000
-2747.0000000000 1141.0000000000 -52.0000000000
-2809.0000000000 983.0000000000 449.0000000000
-2809.0000000000 983.0000000000 449.0000000000
-2809.0000000000 983.0000000000 449.0000000000
-2716.0000000000 947.0000000000 1017.0000000000
-2716.0000000000 947.0000000000 1017.0000000000
-2716.0000000000 947.0000000000 1017.0000000000
-2593.0000000000 887.0000000000 1396.0000000000
-2593.0000000000 887.0000000000 1396.0000000000
-2593.0000000000 887.0000000000 1396.0000000000
-2441.0000000000 722.0000000000 1745.0000000000
-2441.0000000000 722.0000000000 1745.0000000000
-2441.0000000000 722.0000000000 1745.0000000000
-2156.0000000000 600.0000000000 2153.0000000000
-2156.0000000000 600.0000000000 2153.0000000000
-2156.0000000000 600.0000000000 2153.0000000000
-1595.0000000000 458.0000000000 2644.0000000000
-1595.0000000000 458.0000000000 2644.0000000000
-1595.0000000000 458.0000000000 2644.0000000000
-1053.0000000000 254.0000000000 2935.0000000000
-1053.0000000000 254.0000000000 2935.0000000000
-1053.0000000000 254.0000000000 2935.0000000000
-847.0000000000 166.0000000000 3005.0000000000
-847.0000000000 166.0000000000 3005.0000000000
-847.0000000000 166.0000000000 3005.0000000000
-847.0000000000 166.0000000000 3005.0000000000
-355.0000000000 32.0000000000 3102.0000000000
-355.0000000000 32.0000000000 3102.0000000000
-355.0000000000 32.0000000000 3102.0000000000
135.0000000000 -139.0000000000 3103.0000000000
135.0000000000 -139.0000000000 3103.0000000000
135.0000000000 -139.0000000000 3103.0000000000
410.0000000000 -980.0000000000 2906.0000000000
410.0000000000 -980.0000000000 2906.0000000000
410.0000000000 -980.0000000000 2906.0000000000
662.0000000000 -1617.0000000000 2507.0000000000
662.0000000000 -1617.0000000000 2507.0000000000
662.0000000000 -1617.0000000000 2507.0000000000
666.0000000000 -2327.0000000000 1725.0000000000
666.0000000000 -2327.0000000000 1725.0000000000
666.0000000000 -2327.0000000000 1725.0000000000
475.0000000000 -2665.0000000000 1096.0000000000
475.0000000000 -2665.0000000000 1096.0000000000
475.0000000000 -2665.0000000000 1096.0000000000
417.0000000000 -2793.0000000000 244.0000000000
417.0000000000 -2793.0000000000 244.0000000000
417.0000000000 -2793.0000000000 244.0000000000
459.0000000000 -2708.0000000000 -376.0000000000
459.0000000000 -2708.0000000000 -376.0000000000
459.0000000000 -2708.0000000000 -376.0000000000
647.0000000000 -2532.0000000000 -872.0000000000
647.0000000000 -2532.0000000000 -872.0000000000
647.0000000000 -2532.0000000000 -872.0000000000
924.0000000000 -2389.0000000000 -966.0000000000
924.0000000000 -2389.0000000000 -966.0000000000
924.0000000000 -2389.0000000000 -966.0000000000
1063.0000000000 -2276.0000000000 -1094.0000000000
1063.0000000000 -2276.0000000000 -1094.0000000000
1063.0000000000 -2276.0000000000 -1094.0000000000
1184.0000000000 -1850.0000000000 -1600.0000000000
1184.0000000000 -1850.0000000000 -1600.0000000000
1184.0000000000 -1850.0000000000 -1600.0000000000
1184.0000000000 -1850.0000000000 -1600.0000000000
1159.0000000000 -1900.0000000000 -1565.0000000000
1159.0000000000 -1900.0000000000 -1565.0000000000
1159.0000000000 -1900.0000000000 -1565.0000000000
1154.0000000000 -2025.0000000000 -1428.0000000000
1154.0000000000 -2025.0000000000 -1428.0000000000
1154.0000000000 -2025.0000000000 -1428.0000000000
1218.0000000000 -2068.0000000000 -1311.0000000000
1218.0000000000 -2068.0000000000 -1311.0000000000
1218.0000000000 -2068.0000000000 -1311.0000000000
1326.0000000000 -1974.0000000000 -1334.0000000000
1326.0000000000 -1974.0000000000 -1334.0000000000
1326.0000000000 -1974.0000000000 -1334.0000000000
1481.0000000000 -1866.0000000000 -1349.0000000000
1481.0000000000 -1866.0000000000 -1349.0000000000
1481.0000000000 -1866.0000000000 -1349.0000000000
1566.0000000000 -1682.0000000000 -1473.0000000000
1566.0000000000 -1682.0000000000 -1473.0000000000
1566.0000000000 -1682.0000000000 -1473.0000000000
1567.0000000000 -1617.0000000000 -1564.0000000000
1567.0000000000 -1617.0000000000 -1564.0000000000
1567.0000000000 -1617.0000000000 -1564.0000000000
1360.0000000000 -1528.0000000000 -1786.0000000000
1360.0000000000 -1528.0000000000 -1786.0000000000
1360.0000000000 -1528.0000000000 -1786.0000000000
681.0000000000 -1565.0000000000 -2050.0000000000
681.0000000000 -1565.0000000000 -2050.0000000000
681.0000000000 -1565.0000000000 -2050.0000000000
-26.0000000000 -1210.0000000000 -2327.0000000000
-26.0000000000 -1210.0000000000 -2327.0000000000
-26.0000000000 -1210.0000000000 -2327.0000000000
-663.0000000000 -689.0000000000 -2436.0000000000
-663.0000000000 -689.0000000000 -2436.0000000000
-663.0000000000 -689.0000000000 -2436.0000000000
-904.0000000000 -286.0000000000 -2462.0000000000
-904.0000000000 -286.0000000000 -2462.0000000000
-904.0000000000 -286.0000000000 -2462.0000000000
-904.0000000000 -286.0000000000 -2462.0000000000
-1048.0000000000 -186.0000000000 -2431.0000000000
-1048.0000000000 -186.0000000000 -2431.0000000000
-1048.0000000000 -186.0000000000 -2431.0000000000
-1255.0000000000 239.0000000000 -2360.0000000000
-1255.0000000000 239.0000000000 -2360.0000000000
-1255.0000000000 239.0000000000 -2360.0000000000
-1580.0000000000 519.0000000000 -2153.0000000000
-1580.0000000000 519.0000000000 -2153.0000000000
-1580.0000000000 519.0000000000 -2153.0000000000
-2035.0000000000 864.0000000000 -1691.0000000000
-2035.0000000000 864.0000000000 -1691.0000000000
-2035.0000000000 864.0000000000 -1691.0000000000
-2305.0000000000 1122.0000000000 -1188.0000000000
-2305.0000000000 1122.0000000000 -1188.0000000000
-2305.0000000000 1122.0000000000 -1188.0000000000
-2422.0000000000 1277.0000000000 -829.0000000000
-2422.0000000000 1277.0000000000 -829.0000000000
-2422.0000000000 1277.0000000000 -829.0000000000
-2433.0000000000 1580.0000000000 -132.0000000000
-2433.0000000000 1580.0000000000 -132.0000000000
-2433.0000000000 1580.0000000000 -132.0000000000
-2209.0000000000 1832.0000000000 745.0000000000
-2209.0000000000 1832.0000000000 745.0000000000
-2209.0000000000 1832.0000000000 745.0000000000
-1790.0000000000 1904.0000000000 1503.0000000000
-1790.0000000000 1904.0000000000 1503.0000000000
-1790.0000000000 1904.0000000000 1503.0000000000
-1301.0000000000 1794.0000000000 2079.0000000000
-1301.0000000000 1794.0000000000 2079.0000000000
-1301.0000000000 1794.0000000000 2079.0000000000
-928.0000000000 1451.0000000000 2514.0000000000
-928.0000000000 1451.0000000000 2514.0000000000
-928.0000000000 1451.0000000000 2514.0000000000
-642.0000000000 1387.0000000000 2645.0000000000
-642.0000000000 1387.0000000000 2645.0000000000
-642.0000000000 1387.0000000000 2645.0000000000
-317.0000000000 1386.0000000000 2697.0000000000
-317.0000000000 1386.0000000000 2697.0000000000
-317.0000000000 1386.0000000000 2697.0000000000
-317.0000000000 1386.0000000000 2697.0000000000
22.0000000000 1401.0000000000 2710.0000000000
22.0000000000 1401.0000000000 2710.0000000000
22.0000000000 1401.0000000000 2710.0000000000
562.0000000000 1560.0000000000 2542.0000000000
562.0000000000 1560.0000000000 2542.0000000000
562.0000000000 1560.0000000000 2542.0000000000
1052.0000000000 1893.0000000000 2096.0000000000
1052.0000000000 1893.0000000000 2096.0000000000
1052.0000000000 1893.0000000000 2096.0000000000
1405.0000000000 2053.0000000000 1666.0000000000
1405.0000000000 2053.0000000000 1666.0000000000
1405.0000000000 2053.0000000000 1666.0000000000
1633.0000000000 2232.0000000000 1080.0000000000
1633.0000000000 2232.0000000000 1080.0000000000
1633.0000000000 2232.0000000000 1080.0000000000
1752.0000000000 2308.0000000000 570.0000000000
1752.0000000000 2308.0000000000 570.0000000000
1752.0000000000 2308.0000000000 570.0000000000
1833.0000000000 2243.0000000000 -281.0000000000
1833.0000000000 2243.0000000000 -281.0000000000
1833.0000000000 2243.0000000000 -281.0000000000
1954.0000000000 1939.0000000000 -823.0000000000
1954.0000000000 1939.0000000000 -823.0000000000
1954.0000000000 1939.0000000000 -823.0000000000
1641.0000000000 1635.0000000000 -1597.0000000000
1641.0000000000 1635.0000000000 -1597.0000000000
1641.0000000000 1635.0000000000 -1597.0000000000
1302.0000000000 1275.0000000000 -2077.0000000000
1302.0000000000 1275.0000000000 -2077.0000000000
1302.0000000000 1275.0000000000 -2077.0000000000
992.0000000000 1184.0000000000 -2241.0000000000
992.0000000000 1184.0000000000 -2241.0000000000
992.0000000000 1184.0000000000 -2241.0000000000
642.0000000000 1247.0000000000 -2336.0000000000
642.0000000000 1247.0000000000 -2336.0000000000
642.0000000000 1247.0000000000 -2336.0000000000
642.0000000000 1247.0000000000 -2336.0000000000
57.0000000000 1319.0000000000 -2373.0000000000
57.0000000000 1319.0000000000 -2373.0000000000
57.0000000000 1319.0000000000 -2373.0000000000
108.0000000000 1435.0000000000 -2315.0000000000
108.0000000000 1435.0000000000 -2315.0000000000
108.0000000000 1435.0000000000 -2315.0000000000
115.0000000000 1454.0000000000 -2314.0000000000
115.0000000000 1454.0000000000 -2314.0000000000
115.0000000000 1454.0000000000 -2314.0000000000
-184.0000000000 1448.0000000000 -2319.0000000000
-184.0000000000 1448.0000000000 -2319.0000000000
-184.0000000000 1448.0000000000 -2319.0000000000
-370.0000000000 1433.0000000000 -2319.0000000000
-370.0000000000 1433.0000000000 -2319.0000000000
-370.0000000000 1433.0000000000 -2319.0000000000
-490.0000000000 1370.0000000000 -2332.0000000000
-490.0000000000 1370.0000000000 -2332.0000000000
-490.0000000000 1370.0000000000 -2332.0000000000
-653.0000000000 1517.0000000000 -2229.0000000000
-653.0000000000 1517.0000000000 -2229.0000000000
-653.0000000000 1517.0000000000 -2229.0000000000
-831.0000000000 1598.0000000000 -2126.0000000000
-831.0000000000 1598.0000000000 -2126.0000000000
-831.0000000000 1598.0000000000 -2126.0000000000
-1146.0000000000 1583.0000000000 -2001.0000000000
-1146.0000000000 1583.0000000000 -2001.0000000000
-1146.0000000000 1583.0000000000 -2001.0000000000
-1268.0000000000 1530.0000000000 -1981.0000000000
-1268.0000000000 1530.0000000000 -1981.0000000000
-1268.0000000000 1530.0000000000 -1981.0000000000
-1449.0000000000 1516.0000000000 -1877.0000000000
-1449.0000000000 1516.0000000000 -1877.0000000000
-1449.0000000000 1516.0000000000 -1877.0000000000
-1629.0000000000 1551.0000000000 -1727.0000000000
-1629.0000000000 1551.0000000000 -1727.0000000000
-1629.0000000000 1551.0000000000 -1727.0000000000
-1629.0000000000 1551.0000000000 -1727.0000000000
-1876.0000000000 1365.0000000000 -1637.0000000000
-1876.0000000000 1365.0000000000 -1637.0000000000
-1876.0000000000 1365.0000000000 -1637.0000000000
-2037.0000000000 1276.0000000000 -1519.0000000000
-2037.0000000000 1276.0000000000 -1519.0000000000
-2037.0000000000 1276.0000000000 -1519.0000000000
-2249.0000000000 1067.0000000000 -1403.0000000000
-2249.0000000000 1067.0000000000 -1403.0000000000
-2249.0000000000 1067.0000000000 -1403.0000000000
-2421.0000000000 980.0000000000 -1175.0000000000
-2421.0000000000 980.0000000000 -1175.0000000000
-2421.0000000000 980.0000000000 -1175.0000000000
-2560.0000000000 1065.0000000000 -859.0000000000
-2560.0000000000 1065.0000000000 -859.0000000000
-2560.0000000000 1065.0000000000 -859.0000000000
-2735.0000000000 999.0000000000 -442.0000000000
-2735.0000000000 999.0000000000 -442.0000000000
-2735.0000000000 999.0000000000 -442.0000000000
-2775.0000000000 1097.0000000000 -41.0000000000
-2775.0000000000 1097.0000000000 -41.0000000000
-2775.0000000000 1097.0000000000 -41.0000000000
-2750.0000000000 1229.0000000000 324.0000000000
-2750.0000000000 1229.0000000000 324.0000000000
-2750.0000000000 1229.0000000000 324.0000000000
-2697.0000000000 1309.0000000000 461.0000000000
-2697.0000000000 1309.0000000000 461.0000000000
-2697.0000000000 1309.0000000000 461.0000000000
-2652.0000000000 1372.0000000000 621.0000000000
-2652.0000000000 1372.0000000000 621.0000000000
-2652.0000000000 1372.0000000000 621.0000000000
-2633.0000000000 1386.0000000000 616.0000000000
-2633.0000000000 1386.0000000000 616.0000000000
-2633.0000000000 1386.0000000000 616.0000000000
-2625.0000000000 1373.0000000000 747.0000000000
-2625.0000000000 1373.0000000000 747.0000000000
-2625.0000000000 1373.0000000000 747.0000000000
-2576.0000000000 1416.0000000000 859.0000000000
-2576.0000000000 1416.0000000000 859.0000000000
-2576.0000000000 1416.0000000000 859.0000000000
-2576.0000000000 1416.0000000000 859.0000000000
-2490.0000000000 1431.0000000000 1094.0000000000
-2490.0000000000 1431.0000000000 1094.0000000000
-2490.0000000000 1431.0000000000 1094.0000000000
-2351.0000000000 1595.0000000000 1160.0000000000
-2351.0000000000 1595.0000000000 1160.0000000000
-2351.0000000000 1595.0000000000 1160.0000000000
-2039.0000000000 1709.0000000000 1525.0000000000
-2039.0000000000 1709.0000000000 1525.0000000000
-2039.0000000000 1709.0000000000 1525.0000000000
-1352.0000000000 2025.0000000000 1854.0000000000
-1352.0000000000 2025.0000000000 1854.0000000000
-1352.0000000000 2025.0000000000 1854.0000000000
-637.0000000000 2295.0000000000 1894.0000000000
-637.0000000000 2295.0000000000 1894.0000000000
-637.0000000000 2295.0000000000 1894.0000000000
-105.0000000000 2627.0000000000 1469.0000000000
-105.0000000000 2627.0000000000 1469.0000000000
-105.0000000000 2627.0000000000 1469.0000000000
330.0000000000 2825.0000000000 894.0000000000
330.0000000000 2825.0000000000 894.0000000000
330.0000000000 2825.0000000000 894.0000000000
556.0000000000 2889.0000000000 209.0000000000
556.0000000000 2889.0000000000 209.0000000000
556.0000000000 2889.0000000000 209.0000000000
694.0000000000 2803.0000000000 -407.0000000000
694.0000000000 2803.0000000000 -407.0000000000
694.0000000000 2803.0000000000 -407.0000000000
578.0000000000 2620.0000000000 -1061.0000000000
578.0000000000 2620.0000000000 -1061.0000000000
578.0000000000 2620.0000000000 -1061.0000000000
355.0000000000 2300.0000000000 -1628.0000000000
355.0000000000 2300.0000000000 -1628.0000000000
355.0000000000 2300.0000000000 -1628.0000000000
255.0000000000 2055.0000000000 -1902.0000000000
255.0000000000 2055.0000000000 -1902.0000000000
255.0000000000 2055.0000000000 -1902.0000000000
255.0000000000 2055.0000000000 -1902.0000000000
217.0000000000 1852.0000000000 -2067.0000000000
217.0000000000 1852.0000000000 -2067.0000000000
217.0000000000 1852.0000000000 -2067.0000000000
242.0000000000 1673.0000000000 -2177.0000000000
242.0000000000 1673.0000000000 -2177.0000000000
242.0000000000 1673.0000000000 -2177.0000000000
126.0000000000 1619.0000000000 -2229.0000000000
126.0000000000 1619.0000000000 -2229.0000000000
126.0000000000 1619.0000000000 -2229.0000000000
-87.0000000000 1679.0000000000 -2187.0000000000
-87.0000000000 1679.0000000000 -2187.0000000000
-87.0000000000 1679.0000000000 -2187.0000000000
-381.0000000000 1781.0000000000 -2092.0000000000
-381.0000000000 1781.0000000000 -2092.0000000000
-381.0000000000 1781.0000000000 -2092.0000000000
-556.0000000000 1760.0000000000 -2082.0000000000
-556.0000000000 1760.0000000000 -2082.0000000000
-556.0000000000 1760.0000000000 -2082.0000000000
-1021.0000000000 1769.0000000000 -1903.0000000000
-1021.0000000000 1769.0000000000 -1903.0000000000
-1021.0000000000 1769.0000000000 -1903.0000000000
-1087.0000000000 1720.0000000000 -1908.0000000000
-1087.0000000000 1720.0000000000 -1908.0000000000
-1087.0000000000 1720.0000000000 -1908.0000000000
-1491.0000000000 1629.0000000000 -1734.0000000000
-1491.0000000000 1629.0000000000 -1734.0000000000
-1491.0000000000 1629.0000000000 -1734.0000000000
-1886.0000000000 1638.0000000000 -1316.0000000000
-1886.0000000000 1638.0000000000 -1316.0000000000
-1886.0000000000 1638.0000000000 -1316.0000000000
-2170.0000000000 1566.0000000000 -1009.0000000000
-2170.0000000000 1566.0000000000 -1009.0000000000
-2170.0000000000 1566.0000000000 -1009.0000000000
-2333.0000000000 1466.0000000000 -767.0000000000
-2333.0000000000 1466.0000000000 -767.0000000000
-2333.0000000000 1466.0000000000 -767.0000000000
-2333.0000000000 1466.0000000000 -767.0000000000
-2310.0000000000 1530.0000000000 -761.0000000000
-2310.0000000000 1530.0000000000 -761.0000000000
-2310.0000000000 1530.0000000000 -761.0000000000
-2165.0000000000 1685.0000000000 -857.0000000000
-2165.0000000000 1685.0000000000 -857.0000000000
-2165.0000000000 1685.0000000000 -857.0000000000
-2356.0000000000 1232.0000000000 -1018.0000000000
-2356.0000000000 1232.0000000000 -1018.0000000000
-2356.0000000000 1232.0000000000 -1018.0000000000
-2488.0000000000 483.0000000000 -1200.0000000000
-2488.0000000000 483.0000000000 -1200.0000000000
-2488.0000000000 483.0000000000 -1200.0000000000
-2363.0000000000 121.0000000000 -1431.0000000000
-2363.0000000000 121.0000000000 -1431.0000000000
-2363.0000000000 121.0000000000 -1431.0000000000
-2401.0000000000 96.0000000000 -1371.0000000000
-2401.0000000000 96.0000000000 -1371.0000000000
-2401.0000000000 96.0000000000 -1371.0000000000
-2480.0000000000 124.0000000000 -1236.0000000000
-2480.0000000000 124.0000000000 -1236.0000000000
-2480.0000000000 124.0000000000 -1236.0000000000
-2553.0000000000 106.0000000000 -1122.0000000000
-2553.0000000000 106.0000000000 -1122.0000000000
-2553.0000000000 106.0000000000 -1122.0000000000
-2620.0000000000 -13.0000000000 -988.0000000000
-2620.0000000000 -13.0000000000 -988.0000000000
-2620.0000000000 -13.0000000000 -988.0000000000
-2543.0000000000 -154.0000000000 -1104.0000000000
-2543.0000000000 -154.0000000000 -1104.0000000000
-2543.0000000000 -154.0000000000 -1104.0000000000
-2389.0000000000 -498.0000000000 -1284.0000000000
-2389.0000000000 -498.0000000000 -1284.0000000000
-2389.0000000000 -498.0000000000 -1284.0000000000
-2279.0000000000 -736.0000000000 -1335.0000000000
-2279.0000000000 -736.0000000000 -1335.0000000000
-2279.0000000000 -736.0000000000 -1335.0000000000
-2199.0000000000 -990.0000000000 -1305.0000000000
-2199.0000000000 -990.0000000000 -1305.0000000000
-2199.0000000000 -990.0000000000 -1305.0000000000
-2199.0000000000 -990.0000000000 -1305.0000000000
-2115.0000000000 -1366.0000000000 -1121.0000000000
-2115.0000000000 -1366.0000000000 -1121.0000000000
-2115.0000000000 -1366.0000000000 -1121.0000000000
-2108.0000000000 -1682.0000000000 -726.0000000000
-2108.0000000000 -1682.0000000000 -726.0000000000
-2108.0000000000 -1682.0000000000 -726.0000000000
-2154.0000000000 -1861.0000000000 -165.0000000000
-2154.0000000000 -1861.0000000000 -165.0000000000
-2154.0000000000 -1861.0000000000 -165.0000000000
-2248.0000000000 -1764.0000000000 543.0000000000
-2248.0000000000 -1764.0000000000 543.0000000000
-2248.0000000000 -1764.0000000000 543.0000000000
-1695.0000000000 -2278.0000000000 485.0000000000
-1695.0000000000 -2278.0000000000 485.0000000000
-1695.0000000000 -2278.0000000000 485.0000000000
-932.0000000000 -2650.0000000000 122.0000000000
-932.0000000000 -2650.0000000000 122.0000000000
-932.0000000000 -2650.0000000000 122.0000000000
-682.0000000000 -2700.0000000000 134.0000000000
-682.0000000000 -2700.0000000000 134.0000000000
-682.0000000000 -2700.0000000000 134.0000000000
-878.0000000000 -2600.0000000000 -169.0000000000
-878.0000000000 -2600.0000000000 -169.0000000000
-878.0000000000 -2600.0000000000 -169.0000000000
-901.0000000000 -2508.0000000000 -415.0000000000
-901.0000000000 -2508.0000000000 -415.0000000000
-901.0000000000 -2508.0000000000 -415.0000000000
-1243.0000000000 -2405.0000000000 -241.0000000000
-1243.0000000000 -2405.0000000000 -241.0000000000
-1243.0000000000 -2405.0000000000 -241.0000000000
-1082.0000000000 -2470.0000000000 -360.0000000000
-1082.0000000000 -2470.0000000000 -360.0000000000
-1082.0000000000 -2470.0000000000 -360.0000000000
-530.0000000000 -2434.0000000000 -949.0000000000
-530.0000000000 -2434.0000000000 -949.0000000000
-530.0000000000 -2434.0000000000 -949.0000000000
-530.0000000000 -2434.0000000000 -949.0000000000
216.0000000000 -2193.0000000000 -1451.0000000000
216.0000000000 -2193.0000000000 -1451.0000000000
216.0000000000 -2193.0000000000 -1451.0000000000
799.0000000000 -1953.0000000000 -1622.0000000000
799.0000000000 -1953.0000000000 -1622.0000000000
799.0000000000 -1953.0000000000 -1622.0000000000
847.0000000000 -1283.0000000000 -2149.0000000000
847.0000000000 -1283.0000000000 -2149.0000000000
847.0000000000 -1283.0000000000 -2149.0000000000
915.0000000000 -598.0000000000 -2427.0000000000
915.0000000000 -598.0000000000 -2427.0000000000
915.0000000000 -598.0000000000 -2427.0000000000
911.0000000000 -332.0000000000 -2487.0000000000
911.0000000000 -332.0000000000 -2487.0000000000
911.0000000000 -332.0000000000 -2487.0000000000
838.0000000000 -207.0000000000 -2520.0000000000
838.0000000000 -207.0000000000 -2520.0000000000
838.0000000000 -207.0000000000 -2520.0000000000
925.0000000000 45.0000000000 -2518.0000000000
925.0000000000 45.0000000000 -2518.0000000000
925.0000000000 45.0000000000 -2518.0000000000
989.0000000000 250.0000000000 -2494.0000000000
989.0000000000 250.0000000000 -2494.0000000000
989.0000000000 250.0000000000 -2494.0000000000
712.0000000000 312.0000000000 -2572.0000000000
712.0000000000 312.0000000000 -2572.0000000000
712.0000000000 312.0000000000 -2572.0000000000
773.0000000000 771.0000000000 -2494.0000000000
773.0000000000 771.0000000000 -2494.0000000000
773.0000000000 771.0000000000 -2494.0000000000
609.0000000000 1123.0000000000 -2419.0000000000
609.0000000000 1123.0000000000 -2419.0000000000
609.0000000000 1123.0000000000 -2419.0000000000
368.0000000000 1298.0000000000 -2383.0000000000
368.0000000000 1298.0000000000 -2383.0000000000
368.0000000000 1298.0000000000 -2383.0000000000
368.0000000000 1376.0000000000 -2357.0000000000
273.0000000000 1376.0000000000 -2357.0000000000
273.0000000000 1376.0000000000 -2357.0000000000
273.0000000000 1376.0000000000 -2357.0000000000
213.0000000000 1450.0000000000 -2326.0000000000
213.0000000000 1450.0000000000 -2326.0000000000
213.0000000000 1450.0000000000 -2326.0000000000
299.0000000000 1307.0000000000 -2398.0000000000
299.0000000000 1307.0000000000 -2398.0000000000
299.0000000000 1307.0000000000 -2398.0000000000
627.0000000000 1028.0000000000 -2463.0000000000
627.0000000000 1028.0000000000 -2463.0000000000
627.0000000000 1028.0000000000 -2463.0000000000
789.0000000000 930.0000000000 -2443.0000000000
789.0000000000 930.0000000000 -2443.0000000000
789.0000000000 930.0000000000 -2443.0000000000
886.0000000000 685.0000000000 -2485.0000000000
886.0000000000 685.0000000000 -2485.0000000000
886.0000000000 685.0000000000 -2485.0000000000
503.0000000000 46.0000000000 -2619.0000000000
503.0000000000 46.0000000000 -2619.0000000000
503.0000000000 46.0000000000 -2619.0000000000
353.0000000000 -289.0000000000 -2591.0000000000
353.0000000000 -289.0000000000 -2591.0000000000
353.0000000000 -289.0000000000 -2591.0000000000
208.0000000000 -423.0000000000 -2562.0000000000
208.0000000000 -423.0000000000 -2562.0000000000
208.0000000000 -423.0000000000 -2562.0000000000
147.0000000000 -638.0000000000 -2517.0000000000
147.0000000000 -638.0000000000 -2517.0000000000
147.0000000000 -638.0000000000 -2517.0000000000
-31.0000000000 -876.0000000000 -2467.0000000000
-31.0000000000 -876.0000000000 -2467.0000000000
-31.0000000000 -876.0000000000 -2467.0000000000
-278.0000000000 -881.0000000000 -2438.0000000000
-278.0000000000 -881.0000000000 -2438.0000000000
-278.0000000000 -881.0000000000 -2438.0000000000
-495.0000000000 -753.0000000000 -2452.0000000000
-495.0000000000 -753.0000000000 -2452.0000000000
-495.0000000000 -753.0000000000 -2452.0000000000
-495.0000000000 -753.0000000000 -2452.0000000000
-746.0000000000 -347.0000000000 -2497.0000000000
-746.0000000000 -347.0000000000 -2497.0000000000
-746.0000000000 -347.0000000000 -2497.0000000000
-944.0000000000 228.0000000000 -2483.0000000000
-944.0000000000 228.0000000000 -2483.0000000000
-944.0000000000 228.0000000000 -2483.0000000000
-1112.0000000000 492.0000000000 -2403.0000000000
-1112.0000000000 492.0000000000 -2403.0000000000
-1112.0000000000 492.0000000000 -2403.0000000000
-1134.0000000000 737.0000000000 -2363.0000000000
-1134.0000000000 737.0000000000 -2363.0000000000
-1134.0000000000 737.0000000000 -2363.0000000000
-1095.0000000000 865.0000000000 -2346.0000000000
-1095.0000000000 865.0000000000 -2346.0000000000
-1095.0000000000 865.0000000000 -2346.0000000000
-1078.0000000000 1054.0000000000 -2291.0000000000
-1078.0000000000 1054.0000000000 -2291.0000000000
-1078.0000000000 1054.0000000000 -2291.0000000000
-1043.0000000000 1176.0000000000 -2257.0000000000
-1043.0000000000 1176.0000000000 -2257.0000000000
-1043.0000000000 1176.0000000000 -2257.0000000000
-839.0000000000 1430.0000000000 -2217.0000000000
-839.0000000000 1430.0000000000 -2217.0000000000
-839.0000000000 1430.0000000000 -2217.0000000000
-628.0000000000 1419.0000000000 -2298.0000000000
-628.0000000000 1419.0000000000 -2298.0000000000
-628.0000000000 1419.0000000000 -2298.0000000000
-244.0000000000 1216.0000000000 -2467.0000000000
-244.0000000000 1216.0000000000 -2467.0000000000
-244.0000000000 1216.0000000000 -2467.0000000000
-7.0000000000 959.0000000000 -2582.0000000000
-7.0000000000 959.0000000000 -2582.0000000000
-7.0000000000 959.0000000000 -2582.0000000000
111.0000000000 776.0000000000 -2627.0000000000
111.0000000000 776.0000000000 -2627.0000000000
111.0000000000 776.0000000000 -2627.0000000000
111.0000000000 776.0000000000 -2627.0000000000
342.0000000000 651.0000000000 -2642.0000000000
342.0000000000 651.0000000000 -2642.0000000000
342.0000000000 651.0000000000 -2642.0000000000
612.0000000000 540.0000000000 -2617.0000000000
612.0000000000 540.0000000000 -2617.0000000000
612.0000000000 540.0000000000 -2617.0000000000
845.0000000000 447.0000000000 -2575.0000000000
845.0000000000 447.0000000000 -2575.0000000000
845.0000000000 447.0000000000 -2575.0000000000
974.0000000000 251.0000000000 -2542.0000000000
974.0000000000 251.0000000000 -2542.0000000000
974.0000000000 251.0000000000 -2542.0000000000
919.0000000000 -22.0000000000 -2554.0000000000
919.0000000000 -22.0000000000 -2554.0000000000
919.0000000000 -22.0000000000 -2554.0000000000
923.0000000000 -218.0000000000 -2542.0000000000
923.0000000000 -218.0000000000 -2542.0000000000
923.0000000000 -218.0000000000 -2542.0000000000
916.0000000000 -181.0000000000 -2548.0000000000
916.0000000000 -181.0000000000 -2548.0000000000
916.0000000000 -181.0000000000 -2548.0000000000
985.0000000000 -333.0000000000 -2501.0000000000
985.0000000000 -333.0000000000 -2501.0000000000
985.0000000000 -333.0000000000 -2501.0000000000
782.0000000000 -381.0000000000 -2549.0000000000
782.0000000000 -381.0000000000 -2549.0000000000
782.0000000000 -381.0000000000 -2549.0000000000
682.0000000000 -632.0000000000 -2529.0000000000
682.0000000000 -632.0000000000 -2529.0000000000
682.0000000000 -632.0000000000 -2529.0000000000
407.0000000000 -926.0000000000 -2469.0000000000
407.0000000000 -926.0000000000 -2469.0000000000
407.0000000000 -926.0000000000 -2469.0000000000
185.0000000000 -1038.0000000000 -2427.0000000000
185.0000000000 -1038.0000000000 -2427.0000000000
185.0000000000 -1038.0000000000 -2427.0000000000
16.0000000000 -1117.0000000000 -2400.0000000000
16.0000000000 -1117.0000000000 -2400.0000000000
16.0000000000 -1117.0000000000 -2400.0000000000
16.0000000000 -1117.0000000000 -2400.0000000000
-402.0000000000 -1018.0000000000 -2417.0000000000
-402.0000000000 -1018.0000000000 -2417.0000000000
-402.0000000000 -1018.0000000000 -2417.0000000000
-657.0000000000 -892.0000000000 -2420.0000000000
-657.0000000000 -892.0000000000 -2420.0000000000
-657.0000000000 -892.0000000000 -2420.0000000000
-843.0000000000 -754.0000000000 -2427.0000000000
-843.0000000000 -754.0000000000 -2427.0000000000
-843.0000000000 -754.0000000000 -2427.0000000000
-1026.0000000000 -497.0000000000 -2454.0000000000
-1026.0000000000 -497.0000000000 -2454.0000000000
-1026.0000000000 -497.0000000000 -2454.0000000000
-1119.0000000000 -184.0000000000 -2476.0000000000
-1119.0000000000 -184.0000000000 -2476.0000000000
-1119.0000000000 -184.0000000000 -2476.0000000000
-1230.0000000000 97.0000000000 -2440.0000000000
-1230.0000000000 97.0000000000 -2440.0000000000
-1230.0000000000 97.0000000000 -2440.0000000000
-1296.0000000000 393.0000000000 -2397.0000000000
-1296.0000000000 393.0000000000 -2397.0000000000
-1296.0000000000 393.0000000000 -2397.0000000000
-1358.0000000000 587.0000000000 -2350.0000000000
-1358.0000000000 587.0000000000 -2350.0000000000
-1358.0000000000 587.0000000000 -2350.0000000000
-1414.0000000000 787.0000000000 -2286.0000000000
-1414.0000000000 787.0000000000 -2286.0000000000
-1414.0000000000 787.0000000000 -2286.0000000000
-1565.0000000000 1109.0000000000 -2080.0000000000
-1565.0000000000 1109.0000000000 -2080.0000000000
-1565.0000000000 1109.0000000000 -2080.0000000000
-1397.0000000000 1691.0000000000 -1834.0000000000
-1397.0000000000 1691.0000000000 -1834.0000000000
-1397.0000000000 1691.0000000000 -1834.0000000000
-1342.0000000000 1817.0000000000 -1803.0000000000
-1342.0000000000 1817.0000000000 -1803.0000000000
-1342.0000000000 1817.0000000000 -1803.0000000000
-1342.0000000000 1817.0000000000 -1803.0000000000
-1147.0000000000 1664.0000000000 -2047.0000000000
-1147.0000000000 1664.0000000000 -2047.0000000000
-1147.0000000000 1664.0000000000 -2047.0000000000
-901.0000000000 1753.0000000000 -2095.0000000000
-901.0000000000 1753.0000000000 -2095.0000000000
-901.0000000000 1753.0000000000 -2095.0000000000
-444.0000000000 2140.0000000000 -1895.0000000000
-444.0000000000 2140.0000000000 -1895.0000000000
-444.0000000000 2140.0000000000 -1895.0000000000
36.0000000000 2396.0000000000 -1663.0000000000
36.0000000000 2396.0000000000 -1663.0000000000
36.0000000000 2396.0000000000 -1663.0000000000
608.0000000000 2496.0000000000 -1407.0000000000
608.0000000000 2496.0000000000 -1407.0000000000
608.0000000000 2496.0000000000 -1407.0000000000
1001.0000000000 2417.0000000000 -1334.0000000000
1001.0000000000 2417.0000000000 -1334.0000000000
1001.0000000000 2417.0000000000 -1334.0000000000
1546.0000000000 2182.0000000000 -1229.0000000000
1546.0000000000 2182.0000000000 -1229.0000000000
1546.0000000000 2182.0000000000 -1229.0000000000
1738.0000000000 2059.0000000000 -1179.0000000000
1738.0000000000 2059.0000000000 -1179.0000000000
1738.0000000000 2059.0000000000 -1179.0000000000
2142.0000000000 1900.0000000000 -726.0000000000
2142.0000000000 1900.0000000000 -726.0000000000
2142.0000000000 1900.0000000000 -726.0000000000
2500.0000000000 1445.0000000000 -619.0000000000
2500.0000000000 1445.0000000000 -619.0000000000
2500.0000000000 1445.0000000000 -619.0000000000
2801.0000000000 681.0000000000 -566.0000000000
2801.0000000000 681.0000000000 -566.0000000000
2801.0000000000 681.0000000000 -566.0000000000
2823.0000000000 59.0000000000 -691.0000000000
2823.0000000000 59.0000000000 -691.0000000000
2823.0000000000 59.0000000000 -691.0000000000
2823.0000000000 -496.0000000000 -690.0000000000
2758.0000000000 -496.0000000000 -690.0000000000
2758.0000000000 -496.0000000000 -690.0000000000
2758.0000000000 -496.0000000000 -690.0000000000
2521.0000000000 -1204.0000000000 -576.0000000000
2521.0000000000 -1204.0000000000 -576.0000000000
2521.0000000000 -1204.0000000000 -576.0000000000
2034.0000000000 -1880.0000000000 -560.0000000000
2034.0000000000 -1880.0000000000 -560.0000000000
2034.0000000000 -1880.0000000000 -560.0000000000
1686.0000000000 -2142.0000000000 -612.0000000000
1686.0000000000 -2142.0000000000 -612.0000000000
1686.0000000000 -2142.0000000000 -612.0000000000
1297.0000000000 -2348.0000000000 -677.0000000000
1297.0000000000 -2348.0000000000 -677.0000000000
1297.0000000000 -2348.0000000000 -677.0000000000
975.0000000000 -2502.0000000000 -631.0000000000
975.0000000000 -2502.0000000000 -631.0000000000
975.0000000000 -2502.0000000000 -631.0000000000
708.0000000000 -2586.0000000000 -677.0000000000
708.0000000000 -2586.0000000000 -677.0000000000
708.0000000000 -2586.0000000000 -677.0000000000
524.0000000000 -2599.0000000000 -707.0000000000
524.0000000000 -2599.0000000000 -707.0000000000
524.0000000000 -2599.0000000000 -707.0000000000
246.0000000000 -2587.0000000000 -860.0000000000
246.0000000000 -2587.0000000000 -860.0000000000
246.0000000000 -2587.0000000000 -860.0000000000
-73.0000000000 -2601.0000000000 -855.0000000000
-73.0000000000 -2601.0000000000 -855.0000000000
-73.0000000000 -2601.0000000000 -855.0000000000
-584.0000000000 -2486.0000000000 -974.0000000000
-584.0000000000 -2486.0000000000 -974.0000000000
-584.0000000000 -2486.0000000000 -974.0000000000
-960.0000000000 -2254.0000000000 -1177.0000000000
-960.0000000000 -2254.0000000000 -1177.0000000000
-960.0000000000 -2254.0000000000 -1177.0000000000
-1281.0000000000 -1839.0000000000 -1513.0000000000
-1281.0000000000 -1839.0000000000 -1513.0000000000
-1281.0000000000 -1839.0000000000 -1513.0000000000
-1281.0000000000 -1839.0000000000 -1513.0000000000
-1591.0000000000 -1325.0000000000 -1767.0000000000
-1591.0000000000 -1325.0000000000 -1767.0000000000
-1591.0000000000 -1325.0000000000 -1767.0000000000
-1892.0000000000 -741.0000000000 -1825.0000000000
-1892.0000000000 -741.0000000000 -1825.0000000000
-1892.0000000000 -741.0000000000 -1825.0000000000
-1858.0000000000 -445.0000000000 -1966.0000000000
-1858.0000000000 -445.0000000000 -1966.0000000000
-1858.0000000000 -445.0000000000 -1966.0000000000
-1736.0000000000 -210.0000000000 -2105.0000000000
-1736.0000000000 -210.0000000000 -2105.0000000000
-1736.0000000000 -210.0000000000 -2105.0000000000
-1751.0000000000 222.0000000000 -2125.0000000000
-1751.0000000000 222.0000000000 -2125.0000000000
-1751.0000000000 222.0000000000 -2125.0000000000
-1742.0000000000 649.0000000000 -2056.0000000000
-1742.0000000000 649.0000000000 -2056.0000000000
-1742.0000000000 649.0000000000 -2056.0000000000
-1762.0000000000 876.0000000000 -1965.0000000000
-1762.0000000000 876.0000000000 -1965.0000000000
-1762.0000000000 876.0000000000 -1965.0000000000
-1581.0000000000 1262.0000000000 -1941.0000000000
-1581.0000000000 1262.0000000000 -1941.0000000000
-1581.0000000000 1262.0000000000 -1941.0000000000
-1309.0000000000 1764.0000000000 -1782.0000000000
-1309.0000000000 1764.0000000000 -1782.0000000000
-1309.0000000000 1764.0000000000 -1782.0000000000
-957.0000000000 2152.0000000000 -1601.0000000000
-957.0000000000 2152.0000000000 -1601.0000000000
-957.0000000000 2152.0000000000 -1601.0000000000
-61.0000000000 2556.0000000000 -1298.0000000000
-61.0000000000 2556.0000000000 -1298.0000000000
-61.0000000000 2556.0000000000 -1298.0000000000
614.0000000000 2620.0000000000 -1029.0000000000
614.0000000000 2620.0000000000 -1029.0000000000
614.0000000000 2620.0000000000 -1029.0000000000
614.0000000000 2620.0000000000 -1029.0000000000
951.0000000000 2474.0000000000 -1127.0000000000
951.0000000000 2474.0000000000 -1127.0000000000
951.0000000000 2474.0000000000 -1127.0000000000
1301.0000000000 2145.0000000000 -1363.0000000000
1301.0000000000 2145.0000000000 -1363.0000000000
1301.0000000000 2145.0000000000 -1363.0000000000
1600.0000000000 1686.0000000000 -1634.0000000000
1600.0000000000 1686.0000000000 -1634.0000000000
1600.0000000000 1686.0000000000 -1634.0000000000
2012.0000000000 1012.0000000000 -1684.0000000000
2012.0000000000 1012.0000000000 -1684.0000000000
2012.0000000000 1012.0000000000 -1684.0000000000
2131.0000000000 510.0000000000 -1748.0000000000
2131.0000000000 510.0000000000 -1748.0000000000
2131.0000000000 510.0000000000 -1748.0000000000
2202.0000000000 82.0000000000 -1713.0000000000
2202.0000000000 82.0000000000 -1713.0000000000
2202.0000000000 82.0000000000 -1713.0000000000
2153.0000000000 -279.0000000000 -1721.0000000000
2153.0000000000 -279.0000000000 -1721.0000000000
2153.0000000000 -279.0000000000 -1721.0000000000
2139.0000000000 -659.0000000000 -1644.0000000000
2139.0000000000 -659.0000000000 -1644.0000000000
2139.0000000000 -659.0000000000 -1644.0000000000
2144.0000000000 -932.0000000000 -1500.0000000000
2144.0000000000 -932.0000000000 -1500.0000000000
2144.0000000000 -932.0000000000 -1500.0000000000
2001.0000000000 -1294.0000000000 -1414.0000000000
2001.0000000000 -1294.0000000000 -1414.0000000000
2001.0000000000 -1294.0000000000 -1414.0000000000
1625.0000000000 -1794.0000000000 -1335.0000000000
1625.0000000000 -1794.0000000000 -1335.0000000000
1625.0000000000 -1794.0000000000 -1335.0000000000
1407.0000000000 -1965.0000000000 -1293.0000000000
1407.0000000000 -1965.0000000000 -1293.0000000000
1407.0000000000 -1965.0000000000 -1293.0000000000
986.0000000000 -2161.0000000000 -1376.0000000000
986.0000000000 -2161.0000000000 -1376.0000000000
986.0000000000 -2161.0000000000 -1376.0000000000
986.0000000000 -2161.0000000000 -1376.0000000000
251.0000000000 -2308.0000000000 -1435.0000000000
251.0000000000 -2308.0000000000 -1435.0000000000
251.0000000000 -2308.0000000000 -1435.0000000000
-721.0000000000 -2241.0000000000 -1400.0000000000
-721.0000000000 -2241.0000000000 -1400.0000000000
-721.0000000000 -2241.0000000000 -1400.0000000000
-1473.0000000000 -1969.0000000000 -1279.0000000000
-1473.0000000000 -1969.0000000000 -1279.0000000000
-1473.0000000000 -1969.0000000000 -1279.0000000000
-1949.0000000000 -1682.0000000000 -1114.0000000000
-1949.0000000000 -1682.0000000000 -1114.0000000000
-1949.0000000000 -1682.0000000000 -1114.0000000000
-2191.0000000000 -1318.0000000000 -1164.0000000000
-2191.0000000000 -1318.0000000000 -1164.0000000000
-2191.0000000000 -1318.0000000000 -1164.0000000000
-2316.0000000000 -968.0000000000 -1275.0000000000
-2316.0000000000 -968.0000000000 -1275.0000000000
-2316.0000000000 -968.0000000000 -1275.0000000000
-2333.0000000000 -566.0000000000 -1480.0000000000
-2333.0000000000 -566.0000000000 -1480.0000000000
-2333.0000000000 -566.0000000000 -1480.0000000000
-2210.0000000000 -302.0000000000 -1704.0000000000
-2210.0000000000 -302.0000000000 -1704.0000000000
-2210.0000000000 -302.0000000000 -1704.0000000000
-2072.0000000000 -77.0000000000 -1872.0000000000
-2072.0000000000 -77.0000000000 -1872.0000000000
-2072.0000000000 -77.0000000000 -1872.0000000000
-1744.0000000000 15.0000000000 -2145.0000000000
-1744.0000000000 15.0000000000 -2145.0000000000
-1744.0000000000 15.0000000000 -2145.0000000000
-1482.0000000000 19.0000000000 -2316.0000000000
-1482.0000000000 19.0000000000 -2316.0000000000
-1482.0000000000 19.0000000000 -2316.0000000000
-1303.0000000000 232.0000000000 -2394.0000000000
-1303.0000000000 232.0000000000 -2394.0000000000
-1303.0000000000 232.0000000000 -2394.0000000000
-1303.0000000000 232.0000000000 -2394.0000000000
-1042.0000000000 333.0000000000 -2492.0000000000
-1042.0000000000 333.0000000000 -2492.0000000000
-1042.0000000000 333.0000000000 -2492.0000000000
-774.0000000000 383.0000000000 -2573.0000000000
-774.0000000000 383.0000000000 -2573.0000000000
-774.0000000000 383.0000000000 -2573.0000000000
-429.0000000000 340.0000000000 -2633.0000000000
-429.0000000000 340.0000000000 -2633.0000000000
-429.0000000000 340.0000000000 -2633.0000000000
-45.0000000000 585.0000000000 -2634.0000000000
-45.0000000000 585.0000000000 -2634.0000000000
-45.0000000000 585.0000000000 -2634.0000000000
89.0000000000 745.0000000000 -2604.0000000000
89.0000000000 745.0000000000 -2604.0000000000
89.0000000000 745.0000000000 -2604.0000000000
-18.0000000000 1011.0000000000 -2545.0000000000
-18.0000000000 1011.0000000000 -2545.0000000000
-18.0000000000 1011.0000000000 -2545.0000000000
119.0000000000 1359.0000000000 -2426.0000000000
119.0000000000 1359.0000000000 -2426.0000000000
119.0000000000 1359.0000000000 -2426.0000000000
301.0000000000 1550.0000000000 -2313.0000000000
301.0000000000 1550.0000000000 -2313.0000000000
301.0000000000 1550.0000000000 -2313.0000000000
877.0000000000 1668.0000000000 -2101.0000000000
877.0000000000 1668.0000000000 -2101.0000000000
877.0000000000 1668.0000000000 -2101.0000000000
632.0000000000 1579.0000000000 -2243.0000000000
632.0000000000 1579.0000000000 -2243.0000000000
632.0000000000 1579.0000000000 -2243.0000000000
715.0000000000 1463.0000000000 -2293.0000000000
715.0000000000 1463.0000000000 -2293.0000000000
715.0000000000 1463.0000000000 -2293.0000000000
708.0000000000 1393.0000000000 -2345.0000000000
708.0000000000 1393.0000000000 -2345.0000000000
708.0000000000 1393.0000000000 -2345.0000000000
708.0000000000 1393.0000000000 -2345.0000000000
774.0000000000 1104.0000000000 -2457.0000000000
774.0000000000 1104.0000000000 -2457.0000000000
774.0000000000 1104.0000000000 -2457.0000000000
849.0000000000 928.0000000000 -2502.0000000000
849.0000000000 928.0000000000 -2502.0000000000
849.0000000000 928.0000000000 -2502.0000000000
900.0000000000 775.0000000000 -2527.0000000000
900.0000000000 775.0000000000 -2527.0000000000
900.0000000000 775.0000000000 -2527.0000000000
1036.0000000000 566.0000000000 -2528.0000000000
1036.0000000000 566.0000000000 -2528.0000000000
1036.0000000000 566.0000000000 -2528.0000000000
1025.0000000000 312.0000000000 -2556.0000000000
1025.0000000000 312.0000000000 -2556.0000000000
1025.0000000000 312.0000000000 -2556.0000000000
955.0000000000 8.0000000000 -2585.0000000000
955.0000000000 8.0000000000 -2585.0000000000
955.0000000000 8.0000000000 -2585.0000000000
989.0000000000 -32.0000000000 -2564.0000000000
989.0000000000 -32.0000000000 -2564.0000000000
989.0000000000 -32.0000000000 -2564.0000000000
1081.0000000000 -137.0000000000 -2511.0000000000
1081.0000000000 -137.0000000000 -2511.0000000000
1081.0000000000 -137.0000000000 -2511.0000000000
1032.0000000000 384.0000000000 -2539.0000000000
1032.0000000000 384.0000000000 -2539.0000000000
1032.0000000000 384.0000000000 -2539.0000000000
875.0000000000 846.0000000000 -2524.0000000000
875.0000000000 846.0000000000 -2524.0000000000
875.0000000000 846.0000000000 -2524.0000000000
564.0000000000 1191.0000000000 -2480.0000000000
564.0000000000 1191.0000000000 -2480.0000000000
564.0000000000 1191.0000000000 -2480.0000000000
474.0000000000 1311.0000000000 -2438.0000000000
474.0000000000 1311.0000000000 -2438.0000000000
474.0000000000 1311.0000000000 -2438.0000000000
467.0000000000 1374.0000000000 -2399.0000000000
467.0000000000 1374.0000000000 -2399.0000000000
467.0000000000 1374.0000000000 -2399.0000000000
467.0000000000 1374.0000000000 -2399.0000000000
222.0000000000 1532.0000000000 -2334.0000000000
222.0000000000 1532.0000000000 -2334.0000000000
222.0000000000 1532.0000000000 -2334.0000000000
-299.0000000000 1605.0000000000 -2295.0000000000
-299.0000000000 1605.0000000000 -2295.0000000000
-299.0000000000 1605.0000000000 -2295.0000000000
-875.0000000000 1719.0000000000 -2056.0000000000
-875.0000000000 1719.0000000000 -2056.0000000000
-875.0000000000 1719.0000000000 -2056.0000000000
-1225.0000000000 1413.0000000000 -2083.0000000000
-1225.0000000000 1413.0000000000 -2083.0000000000
-1225.0000000000 1413.0000000000 -2083.0000000000
-1400.0000000000 1214.0000000000 -2071.0000000000
-1400.0000000000 1214.0000000000 -2071.0000000000
-1400.0000000000 1214.0000000000 -2071.0000000000
-1393.0000000000 1153.0000000000 -2100.0000000000
-1393.0000000000 1153.0000000000 -2100.0000000000
-1393.0000000000 1153.0000000000 -2100.0000000000
-1311.0000000000 966.0000000000 -2206.0000000000
-1311.0000000000 966.0000000000 -2206.0000000000
-1311.0000000000 966.0000000000 -2206.0000000000
-1416.0000000000 726.0000000000 -2242.0000000000
-1416.0000000000 726.0000000000 -2242.0000000000
-1416.0000000000 726.0000000000 -2242.0000000000
-1276.0000000000 -6.0000000000 -2380.0000000000
-1276.0000000000 -6.0000000000 -2380.0000000000
-1276.0000000000 -6.0000000000 -2380.0000000000
-996.0000000000 -514.0000000000 -2413.0000000000
-996.0000000000 -514.0000000000 -2413.0000000000
-996.0000000000 -514.0000000000 -2413.0000000000
-954.0000000000 -629.0000000000 -2398.0000000000
-954.0000000000 -629.0000000000 -2398.0000000000
-954.0000000000 -629.0000000000 -2398.0000000000
-1074.0000000000 -865.0000000000 -2288.0000000000
-1074.0000000000 -865.0000000000 -2288.0000000000
-1074.0000000000 -865.0000000000 -2288.0000000000
-1074.0000000000 -865.0000000000 -2288.0000000000
-894.0000000000 -882.0000000000 -2356.0000000000
-894.0000000000 -882.0000000000 -2356.0000000000
-894.0000000000 -882.0000000000 -2356.0000000000
-1002.0000000000 -904.0000000000 -2313.0000000000
-1002.0000000000 -904.0000000000 -2313.0000000000
-1002.0000000000 -904.0000000000 -2313.0000000000
-951.0000000000 -853.0000000000 -2345.0000000000
-951.0000000000 -853.0000000000 -2345.0000000000
-951.0000000000 -853.0000000000 -2345.0000000000
-901.0000000000 -909.0000000000 -2341.0000000000
-901.0000000000 -909.0000000000 -2341.0000000000
-901.0000000000 -909.0000000000 -2341.0000000000
-792.0000000000 -1024.0000000000 -2330.0000000000
-792.0000000000 -1024.0000000000 -2330.0000000000
-792.0000000000 -1024.0000000000 -2330.0000000000
-947.0000000000 -971.0000000000 -2300.0000000000
-947.0000000000 -971.0000000000 -2300.0000000000
-947.0000000000 -971.0000000000 -2300.0000000000
-1095.0000000000 -921.0000000000 -2270.0000000000
-1095.0000000000 -921.0000000000 -2270.0000000000
-1095.0000000000 -921.0000000000 -2270.0000000000
-925.0000000000 -938.0000000000 -2317.0000000000
-925.0000000000 -938.0000000000 -2317.0000000000
-925.0000000000 -938.0000000000 -2317.0000000000
-486.0000000000 -1081.0000000000 -2349.0000000000
-486.0000000000 -1081.0000000000 -2349.0000000000
-486.0000000000 -1081.0000000000 -2349.0000000000
-479.0000000000 -989.0000000000 -2387.0000000000
-479.0000000000 -989.0000000000 -2387.0000000000
-479.0000000000 -989.0000000000 -2387.0000000000
-863.0000000000 -1077.0000000000 -2259.0000000000
-863.0000000000 -1077.0000000000 -2259.0000000000
-863.0000000000 -1077.0000000000 -2259.0000000000
-717.0000000000 -1127.0000000000 -2285.0000000000
-717.0000000000 -1127.0000000000 -2285.0000000000
-717.0000000000 -1127.0000000000 -2285.0000000000
-717.0000000000 -1127.0000000000 -2290.0000000000
-624.0000000000 -1151.0000000000 -2290.0000000000
-624.0000000000 -1151.0000000000 -2290.0000000000
-624.0000000000 -1151.0000000000 -2290.0000000000
-563.0000000000 -1141.0000000000 -2319.0000000000
-563.0000000000 -1141.0000000000 -2319.0000000000
-563.0000000000 -1141.0000000000 -2319.0000000000
-408.0000000000 -1171.0000000000 -2331.0000000000
-408.0000000000 -1171.0000000000 -2331.0000000000
-408.0000000000 -1171.0000000000 -2331.0000000000
-156.0000000000 -1194.0000000000 -2356.0000000000
-156.0000000000 -1194.0000000000 -2356.0000000000
-156.0000000000 -1194.0000000000 -2356.0000000000
80.0000000000 -1207.0000000000 -2366.0000000000
80.0000000000 -1207.0000000000 -2366.0000000000
80.0000000000 -1207.0000000000 -2366.0000000000
232.0000000000 -1131.0000000000 -2411.0000000000
232.0000000000 -1131.0000000000 -2411.0000000000
232.0000000000 -1131.0000000000 -2411.0000000000
352.0000000000 -1099.0000000000 -2422.0000000000
352.0000000000 -1099.0000000000 -2422.0000000000
352.0000000000 -1099.0000000000 -2422.0000000000
628.0000000000 -1236.0000000000 -2306.0000000000
628.0000000000 -1236.0000000000 -2306.0000000000
628.0000000000 -1236.0000000000 -2306.0000000000
620.0000000000 -1144.0000000000 -2358.0000000000
620.0000000000 -1144.0000000000 -2358.0000000000
620.0000000000 -1144.0000000000 -2358.0000000000
579.0000000000 -955.0000000000 -2475.0000000000
579.0000000000 -955.0000000000 -2475.0000000000
579.0000000000 -955.0000000000 -2475.0000000000
554.0000000000 -961.0000000000 -2492.0000000000
554.0000000000 -961.0000000000 -2492.0000000000
554.0000000000 -961.0000000000 -2492.0000000000
722.0000000000 -1208.0000000000 -2364.0000000000
722.0000000000 -1208.0000000000 -2364.0000000000
722.0000000000 -1208.0000000000 -2364.0000000000
1016.0000000000 -1264.0000000000 -2268.0000000000
1016.0000000000 -1264.0000000000 -2268.0000000000
1016.0000000000 -1264.0000000000 -2268.0000000000
1016.0000000000 -1264.0000000000 -2268.0000000000
1152.0000000000 -1223.0000000000 -2263.0000000000
1152.0000000000 -1223.0000000000 -2263.0000000000
1152.0000000000 -1223.0000000000 -2263.0000000000
1125.0000000000 -1249.0000000000 -2260.0000000000
1125.0000000000 -1249.0000000000 -2260.0000000000
1125.0000000000 -1249.0000000000 -2260.0000000000
1155.0000000000 -1293.0000000000 -2230.0000000000
1155.0000000000 -1293.0000000000 -2230.0000000000
1155.0000000000 -1293.0000000000 -2230.0000000000
1276.0000000000 -1360.0000000000 -2112.0000000000
1276.0000000000 -1360.0000000000 -2112.0000000000
1276.0000000000 -1360.0000000000 -2112.0000000000
1239.0000000000 -1437.0000000000 -2062.0000000000
1239.0000000000 -1437.0000000000 -2062.0000000000
1239.0000000000 -1437.0000000000 -2062.0000000000
1319.0000000000 -1527.0000000000 -1955.0000000000
1319.0000000000 -1527.0000000000 -1955.0000000000
1319.0000000000 -1527.0000000000 -1955.0000000000
1289.0000000000 -1549.0000000000 -1947.0000000000
1289.0000000000 -1549.0000000000 -1947.0000000000
1289.0000000000 -1549.0000000000 -1947.0000000000
1396.0000000000 -1530.0000000000 -1909.0000000000
1396.0000000000 -1530.0000000000 -1909.0000000000
1396.0000000000 -1530.0000000000 -1909.0000000000
1376.0000000000 -1497.0000000000 -1963.0000000000
1376.0000000000 -1497.0000000000 -1963.0000000000
1376.0000000000 -1497.0000000000 -1963.0000000000
1461.0000000000 -1242.0000000000 -2072.0000000000
1461.0000000000 -1242.0000000000 -2072.0000000000
1461.0000000000 -1242.0000000000 -2072.0000000000
1386.0000000000 -879.0000000000 -2299.0000000000
1386.0000000000 -879.0000000000 -2299.0000000000
1386.0000000000 -879.0000000000 -2299.0000000000
1262.0000000000 -826.0000000000 -2384.0000000000
1262.0000000000 -826.0000000000 -2384.0000000000
1262.0000000000 -826.0000000000 -2384.0000000000
1262.0000000000 -826.0000000000 -2384.0000000000
1012.0000000000 -760.0000000000 -2523.0000000000
1012.0000000000 -760.0000000000 -2523.0000000000
1012.0000000000 -760.0000000000 -2523.0000000000
976.0000000000 -969.0000000000 -2466.0000000000
976.0000000000 -969.0000000000 -2466.0000000000
976.0000000000 -969.0000000000 -2466.0000000000
574.0000000000 -780.0000000000 -2646.0000000000
574.0000000000 -780.0000000000 -2646.0000000000
574.0000000000 -780.0000000000 -2646.0000000000
444.0000000000 -484.0000000000 -2747.0000000000
444.0000000000 -484.0000000000 -2747.0000000000
444.0000000000 -484.0000000000 -2747.0000000000
142.0000000000 -280.0000000000 -2820.0000000000
142.0000000000 -280.0000000000 -2820.0000000000
142.0000000000 -280.0000000000 -2820.0000000000
177.0000000000 178.0000000000 -2850.0000000000
177.0000000000 178.0000000000 -2850.0000000000
177.0000000000 178.0000000000 -2850.0000000000
-19.0000000000 571.0000000000 -2824.0000000000
-19.0000000000 571.0000000000 -2824.0000000000
-19.0000000000 571.0000000000 -2824.0000000000
-571.0000000000 867.0000000000 -2725.0000000000
-571.0000000000 867.0000000000 -2725.0000000000
-571.0000000000 867.0000000000 -2725.0000000000
-1286.0000000000 1002.0000000000 -2463.0000000000
-1286.0000000000 1002.0000000000 -2463.0000000000
-1286.0000000000 1002.0000000000 -2463.0000000000
-1442.0000000000 872.0000000000 -2406.0000000000
-1442.0000000000 872.0000000000 -2406.0000000000
-1442.0000000000 872.0000000000 -2406.0000000000
-1323.0000000000 756.0000000000 -2493.0000000000
-1323.0000000000 756.0000000000 -2493.0000000000
-1323.0000000000 756.0000000000 -2493.0000000000
-1251.0000000000 634.0000000000 -2558.0000000000
-1251.0000000000 634.0000000000 -2558.0000000000
-1251.0000000000 634.0000000000 -2558.0000000000
-1251.0000000000 634.0000000000 -2814.0000000000
-1139.0000000000 579.0000000000 -2624.0000000000
-1139.0000000000 579.0000000000 -2624.0000000000
-1139.0000000000 579.0000000000 -2624.0000000000
-1072.0000000000 535.0000000000 -2653.0000000000
-1072.0000000000 535.0000000000 -2653.0000000000
-1072.0000000000 535.0000000000 -2653.0000000000

Here is what I get for your input data file, using my slightly edited version of magneto

Average magnitude (default Hm) and sigma of 2279 vectors = 2824.5, 134.6

Reject outliers? (0 or d, reject if > d*sigma from mean) 0
Rejection level selected: 0.0

2279 measurements processed, expected 2279

Expected norm of local field vector Hm? (Enter 0 for default 2824.5) 0

Set Hm = 2824.5

Combined bias vector B:
-34.49 67.93 161.43

Correction matrix Ainv, using Hm= 2824.5:
0.97249 0.01374 0.00522
0.01374 0.97557 0.02178
0.00522 0.02178 0.98110

Where Hcalc = Ainv*(H-B)

Code initialization statements...

float B[3]
{ -34.49, 67.93, 161.43};

float Ainv[3][3]
{{ 0.97249, 0.01374, 0.00522},
{ 0.01374, 0.97557, 0.02178},
{ 0.00522, 0.02178, 0.98110}};
output filename for corrected values (csv) mag0_corrected.csv

RMS corrected vector length 2824.535511

This is the corrected data file:

-1080.62, 1575.24,-2632.14
-1080.62, 1575.24,-2632.14
-1080.74, 1570.12,-2643.04
-1080.74, 1570.12,-2643.04
-1080.74, 1570.12,-2643.04
-1080.67, 1569.49,-2627.37
-1080.67, 1569.49,-2627.37
-1080.67, 1569.49,-2627.37
-1088.52, 1569.10,-2640.16
-1088.52, 1569.10,-2640.16
-1088.52, 1569.10,-2640.16
-1082.64, 1570.29,-2634.23
-1082.64, 1570.29,-2634.23
-1082.64, 1570.29,-2634.23
-1088.53, 1568.14,-2639.21
-1088.53, 1568.14,-2639.21
-1088.53, 1568.14,-2639.21
-1085.69, 1564.20,-2643.20
-1085.69, 1564.20,-2643.20
-1085.69, 1564.20,-2643.20
-1083.68, 1564.48,-2631.42
-1083.68, 1564.48,-2631.42
-1083.68, 1564.48,-2631.42
-1083.68, 1564.48,-2631.42
-1094.28, 1573.91,-2639.11
-1094.28, 1573.91,-2639.11
-1094.28, 1573.91,-2639.11
-1077.92, 1563.33,-2643.18
-1077.92, 1563.33,-2643.18
-1077.92, 1563.33,-2643.18
 -944.97, 1728.60,-2572.15
 -944.97, 1728.60,-2572.15
 -944.97, 1728.60,-2572.15
-1111.42, 1533.49,-2648.92
-1111.42, 1533.49,-2648.92
-1111.42, 1533.49,-2648.92
-1540.28,  939.23,-2754.53
-1540.28,  939.23,-2754.53
-1540.28,  939.23,-2754.53
-1558.63,  924.80,-2690.22
-1558.63,  924.80,-2690.22
-1558.63,  924.80,-2690.22
-1090.29,  914.16,-2718.49
-1090.29,  914.16,-2718.49
-1090.29,  914.16,-2718.49
 -724.12,  940.73,-2674.86
 -724.12,  940.73,-2674.86
 -724.12,  940.73,-2674.86
 -513.15,  986.99,-2611.97
 -513.15,  986.99,-2611.97
 -513.15,  986.99,-2611.97
 -402.35, 1158.37,-2515.42
 -402.35, 1158.37,-2515.42
 -402.35, 1158.37,-2515.42
 -534.54, 1491.41,-2272.35
 -534.54, 1491.41,-2272.35
 -534.54, 1491.41,-2272.35
 -850.51, 1569.77,-2099.62
 -850.51, 1569.77,-2099.62
 -850.51, 1569.77,-2099.62
-1226.41, 1533.30,-1923.87
-1226.41, 1533.30,-1923.87
-1226.41, 1533.30,-1923.87
-1226.41, 1533.30,-1923.87
-1566.88, 1402.82,-1789.25
-1566.88, 1402.82,-1789.25
-1566.88, 1402.82,-1789.25
-1872.57, 1239.74,-1608.11
-1872.57, 1239.74,-1608.11
-1872.57, 1239.74,-1608.11
-2080.18, 1084.82,-1472.38
-2080.18, 1084.82,-1472.38
-2080.18, 1084.82,-1472.38
-2216.77,  995.68,-1317.18
-2216.77,  995.68,-1317.18
-2216.77,  995.68,-1317.18
-2422.64,  738.53,-1132.73
-2422.64,  738.53,-1132.73
-2422.64,  738.53,-1132.73
-2624.04,  421.99, -859.36
-2624.04,  421.99, -859.36
-2624.04,  421.99, -859.36
-2750.02, -132.41, -588.95
-2750.02, -132.41, -588.95
-2750.02, -132.41, -588.95
-2703.13, -867.53,  -48.10
-2703.13, -867.53,  -48.10
-2703.13, -867.53,  -48.10
-2401.39,-1452.96,  487.57
-2401.39,-1452.96,  487.57
-2401.39,-1452.96,  487.57
-1959.38,-1723.24, 1166.28
-1959.38,-1723.24, 1166.28
-1959.38,-1723.24, 1166.28
-1425.69,-1880.00, 1586.16
-1425.69,-1880.00, 1586.16
-1425.69,-1880.00, 1586.16
-1287.21,-1683.94, 1900.11
-1287.21,-1683.94, 1900.11
-1287.21,-1683.94, 1900.11
-1287.21,-1683.94, 1900.11
-1311.10,-1436.78, 2070.23
-1311.10,-1436.78, 2070.23
-1311.10,-1436.78, 2070.23
-1211.38,-1184.69, 2252.85
-1211.38,-1184.69, 2252.85
-1211.38,-1184.69, 2252.85
-1030.97, -999.90, 2427.52
-1030.97, -999.90, 2427.52
-1030.97, -999.90, 2427.52
 -657.30, -953.78, 2556.93
 -657.30, -953.78, 2556.93
 -657.30, -953.78, 2556.93
 -368.59, -854.87, 2658.65
 -368.59, -854.87, 2658.65
 -368.59, -854.87, 2658.65
  -15.02, -628.83, 2737.05
  -15.02, -628.83, 2737.05
  -15.02, -628.83, 2737.05
  550.84, -481.98, 2714.74
  550.84, -481.98, 2714.74
  550.84, -481.98, 2714.74
  840.38, -334.08, 2650.85
  840.38, -334.08, 2650.85
  840.38, -334.08, 2650.85
 1298.94, -220.75, 2459.57
 1298.94, -220.75, 2459.57
 1298.94, -220.75, 2459.57
 1752.01, -317.86, 2145.91
 1752.01, -317.86, 2145.91
 1752.01, -317.86, 2145.91
 2038.84, -550.94, 1828.38
 2038.84, -550.94, 1828.38
 2038.84, -550.94, 1828.38
 2258.74, -693.94, 1483.10
 2258.74, -693.94, 1483.10
 2258.74, -693.94, 1483.10
 2258.74, -693.94, 1483.10
 2415.75, -861.60, 1076.16
 2415.75, -861.60, 1076.16
 2415.75, -861.60, 1076.16
 2580.31, -919.59,  509.90
 2580.31, -919.59,  509.90
 2580.31, -919.59,  509.90
 2614.45, -877.92, -359.77
 2614.45, -877.92, -359.77
 2614.45, -877.92, -359.77
 2453.84, -914.06, -878.15
 2453.84, -914.06, -878.15
 2453.84, -914.06, -878.15
 2345.49, -915.80,-1152.32
 2345.49, -915.80,-1152.32
 2345.49, -915.80,-1152.32
 2153.43, -902.55,-1489.34
 2153.43, -902.55,-1489.34
 2153.43, -902.55,-1489.34
 1991.63, -933.34,-1677.16
 1991.63, -933.34,-1677.16
 1991.63, -933.34,-1677.16
 1950.34, -869.32,-1753.41
 1950.34, -869.32,-1753.41
 1950.34, -869.32,-1753.41
 2030.18, -805.89,-1713.35
 2030.18, -805.89,-1713.35
 2030.18, -805.89,-1713.35
 2012.60, -729.85,-1746.07
 2012.60, -729.85,-1746.07
 2012.60, -729.85,-1746.07
 1863.84, -672.15,-1908.31
 1863.84, -672.15,-1908.31
 1863.84, -672.15,-1908.31
 1702.70, -439.24,-2118.69
 1702.70, -439.24,-2118.69
 1702.70, -439.24,-2118.69
 1150.85, -136.51,-2495.21
 1150.85, -136.51,-2495.21
 1150.85, -136.51,-2495.21
 1150.85, -136.51,-2495.21
  622.29,   88.28,-2663.50
  622.29,   88.28,-2663.50
  622.29,   88.28,-2663.50
  -32.63,  208.36,-2725.91
  -32.63,  208.36,-2725.91
  -32.63,  208.36,-2725.91
 -650.52,  283.34,-2646.96
 -650.52,  283.34,-2646.96
 -650.52,  283.34,-2646.96
 -953.96,  248.69,-2566.89
 -953.96,  248.69,-2566.89
 -953.96,  248.69,-2566.89
-1180.27,  233.80,-2480.11
-1180.27,  233.80,-2480.11
-1180.27,  233.80,-2480.11
-1518.06,  208.72,-2298.03
-1518.06,  208.72,-2298.03
-1518.06,  208.72,-2298.03
-1943.76,  108.21,-1988.63
-1943.76,  108.21,-1988.63
-1943.76,  108.21,-1988.63
-2152.86,   32.68,-1789.36
-2152.86,   32.68,-1789.36
-2152.86,   32.68,-1789.36
-2402.90, -103.54,-1442.61
-2402.90, -103.54,-1442.61
-2402.90, -103.54,-1442.61
-2597.03, -214.04,-1070.48
-2597.03, -214.04,-1070.48
-2597.03, -214.04,-1070.48
-2697.09, -376.98, -793.18
-2697.09, -376.98, -793.18
-2697.09, -376.98, -793.18
-2746.55, -399.69, -510.55
-2746.55, -399.69, -510.55
-2746.55, -399.69, -510.55
-2746.55, -399.69, -510.55
-2793.87, -469.30,  -57.34
-2793.87, -469.30,  -57.34
-2793.87, -469.30,  -57.34
-2784.73, -512.55,  140.80
-2784.73, -512.55,  140.80
-2784.73, -512.55,  140.80
-2727.01, -703.90,  356.49
-2727.01, -703.90,  356.49
-2727.01, -703.90,  356.49
-2627.48, -997.31,  471.07
-2627.48, -997.31,  471.07
-2627.48, -997.31,  471.07
-2556.54,-1129.13,  637.16
-2556.54,-1129.13,  637.16
-2556.54,-1129.13,  637.16
-2329.84,-1356.67,  916.63
-2329.84,-1356.67,  916.63
-2329.84,-1356.67,  916.63
-2112.38,-1381.07, 1306.48
-2112.38,-1381.07, 1306.48
-2112.38,-1381.07, 1306.48
-1781.37,-1251.24, 1809.18
-1781.37,-1251.24, 1809.18
-1781.37,-1251.24, 1809.18
-1408.96,-1164.30, 2154.24
-1408.96,-1164.30, 2154.24
-1408.96,-1164.30, 2154.24
 -839.27,-1535.36, 2206.72
 -839.27,-1535.36, 2206.72
 -839.27,-1535.36, 2206.72
 -263.54,-1563.88, 2315.88
 -263.54,-1563.88, 2315.88
 -263.54,-1563.88, 2315.88
  -13.03,-1805.90, 2146.04
  -13.03,-1805.90, 2146.04
  -13.03,-1805.90, 2146.04
  273.66,-1805.39, 2120.04
  273.66,-1805.39, 2120.04
  273.66,-1805.39, 2120.04
  273.66,-1805.39, 2120.04
  616.38,-1762.16, 2094.30
  616.38,-1762.16, 2094.30
  616.38,-1762.16, 2094.30
 1331.58,-1887.13, 1589.14
 1331.58,-1887.13, 1589.14
 1331.58,-1887.13, 1589.14
 1797.54,-1839.38, 1116.97
 1797.54,-1839.38, 1116.97
 1797.54,-1839.38, 1116.97
 2117.31,-1802.74,  411.42
 2117.31,-1802.74,  411.42
 2117.31,-1802.74,  411.42
 2161.15,-1789.70,    4.00
 2161.15,-1789.70,    4.00
 2161.15,-1789.70,    4.00
 2075.50,-1871.83, -172.80
 2075.50,-1871.83, -172.80
 2075.50,-1871.83, -172.80
 1813.68,-2121.26, -309.12
 1813.68,-2121.26, -309.12
 1813.68,-2121.26, -309.12
 1896.85,-2079.98, -126.37
 1896.85,-2079.98, -126.37
 1896.85,-2079.98, -126.37
 2054.12,-1923.49,  -26.97
 2054.12,-1923.49,  -26.97
 2054.12,-1923.49,  -26.97
 2214.70,-1658.67, -540.96
 2214.70,-1658.67, -540.96
 2214.70,-1658.67, -540.96
 2364.85,-1328.77, -794.68
 2364.85,-1328.77, -794.68
 2364.85,-1328.77, -794.68
 2398.43,-1159.56, -967.25
 2398.43,-1159.56, -967.25
 2398.43,-1159.56, -967.25
 2398.43,-1159.56, -967.25
 2399.85, -902.59,-1206.67
 2399.85, -902.59,-1206.67
 2399.85, -902.59,-1206.67
 2398.88, -641.64,-1352.86
 2398.88, -641.64,-1352.86
 2398.88, -641.64,-1352.86
 2368.77, -704.71,-1364.22
 2368.77, -704.71,-1364.22
 2368.77, -704.71,-1364.22
 2357.55, -814.87,-1356.92
 2357.55, -814.87,-1356.92
 2357.55, -814.87,-1356.92
 2377.35, -882.34,-1290.66
 2377.35, -882.34,-1290.66
 2377.35, -882.34,-1290.66
 2335.83, -903.20,-1369.78
 2335.83, -903.20,-1369.78
 2335.83, -903.20,-1369.78
 2350.33, -840.55,-1367.34
 2350.33, -840.55,-1367.34
 2350.33, -840.55,-1367.34
 2350.58, -564.75,-1504.36
 2350.58, -564.75,-1504.36
 2350.58, -564.75,-1504.36
 2152.66, -421.43,-1818.90
 2152.66, -421.43,-1818.90
 2152.66, -421.43,-1818.90
 1690.65,   82.26,-2290.52
 1690.65,   82.26,-2290.52
 1690.65,   82.26,-2290.52
  847.33,  539.77,-2668.98
  847.33,  539.77,-2668.98
  847.33,  539.77,-2668.98
   -6.29,  638.31,-2741.71
   -6.29,  638.31,-2741.71
   -6.29,  638.31,-2741.71
 -739.08,  626.23,-2647.62
 -739.08,  626.23,-2647.62
 -739.08,  626.23,-2647.62
 -739.08,  626.23,-2647.62
 -934.13,  564.24,-2594.09
 -934.13,  564.24,-2594.09
 -934.13,  564.24,-2594.09
 -604.54,  657.98,-2663.88
 -604.54,  657.98,-2663.88
 -604.54,  657.98,-2663.88
   11.81,  421.01,-2792.54
   11.81,  421.01,-2792.54
   11.81,  421.01,-2792.54
  405.99,  -32.91,-2804.57
  405.99,  -32.91,-2804.57
  405.99,  -32.91,-2804.57
 1195.41,   20.26,-2575.83
 1195.41,   20.26,-2575.83
 1195.41,   20.26,-2575.83
 2138.42, -166.56,-1879.00
 2138.42, -166.56,-1879.00
 2138.42, -166.56,-1879.00
 2602.71, -591.52, -979.07
 2602.71, -591.52, -979.07
 2602.71, -591.52, -979.07
 2647.21, -988.90, -109.08
 2647.21, -988.90, -109.08
 2647.21, -988.90, -109.08
 2367.80,-1397.04,  567.82
 2367.80,-1397.04,  567.82
 2367.80,-1397.04,  567.82
 1842.58,-1842.43,  994.56
 1842.58,-1842.43,  994.56
 1842.58,-1842.43,  994.56
 1396.81,-2050.82, 1287.73
 1396.81,-2050.82, 1287.73
 1396.81,-2050.82, 1287.73
  591.65,-2233.11, 1577.70
  591.65,-2233.11, 1577.70
  591.65,-2233.11, 1577.70
  591.65,-2233.11, 1577.70
 -179.55,-2495.71, 1301.24
 -179.55,-2495.71, 1301.24
 -179.55,-2495.71, 1301.24
 -890.58,-2534.62,  962.40
 -890.58,-2534.62,  962.40
 -890.58,-2534.62,  962.40
-1592.01,-2314.44,  650.95
-1592.01,-2314.44,  650.95
-1592.01,-2314.44,  650.95
-2157.20,-1924.98,  281.20
-2157.20,-1924.98,  281.20
-2157.20,-1924.98,  281.20
-2455.98,-1553.48, -231.76
-2455.98,-1553.48, -231.76
-2455.98,-1553.48, -231.76
-2469.86,-1277.08, -861.10
-2469.86,-1277.08, -861.10
-2469.86,-1277.08, -861.10
-2326.74,-1095.35,-1329.96
-2326.74,-1095.35,-1329.96
-2326.74,-1095.35,-1329.96
-1573.43,-1004.69,-2203.72
-1573.43,-1004.69,-2203.72
-1573.43,-1004.69,-2203.72
-1196.50, -710.64,-2503.18
-1196.50, -710.64,-2503.18
-1196.50, -710.64,-2503.18
 -462.62, -344.90,-2784.53
 -462.62, -344.90,-2784.53
 -462.62, -344.90,-2784.53
   66.26, -267.90,-2811.52
   66.26, -267.90,-2811.52
   66.26, -267.90,-2811.52
  299.49,  -69.53,-2805.93
  299.49,  -69.53,-2805.93
  299.49,  -69.53,-2805.93
  299.61,  -69.02,-2783.36
  454.96,  122.39,-2778.32
  454.96,  122.39,-2778.32
  454.96,  122.39,-2778.32
  716.33,  362.61,-2705.95
  716.33,  362.61,-2705.95
  716.33,  362.61,-2705.95
  804.09,  568.87,-2647.96
  804.09,  568.87,-2647.96
  804.09,  568.87,-2647.96
  814.50,  803.48,-2581.89
  814.50,  803.48,-2581.89
  814.50,  803.48,-2581.89
  692.42, 1142.47,-2472.98
  692.42, 1142.47,-2472.98
  692.42, 1142.47,-2472.98
  486.64, 1472.71,-2353.90
  486.64, 1472.71,-2353.90
  486.64, 1472.71,-2353.90
  351.06, 1623.54,-2280.63
  351.06, 1623.54,-2280.63
  351.06, 1623.54,-2280.63
  233.17, 1828.14,-2123.70
  233.17, 1828.14,-2123.70
  233.17, 1828.14,-2123.70
  150.27, 1871.36,-2100.60
  150.27, 1871.36,-2100.60
  150.27, 1871.36,-2100.60
 -172.75, 1906.92,-2051.43
 -172.75, 1906.92,-2051.43
 -172.75, 1906.92,-2051.43
 -460.76, 1770.16,-2102.02
 -460.76, 1770.16,-2102.02
 -460.76, 1770.16,-2102.02
 -749.57, 1525.02,-2203.07
 -749.57, 1525.02,-2203.07
 -749.57, 1525.02,-2203.07
-1017.92, 1212.90,-2304.53
-1017.92, 1212.90,-2304.53
-1017.92, 1212.90,-2304.53
-1017.92, 1212.90,-2304.53
-1179.62,  871.57,-2383.55
-1179.62,  871.57,-2383.55
-1179.62,  871.57,-2383.55
-1126.92,  638.38,-2469.86
-1126.92,  638.38,-2469.86
-1126.92,  638.38,-2469.86
-1010.14,  470.29,-2562.24
-1010.14,  470.29,-2562.24
-1010.14,  470.29,-2562.24
 -999.56,  397.04,-2574.61
 -999.56,  397.04,-2574.61
 -999.56,  397.04,-2574.61
 -976.90,  221.17,-2606.85
 -976.90,  221.17,-2606.85
 -976.90,  221.17,-2606.85
-1002.43,  134.02,-2607.93
-1002.43,  134.02,-2607.93
-1002.43,  134.02,-2607.93
 -907.79,  -38.00,-2643.64
 -907.79,  -38.00,-2643.64
 -907.79,  -38.00,-2643.64
 -757.71, -140.90,-2674.59
 -757.71, -140.90,-2674.59
 -757.71, -140.90,-2674.59
 -691.59, -201.89,-2697.19
 -691.59, -201.89,-2697.19
 -691.59, -201.89,-2697.19
 -612.30, -369.64,-2706.41
 -612.30, -369.64,-2706.41
 -612.30, -369.64,-2706.41
 -543.35, -514.87,-2704.39
 -543.35, -514.87,-2704.39
 -543.35, -514.87,-2704.39
 -442.71, -622.40,-2693.53
 -442.71, -622.40,-2693.53
 -442.71, -622.40,-2693.53
 -442.71, -622.40,-2693.53
 -247.34, -693.90,-2700.01
 -247.34, -693.90,-2700.01
 -247.34, -693.90,-2700.01
 -118.37, -789.49,-2695.61
 -118.37, -789.49,-2695.61
 -118.37, -789.49,-2695.61
    3.23, -868.79,-2655.57
    3.23, -868.79,-2655.57
    3.23, -868.79,-2655.57
  316.35, -945.60,-2624.32
  316.35, -945.60,-2624.32
  316.35, -945.60,-2624.32
  679.62, -923.60,-2565.12
  679.62, -923.60,-2565.12
  679.62, -923.60,-2565.12
  908.82, -891.86,-2509.32
  908.82, -891.86,-2509.32
  908.82, -891.86,-2509.32
 1114.70, -785.65,-2465.72
 1114.70, -785.65,-2465.72
 1114.70, -785.65,-2465.72
 1315.47, -626.90,-2423.91
 1315.47, -626.90,-2423.91
 1315.47, -626.90,-2423.91
 1353.80, -454.07,-2435.55
 1353.80, -454.07,-2435.55
 1353.80, -454.07,-2435.55
 1359.19, -193.56,-2473.85
 1359.19, -193.56,-2473.85
 1359.19, -193.56,-2473.85
 1336.21,  -20.86,-2496.60
 1336.21,  -20.86,-2496.60
 1336.21,  -20.86,-2496.60
 1271.90,   49.67,-2528.70
 1271.90,   49.67,-2528.70
 1271.90,   49.67,-2528.70
 1272.16,   -2.84,-2523.00
 1272.16,   -2.84,-2523.00
 1272.16,   -2.84,-2523.00
 1272.16,   -2.84,-2523.00
 1315.08, -209.45,-2502.87
 1315.08, -209.45,-2502.87
 1315.08, -209.45,-2502.87
 1215.48, -375.78,-2511.00
 1215.48, -375.78,-2511.00
 1215.48, -375.78,-2511.00
  953.86, -635.42,-2579.87
  953.86, -635.42,-2579.87
  953.86, -635.42,-2579.87
  743.14, -820.01,-2593.87
  743.14, -820.01,-2593.87
  743.14, -820.01,-2593.87
  311.91, -994.82,-2598.96
  311.91, -994.82,-2598.96
  311.91, -994.82,-2598.96
  -10.39,-1022.16,-2616.89
  -10.39,-1022.16,-2616.89
  -10.39,-1022.16,-2616.89
  -49.11,-1012.78,-2609.03
  -49.11,-1012.78,-2609.03
  -49.11,-1012.78,-2609.03
 -219.52, -960.65,-2612.65
 -219.52, -960.65,-2612.65
 -219.52, -960.65,-2612.65
 -201.46, -686.10,-2684.90
 -201.46, -686.10,-2684.90
 -201.46, -686.10,-2684.90
 -235.67, -774.91,-2667.44
 -235.67, -774.91,-2667.44
 -235.67, -774.91,-2667.44
 -233.34, -820.46,-2656.67
 -233.34, -820.46,-2656.67
 -233.34, -820.46,-2656.67
  -85.60, -670.11,-2696.71
  -85.60, -670.11,-2696.71
  -85.60, -670.11,-2696.71
  -85.60, -670.11,-2696.71
 -158.73, -684.85,-2699.36
 -158.73, -684.85,-2699.36
 -158.73, -684.85,-2699.36
 -271.83, -639.52,-2694.02
 -271.83, -639.52,-2694.02
 -271.83, -639.52,-2694.02
 -454.92, -668.01,-2675.97
 -454.92, -668.01,-2675.97
 -454.92, -668.01,-2675.97
 -550.31, -531.20,-2689.10
 -550.31, -531.20,-2689.10
 -550.31, -531.20,-2689.10
 -705.64, -380.06,-2677.69
 -705.64, -380.06,-2677.69
 -705.64, -380.06,-2677.69
 -858.40,  -47.34,-2656.35
 -858.40,  -47.34,-2656.35
 -858.40,  -47.34,-2656.35
 -830.98,   35.00,-2653.40
 -830.98,   35.00,-2653.40
 -830.98,   35.00,-2653.40
 -855.02,  192.65,-2650.99
 -855.02,  192.65,-2650.99
 -855.02,  192.65,-2650.99
 -895.28,  424.24,-2600.93
 -895.28,  424.24,-2600.93
 -895.28,  424.24,-2600.93
 -781.15,  591.52,-2603.50
 -781.15,  591.52,-2603.50
 -781.15,  591.52,-2603.50
 -705.01,  741.42,-2574.28
 -705.01,  741.42,-2574.28
 -705.01,  741.42,-2574.28
 -599.23,  866.70,-2574.88
 -599.23,  866.70,-2574.88
 -599.23,  866.70,-2574.88
 -388.37, 1172.94,-2482.67
 -388.37, 1172.94,-2482.67
 -388.37, 1172.94,-2482.67
 -388.37, 1172.94,-2482.67
 -212.78, 1392.73,-2397.46
 -212.78, 1392.73,-2397.46
 -212.78, 1392.73,-2397.46
  -45.43, 1464.70,-2379.32
  -45.43, 1464.70,-2379.32
  -45.43, 1464.70,-2379.32
   73.71, 1491.39,-2349.69
   73.71, 1491.39,-2349.69
   73.71, 1491.39,-2349.69
  318.55, 1593.82,-2281.45
  318.55, 1593.82,-2281.45
  318.55, 1593.82,-2281.45
  491.44, 1523.39,-2313.53
  491.44, 1523.39,-2313.53
  491.44, 1523.39,-2313.53
  497.85, 1496.11,-2317.04
  497.85, 1496.11,-2317.04
  497.85, 1496.11,-2317.04
  477.73, 1516.35,-2314.73
  477.73, 1516.35,-2314.73
  477.73, 1516.35,-2314.73
  492.66, 1421.77,-2368.73
  492.66, 1421.77,-2368.73
  492.66, 1421.77,-2368.73
  532.16, 1341.44,-2411.51
  532.16, 1341.44,-2411.51
  532.16, 1341.44,-2411.51
  615.33, 1249.41,-2437.65
  615.33, 1249.41,-2437.65
  615.33, 1249.41,-2437.65
  695.02, 1126.51,-2490.97
  695.02, 1126.51,-2490.97
  695.02, 1126.51,-2490.97
  787.93, 1035.62,-2516.06
  787.93, 1035.62,-2516.06
  787.93, 1035.62,-2516.06
  787.93, 1035.62,-2516.06
  889.17,  910.92,-2532.05
  889.17,  910.92,-2532.05
  889.17,  910.92,-2532.05
  989.42,  845.27,-2522.22
  989.42,  845.27,-2522.22
  989.42,  845.27,-2522.22
 1048.07,  733.67,-2536.18
 1048.07,  733.67,-2536.18
 1048.07,  733.67,-2536.18
 1097.39,  514.45,-2561.40
 1097.39,  514.45,-2561.40
 1097.39,  514.45,-2561.40
 1125.57,  310.72,-2578.54
 1125.57,  310.72,-2578.54
 1125.57,  310.72,-2578.54
  979.69,  260.51,-2640.21
  979.69,  260.51,-2640.21
  979.69,  260.51,-2640.21
  935.57,  304.71,-2641.41
  935.57,  304.71,-2641.41
  935.57,  304.71,-2641.41
  910.91,   74.05,-2652.55
  910.91,   74.05,-2652.55
  910.91,   74.05,-2652.55
  724.41, -537.05,-2659.25
  724.41, -537.05,-2659.25
  724.41, -537.05,-2659.25
  528.43, -713.46,-2665.15
  528.43, -713.46,-2665.15
  528.43, -713.46,-2665.15
  156.86, -941.46,-2644.65
  156.86, -941.46,-2644.65
  156.86, -941.46,-2644.65
 -115.65,-1125.06,-2574.60
 -115.65,-1125.06,-2574.60
 -115.65,-1125.06,-2574.60
 -115.65,-1125.06,-2574.60
 -266.50,-1142.39,-2557.12
 -266.50,-1142.39,-2557.12
 -266.50,-1142.39,-2557.12
 -559.43,-1028.20,-2542.33
 -559.43,-1028.20,-2542.33
 -559.43,-1028.20,-2542.33
 -533.30,-1033.86,-2550.17
 -533.30,-1033.86,-2550.17
 -533.30,-1033.86,-2550.17
 -698.33, -952.89,-2531.55
 -698.33, -952.89,-2531.55
 -698.33, -952.89,-2531.55
 -766.93, -850.62,-2536.48
 -766.93, -850.62,-2536.48
 -766.93, -850.62,-2536.48
 -738.36, -668.89,-2580.34
 -738.36, -668.89,-2580.34
 -738.36, -668.89,-2580.34
 -940.77, -629.69,-2531.46
 -940.77, -629.69,-2531.46
 -940.77, -629.69,-2531.46
 -900.01, -335.08,-2592.36
 -900.01, -335.08,-2592.36
 -900.01, -335.08,-2592.36
-1062.10, -123.71,-2542.39
-1062.10, -123.71,-2542.39
-1062.10, -123.71,-2542.39
-1047.28,   31.56,-2539.84
-1047.28,   31.56,-2539.84
-1047.28,   31.56,-2539.84
 -942.63,  224.47,-2567.38
 -942.63,  224.47,-2567.38
 -942.63,  224.47,-2567.38
 -843.54,  620.66,-2524.72
 -843.54,  620.66,-2524.72
 -843.54,  620.66,-2524.72
 -819.09,  817.38,-2461.38
 -819.09,  817.38,-2461.38
 -819.09,  817.38,-2461.38
 -819.09,  817.38,-2461.38
 -863.95,  990.89,-2390.08
 -863.95,  990.89,-2390.08
 -863.95,  990.89,-2390.08
 -846.25,  882.85,-2437.50
 -846.25,  882.85,-2437.50
 -846.25,  882.85,-2437.50
 -993.30,  974.32,-2351.88
 -993.30,  974.32,-2351.88
 -993.30,  974.32,-2351.88
 -815.90, 1141.80,-2341.37
 -815.90, 1141.80,-2341.37
 -815.90, 1141.80,-2341.37
 -318.68, 1434.26,-2303.91
 -318.68, 1434.26,-2303.91
 -318.68, 1434.26,-2303.91
    5.51, 1581.56,-2241.14
    5.51, 1581.56,-2241.14
    5.51, 1581.56,-2241.14
   48.59, 1545.36,-2274.09
   48.59, 1545.36,-2274.09
   48.59, 1545.36,-2274.09
  177.24, 1403.06,-2398.20
  177.24, 1403.06,-2398.20
  177.24, 1403.06,-2398.20
  507.32, 1303.98,-2414.43
  507.32, 1303.98,-2414.43
  507.32, 1303.98,-2414.43
  925.46, 1157.54,-2380.27
  925.46, 1157.54,-2380.27
  925.46, 1157.54,-2380.27
 1106.87, 1175.14,-2316.21
 1106.87, 1175.14,-2316.21
 1106.87, 1175.14,-2316.21
 1294.53, 1092.83,-2277.87
 1294.53, 1092.83,-2277.87
 1294.53, 1092.83,-2277.87
 1294.53, 1092.83,-2277.87
 1334.55,  856.51,-2365.30
 1334.55,  856.51,-2365.30
 1334.55,  856.51,-2365.30
 1219.20,  646.53,-2485.28
 1219.20,  646.53,-2485.28
 1219.20,  646.53,-2485.28
 1357.65,  395.04,-2483.32
 1357.65,  395.04,-2483.32
 1357.65,  395.04,-2483.32
 1356.61,  320.92,-2483.99
 1356.61,  320.92,-2483.99
 1356.61,  320.92,-2483.99
 1417.25,   -4.63,-2475.24
 1417.25,   -4.63,-2475.24
 1417.25,   -4.63,-2475.24
 1280.20, -788.08,-2415.90
 1280.20, -788.08,-2415.90
 1280.20, -788.08,-2415.90
  931.85,-1412.01,-2283.48
  931.85,-1412.01,-2283.48
  931.85,-1412.01,-2283.48
  584.00,-1796.80,-2137.89
  584.00,-1796.80,-2137.89
  584.00,-1796.80,-2137.89
  511.77,-1917.72,-2049.75
  511.77,-1917.72,-2049.75
  511.77,-1917.72,-2049.75
  557.62,-2008.69,-1960.35
  557.62,-2008.69,-1960.35
  557.62,-2008.69,-1960.35
  406.79,-2233.22,-1746.46
  406.79,-2233.22,-1746.46
  406.79,-2233.22,-1746.46
  118.33,-2454.14,-1458.65
  118.33,-2454.14,-1458.65
  118.33,-2454.14,-1458.65
 -565.44,-2457.45,-1307.25
 -565.44,-2457.45,-1307.25
 -565.44,-2457.45,-1307.25
 -565.44,-2457.45,-1307.25
-1234.23,-2270.87,-1219.20
-1234.23,-2270.87,-1219.20
-1234.23,-2270.87,-1219.20
-1704.16,-2081.34,-1035.95
-1704.16,-2081.34,-1035.95
-1704.16,-2081.34,-1035.95
-2112.83,-1896.70, -451.43
-2112.83,-1896.70, -451.43
-2112.83,-1896.70, -451.43
-2336.20,-1603.59,  335.49
-2336.20,-1603.59,  335.49
-2336.20,-1603.59,  335.49
-2350.24,-1235.84,  971.19
-2350.24,-1235.84,  971.19
-2350.24,-1235.84,  971.19
-2279.41, -967.92, 1358.96
-2279.41, -967.92, 1358.96
-2279.41, -967.92, 1358.96
-2282.73, -816.10, 1436.85
-2282.73, -816.10, 1436.85
-2282.73, -816.10, 1436.85
-2330.46, -614.88, 1441.08
-2330.46, -614.88, 1441.08
-2330.46, -614.88, 1441.08
-2334.51, -559.25, 1446.22
-2334.51, -559.25, 1446.22
-2334.51, -559.25, 1446.22
-2059.86, -194.77, 1883.26
-2059.86, -194.77, 1883.26
-2059.86, -194.77, 1883.26
-1499.11,  108.95, 2344.91
-1499.11,  108.95, 2344.91
-1499.11,  108.95, 2344.91
-1180.31,   42.02, 2510.75
-1180.31,   42.02, 2510.75
-1180.31,   42.02, 2510.75
-1180.31,   42.02, 2510.75
 -817.59,  203.36, 2655.42
 -817.59,  203.36, 2655.42
 -817.59,  203.36, 2655.42
 -456.55,  266.77, 2737.10
 -456.55,  266.77, 2737.10
 -456.55,  266.77, 2737.10
    4.20,  237.54, 2798.59
    4.20,  237.54, 2798.59
    4.20,  237.54, 2798.59
  594.69,  141.26, 2743.54
  594.69,  141.26, 2743.54
  594.69,  141.26, 2743.54
 1291.32,   45.75, 2524.30
 1291.32,   45.75, 2524.30
 1291.32,   45.75, 2524.30
 1675.93,   27.64, 2299.32
 1675.93,   27.64, 2299.32
 1675.93,   27.64, 2299.32
 2034.82,    3.65, 2001.52
 2034.82,    3.65, 2001.52
 2034.82,    3.65, 2001.52
 2298.08, -168.82, 1662.67
 2298.08, -168.82, 1662.67
 2298.08, -168.82, 1662.67
 2439.33, -400.94, 1392.48
 2439.33, -400.94, 1392.48
 2439.33, -400.94, 1392.48
 2550.11, -514.70, 1115.94
 2550.11, -514.70, 1115.94
 2550.11, -514.70, 1115.94
 2621.53, -797.32,  634.42
 2621.53, -797.32,  634.42
 2621.53, -797.32,  634.42
 2655.90, -893.75,   -0.03
 2655.90, -893.75,   -0.03
 2655.90, -893.75,   -0.03
 2655.90, -893.75,   -0.03
 2580.30, -996.23, -442.00
 2580.30, -996.23, -442.00
 2580.30, -996.23, -442.00
 2559.80, -788.97, -843.45
 2559.80, -788.97, -843.45
 2559.80, -788.97, -843.45
 2585.46, -336.15,-1058.78
 2585.46, -336.15,-1058.78
 2585.46, -336.15,-1058.78
 2484.54,  -88.93,-1321.49
 2484.54,  -88.93,-1321.49
 2484.54,  -88.93,-1321.49
 2197.69, -147.23,-1747.85
 2197.69, -147.23,-1747.85
 2197.69, -147.23,-1747.85
 2087.15, -155.15,-1859.39
 2087.15, -155.15,-1859.39
 2087.15, -155.15,-1859.39
 1994.38,  -76.89,-1965.01
 1994.38,  -76.89,-1965.01
 1994.38,  -76.89,-1965.01
 1797.25,  -64.14,-2145.17
 1797.25,  -64.14,-2145.17
 1797.25,  -64.14,-2145.17
 1560.78,   53.44,-2321.23
 1560.78,   53.44,-2321.23
 1560.78,   53.44,-2321.23
 1186.29,  110.26,-2512.09
 1186.29,  110.26,-2512.09
 1186.29,  110.26,-2512.09
  773.98,  161.46,-2668.95
  773.98,  161.46,-2668.95
  773.98,  161.46,-2668.95
  302.27,   45.48,-2765.11
  302.27,   45.48,-2765.11
  302.27,   45.48,-2765.11
 -302.25,   65.07,-2774.59
 -302.25,   65.07,-2774.59
 -302.25,   65.07,-2774.59
 -302.25,   65.07,-2774.59
 -892.74,   -0.99,-2654.51
 -892.74,   -0.99,-2654.51
 -892.74,   -0.99,-2654.51
-1455.95, -176.07,-2412.18
-1455.95, -176.07,-2412.18
-1455.95, -176.07,-2412.18
-1872.81, -193.07,-2123.43
-1872.81, -193.07,-2123.43
-1872.81, -193.07,-2123.43
-2241.39, -200.32,-1733.22
-2241.39, -200.32,-1733.22
-2241.39, -200.32,-1733.22
-2441.46, -301.22,-1407.98
-2441.46, -301.22,-1407.98
-2441.46, -301.22,-1407.98
-2656.61, -275.63, -952.52
-2656.61, -275.63, -952.52
-2656.61, -275.63, -952.52
-2766.24, -288.19, -481.69
-2766.24, -288.19, -481.69
-2766.24, -288.19, -481.69
-2812.76, -269.63,   78.41
-2812.76, -269.63,   78.41
-2812.76, -269.63,   78.41
-2754.49, -472.45,  436.02
-2754.49, -472.45,  436.02
-2754.49, -472.45,  436.02
-2715.74, -597.76,  563.85
-2715.74, -597.76,  563.85
-2715.74, -597.76,  563.85
-2595.83, -682.98,  866.54
-2595.83, -682.98,  866.54
-2595.83, -682.98,  866.54
-2278.79, -935.96, 1393.01
-2278.79, -935.96, 1393.01
-2278.79, -935.96, 1393.01
-2278.79, -935.96, 1393.01
-1917.43, -908.44, 1834.76
-1917.43, -908.44, 1834.76
-1917.43, -908.44, 1834.76
-1633.95, -826.40, 2102.77
-1633.95, -826.40, 2102.77
-1633.95, -826.40, 2102.77
-1408.37, -749.16, 2278.22
-1408.37, -749.16, 2278.22
-1408.37, -749.16, 2278.22
-1218.66, -649.03, 2409.86
-1218.66, -649.03, 2409.86
-1218.66, -649.03, 2409.86
 -916.23, -556.81, 2552.69
 -916.23, -556.81, 2552.69
 -916.23, -556.81, 2552.69
 -242.24, -397.19, 2731.25
 -242.24, -397.19, 2731.25
 -242.24, -397.19, 2731.25
  326.86, -368.12, 2715.16
  326.86, -368.12, 2715.16
  326.86, -368.12, 2715.16
  861.54, -337.51, 2614.60
  861.54, -337.51, 2614.60
  861.54, -337.51, 2614.60
 1301.50, -109.43, 2465.98
 1301.50, -109.43, 2465.98
 1301.50, -109.43, 2465.98
 1391.16,  200.79, 2418.43
 1391.16,  200.79, 2418.43
 1391.16,  200.79, 2418.43
 1743.93,  279.13, 2167.00
 1743.93,  279.13, 2167.00
 1743.93,  279.13, 2167.00
 1958.02,  434.66, 1966.60
 1958.02,  434.66, 1966.60
 1958.02,  434.66, 1966.60
 1956.69,  429.08, 1715.44
 2206.25,  482.87, 1697.30
 2206.25,  482.87, 1697.30
 2206.25,  482.87, 1697.30
 2319.58,  504.62, 1551.27
 2319.58,  504.62, 1551.27
 2319.58,  504.62, 1551.27
 2428.02,  467.07, 1371.54
 2428.02,  467.07, 1371.54
 2428.02,  467.07, 1371.54
 2594.66,  184.88, 1069.96
 2594.66,  184.88, 1069.96
 2594.66,  184.88, 1069.96
 2726.80,   91.52,  732.21
 2726.80,   91.52,  732.21
 2726.80,   91.52,  732.21
 2819.09,   57.30,  228.87
 2819.09,   57.30,  228.87
 2819.09,   57.30,  228.87
 2814.31,  -60.50, -201.32
 2814.31,  -60.50, -201.32
 2814.31,  -60.50, -201.32
 2745.01,  -57.79, -651.70
 2745.01,  -57.79, -651.70
 2745.01,  -57.79, -651.70
 2583.17,  -52.42,-1143.67
 2583.17,  -52.42,-1143.67
 2583.17,  -52.42,-1143.67
 2477.81,    4.41,-1372.40
 2477.81,    4.41,-1372.40
 2477.81,    4.41,-1372.40
 2463.82,  263.99,-1396.11
 2463.82,  263.99,-1396.11
 2463.82,  263.99,-1396.11
 2411.38,  553.37,-1414.45
 2411.38,  553.37,-1414.45
 2411.38,  553.37,-1414.45
 2161.77,  552.28,-1746.19
 2161.77,  552.28,-1746.19
 2161.77,  552.28,-1746.19
 2161.77,  552.28,-1746.19
 1996.60,  551.11,-1914.73
 1996.60,  551.11,-1914.73
 1996.60,  551.11,-1914.73
 1760.02,  535.30,-2127.11
 1760.02,  535.30,-2127.11
 1760.02,  535.30,-2127.11
 1503.58,  416.07,-2330.12
 1503.58,  416.07,-2330.12
 1503.58,  416.07,-2330.12
 1121.56,  420.19,-2519.25
 1121.56,  420.19,-2519.25
 1121.56,  420.19,-2519.25
  572.00,  528.05,-2671.62
  572.00,  528.05,-2671.62
  572.00,  528.05,-2671.62
  333.00,  353.77,-2730.64
  333.00,  353.77,-2730.64
  333.00,  353.77,-2730.64
 -195.99,  221.77,-2765.66
 -195.99,  221.77,-2765.66
 -195.99,  221.77,-2765.66
 -631.64,   55.20,-2703.91
 -631.64,   55.20,-2703.91
 -631.64,   55.20,-2703.91
 -950.67,  145.78,-2593.68
 -950.67,  145.78,-2593.68
 -950.67,  145.78,-2593.68
-1358.00,  -46.52,-2435.28
-1358.00,  -46.52,-2435.28
-1358.00,  -46.52,-2435.28
-1810.81, -266.11,-2159.07
-1810.81, -266.11,-2159.07
-1810.81, -266.11,-2159.07
-2016.62, -316.19,-1957.26
-2016.62, -316.19,-1957.26
-2016.62, -316.19,-1957.26
-2016.62, -316.19,-1957.26
-2315.05, -442.90,-1590.92
-2315.05, -442.90,-1590.92
-2315.05, -442.90,-1590.92
-2440.74, -555.89,-1330.29
-2440.74, -555.89,-1330.29
-2440.74, -555.89,-1330.29
-2591.15, -750.75, -921.58
-2591.15, -750.75, -921.58
-2591.15, -750.75, -921.58
-2688.02, -977.36, -219.13
-2688.02, -977.36, -219.13
-2688.02, -977.36, -219.13
-2619.72,-1162.78,  345.83
-2619.72,-1162.78,  345.83
-2619.72,-1162.78,  345.83
-2515.40,-1319.79,  453.67
-2515.40,-1319.79,  453.67
-2515.40,-1319.79,  453.67
-2268.55,-1315.48, 1197.32
-2268.55,-1315.48, 1197.32
-2268.55,-1315.48, 1197.32
-1744.88,-1253.24, 1916.21
-1744.88,-1253.24, 1916.21
-1744.88,-1253.24, 1916.21
-1117.41,-1177.16, 2357.43
-1117.41,-1177.16, 2357.43
-1117.41,-1177.16, 2357.43
 -516.32, -913.89, 2639.92
 -516.32, -913.89, 2639.92
 -516.32, -913.89, 2639.92
 -167.84,-1084.13, 2612.39
 -167.84,-1084.13, 2612.39
 -167.84,-1084.13, 2612.39
  192.35, -810.63, 2716.40
  192.35, -810.63, 2716.40
  192.35, -810.63, 2716.40
  585.55, -886.23, 2619.62
  585.55, -886.23, 2619.62
  585.55, -886.23, 2619.62
  585.55, -886.23, 2619.62
 1143.75, -816.86, 2449.44
 1143.75, -816.86, 2449.44
 1143.75, -816.86, 2449.44
 1713.72, -745.42, 2100.90
 1713.72, -745.42, 2100.90
 1713.72, -745.42, 2100.90
 2081.68, -728.49, 1752.08
 2081.68, -728.49, 1752.08
 2081.68, -728.49, 1752.08
 2409.22, -714.34, 1302.98
 2409.22, -714.34, 1302.98
 2409.22, -714.34, 1302.98
 2616.58, -712.55,  767.68
 2616.58, -712.55,  767.68
 2616.58, -712.55,  767.68
 2720.91, -494.33,  606.37
 2720.91, -494.33,  606.37
 2720.91, -494.33,  606.37
 2727.79, -411.83,  585.69
 2727.79, -411.83,  585.69
 2727.79, -411.83,  585.69
 2755.08, -332.76,  572.87
 2755.08, -332.76,  572.87
 2755.08, -332.76,  572.87
 2770.15, -297.50,  570.79
 2770.15, -297.50,  570.79
 2770.15, -297.50,  570.79
 2795.80, -222.15,  435.32
 2795.80, -222.15,  435.32
 2795.80, -222.15,  435.32
 2837.51, -260.39,  134.62
 2837.51, -260.39,  134.62
 2837.51, -260.39,  134.62
 2832.84, -153.31,  262.49
 2832.84, -153.31,  262.49
 2832.84, -153.31,  262.49
 2832.84, -153.31,  262.49
 2840.31,  -38.07,  267.06
 2840.31,  -38.07,  267.06
 2840.31,  -38.07,  267.06
 2849.55,  115.04,  131.27
 2849.55,  115.04,  131.27
 2849.55,  115.04,  131.27
 2811.21,  184.95, -341.98
 2811.21,  184.95, -341.98
 2811.21,  184.95, -341.98
 2683.66,  226.76, -882.98
 2683.66,  226.76, -882.98
 2683.66,  226.76, -882.98
 2605.25,   40.19,-1069.92
 2605.25,   40.19,-1069.92
 2605.25,   40.19,-1069.92
 2596.26,   95.46,-1077.56
 2596.26,   95.46,-1077.56
 2596.26,   95.46,-1077.56
 2657.53,  254.50, -934.46
 2657.53,  254.50, -934.46
 2657.53,  254.50, -934.46
 2755.19,  376.23, -605.70
 2755.19,  376.23, -605.70
 2755.19,  376.23, -605.70
 2746.96,  638.69, -458.70
 2746.96,  638.69, -458.70
 2746.96,  638.69, -458.70
 2637.25, 1090.46, -327.60
 2637.25, 1090.46, -327.60
 2637.25, 1090.46, -327.60
 2569.44, 1226.87, -464.16
 2569.44, 1226.87, -464.16
 2569.44, 1226.87, -464.16
 2293.56, 1524.31, -858.03
 2293.56, 1524.31, -858.03
 2293.56, 1524.31, -858.03
 2293.56, 1524.31, -858.03
 1910.71, 1593.83,-1394.80
 1910.71, 1593.83,-1394.80
 1910.71, 1593.83,-1394.80
 1582.51, 1550.66,-1772.00
 1582.51, 1550.66,-1772.00
 1582.51, 1550.66,-1772.00
 1228.62, 1509.52,-2041.43
 1228.62, 1509.52,-2041.43
 1228.62, 1509.52,-2041.43
  774.85, 1522.70,-2216.01
  774.85, 1522.70,-2216.01
  774.85, 1522.70,-2216.01
  406.24, 1597.60,-2254.45
  406.24, 1597.60,-2254.45
  406.24, 1597.60,-2254.45
   36.69, 1653.31,-2234.49
   36.69, 1653.31,-2234.49
   36.69, 1653.31,-2234.49
 -400.51, 1601.70,-2219.21
 -400.51, 1601.70,-2219.21
 -400.51, 1601.70,-2219.21
 -794.99, 1583.78,-2118.64
 -794.99, 1583.78,-2118.64
 -794.99, 1583.78,-2118.64
-1195.86, 1517.58,-1992.70
-1195.86, 1517.58,-1992.70
-1195.86, 1517.58,-1992.70
-1475.28, 1390.74,-1908.68
-1475.28, 1390.74,-1908.68
-1475.28, 1390.74,-1908.68
-1721.22, 1329.83,-1729.87
-1721.22, 1329.83,-1729.87
-1721.22, 1329.83,-1729.87
-1982.23, 1178.19,-1588.46
-1982.23, 1178.19,-1588.46
-1982.23, 1178.19,-1588.46
-1982.72, 1070.53,-1386.89
-2185.00, 1067.67,-1387.98
-2185.00, 1067.67,-1387.98
-2185.00, 1067.67,-1387.98
-2318.02, 1073.48,-1173.77
-2318.02, 1073.48,-1173.77
-2318.02, 1073.48,-1173.77
-2380.07, 1104.08,-1029.26
-2380.07, 1104.08,-1029.26
-2380.07, 1104.08,-1029.26
-2512.76, 1091.94, -700.72
-2512.76, 1091.94, -700.72
-2512.76, 1091.94, -700.72
-2624.26, 1004.94, -200.18
-2624.26, 1004.94, -200.18
-2624.26, 1004.94, -200.18
-2684.11,  860.86,  287.59
-2684.11,  860.86,  287.59
-2684.11,  860.86,  287.59
-2591.19,  839.39,  844.56
-2591.19,  839.39,  844.56
-2591.19,  839.39,  844.56
-2470.42,  790.80, 1215.73
-2470.42,  790.80, 1215.73
-2470.42,  790.80, 1215.73
-2323.05,  639.52, 1555.33
-2323.05,  639.52, 1555.33
-2323.05,  639.52, 1555.33
-2045.44,  533.31, 1954.45
-2045.44,  533.31, 1954.45
-2045.44,  533.31, 1954.45
-1499.26,  413.18, 2436.01
-1499.26,  413.18, 2436.01
-1499.26,  413.18, 2436.01
 -973.46,  227.95, 2719.90
 -973.46,  227.95, 2719.90
 -973.46,  227.95, 2719.90
 -773.97,  146.46, 2787.73
 -773.97,  146.46, 2787.73
 -773.97,  146.46, 2787.73
 -773.97,  146.46, 2787.73
 -296.84,   24.60, 2882.55
 -296.84,   24.60, 2882.55
 -296.84,   24.60, 2882.55
  177.33, -135.47, 2882.36
  177.33, -135.47, 2882.36
  177.33, -135.47, 2882.36
  432.19, -956.43, 2672.20
  432.19, -956.43, 2672.20
  432.19, -956.43, 2672.20
  666.42,-1583.10, 2268.18
  666.42,-1583.10, 2268.18
  666.42,-1583.10, 2268.18
  656.47,-2292.74, 1485.51
  656.47,-2292.74, 1485.51
  656.47,-2292.74, 1485.51
  462.80,-2638.81,  860.04
  462.80,-2638.81,  860.04
  462.80,-2638.81,  860.04
  400.19,-2783.04,   21.05
  400.19,-2783.04,   21.05
  400.19,-2783.04,   21.05
  438.97,-2713.04, -585.17
  438.97,-2713.04, -585.17
  438.97,-2713.04, -585.17
  621.62,-2549.56,-1066.98
  621.62,-2549.56,-1066.98
  621.62,-2549.56,-1066.98
  892.48,-2408.30,-1154.64
  892.48,-2408.30,-1154.64
  892.48,-2408.30,-1154.64
 1028.54,-2298.94,-1277.04
 1028.54,-2298.94,-1277.04
 1028.54,-2298.94,-1277.04
 1149.42,-1892.71,-1763.56
 1149.42,-1892.71,-1763.56
 1149.42,-1892.71,-1763.56
 1149.42,-1892.71,-1763.56
 1124.60,-1941.06,-1730.44
 1124.60,-1941.06,-1730.44
 1124.60,-1941.06,-1730.44
 1118.74,-2060.10,-1598.78
 1118.74,-2060.10,-1598.78
 1118.74,-2060.10,-1598.78
 1181.00,-2098.62,-1484.60
 1181.00,-2098.62,-1484.60
 1181.00,-2098.62,-1484.60
 1287.20,-2005.93,-1504.55
 1287.20,-2005.93,-1504.55
 1287.20,-2005.93,-1504.55
 1439.34,-1898.77,-1516.10
 1439.34,-1898.77,-1516.10
 1439.34,-1898.77,-1516.10
 1523.88,-1720.79,-1633.31
 1523.88,-1720.79,-1633.31
 1523.88,-1720.79,-1633.31
 1525.27,-1659.35,-1721.17
 1525.27,-1659.35,-1721.17
 1525.27,-1659.35,-1721.17
 1324.03,-1580.20,-1938.11
 1324.03,-1580.20,-1938.11
 1324.03,-1580.20,-1938.11
  661.83,-1631.38,-2201.48
  661.83,-1631.38,-2201.48
  661.83,-1631.38,-2201.48
  -22.29,-1300.80,-2469.20
  -22.29,-1300.80,-2469.20
  -22.29,-1300.80,-2469.20
 -635.18, -803.66,-2568.11
 -635.18, -803.66,-2568.11
 -635.18, -803.66,-2568.11
 -864.15, -414.38,-2586.10
 -864.15, -414.38,-2586.10
 -864.15, -414.38,-2586.10
 -864.15, -414.38,-2586.10
-1002.65, -318.12,-2554.26
-1002.65, -318.12,-2554.26
-1002.65, -318.12,-2554.26
-1197.74,   95.20,-2476.42
-1197.74,   95.20,-2476.42
-1197.74,   95.20,-2476.42
-1508.87,  368.40,-2268.93
-1508.87,  368.40,-2268.93
-1508.87,  368.40,-2268.93
-1944.20,  708.79,-1810.52
-1944.20,  708.79,-1810.52
-1944.20,  708.79,-1810.52
-2200.61,  967.73,-1312.82
-2200.61,  967.73,-1312.82
-2200.61,  967.73,-1312.82
-2310.38, 1125.16, -957.84
-2310.38, 1125.16, -957.84
-2310.38, 1125.16, -957.84
-2313.28, 1435.79, -267.46
-2313.28, 1435.79, -267.46
-2313.28, 1435.79, -267.46
-2087.40, 1703.81,  599.62
-2087.40, 1703.81,  599.62
-2087.40, 1703.81,  599.62
-1674.98, 1796.32, 1347.05
-1674.98, 1796.32, 1347.05
-1674.98, 1796.32, 1347.05
-1197.94, 1708.28, 1912.32
-1197.94, 1708.28, 1912.32
-1197.94, 1708.28, 1912.32
 -837.65, 1388.26, 2333.58
 -837.65, 1388.26, 2333.58
 -837.65, 1388.26, 2333.58
 -559.71, 1332.60, 2462.20
 -559.71, 1332.60, 2462.20
 -559.71, 1332.60, 2462.20
 -243.40, 1337.23, 2514.89
 -243.40, 1337.23, 2514.89
 -243.40, 1337.23, 2514.89
 -243.40, 1337.23, 2514.89
   86.55, 1356.80, 2529.74
   86.55, 1356.80, 2529.74
   86.55, 1356.80, 2529.74
  613.00, 1515.68, 2371.20
  613.00, 1515.68, 2371.20
  613.00, 1515.68, 2371.20
 1091.77, 1837.56, 1943.44
 1091.77, 1837.56, 1943.44
 1091.77, 1837.56, 1943.44
 1435.01, 1989.13, 1526.89
 1435.01, 1989.13, 1526.89
 1435.01, 1989.13, 1526.89
 1656.14, 2154.13,  957.06
 1656.14, 2154.13,  957.06
 1656.14, 2154.13,  957.06
 1770.25, 2218.80,  458.97
 1770.25, 2218.80,  458.97
 1770.25, 2218.80,  458.97
 1843.69, 2137.96, -376.94
 1843.69, 2137.96, -376.94
 1843.69, 2137.96, -376.94
 1954.35, 1831.24, -914.69
 1954.35, 1831.24, -914.69
 1954.35, 1831.24, -914.69
 1641.75, 1513.51,-1682.32
 1641.75, 1513.51,-1682.32
 1641.75, 1513.51,-1682.32
 1304.62, 1147.19,-2162.86
 1304.62, 1147.19,-2162.86
 1304.62, 1147.19,-2162.86
 1001.04, 1050.58,-2327.36
 1001.04, 1050.58,-2327.36
 1001.04, 1050.58,-2327.36
  661.04, 1105.16,-2421.02
  661.04, 1105.16,-2421.02
  661.04, 1105.16,-2421.02
  661.04, 1105.16,-2421.02
   92.93, 1166.56,-2458.80
   92.93, 1166.56,-2458.80
   92.93, 1166.56,-2458.80
  144.43, 1281.69,-2399.11
  144.43, 1281.69,-2399.11
  144.43, 1281.69,-2399.11
  151.50, 1300.34,-2397.68
  151.50, 1300.34,-2397.68
  151.50, 1300.34,-2397.68
 -139.38, 1290.27,-2404.27
 -139.38, 1290.27,-2404.27
 -139.38, 1290.27,-2404.27
 -320.47, 1273.08,-2405.57
 -320.47, 1273.08,-2405.57
 -320.47, 1273.08,-2405.57
 -438.10, 1209.69,-2420.32
 -438.10, 1209.69,-2420.32
 -438.10, 1209.69,-2420.32
 -594.06, 1353.10,-2316.92
 -594.06, 1353.10,-2316.92
 -594.06, 1353.10,-2316.92
 -765.51, 1431.92,-2215.03
 -765.51, 1431.92,-2215.03
 -765.51, 1431.92,-2215.03
-1071.40, 1415.68,-2094.36
-1071.40, 1415.68,-2094.36
-1071.40, 1415.68,-2094.36
-1190.67, 1362.74,-2076.53
-1190.67, 1362.74,-2076.53
-1190.67, 1362.74,-2076.53
-1366.34, 1348.86,-1975.75
-1366.34, 1348.86,-1975.75
-1366.34, 1348.86,-1975.75
-1540.12, 1383.80,-1828.76
-1540.12, 1383.80,-1828.76
-1540.12, 1383.80,-1828.76
-1540.12, 1383.80,-1828.76
-1782.41, 1200.91,-1745.80
-1782.41, 1200.91,-1745.80
-1782.41, 1200.91,-1745.80
-1939.59, 1114.44,-1632.81
-1939.59, 1114.44,-1632.81
-1939.59, 1114.44,-1632.81
-2148.02,  910.16,-1524.66
-2148.02,  910.16,-1524.66
-2148.02,  910.16,-1524.66
-2315.30,  827.89,-1303.76
-2315.30,  827.89,-1303.76
-2315.30,  827.89,-1303.76
-2447.66,  915.79, -992.61
-2447.66,  915.79, -992.61
-2447.66,  915.79, -992.61
-2616.57,  858.08, -585.84
-2616.57,  858.08, -585.84
-2616.57,  858.08, -585.84
-2652.03,  961.87, -190.49
-2652.03,  961.87, -190.49
-2652.03,  961.87, -190.49
-2624.00, 1098.94,  170.62
-2624.00, 1098.94,  170.62
-2624.00, 1098.94,  170.62
-2570.65, 1180.70,  307.05
-2570.65, 1180.70,  307.05
-2570.65, 1180.70,  307.05
-2525.18, 1246.26,  465.63
-2525.18, 1246.26,  465.63
-2525.18, 1246.26,  465.63
-2506.54, 1260.07,  461.13
-2506.54, 1260.07,  461.13
-2506.54, 1260.07,  461.13
-2498.25, 1250.35,  589.41
-2498.25, 1250.35,  589.41
-2498.25, 1250.35,  589.41
-2449.43, 1295.42,  700.49
-2449.43, 1295.42,  700.49
-2449.43, 1295.42,  700.49
-2449.43, 1295.42,  700.49
-2364.36, 1316.35,  931.82
-2364.36, 1316.35,  931.82
-2364.36, 1316.35,  931.82
-2226.59, 1479.69, 1000.88
-2226.59, 1479.69, 1000.88
-2226.59, 1479.69, 1000.88
-1919.70, 1603.14, 1363.09
-1919.70, 1603.14, 1363.09
-1919.70, 1603.14, 1363.09
-1245.54, 1928.03, 1696.34
-1245.54, 1928.03, 1696.34
-1245.54, 1928.03, 1696.34
 -546.29, 2202.13, 1745.20
 -546.29, 2202.13, 1745.20
 -546.29, 2202.13, 1745.20
  -26.59, 2524.07, 1338.24
  -26.59, 2524.07, 1338.24
  -26.59, 2524.07, 1338.24
  396.17, 2710.69,  780.69
  396.17, 2710.69,  780.69
  396.17, 2710.69,  780.69
  613.25, 2761.31,  111.21
  613.25, 2761.31,  111.21
  613.25, 2761.31,  111.21
  743.06, 2665.89, -494.30
  743.06, 2665.89, -494.30
  743.06, 2665.89, -494.30
  624.32, 2471.51,-1140.54
  624.32, 2471.51,-1140.54
  624.32, 2471.51,-1140.54
  400.10, 2143.92,-1704.96
  400.10, 2143.92,-1704.96
  400.10, 2143.92,-1704.96
  298.06, 1897.56,-1979.64
  298.06, 1897.56,-1979.64
  298.06, 1897.56,-1979.64
  298.06, 1897.56,-1979.64
  257.45, 1695.40,-2146.14
  257.45, 1695.40,-2146.14
  257.45, 1695.40,-2146.14
  278.73, 1518.72,-2257.83
  278.73, 1518.72,-2257.83
  278.73, 1518.72,-2257.83
  164.91, 1463.31,-2310.63
  164.91, 1463.31,-2310.63
  164.91, 1463.31,-2310.63
  -41.19, 1519.84,-2269.23
  -41.19, 1519.84,-2269.23
  -41.19, 1519.84,-2269.23
 -325.20, 1617.37,-2175.34
 -325.20, 1617.37,-2175.34
 -325.20, 1617.37,-2175.34
 -495.62, 1594.70,-2166.90
 -495.62, 1594.70,-2166.90
 -495.62, 1594.70,-2166.90
 -946.77, 1600.99,-1993.51
 -946.77, 1600.99,-1993.51
 -946.77, 1600.99,-1993.51
-1011.66, 1552.17,-1999.83
-1011.66, 1552.17,-1999.83
-1011.66, 1552.17,-1999.83
-1404.88, 1461.64,-1833.21
-1404.88, 1461.64,-1833.21
-1404.88, 1461.64,-1833.21
-1786.71, 1474.09,-1424.97
-1786.71, 1474.09,-1424.97
-1786.71, 1474.09,-1424.97
-2062.28, 1406.64,-1126.82
-2062.28, 1406.64,-1126.82
-2062.28, 1406.64,-1126.82
-2220.91, 1312.11, -892.43
-2220.91, 1312.11, -892.43
-2220.91, 1312.11, -892.43
-2220.91, 1312.11, -892.43
-2197.63, 1375.00, -885.02
-2197.63, 1375.00, -885.02
-2197.63, 1375.00, -885.02
-2054.99, 1526.11, -975.08
-2054.99, 1526.11, -975.08
-2054.99, 1526.11, -975.08
-2247.80, 1078.05,-1143.90
-2247.80, 1078.05,-1143.90
-2247.80, 1078.05,-1143.90
-2387.41,  341.56,-1339.46
-2387.41,  341.56,-1339.46
-2387.41,  341.56,-1339.46
-2272.03,  -14.91,-1573.33
-2272.03,  -14.91,-1573.33
-2272.03,  -14.91,-1573.33
-2309.02,  -38.51,-1515.21
-2309.02,  -38.51,-1515.21
-2309.02,  -38.51,-1515.21
-2384.75,   -9.34,-1382.56
-2384.75,   -9.34,-1382.56
-2384.75,   -9.34,-1382.56
-2455.40,  -25.42,-1271.49
-2455.40,  -25.42,-1271.49
-2455.40,  -25.42,-1271.49
-2521.49, -139.51,-1142.96
-2521.49, -139.51,-1142.96
-2521.49, -139.51,-1142.96
-2449.15, -278.54,-1259.44
-2449.15, -278.54,-1259.44
-2449.15, -278.54,-1259.44
-2305.05, -615.94,-1442.73
-2305.05, -615.94,-1442.73
-2305.05, -615.94,-1442.73
-2201.62, -847.73,-1497.38
-2201.62, -847.73,-1497.38
-2201.62, -847.73,-1497.38
-2127.15,-1093.77,-1473.06
-2127.15,-1093.77,-1473.06
-2127.15,-1093.77,-1473.06
-2127.15,-1093.77,-1473.06
-2049.67,-1455.42,-1300.29
-2049.67,-1455.42,-1300.29
-2049.67,-1455.42,-1300.29
-2045.14,-1755.00, -919.60
-2045.14,-1755.00, -919.60
-2045.14,-1755.00, -919.60
-2089.41,-1918.04, -373.34
-2089.41,-1918.04, -373.34
-2089.41,-1918.04, -373.34
-2175.79,-1809.28,  322.90
-2175.79,-1809.28,  322.90
-2175.79,-1809.28,  322.90
-1645.37,-2304.39,  257.69
-1645.37,-2304.39,  257.69
-1645.37,-2304.39,  257.69
 -910.37,-2664.72, -102.57
 -910.37,-2664.72, -102.57
 -910.37,-2664.72, -102.57
 -667.87,-2709.81,  -90.59
 -667.87,-2709.81,  -90.59
 -667.87,-2709.81,  -90.59
 -858.69,-2621.54, -386.70
 -858.69,-2621.54, -386.70
 -858.69,-2621.54, -386.70
 -881.07,-2537.47, -626.17
 -881.07,-2537.47, -626.17
 -881.07,-2537.47, -626.17
-1211.34,-2437.89, -455.00
-1211.34,-2437.89, -455.00
-1211.34,-2437.89, -455.00
-1056.29,-2501.68, -572.33
-1056.29,-2501.68, -572.33
-1056.29,-2501.68, -572.33
 -522.05,-2471.81,-1146.53
 -522.05,-2471.81,-1146.53
 -522.05,-2471.81,-1146.53
 -522.05,-2471.81,-1146.53
  204.12,-2237.38,-1629.90
  204.12,-2237.38,-1629.90
  204.12,-2237.38,-1629.90
  773.48,-1998.96,-1789.40
  773.48,-1998.96,-1789.40
  773.48,-1998.96,-1789.40
  826.62,-1356.15,-2291.60
  826.62,-1356.15,-2291.60
  826.62,-1356.15,-2291.60
  900.71, -693.00,-2549.07
  900.71, -693.00,-2549.07
  900.71, -693.00,-2549.07
  900.16, -434.86,-2602.16
  900.16, -434.86,-2602.16
  900.16, -434.86,-2602.16
  830.71, -314.64,-2632.19
  830.71, -314.64,-2632.19
  830.71, -314.64,-2632.19
  918.79,  -67.55,-2624.29
  918.79,  -67.55,-2624.29
  918.79,  -67.55,-2624.29
  983.97,  133.84,-2595.94
  983.97,  133.84,-2595.94
  983.97,  133.84,-2595.94
  715.04,  188.82,-2672.56
  715.04,  188.82,-2672.56
  715.04,  188.82,-2672.56
  781.07,  639.15,-2585.72
  781.07,  639.15,-2585.72
  781.07,  639.15,-2585.72
  626.81,  981.93,-2505.32
  626.81,  981.93,-2505.32
  626.81,  981.93,-2505.32
  395.04, 1150.13,-2467.45
  395.04, 1150.13,-2467.45
  395.04, 1150.13,-2467.45
  396.24, 1226.79,-2440.24
  303.86, 1225.48,-2440.74
  303.86, 1225.48,-2440.74
  303.86, 1225.48,-2440.74
  246.69, 1297.52,-2409.02
  246.69, 1297.52,-2409.02
  246.69, 1297.52,-2409.02
  327.98, 1157.63,-2482.33
  327.98, 1157.63,-2482.33
  327.98, 1157.63,-2482.33
  642.78,  888.54,-2550.47
  642.78,  888.54,-2550.47
  642.78,  888.54,-2550.47
  799.08,  795.59,-2532.13
  799.08,  795.59,-2532.13
  799.08,  795.59,-2532.13
  889.83,  557.00,-2578.17
  889.83,  557.00,-2578.17
  889.83,  557.00,-2578.17
  507.89,  -74.58,-2725.56
  507.89,  -74.58,-2725.56
  507.89,  -74.58,-2725.56
  357.56, -402.84,-2706.17
  357.56, -402.84,-2706.17
  357.56, -402.84,-2706.17
  214.86, -534.93,-2681.39
  214.86, -534.93,-2681.39
  214.86, -534.93,-2681.39
  152.82, -744.54,-2642.24
  152.82, -744.54,-2642.24
  152.82, -744.54,-2642.24
  -23.30, -978.08,-2599.30
  -23.30, -978.08,-2599.30
  -23.30, -978.08,-2599.30
 -263.42, -985.72,-2572.25
 -263.42, -985.72,-2572.25
 -263.42, -985.72,-2572.25
 -472.76, -864.13,-2584.33
 -472.76, -864.13,-2584.33
 -472.76, -864.13,-2584.33
 -472.76, -864.13,-2584.33
 -711.51, -472.48,-2620.94
 -711.51, -472.48,-2620.94
 -711.51, -472.48,-2620.94
 -896.09,   86.06,-2595.72
 -896.09,   86.06,-2595.72
 -896.09,   86.06,-2595.72
-1055.42,  343.04,-2512.35
-1055.42,  343.04,-2512.35
-1055.42,  343.04,-2512.35
-1073.24,  582.63,-2467.89
-1073.24,  582.63,-2467.89
-1073.24,  582.63,-2467.89
-1033.47,  708.41,-2448.22
-1033.47,  708.41,-2448.22
-1033.47,  708.41,-2448.22
-1014.05,  894.22,-2390.05
-1014.05,  894.22,-2390.05
-1014.05,  894.22,-2390.05
 -978.16, 1014.46,-2353.85
 -978.16, 1014.46,-2353.85
 -978.16, 1014.46,-2353.85
 -776.08, 1265.93,-2308.01
 -776.08, 1265.93,-2308.01
 -776.08, 1265.93,-2308.01
 -571.46, 1256.34,-2386.62
 -571.46, 1256.34,-2386.62
 -571.46, 1256.34,-2386.62
 -201.69, 1059.89,-2554.84
 -201.69, 1059.89,-2554.84
 -201.69, 1059.89,-2554.84
   24.66,  809.92,-2672.03
   24.66,  809.92,-2672.03
   24.66,  809.92,-2672.03
  136.66,  632.03,-2719.55
  136.66,  632.03,-2719.55
  136.66,  632.03,-2719.55
  136.66,  632.03,-2719.55
  359.51,  512.93,-2735.78
  359.51,  512.93,-2735.78
  359.51,  512.93,-2735.78
  620.69,  408.90,-2712.27
  620.69,  408.90,-2712.27
  620.69,  408.90,-2712.27
  846.22,  322.29,-2671.87
  846.22,  322.29,-2671.87
  846.22,  322.29,-2671.87
  969.15,  133.57,-2643.09
  969.15,  133.57,-2643.09
  969.15,  133.57,-2643.09
  911.85, -133.78,-2661.10
  911.85, -133.78,-2661.10
  911.85, -133.78,-2661.10
  913.11, -324.68,-2653.57
  913.11, -324.68,-2653.57
  913.11, -324.68,-2653.57
  906.78, -288.81,-2658.69
  906.78, -288.81,-2658.69
  906.78, -288.81,-2658.69
  972.04, -435.12,-2615.53
  972.04, -435.12,-2615.53
  972.04, -435.12,-2615.53
  773.71, -485.79,-2664.73
  773.71, -485.79,-2664.73
  773.71, -485.79,-2664.73
  673.12, -731.59,-2651.09
  673.12, -731.59,-2651.09
  673.12, -731.59,-2651.09
  401.96,-1020.88,-2600.07
  401.96,-1020.88,-2600.07
  401.96,-1020.88,-2600.07
  184.74,-1132.28,-2562.46
  184.74,-1132.28,-2562.46
  184.74,-1132.28,-2562.46
   19.45,-1211.09,-2538.57
   19.45,-1211.09,-2538.57
   19.45,-1211.09,-2538.57
   19.45,-1211.09,-2538.57
 -385.78,-1120.62,-2555.28
 -385.78,-1120.62,-2555.28
 -385.78,-1120.62,-2555.28
 -632.05,-1001.27,-2556.81
 -632.05,-1001.27,-2556.81
 -632.05,-1001.27,-2556.81
 -811.07, -869.34,-2561.64
 -811.07, -869.34,-2561.64
 -811.07, -869.34,-2561.64
 -985.65, -621.73,-2583.49
 -985.65, -621.73,-2583.49
 -985.65, -621.73,-2583.49
-1071.90, -318.13,-2598.74
-1071.90, -318.13,-2598.74
-1071.90, -318.13,-2598.74
-1175.80,  -44.73,-2557.88
-1175.80,  -44.73,-2557.88
-1175.80,  -44.73,-2557.88
-1235.69,  244.07,-2509.58
-1235.69,  244.07,-2509.58
-1235.69,  244.07,-2509.58
-1293.08,  433.50,-2459.57
-1293.08,  433.50,-2459.57
-1293.08,  433.50,-2459.57
-1344.45,  629.24,-2392.71
-1344.45,  629.24,-2392.71
-1344.45,  629.24,-2392.71
-1485.80,  945.78,-2184.38
-1485.80,  945.78,-2184.38
-1485.80,  945.78,-2184.38
-1313.14, 1521.23,-1929.48
-1313.14, 1521.23,-1929.48
-1313.14, 1521.23,-1929.48
-1257.76, 1645.59,-1896.03
-1257.76, 1645.59,-1896.03
-1257.76, 1645.59,-1896.03
-1257.76, 1645.59,-1896.03
-1071.50, 1493.69,-2137.73
-1071.50, 1493.69,-2137.73
-1071.50, 1493.69,-2137.73
 -831.30, 1582.85,-2181.60
 -831.30, 1582.85,-2181.60
 -831.30, 1582.85,-2181.60
 -380.51, 1971.03,-1974.57
 -380.51, 1971.03,-1974.57
 -380.51, 1971.03,-1974.57
   91.01, 2232.43,-1738.87
   91.01, 2232.43,-1738.87
   91.01, 2232.43,-1738.87
  649.99, 2343.42,-1482.54
  649.99, 2343.42,-1482.54
  649.99, 2343.42,-1482.54
 1031.47, 2273.34,-1410.59
 1031.47, 2273.34,-1410.59
 1031.47, 2273.34,-1410.59
 1558.80, 2053.86,-1309.85
 1558.80, 2053.86,-1309.85
 1558.80, 2053.86,-1309.85
 1744.08, 1937.59,-1262.47
 1744.08, 1937.59,-1262.47
 1744.08, 1937.59,-1262.47
 2137.15, 1797.89, -819.39
 2137.15, 1797.89, -819.39
 2137.15, 1797.89, -819.39
 2479.61, 1361.25, -722.46
 2479.61, 1361.25, -722.46
 2479.61, 1361.25, -722.46
 2762.10,  621.21, -685.53
 2762.10,  621.21, -685.53
 2762.10,  621.21, -685.53
 2774.30,   11.98, -821.60
 2774.30,   11.98, -821.60
 2774.30,   11.98, -821.60
 2766.68, -529.44, -832.71
 2703.47, -530.33, -833.05
 2703.47, -530.33, -833.05
 2703.47, -530.33, -833.05
 2463.86,-1221.81, -737.86
 2463.86,-1221.81, -737.86
 2463.86,-1221.81, -737.86
 1981.05,-1887.64, -739.43
 1981.05,-1887.64, -739.43
 1981.05,-1887.64, -739.43
 1638.75,-2149.15, -797.97
 1638.75,-2149.15, -797.97
 1638.75,-2149.15, -797.97
 1257.29,-2356.88, -868.26
 1257.29,-2356.88, -868.26
 1257.29,-2356.88, -868.26
  942.27,-2510.54, -828.17
  942.27,-2510.54, -828.17
  942.27,-2510.54, -828.17
  681.22,-2597.16, -876.52
  681.22,-2597.16, -876.52
  681.22,-2597.16, -876.52
  501.95,-2613.02, -907.20
  501.95,-2613.02, -907.20
  501.95,-2613.02, -907.20
  230.96,-2608.47,-1058.50
  230.96,-2608.47,-1058.50
  230.96,-2608.47,-1058.50
  -79.43,-2626.40,-1055.56
  -79.43,-2626.40,-1055.56
  -79.43,-2626.40,-1055.56
 -575.41,-2523.82,-1172.47
 -575.41,-2523.82,-1172.47
 -575.41,-2523.82,-1172.47
 -938.94,-2307.08,-1368.55
 -938.94,-2307.08,-1368.55
 -938.94,-2307.08,-1368.55
-1247.16,-1913.95,-1690.83
-1247.16,-1913.95,-1690.83
-1247.16,-1913.95,-1690.83
-1247.16,-1913.95,-1690.83
-1542.89,-1422.30,-1930.45
-1542.89,-1422.30,-1930.45
-1542.89,-1422.30,-1930.45
-1827.89, -857.96,-1976.21
-1827.89, -857.96,-1976.21
-1827.89, -857.96,-1976.21
-1791.49, -571.80,-2107.92
-1791.49, -571.80,-2107.92
-1791.49, -571.80,-2107.92
-1670.35, -343.89,-2238.53
-1670.35, -343.89,-2238.53
-1670.35, -343.89,-2238.53
-1679.10,   76.92,-2248.82
-1679.10,   76.92,-2248.82
-1679.10,   76.92,-2248.82
-1664.12,  495.11,-2171.78
-1664.12,  495.11,-2171.78
-1664.12,  495.11,-2171.78
-1679.98,  718.27,-2077.66
-1679.98,  718.27,-2077.66
-1679.98,  718.27,-2077.66
-1498.53, 1097.85,-2044.76
-1498.53, 1097.85,-2044.76
-1498.53, 1097.85,-2044.76
-1226.29, 1594.79,-1876.41
-1226.29, 1594.79,-1876.41
-1226.29, 1594.79,-1876.41
 -877.70, 1982.09,-1688.54
 -877.70, 1982.09,-1688.54
 -877.70, 1982.09,-1688.54
    0.79, 2395.14,-1377.79
    0.79, 2395.14,-1377.79
    0.79, 2395.14,-1377.79
  659.50, 2472.71,-1108.95
  659.50, 2472.71,-1108.95
  659.50, 2472.71,-1108.95
  659.50, 2472.71,-1108.95
  984.71, 2332.77,-1206.52
  984.71, 2332.77,-1206.52
  984.71, 2332.77,-1206.52
 1319.33, 2011.47,-1443.40
 1319.33, 2011.47,-1443.40
 1319.33, 2011.47,-1443.40
 1602.38, 1561.89,-1717.72
 1602.38, 1561.89,-1717.72
 1602.38, 1561.89,-1717.72
 1993.52,  908.93,-1779.31
 1993.52,  908.93,-1779.31
 1993.52,  908.93,-1779.31
 2102.02,  419.43,-1852.41
 2102.02,  419.43,-1852.41
 2102.02,  419.43,-1852.41
 2165.37,    3.62,-1827.03
 2165.37,    3.62,-1827.03
 2165.37,    3.62,-1827.03
 2112.71, -349.40,-1843.00
 2112.71, -349.40,-1843.00
 2112.71, -349.40,-1843.00
 2094.28, -718.64,-1775.80
 2094.28, -718.64,-1775.80
 2094.28, -718.64,-1775.80
 2096.14, -981.76,-1640.44
 2096.14, -981.76,-1640.44
 2096.14, -981.76,-1640.44
 1952.55,-1335.01,-1564.70
 1952.55,-1335.01,-1564.70
 1952.55,-1335.01,-1564.70
 1580.44,-1826.24,-1500.05
 1580.44,-1826.24,-1500.05
 1580.44,-1826.24,-1500.05
 1366.31,-1995.14,-1463.71
 1366.31,-1995.14,-1463.71
 1366.31,-1995.14,-1463.71
  953.76,-2193.95,-1551.60
  953.76,-2193.95,-1551.60
  953.76,-2193.95,-1551.60
  953.76,-2193.95,-1551.60
  236.66,-2348.74,-1616.53
  236.66,-2348.74,-1616.53
  236.66,-2348.74,-1616.53
 -707.50,-2295.97,-1585.80
 -707.50,-2295.97,-1585.80
 -707.50,-2295.97,-1585.80
-1434.44,-2038.31,-1465.09
-1434.44,-2038.31,-1465.09
-1434.44,-2038.31,-1465.09
-1892.54,-1761.27,-1299.44
-1892.54,-1761.27,-1299.44
-1892.54,-1761.27,-1299.44
-2123.14,-1410.58,-1341.83
-2123.14,-1410.58,-1341.83
-2123.14,-1410.58,-1341.83
-2240.47,-1073.26,-1443.76
-2240.47,-1073.26,-1443.76
-2240.47,-1073.26,-1443.76
-2252.55, -685.78,-1636.22
-2252.55, -685.78,-1636.22
-2252.55, -685.78,-1636.22
-2130.48, -431.42,-1849.59
-2130.48, -431.42,-1849.59
-2130.48, -431.42,-1849.59
-1994.06, -213.68,-2008.79
-1994.06, -213.68,-2008.79
-1994.06, -213.68,-2008.79
-1675.24, -125.37,-2272.92
-1675.24, -125.37,-2272.92
-1675.24, -125.37,-2272.92
-1421.29, -121.59,-2439.23
-1421.29, -121.59,-2439.23
-1421.29, -121.59,-2439.23
-1244.70,   86.97,-2510.18
-1244.70,   86.97,-2510.18
-1244.70,   86.97,-2510.18
-1244.70,   86.97,-2510.18
 -990.00,  186.95,-2602.77
 -990.00,  186.95,-2602.77
 -990.00,  186.95,-2602.77
 -729.11,  237.65,-2679.75
 -729.11,  237.65,-2679.75
 -729.11,  237.65,-2679.75
 -394.50,  199.13,-2737.75
 -394.50,  199.13,-2737.75
 -394.50,  199.13,-2737.75
  -17.71,  443.40,-2731.39
  -17.71,  443.40,-2731.39
  -17.71,  443.40,-2731.39
  114.96,  601.99,-2697.78
  114.96,  601.99,-2697.78
  114.96,  601.99,-2697.78
   14.87,  861.30,-2634.65
   14.87,  861.30,-2634.65
   14.87,  861.30,-2634.65
  153.50, 1205.28,-2509.61
  153.50, 1205.28,-2509.61
  153.50, 1205.28,-2509.61
  333.71, 1396.57,-2393.63
  333.71, 1396.57,-2393.63
  333.71, 1396.57,-2393.63
  896.59, 1524.22,-2180.06
  896.59, 1524.22,-2180.06
  896.59, 1524.22,-2180.06
  656.36, 1430.94,-2322.60
  656.36, 1430.94,-2322.60
  656.36, 1430.94,-2322.60
  735.23, 1317.82,-2373.74
  735.23, 1317.82,-2373.74
  735.23, 1317.82,-2373.74
  727.19, 1248.30,-2426.32
  727.19, 1248.30,-2426.32
  727.19, 1248.30,-2426.32
  727.19, 1248.30,-2426.32
  786.81,  964.83,-2542.16
  786.81,  964.83,-2542.16
  786.81,  964.83,-2542.16
  857.10,  793.18,-2589.75
  857.10,  793.18,-2589.75
  857.10,  793.18,-2589.75
  904.46,  644.07,-2617.34
  904.46,  644.07,-2617.34
  904.46,  644.07,-2617.34
 1033.84,  442.03,-2622.17
 1033.84,  442.03,-2622.17
 1033.84,  442.03,-2622.17
 1019.51,  193.47,-2655.23
 1019.51,  193.47,-2655.23
 1019.51,  193.47,-2655.23
  947.11, -104.70,-2690.67
  947.11, -104.70,-2690.67
  947.11, -104.70,-2690.67
  979.73, -142.79,-2670.76
  979.73, -142.79,-2670.76
  979.73, -142.79,-2670.76
 1068.04, -242.81,-2620.57
 1068.04, -242.81,-2620.57
 1068.04, -242.81,-2620.57
 1027.40,  264.18,-2636.95
 1027.40,  264.18,-2636.95
 1027.40,  264.18,-2636.95
  881.14,  713.06,-2612.99
  881.14,  713.06,-2612.99
  881.14,  713.06,-2612.99
  583.67, 1046.32,-2563.92
  583.67, 1046.32,-2563.92
  583.67, 1046.32,-2563.92
  498.01, 1163.07,-2520.57
  498.01, 1163.07,-2520.57
  498.01, 1163.07,-2520.57
  492.27, 1225.28,-2480.97
  492.27, 1225.28,-2480.97
  492.27, 1225.28,-2480.97
  492.27, 1225.28,-2480.97
  256.52, 1377.47,-2415.04
  256.52, 1377.47,-2415.04
  256.52, 1377.47,-2415.04
 -248.94, 1442.38,-2377.91
 -248.94, 1442.38,-2377.91
 -248.94, 1442.38,-2377.91
 -806.28, 1550.89,-2143.95
 -806.28, 1550.89,-2143.95
 -806.28, 1550.89,-2143.95
-1150.99, 1246.96,-2178.93
-1150.99, 1246.96,-2178.93
-1150.99, 1246.96,-2178.93
-1323.85, 1050.68,-2172.40
-1323.85, 1050.68,-2172.40
-1323.85, 1050.68,-2172.40
-1318.03,  990.64,-2202.15
-1318.03,  990.64,-2202.15
-1318.03,  990.64,-2202.15
-1241.41,  807.02,-2309.79
-1241.41,  807.02,-2309.79
-1241.41,  807.02,-2309.79
-1347.01,  570.66,-2350.89
-1347.01,  570.66,-2350.89
-1347.01,  570.66,-2350.89
-1221.64, -144.54,-2501.49
-1221.64, -144.54,-2501.49
-1221.64, -144.54,-2501.49
 -956.49, -637.00,-2543.47
 -956.49, -637.00,-2543.47
 -956.49, -637.00,-2543.47
 -917.15, -748.29,-2531.04
 -917.15, -748.29,-2531.04
 -917.15, -748.29,-2531.04
-1036.52, -977.78,-2428.89
-1036.52, -977.78,-2428.89
-1036.52, -977.78,-2428.89
-1036.52, -977.78,-2428.89
 -862.06, -993.37,-2495.04
 -862.06, -993.37,-2495.04
 -862.06, -993.37,-2495.04
 -967.16,-1015.38,-2453.89
 -967.16,-1015.38,-2453.89
 -967.16,-1015.38,-2453.89
 -917.03, -965.62,-2483.91
 -917.03, -965.62,-2483.91
 -917.03, -965.62,-2483.91
 -869.16,-1019.48,-2480.94
 -869.16,-1019.48,-2480.94
 -869.16,-1019.48,-2480.94
 -764.68,-1129.94,-2472.09
 -764.68,-1129.94,-2472.09
 -764.68,-1129.94,-2472.09
 -914.53,-1079.71,-2442.31
 -914.53,-1079.71,-2442.31
 -914.53,-1079.71,-2442.31
-1057.61,-1032.31,-2412.56
-1057.61,-1032.31,-2412.56
-1057.61,-1032.31,-2412.56
 -892.77,-1047.58,-2458.15
 -892.77,-1047.58,-2458.15
 -892.77,-1047.58,-2458.15
 -467.98,-1181.75,-2490.37
 -467.98,-1181.75,-2490.37
 -467.98,-1181.75,-2490.37
 -460.11,-1092.73,-2525.61
 -460.11,-1092.73,-2525.61
 -460.11,-1092.73,-2525.61
 -834.08,-1181.07,-2403.95
 -834.08,-1181.07,-2403.95
 -834.08,-1181.07,-2403.95
 -692.92,-1228.41,-2429.79
 -692.92,-1228.41,-2429.79
 -692.92,-1228.41,-2429.79
 -692.95,-1228.52,-2434.70
 -602.84,-1250.65,-2434.73
 -602.84,-1250.65,-2434.73
 -602.84,-1250.65,-2434.73
 -543.53,-1240.69,-2462.65
 -543.53,-1240.69,-2462.65
 -543.53,-1240.69,-2462.65
 -393.27,-1268.09,-2474.27
 -393.27,-1268.09,-2474.27
 -393.27,-1268.09,-2474.27
 -148.65,-1287.61,-2497.98
 -148.65,-1287.61,-2497.98
 -148.65,-1287.61,-2497.98
   80.63,-1297.27,-2506.84
   80.63,-1297.27,-2506.84
   80.63,-1297.27,-2506.84
  229.26,-1222.02,-2548.54
  229.26,-1222.02,-2548.54
  229.26,-1222.02,-2548.54
  346.34,-1189.39,-2558.01
  346.34,-1189.39,-2558.01
  346.34,-1189.39,-2558.01
  613.47,-1316.72,-2445.75
  613.47,-1316.72,-2445.75
  613.47,-1316.72,-2445.75
  606.68,-1228.21,-2494.80
  606.68,-1228.21,-2494.80
  606.68,-1228.21,-2494.80
  568.79,-1046.94,-2605.69
  568.79,-1046.94,-2605.69
  568.79,-1046.94,-2605.69
  544.31,-1053.51,-2622.63
  544.31,-1053.51,-2622.63
  544.31,-1053.51,-2622.63
  704.96,-1289.38,-2501.55
  704.96,-1289.38,-2501.55
  704.96,-1289.38,-2501.55
  990.61,-1337.88,-2407.05
  990.61,-1337.88,-2407.05
  990.61,-1337.88,-2407.05
  990.61,-1337.88,-2407.05
 1123.45,-1295.90,-2400.54
 1123.45,-1295.90,-2400.54
 1123.45,-1295.90,-2400.54
 1096.86,-1321.57,-2398.31
 1096.86,-1321.57,-2398.31
 1096.86,-1321.57,-2398.31
 1125.58,-1363.43,-2369.68
 1125.58,-1363.43,-2369.68
 1125.58,-1363.43,-2369.68
 1242.95,-1424.56,-2254.73
 1242.95,-1424.56,-2254.73
 1242.95,-1424.56,-2254.73
 1206.17,-1499.10,-2207.55
 1206.17,-1499.10,-2207.55
 1206.17,-1499.10,-2207.55
 1283.29,-1583.47,-2104.11
 1283.29,-1583.47,-2104.11
 1283.29,-1583.47,-2104.11
 1253.86,-1605.17,-2096.90
 1253.86,-1605.17,-2096.90
 1253.86,-1605.17,-2096.90
 1358.37,-1584.34,-2058.65
 1358.37,-1584.34,-2058.65
 1358.37,-1584.34,-2058.65
 1339.09,-1553.60,-2111.01
 1339.09,-1553.60,-2111.01
 1339.09,-1553.60,-2111.01
 1424.69,-1306.03,-2211.95
 1424.69,-1306.03,-2211.95
 1424.69,-1306.03,-2211.95
 1355.56, -957.88,-2427.15
 1355.56, -957.88,-2427.15
 1355.56, -957.88,-2427.15
 1235.25, -909.73,-2510.03
 1235.25, -909.73,-2510.03
 1235.25, -909.73,-2510.03
 1235.25, -909.73,-2510.03
  992.31, -851.80,-2646.27
  992.31, -851.80,-2646.27
  992.31, -851.80,-2646.27
  954.73,-1054.95,-2595.09
  954.73,-1054.95,-2595.09
  954.73,-1054.95,-2595.09
  565.44, -880.01,-2769.67
  565.44, -880.01,-2769.67
  565.44, -880.01,-2769.67
  442.56, -595.23,-2862.99
  442.56, -595.23,-2862.99
  442.56, -595.23,-2862.99
  151.29, -401.95,-2931.75
  151.29, -401.95,-2931.75
  151.29, -401.95,-2931.75
  191.46,   44.69,-2951.02
  191.46,   44.69,-2951.02
  191.46,   44.69,-2951.02
    6.39,  425.96,-2917.97
    6.39,  425.96,-2917.97
    6.39,  425.96,-2917.97
 -525.84,  709.30,-2817.28
 -525.84,  709.30,-2817.28
 -525.84,  709.30,-2817.28
-1217.94,  836.89,-2561.02
-1217.94,  836.89,-2561.02
-1217.94,  836.89,-2561.02
-1371.14,  709.16,-2508.74
-1371.14,  709.16,-2508.74
-1371.14,  709.16,-2508.74
-1257.46,  595.74,-2596.00
-1257.46,  595.74,-2596.00
-1257.46,  595.74,-2596.00
-1189.46,  476.29,-2662.06
-1189.46,  476.29,-2662.06
-1189.46,  476.29,-2662.06
-1190.79,  470.71,-2913.22
-1081.64,  422.73,-2727.42
-1081.64,  422.73,-2727.42
-1081.64,  422.73,-2727.42
-1017.24,  380.10,-2756.48
-1017.24,  380.10,-2756.48
-1017.24,  380.10,-2756.48

Rerun magneto with the above file to get

I tried your script and for
49668.3 nT

Latitude: 50.1551° N
Longitude: 19.0125° E
Elevation: 311.0 m Mean Sea Level

From this site:
https://www.ngdc.noaa.gov/geomag/calculators/magcalc.shtml#igrfwmm

I used the same raw data and generate output file and again import to magneto:

Rejection level selected: 0.0

2279 measurements processed, expected 2279

Expected norm of local field vector Hm? (Enter 0 for default 49650.3) 49668.3

Set Hm = 49668.3

Combined bias vector B:
-2.89 -11.79 -2.67

Correction matrix Ainv, using Hm= 49668.3:
0.99998 0.00024 0.00010
0.00024 1.00009 0.00031
0.00010 0.00031 1.00009

Where Hcalc = Ainv*(H-B)

Code initialization statements...

float B[3]
{ -2.89, -11.79, -2.67};

float Ainv[3][3]
{{ 0.99998, 0.00024, 0.00010},
{ 0.00024, 1.00009, 0.00031},
{ 0.00010, 0.00031, 1.00009}};

I do not know if the problem is not the magnetic field value. As if he could not calculate correctly. I can't get values close to 0 in Combined bias vector B.
Unless these values are ok, but they aren't close to 0.

For a compass, the value of Hm is completely arbitrary, and there is no need to use such a large number. The raw input data values are scaled accordingly, which can cause problems with numerical precision.

I choose a number for Hm such that the diagonal matrix elements are about 1, and a convenient choice is the average magnitude of the input data vectors.

For the compass calculation, the corrected magnetic field vector is normalized so that its value is always 1.000. Only the direction of the vector matters.

You need only a few hundred points, but they should more evenly distributed over the angular space (unit sphere). Here is what those corrected data points look like:

And now everything is clear. So I am looking for a value that would be as close to 1 as possible in the diagonal matrix. And for the accelerometer I set the constant 1000.

  1. What program do you generate a spherical chart in?

  2. This is probably the last straight ahead of me now. Tilt compensation. I don't know what the constant alpha angle means and where it came from and on what basis it was calculated.
    Is tilt compensated ok?


const float alpha = 0.15;


// Accelerometer calibration
Xa_off = compass.a.x - 8191.1;
Ya_off = compass.a.y - 9432.26;
Za_off = compass.a.z - 1071.55;
Xa_cal =  0.05896*Xa_off + 0.00394*Ya_off - 0.00277*Za_off;
Ya_cal =  0.00394*Xa_off + 0.05488*Ya_off + 0.00491*Za_off;
Za_cal = -0.00277*Xa_off + 0.00491*Ya_off + 0.03929*Za_off;

// Magnetometer calibration
Xm_off = compass.m.x* + 34.49;
Ym_off = compass.m.y* - 67.93;
Zm_off = compass.m.z* - 161.43;
Xm_cal =  0.97249*Xm_off + 0.01374*Ym_off + 0.00522*Zm_off;
Ym_cal =  0.01374*Xm_off +  0.97557*Ym_off +  0.02178*Zm_off;
Zm_cal =  0.00522*Xm_off + 0.02178*Ym_off + 0.98110*Zm_off;

// Low-Pass filter accelerometer
fXa = Xa_cal * alpha + (fXa * (1.0 - alpha));
fYa = Ya_cal * alpha + (fYa * (1.0 - alpha));
fZa = Za_cal * alpha + (fZa * (1.0 - alpha));

// Low-Pass filter magnetometer
fXm = Xm_cal * alpha + (fXm * (1.0 - alpha));
fYm = Ym_cal * alpha + (fYm * (1.0 - alpha));
fZm = Zm_cal * alpha + (fZm * (1.0 - alpha));

// Pitch and roll
roll  = atan2(fYa, sqrt(fXa*fXa + fZa*fZa));
pitch = atan2(fXa, sqrt(fYa*fYa + fZa*fZa));
roll_print = roll*180.0/M_PI;
pitch_print = pitch*180.0/M_PI;

// Tilt compensated magnetic sensor measurements
fXm_comp = fXm*cos(pitch)+fZm*sin(pitch);
fYm_comp = fXm*sin(roll)*sin(pitch)+fYm*cos(roll)-fZm*sin(roll)*cos(pitch);

// Arctangent of y/x
Heading = (atan2(fYm_comp,fXm_comp)*180.0)/M_PI;
if (Heading < 0)
Heading += 360;

EDIT:
Something is wrong, because if I put the sensor horizontally to the ground and rotate it around its axis, it should show me a 0-360 degree range. A shows me 135 degrees to 160 degrees. If I put it vertically, it shows 0 degrees.
Perhaps this compensation is not for the boat because I only want him to compensate for the tilt.

Heading: 135.50
Heading: 135.92
Heading: 136.59
Heading: 136.08
Heading: 136.88
Heading: 137.27
Heading: 139.00
Heading: 139.97
Heading: 141.68
Heading: 142.34
Heading: 143.44
Heading: 145.59
Heading: 146.66
Heading: 147.40
Heading: 147.96
Heading: 148.29
Heading: 148.50
Heading: 149.73
Heading: 150.00
Heading: 150.80
Heading: 151.73
Heading: 152.15
Heading: 153.60
Heading: 153.59
Heading: 153.96
Heading: 154.01
Heading: 154.48
Heading: 156.25
Heading: 156.60
Heading: 156.29
Heading: 156.42
Heading: 155.82
Heading: 155.29
Heading: 155.18
Heading: 155.02
Heading: 154.70
Heading: 154.30
Heading: 153.92
Heading: 153.42
Heading: 152.34
Heading: 152.38
Heading: 151.48
Heading: 149.94
Heading: 148.39
Heading: 147.21
Heading: 146.07
Heading: 144.87
Heading: 143.82
Heading: 142.95
Heading: 140.96
Heading: 139.67
Heading: 137.87
Heading: 137.29
Heading: 135.89
Heading: 134.14
Heading: 133.38
Heading: 129.39
Heading: 129.20
Heading: 130.47
Heading: 130.98
Heading: 132.56
Heading: 132.53
Heading: 132.71
Heading: 133.04
Heading: 132.83
Heading: 133.43
Heading: 134.18
Heading: 135.51
Heading: 136.23
Heading: 136.31
Heading: 137.31
Heading: 138.12
Heading: 139.20
Heading: 139.42
Heading: 139.94
Heading: 140.65
Heading: 141.54
Heading: 142.60
Heading: 143.48
Heading: 144.11
Heading: 144.62
Heading: 145.72
Heading: 146.69
Heading: 147.45
Heading: 148.80
Heading: 149.95
Heading: 150.81
Heading: 151.68
Heading: 152.77
Heading: 153.72
Heading: 154.93
Heading: 155.74
Heading: 156.28
Heading: 156.57
Heading: 157.29
Heading: 157.79
Heading: 157.98
Heading: 158.68
Heading: 159.17
Heading: 159.34
Heading: 159.63
Heading: 159.92
Heading: 160.73
Heading: 160.62
Heading: 160.74
Heading: 160.03
Heading: 161.40
Heading: 161.99
Heading: 160.68
Heading: 160.97
Heading: 160.59
Heading: 160.49
Heading: 160.40
Heading: 160.34
Heading: 159.65
Heading: 159.83
Heading: 156.51
Heading: 155.97
Heading: 153.34
Heading: 153.35
Heading: 151.85
Heading: 150.65
Heading: 149.57
Heading: 147.85
Heading: 146.05
Heading: 145.05
Heading: 143.50
Heading: 142.29
Heading: 140.78
Heading: 139.91
Heading: 138.50
Heading: 137.84
Heading: 136.40
Heading: 135.39
Heading: 133.87
Heading: 133.45
Heading: 135.01
Heading: 134.54
Heading: 134.92
Heading: 135.30
Heading: 134.72
Heading: 134.20
Heading: 134.02
Heading: 134.95
Heading: 134.83
Heading: 136.18
Heading: 136.15
Heading: 136.25
Heading: 135.84
Heading: 135.42
Heading: 135.57
Heading: 135.75
Heading: 136.39
Heading: 136.85
Heading: 137.26
Heading: 137.76
Heading: 138.49
Heading: 138.81
Heading: 139.25
Heading: 139.63
Heading: 140.01
Heading: 140.59
Heading: 140.97
Heading: 141.68
Heading: 142.32
Heading: 142.78
Heading: 143.31
Heading: 143.85
Heading: 144.47
Heading: 145.25
Heading: 145.78
Heading: 146.40
Heading: 146.88
Heading: 147.14
Heading: 147.55
Heading: 148.25
Heading: 148.76
Heading: 149.47
Heading: 149.97
Heading: 150.30
Heading: 150.84
Heading: 151.37
Heading: 152.02
Heading: 152.61
Heading: 153.11
Heading: 153.38
Heading: 153.69
Heading: 154.46
Heading: 154.49
Heading: 154.49
Heading: 154.93
Heading: 154.96
Heading: 153.44
Heading: 154.71

EDIT2
I applied the script from here:

With the reference vector and it looks ok. Nothing tomorrow I will go to the water and test.
And the calibration will be useful for mpu9250 only when I try to compile I have an error

Something went wrong with this lsm303d. I swam today but the waves were too big to say anything. I thought the boat was going straight to the destination the first time but then it kind of went crazy. Target point was about 50m on the right

She began to spin around herself. If it is calmer without wind, I will do longer tests. Unfortunately, winter in Poland; (
Yesterday I received the mpu9250 module and I would like to base my struggles with my boat on it.
@jremington I used your script to get calibration data:

I have received the following data

Done. Gyro offsets (raw) 75.4, -170.7, 175.9
Collecting 300 points for scaling, 3/second
TURN SENSOR VERY SLOWLY AND CAREFULLY IN 3D
-32768 -18104 12544 -8 43 23
-32768 -18036 12464 -7 43 24
-32768 -18080 12412 -8 42 21
-28436 -18336 11096 -7 42 19
-32768 -18024 12720 -8 49 20
-32768 -18444 12012 -7 54 19
-32768 -18740 14184 -7 60 18
-32768 -17492 12036 -9 58 16
-32768 -18556 13780 -6 50 15
-32768 -18680 13032 -10 41 16
-32768 -18796 13416 -11 41 14
-32768 -18544 12924 -12 37 9
-32768 -18620 12796 -14 39 11
-32768 -18548 13028 -15 35 11
-32768 -17984 12536 -18 34 11
-32768 -16916 13812 -23 33 12
-32768 -17780 14568 -20 34 14
-32768 -17108 12860 -20 35 15
-32768 -19208 11960 -18 34 17
-32768 -18620 12840 -21 37 19
-32768 -18264 13456 -15 41 22
-32768 -17372 13492 -17 38 22
-32768 -15988 14648 -17 37 27
-32768 -17616 12952 -15 37 29
-32768 -18288 13756 -18 33 34
-32768 -18740 14664 -19 40 36
-32768 -17796 13660 -20 38 39
-32768 -16940 12284 -23 39 40
-32768 -17592 14420 -21 42 42
-32768 -18048 13052 -18 48 41
-32768 -18116 12824 -11 49 40
-32768 -20900 13584 -6 47 39
-32768 -17992 13856 -11 35 38
-32768 -19204 13008 -16 34 37
-32768 -17068 14372 -16 33 35
-32768 -19168 16000 -15 31 32
-32768 -20108 13888 -11 23 28
-32768 -24428 12408 -1 18 20
-32284 -25620 8640 7 10 13
-32228 -28224 7080 15 10 2
-32768 -31804 5632 22 8 -7
-32744 -32436 -1988 24 9 -19
-32768 -32768 -36 26 9 -23
-32768 -32768 -5780 27 12 -32
-32768 -32768 -10612 28 15 -46
-32768 -30736 -14804 24 17 -59
-32768 -26460 -17152 16 20 -72
-32768 -21956 -18988 -2 15 -78
-32616 -18700 -18940 -7 18 -84
-32768 -19260 -19780 -16 16 -84
-32768 -13308 -21632 -33 19 -84
-30368 -6248 -15236 -56 15 -73
-32768 -4992 -14488 -69 15 -59
-32768 -2476 -4896 -79 17 -42
-32768 -1588 -1628 -81 23 -23
-32768 -3208 5616 -76 25 -1
-32768 -7208 11872 -53 14 14
-32768 -17092 9212 -19 12 25
-32768 -23564 14188 11 16 11
-32768 -31708 3680 28 21 -9
-32768 -32768 -4612 34 29 -28
-32768 -32768 -9864 34 28 -49
-32768 -29900 -16372 29 36 -62
-32768 -27504 -16100 23 38 -73
-32768 -23376 -17820 16 39 -80
-32768 -19732 -18412 9 39 -85
-32768 -16516 -21404 -14 47 -96
-32768 -14908 -18800 -12 48 -95
-32768 -26656 -13776 23 31 -70
-32768 -32648 -12628 39 30 -44
-32768 -32768 -4304 37 29 -15
-32768 -31208 2716 17 25 9
-32768 -25964 9560 -11 26 22
-32608 -20228 8540 -29 14 21
-32768 -13112 10576 -52 18 11
-32768 -8900 9512 -62 19 -1
-32068 -4632 2724 -71 25 -13
-32768 -2560 -1556 -79 37 -23
-32768 -1120 -6740 -78 42 -50
-32768 -4280 -13380 -69 47 -75
-32768 -6960 -17096 -56 49 -81
-32768 -10160 -16816 -44 55 -92
-32768 -13616 -19360 -28 55 -94
-32768 -19180 -21284 -5 56 -91
-32768 -24124 -19300 13 65 -78
-32768 -28608 -15204 20 71 -65
-32768 -30720 -11416 28 68 -57
-32768 -32768 -13936 32 67 -39
-32768 -32768 -3216 34 60 -13
-32768 -32060 4280 18 52 12
-32768 -26904 8716 -1 47 21
-32768 -21184 11296 -29 37 22
-32768 -13664 13804 -46 33 16
-32768 -8852 9508 -61 29 3
-32768 -7768 10412 -63 27 -1
-31096 -4340 3984 -70 27 -6
-32464 -2652 6552 -75 27 -17
-32288 -4596 1440 -78 33 -20
-32768 -1260 -8348 -82 30 -40
-32768 -2616 -13144 -72 36 -71
-32768 -7052 -21376 -52 53 -92
-32768 -10300 -18640 -38 68 -98
-32768 -15144 -17240 -18 92 -86
-32768 -18904 -14296 3 87 -81
-32768 -25892 -11660 19 85 -63
-32768 -28072 -5712 29 77 -43
-32768 -31268 -1388 35 71 -35
-32768 -30184 -720 35 71 -28
-32768 -31296 2296 37 51 -17
-32768 -31368 5296 33 39 -3
-32768 -26120 10716 14 21 11
-32768 -22396 11704 -9 9 18
-32768 -13504 16816 -29 6 21
-32768 -11244 14132 -45 9 16
-32768 -8092 11696 -61 28 15
-32768 -4252 5436 -73 35 8
-32768 -1948 -1368 -84 55 -21
-32768 -4152 -9892 -82 64 -47
-32768 -7004 -13900 -71 66 -66
-32768 -9944 -17632 -51 57 -89
-32768 -18108 -20092 -30 52 -92
-32768 -22496 -18468 -12 49 -91
-32768 -28460 -14748 14 42 -81
-32768 -31612 -17672 21 36 -73
-32768 -31400 -11368 29 40 -67
-32768 -32768 -8788 28 37 -64
-32768 -32768 -9492 32 36 -56
-32768 -32768 -5964 32 24 -49
-32768 -32768 -2488 31 15 -38
-32768 -32768 1956 29 13 -20
-32768 -31304 6424 19 13 -1
-32768 -27108 9924 14 12 7
-32768 -23216 11704 -2 20 21
-32768 -20564 12756 -16 20 25
-32768 -17552 11684 -26 37 27
-32768 -16792 11480 -28 54 26
-32768 -17576 9808 -23 65 23
-32768 -17704 6512 -25 80 13
-32768 -19660 2544 -17 82 10
-32768 -20816 316 -18 98 -6
-32768 -20444 600 -14 100 -16
-32768 -19984 -10192 -16 103 -23
-32768 -20480 -9188 -17 103 -45
-32768 -19564 -17148 -17 94 -69
-32768 -17500 -20508 -21 68 -88
-32768 -17100 -21372 -28 40 -91
-29360 -15588 -15160 -29 14 -81
-23572 -16940 -10836 -25 1 -72
-25468 -21300 -8460 -20 -7 -56
-24360 -18460 712 -27 -15 -33
-27056 -17464 7012 -27 -16 -10
-32448 -18088 10340 -24 -7 9
-32340 -17208 13428 -20 3 17
-32768 -19464 12996 -22 13 22
-32768 -18996 11932 -21 39 24
-32768 -16872 8968 -29 67 19
-32768 -15568 2732 -30 90 2
-32768 -15740 -8552 -34 103 -36
-32768 -15800 -12844 -34 101 -48
-32768 -15752 268 -33 95 -6
-32768 -15584 11280 -31 58 24
-32768 -17812 14588 -25 14 22
-27540 -19468 13108 -15 -7 6
-31388 -26496 5368 -4 -8 -10
-23472 -23688 -508 -8 -14 -35
-22624 -25864 -8776 -6 -1 -61
-26964 -26104 -11812 -2 9 -72
-27788 -25720 -14332 -1 18 -80
-29120 -27360 -15684 2 25 -81
-32768 -27544 -17568 3 39 -82
-32768 -26044 -15136 2 64 -80
-32768 -25212 -14332 -6 91 -65
-32768 -23232 -7392 -15 100 -35
-32768 -19340 -4852 -19 94 -7
-32768 -21492 6396 -18 78 10
-32768 -19872 10848 -24 55 22
-32768 -22196 8880 -21 38 25
-32768 -21272 11352 -17 29 25
-32768 -20336 10820 -19 19 23
-32768 -23300 9796 -10 0 8
-27000 -24192 4148 -11 -12 -10
-23564 -22540 1724 -10 -14 -31
-24676 -21700 -2584 -11 -13 -46
-23372 -24176 -6708 -9 -4 -59
-26244 -22688 -13852 -13 12 -76
-30288 -23312 -16484 -10 23 -82
-32768 -21288 -22788 -15 60 -87
-32768 -20248 -20512 -18 74 -84
-32768 -19456 -15488 -23 95 -66
-32768 -21488 -7800 -19 102 -34
-32768 -23572 784 -7 82 5
-32768 -25924 4564 -5 59 19
-32768 -24604 11060 -10 41 27
-32768 -27884 8916 2 28 19
-32768 -30412 3936 11 6 6
-31664 -31880 484 11 -4 -18
-24144 -28572 2088 7 -6 -31
-30216 -29264 -4844 2 -3 -57
-25468 -25784 -10528 -7 2 -66
-27600 -24220 -10652 -10 7 -73
-29980 -25740 -22300 -10 34 -86
-32768 -24804 -18032 -11 60 -86
-32768 -22504 -16896 -14 84 -75
-32768 -21068 -11776 -19 101 -54
-32768 -20588 -3424 -21 101 -18
-32768 -21576 6328 -20 78 13
-32768 -20660 12244 -19 48 26
-32768 -21432 12772 -16 31 25
-32768 -22880 11504 -17 22 25
-32768 -22072 10692 -15 5 16
-30744 -22288 10140 -13 -6 3
-28176 -22784 8048 -9 -10 -9
-25276 -22168 4816 -10 -11 -14
-25176 -22188 1832 -14 -14 -34
-22780 -21784 -4340 -17 -11 -47
-24384 -21232 -4972 -19 -8 -54
-22880 -20016 -10020 -19 -3 -65
-25956 -18988 -14848 -23 15 -78
-30532 -19112 -15444 -23 30 -87
-32768 -19628 -18424 -22 44 -88
-32768 -20256 -19228 -17 62 -88
-32768 -20824 -19048 -16 82 -81
-32768 -22012 -15236 -13 96 -63
-32768 -22292 -7360 -11 103 -37
-32768 -23228 -3068 -7 96 -11
-32768 -24596 748 -8 84 7
-32768 -22452 14544 -13 34 26
-32768 -24916 11324 -12 7 15
-30212 -27240 6920 -4 -6 -1
-27356 -28616 -1848 1 -8 -14
-26852 -28452 -6696 3 -10 -31
-27580 -27048 -12572 1 -6 -55
-31260 -24976 -15652 -8 2 -71
-31096 -21980 -18680 -17 10 -76
-32768 -18664 -19328 -27 18 -82
-32768 -16204 -18280 -37 27 -86
-32768 -12940 -19072 -48 40 -85
-32768 -10068 -18272 -58 49 -81
-32768 -7020 -15556 -66 51 -72
-32768 -5460 -13008 -72 56 -64
-32768 -5024 -10708 -76 63 -51
-32768 -4508 -3024 -78 64 -37
-32768 -4440 -552 -80 60 -23
-32768 -4360 2148 -76 58 -13
-32768 -5164 3684 -75 56 -9
-32768 -6380 6336 -69 51 1
-32768 -7468 9208 -64 50 7
-32768 -10264 10224 -58 53 12
-32768 -11316 11128 -53 39 17
-32768 -17376 12164 -40 32 23
-32768 -18868 14232 -31 31 24
-32768 -24616 8656 -13 26 24
-32768 -25636 11872 -6 23 24
-32768 -28676 7000 3 23 18
-32768 -29052 9908 4 22 17
-32768 -29820 7668 7 20 13
-32768 -29776 4780 10 8 6
-30948 -30288 3332 5 2 2
-28900 -28824 2672 5 0 1
-28560 -29820 1904 4 -1 1
-31888 -31004 3924 11 3 -1
-31460 -31752 644 16 5 -7
-32480 -32200 1284 19 7 -10
-32484 -32768 -1348 21 5 -14
-32768 -32768 -3192 25 6 -22
-32768 -32712 -5996 24 8 -30
-32768 -31952 -8940 25 4 -40
-31820 -29892 -12512 19 4 -49
-30948 -27476 -13644 12 -1 -54
-29236 -23556 -15856 2 -4 -61
-27632 -20756 -14580 -6 -6 -61
-27024 -17280 -14824 -18 -9 -61
-27188 -14080 -13964 -25 -10 -57
-26136 -11836 -13072 -34 -11 -55
-26488 -8612 -11068 -45 -11 -49
-25868 -8240 -9016 -46 -14 -36
-26140 -8160 -7592 -46 -15 -36
-24660 -7496 -5952 -44 -15 -37
-21328 -8716 -1284 -39 -21 -30
-28328 -9892 -432 -35 -19 -27
-25192 -12084 -2004 -26 -21 -22
-24056 -14496 380 -19 -21 -17
-23456 -15364 404 -16 -20 -21
-23952 -15588 -752 -14 -18 -22
-23424 -14668 -172 -18 -19 -26
-23112 -13900 -2080 -23 -18 -33
-25184 -13356 -868 -24 -19 -31
-23656 -13984 180 -26 -19 -27
-23928 -15160 2328 -25 -17 -20
-22448 -15540 3328 -29 -15 -22
-23760 -17136 1376 -28 -15 -22
-24252 -18076 5868 -29 -15 -15
-24432 -17768 5860 -36 -12 -9
-27980 -17192 7568 -34 -7 0
-28416 -17972 8528 -36 -4 7
-31504 -16864 11512 -38 4 13
-32768 -13980 12672 -50 21 17
-32768 -15156 12388 -47 38 21
-32768 -15568 11524 -46 53 18
-32768 -13908 10008 -52 70 8
-32768 -9744 5260 -65 78 -9
Done. rms Acc = 39774.53, rms Mag = 71.72

And as always, it may be trivial for some people, but I don't understand it here.
As a result, we get the first 3 columns one after the other is the accelerometer and the next 3 are the magnetometer? But I have the data from the magnetometer in the form of two numbers, in tens and before that I had in the thousands. Is it correct ??

Should I separate these results separately for the accelerometer and separately for the magnetometer? And then correct the data in the magneto ??

Edit
Link to film

Yes, the magnetometer and accelerometer scales are different.

Should I separate these results separately for the accelerometer and separately for the magnetometer?

Yes, Magneto calibrates each sensor separately.

Pololu has tilt-compensated compass code for the LSM303 Pololu - LSM303D 3D Compass and Accelerometer Carrier with Voltage Regulator

The code I wrote for the MPU-9250 uses the same algorithm.

Thank you for your patience @jremington.
Maybe I will not discuss mpu9250 for now and I will focus as the topic points to lsm303d.

I calibrated in accordance with Pololu recommendations and got the maximum and minimum values.
My code looks like this now. I checked with GPS, I get the correct angle readings in relation to the north and the compass also correctly indicates the north, i.e. 0.
For slight tilts to the right and left, about 30 degrees, the number of degrees does not change in the compass
So I think everything is fine up to this point.
Then i have implemented your error calculation algorithm and Kp. which then translates into the speed that is given to motors A or B. I have an H bridge so I swim forward all the time, only the motors decide whether I turn or not.
Could you please check if my code is ok ...?
I have cut the flow in MANUAL to make it more clean.

Thanks again in advance for your help.

void setup()
{
  Serial.begin(115200);
  ss.begin(GPSBaud);
  Serial2.begin(115200);
  Wire.begin();
  compass.init();
  compass.enableDefault();
  compass.m_min = (LSM303::vector<int16_t>){-2813, -2107, -2738};
  compass.m_max = (LSM303::vector<int16_t>){+2724, +2998, +3155};

  motorsSetup();
}


void loop()
{
  
  if(IBusServo.readChannel(7) > 1950)
  {
    Serial.println("AUTOPILOT");
    headingcal();
    delay(200);
    gpsdata();
    delay(200);
  }
 else
 {
    Serial.println("MANUAL");
    manualSter();
   }
  




 

}

// This custom version of delay() ensures that the gps object
// is being "fed".
static void smartDelay(unsigned long ms)
{
  unsigned long start = millis();
  do 
  {
    while (ss.available())
      gps.encode(ss.read());
  } while (millis() - start < ms);
}



void gpsdata()
{
  unsigned long start;
  double lat_val, lng_val, alt_m_val, speedkmph;
  bool loc_valid, alt_valid;
  lat_val = gps.location.lat(); 
  loc_valid = gps.location.isValid(); 
  lng_val = gps.location.lng();
  alt_m_val = gps.altitude.meters(); 
  alt_valid = gps.altitude.isValid(); 
  speedkmph= gps.speed.kmph();


   if (!loc_valid)
    {
      Serial.println("**NO FIX**");
      delay(100);
    }
    else
    {
    Serial.println("GPS READING: ");
    Serial.print("GPS FIX : ");
    Serial.println();
    latc=lat_val;
    longc=lng_val;

    //when is valid location run autopilot
    steering();
    }


  smartDelay(1000);

}

// convert degrees to radians
void radianConversion()
{
  deltaLatitudeRadians = (wayPointLatitude - latc) * pi / 180;
  deltaLongitudeRadians = (wayPointLongitude - longc)* pi / 180;
  latitudeRadians = latc * pi / 180;
  wayPointLatitudeRadians = wayPointLatitude * pi / 180;
  longitudeRadians = longc * pi / 180;
  wayPointLongitudeRadians = wayPointLongitude * pi / 180;
  
}

// calculate distance from present location to next way point
float calculateDistance()
{
  radianConversion();
  
  float a = sin(deltaLatitudeRadians/2) * sin(deltaLatitudeRadians/2) +
          sin(deltaLongitudeRadians/2) * sin(deltaLongitudeRadians/2) * 
          cos(latitudeRadians) * cos(wayPointLatitudeRadians);
  float c = 2 * atan2(sqrt(a), sqrt(1-a)); 
  float d = radiusOfEarth * c; // 
  return d * 0.621371192*1609.344; // distance 
}

// calculate bearing from present location to next way point
float calculateBearing()
{
  radianConversion();
  
  float y = sin(deltaLongitudeRadians) * cos(wayPointLatitudeRadians);
  float x = cos(latitudeRadians) * sin(wayPointLatitudeRadians) -
        sin(latitudeRadians) * cos(wayPointLatitudeRadians) * cos(deltaLongitudeRadians);
  
  bearing = atan2(y, x) / pi * 180;
  
  if(bearing < 0)
  {
    bearing = 360 + bearing;
  }
  
  return bearing;
}



//LSM303D run with tilt compensation
void headingcal()
{

  compass.read();
  
  int headingCompass = compass.heading((LSM303::vector<int>){0, -1, 0});
  Serial.print("heading: ");
  //Serial.print(mDirection);
  Serial.println(headingCompass);  
}


int motorSpeed=120, kp=40, bias=0, error=0;

//Motor:-
void steering()
{
  distanceToWaypoint = calculateDistance();
  bearing = calculateBearing();


// heading error and PID steering from jremington script
   error = heading_error(bearing, headingCompass);

//error is positive if current_heading > bearing (compass direction)
//positive bias acts to reduce left motor speed, so bear left
    bias = (kp*error)/10;  //Kp in tenths (Ki, Kd not necessary in water)



 Serial.println(distanceToWaypoint); 
  if(distanceToWaypoint > 3)
  {
        // Set Motor A forward
 
    digitalWrite(in1, HIGH);
    digitalWrite(in2, LOW);
 
    // Set Motor B forward
 
    digitalWrite(in3, HIGH);
    digitalWrite(in4, LOW);


    // the motor routines internally limit the argument to {-255, 255}
//    set_m1_speed(motorSpeed-bias); //left motor
 //   set_m2_speed(motorSpeed+bias); //right motor
    analogWrite(enA, (motorSpeed-bias));
    analogWrite(enB, (motorSpeed+bias));
    
  }
  else
  {
    stop1();
  }
    
}
void stop1()
{
  digitalWrite(in1,LOW);
  digitalWrite(in2,LOW);
  digitalWrite(in3,LOW);
  digitalWrite(in4,LOW);
}

The best test is in the water. I can't tell if your code will work correctly just by looking at it.

However, I CAN tell you that this comment is not correct for analogWrite(), and you will be in trouble if the motor speed values become negative:

// the motor routines internally limit the argument to {-255, 255}

I calibrated in accordance with Pololu recommendations and got the maximum and minimum values.

Magneto will do a better job.

I am aware that only tests on the water give the answer, I will try to go again next week, mark the target point and provide more reliable tests. But they predict the temperature -5;) fortunately, there is a discharge of warm water from the power plant, so the water will not freeze.
As for the magneto, I will try to find out how to apply this matrix in their script first.

However, I CAN tell you that this comment is not correct for analogWrite(), and you will be in trouble if the motor speed values become negative

I don't know if I understand correctly that the value (motorSpeed- + bias) can be negative. In this case, the motor should turn the other way.
Can I assume the dependence that if a given engine has a negative value then take 0, so it does nothing ??

Do you suggest any other solution instead of analogWrite () ??

Forgive my questions, but I am old and I do not assimilate knowledge so easily ... But I am determined to test in spite of adversities until I get the boat to the destination point in a straight line;) Thank you again for your help.

That is up to you. analogWrite() won't work as you expect with a negative argument. It also won't work correctly if the argument exceeds 255. YOU MUST CHECK.

//    set_m1_speed(motorSpeed-bias); //left motor
 //   set_m2_speed(motorSpeed+bias); //right motor
    analogWrite(enA, (motorSpeed-bias));
    analogWrite(enB, (motorSpeed+bias));

Ok, I will add checking what is the value below 0 or above 255 so that it sets analogWrite () only in the range of 0-255. And I'll check it over the water and let you know how it turned out. Thanks for the help.

    motorSpeed1 = (motorSpeed - bias);
    motorSpeed2 = (motorSpeed + bias);
 
   
    if (motorSpeed1 < 0)motorSpeed1 = 0;
    if (motorSpeed2 > 255)motorSpeed2 = 255;