Jayraj Desai
Published © GPL3+

Distinguish walking and running using Machine Learning

Gather data and develop algorithm to distinguish walking and running.

IntermediateFull instructions provided10 hours7,755
Distinguish walking and running using Machine Learning

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
Analog Accelerometer: ADXL335
Adafruit Analog Accelerometer: ADXL335
×1
micro SD card
×1
Male Header 40 Position 1 Row (0.1")
Male Header 40 Position 1 Row (0.1")
×1
AA Batteries
AA Batteries
×1
4xAA battery holder
4xAA battery holder
×1
USB-A to B Cable
USB-A to B Cable
×1
styrofoam
×1
Tape
×1
MicroSD Module (Generic)
×1

Software apps and online services

Arduino IDE
Arduino IDE
Octave

Story

Read more

Schematics

fritzing schematic

this is how connections are to be done.

Code

Arduino code

Arduino
#include <Wire.h>
#include <SD.h>

#define ADXL_module (0x53)

int count=0;                  //variable counts the number of readings written in log file

//change this number to change the number of desired reading
unsigned long measurement_to_take=360000;   //Number of desired readings

byte data[6];
char stringToPrint[200];
const int chipSelect = 10;

long randNumber;
char FileName[40];

void setup(){
  
  int existance_check;
  
  Serial.begin(9600);      //starting serial interface
   while (!Serial) {
    ; // wait for serial port to connect. Needed for Leonardo only
  }
  
  Serial.print("Initializing SD card...");
  // make sure that the default chip select pin is set to
  // output, even if you don't use it:
  pinMode(10, OUTPUT);
  
  // see if the card is present and can be initialized:
  if (!SD.begin(chipSelect)) {
    Serial.println("Card failed, or not present");
    // don't do anything more:
    return;
  }
  Serial.println("card initialized.");
  
//  existance_check=SD.exists("datalog.txt");
//  if(existance_check == 1)
//  {
//    SD.remove("datalog.txt");
//    Serial.println("Old datalog file removed");
//  }
  
  Wire.begin();            //starting I2C interface
//following code resets all bits of POWER_CTL register of ADXL345
  Wire.beginTransmission(ADXL_module);
  Wire.write(0x2D);
  Wire.write(0);
  Wire.endTransmission();

// Following code is to enable measurement 
  Wire.beginTransmission(ADXL_module);
  Wire.write(0x2D);
  Wire.write(8);
  Wire.endTransmission();
  
  //Following code sets data format to max resolution and +-8g
  Wire.beginTransmission(ADXL_module);
  Wire.write(0x31);
  Wire.write(0b00001010);
  Wire.endTransmission();
  
  //Following code sets the sampling rate of ADXL345
  Wire.beginTransmission(ADXL_module);
  Wire.write(0x2C);
  Wire.write(0b00001100);
  Wire.endTransmission();
  
  randomSeed(analogRead(0));
  randNumber = random(3000);
  Serial.println(randNumber);
  sprintf(FileName, "data%d.txt", randNumber);
}

void loop(){
  
  int xyzregister = 0x32;        //starting address of data register 
  int x,y,z;
  
  Wire.beginTransmission(ADXL_module);
  Wire.write(xyzregister);
  Wire.endTransmission();
  
  Wire.beginTransmission(ADXL_module);
  Wire.requestFrom(ADXL_module, 6);
  
  int i =0;
  while(Wire.available()){    //Wire.availabel() returns the number of bytes available for retrival with read()
    data[i] = Wire.read();    //Wire.read() reads a byte that was transmitted from a slave device to a master 
                              //after a call to Wire.requestFrom()
    i++;
  }
  Wire.endTransmission();
  
  x = (((int)data[1]) << 8) | data[0];      //As ADXL345 is 13 bit accelerometre, datais sent as 16 bits(2 byte)
  y = (((int)data[3]) << 8) | data[2];      //which we received in above while loop as individual bytes, using these
  z = (((int)data[5]) << 8) | data[4];      //3 statements we are properly formating the data.
  
  sprintf(stringToPrint, "%d,%d,%d,%ld", x,y,z,millis());
  
  //Following If segment writes data to the log file.
  if(count <= measurement_to_take)
  {
    File dataFile = SD.open(FileName,FILE_WRITE);
    // if the file is available, write to it:
    if (dataFile) 
    {
      dataFile.println(stringToPrint);
      dataFile.close();
      //print to serial monitor too
      Serial.println(stringToPrint);
      count++;
    }  
    // if the file isn't open, pop up an error:
    else {
      Serial.println("error opening datalog.txt");
    } 
  }
  
  // add delay to change the rate of data collection
 // delay(10);    DATA_RATE of ADXL345 is set to 100Hz hence no need of delay.
}

sample data

Plain text
6.277902,1873.131579,0
2.022879,2008.083333,0
5.859375,2022.960000,0
5.998884,1881.806452,0
6.138393,1766.375000,0
2.371652,364.054054,1
2.371625,399.545064,1
2.511161,391.741007,1
2.371652,341.769231,1

data_running_1

Plain text
0,0,0,62
-246,-48,7,89
-245,-25,3,103
-244,-12,-5,117
-239,-18,-6,132
-238,-24,-6,146
-236,-52,0,160
-254,-45,-6,175
-255,7,-20,189
-247,13,-18,203
-214,-42,-4,218
-240,-30,6,232
-258,-46,2,246
-300,-16,2,261
-204,-13,-32,274
-312,12,22,288
-466,-8,44,303
-185,-28,-8,317
-204,-28,-17,331
-267,-17,-5,346
-249,-24,-1,363
-260,-15,-6,380
-237,-21,0,399
-259,-19,-8,415
-235,-27,-14,433
-250,-40,11,451
-240,-46,-5,470
-248,-35,-6,487
-269,-39,-9,504
-256,-51,-10,522
-249,-23,-13,541
-248,-46,-5,560
-250,-39,3,577
-250,-18,-17,593
-218,-27,-5,613
-254,-43,-6,630
-251,-18,-12,648
-266,0,-10,667
-258,-1,-5,684
-246,-40,1,700
-220,-34,1,716
-243,-43,9,734
-258,-33,-1,750
-254,-20,1,768
-247,-22,-6,784
-259,-18,-5,802
-243,-59,6,820
-243,-47,1,836
-259,7,-10,852
-248,20,-19,870
-252,6,-15,887
-249,-5,-15,904
-256,3,-18,921
-246,1,-15,939
-248,6,-3,977
-248,4,-3,990
-253,14,-7,1003
-250,9,-8,1016
-253,6,-5,1030
-256,3,-16,1042
-260,10,-24,1055
-248,20,-27,1074
-239,15,8,1092
-244,2,4,1108
-252,-3,-8,1124
-257,24,-21,1142
-240,40,-37,1161
-235,21,-25,1179
-238,1,-8,1199
-241,-7,-5,1215
-246,-29,-19,1232
-255,-27,-3,1252
-239,-20,9,1271
-243,-27,-1,1289
-253,-36,-34,1307
-257,-17,-40,1327
-249,5,-39,1347
-247,4,-51,1364
-251,-13,-61,1382
-269,-3,-63,1402
-258,-16,-60,1421
-246,-30,-53,1440
-232,-13,-46,1460
-212,-30,-1,1480
-227,-87,-19,1499
-228,-102,-21,1518
-237,-72,0,1540
-262,-51,-22,1557
-271,-73,-53,1576
-233,-95,-70,1597
-255,-110,-72,1616
-268,-93,-69,1637
-265,-62,-69,1656
-307,-21,-94,1677
-313,0,-119,1696
-262,-74,-97,1715
-339,-160,-15,1735
-320,-174,76,1756
-443,34,60,1775
-682,209,-42,1793
-645,205,-212,1813
-419,-14,-273,1833
-421,-87,-184,1854
-399,21,-57,1875
-260,210,-67,1894
-234,408,-14,1913
-152,303,-51,1934
-104,108,-48,1953
-124,36,-25,1973
-143,23,-37,1991
-130,13,-51,2011
-153,-25,-50,2029
-174,-79,-27,2049
-170,-101,-32,2069
-186,-116,-55,2089
-216,-160,-83,2110
-299,-291,-121,2131
-306,-549,-139,2153
-169,-778,-161,2174
-92,-705,-155,2197
-33,-567,-276,2217
-1215,-581,977,2238
-366,-83,-463,2259
21,306,-222,2281
-79,-54,-30,2299
-389,-387,-13,2318
-247,-364,-33,2339
-240,-116,-41,2360
-291,-72,-129,2380
-313,-185,-108,2402
-424,-214,-85,2423
-617,-149,13,2444
-609,-37,-2,2464
-449,31,-33,2483
-438,71,-15,2501
-285,350,-44,2520
-182,339,-190,2540
-234,-9,-216,2561
-200,-101,-157,2580
-383,61,-155,2603
-584,76,-147,2622
-653,57,-130,2641
-750,43,-106,2662
-596,96,-152,2681
-420,139,-46,2701
-203,212,14,2720
-33,195,20,2740
96,99,11,2757
117,26,10,2772
2,46,30,2789
-89,74,34,2804
-157,90,53,2821
-168,110,52,2838
-186,80,33,2856
-222,-21,3,2875
-258,-162,-57,2892
-278,-345,-147,2913
-350,-790,-196,2935
-372,-1196,-217,2957
-121,-1044,-359,2979
12,-744,-195,3003
94,-768,-589,3022
-1114,-832,886,3042
-343,56,-545,3064
398,272,-70,3084
72,-66,-92,3102
-709,-457,-67,3120
-232,-476,-46,3141
-425,-113,-199,3162
-608,-228,-91,3183
-1142,-125,-20,3205
-799,122,27,3226
-422,417,43,3245
-128,636,-158,3264
-361,33,-416,3284
-322,-307,-262,3304
-636,28,-148,3339
-1095,181,-170,3352
-1039,288,-128,3367
-688,418,-191,3389
-736,513,-178,3410
-559,409,-98,3431
-217,233,-2,3450
45,132,66,3470
317,38,68,3486
279,5,20,3503
-40,95,35,3518
-133,184,7,3535
-134,224,-9,3553
-176,134,-2,3571
-184,-6,22,3590
-227,-158,-5,3608
-322,-325,-154,3628
-331,-677,-311,3649
-845,-1235,-318,3672
-130,-1486,-434,3694
-88,-959,-313,3717
-2048,-1252,1600,3738
488,-839,-482,3762
-25,642,-174,3782
-570,147,-134,3803
-272,-641,-105,3823
-437,-582,34,3845
-602,-264,-161,3865
-1412,-119,6,3887
-1154,208,34,3906
-312,866,-56,3927
-76,633,-370,3946
-550,-398,-614,3965
-281,-507,-117,3987
-546,-63,-94,4009
-1314,259,-236,4029
-852,534,-213,4050
-634,682,-319,4072
-665,636,-282,4092
-669,438,-101,4113
-391,202,-48,4134
-24,21,34,4154
420,-206,109,4170
570,-225,38,4190
-70,154,54,4209
-106,308,0,4227
-136,392,-22,4244
-225,177,-21,4264
-221,-81,5,4284
-233,-218,-35,4301
-243,-399,-157,4322
-412,-760,-164,4344
-986,-1197,-300,4366
-137,-1669,-320,4388
-13,-1072,-180,4412
-11,-487,-20,4433
-2048,-2048,2047,4453
410,-510,-412,4477
636,-166,-472,4498
-631,-34,-171,4518
-735,-622,-33,4540
-1229,-353,42,4560
-1257,190,133,4581
-640,949,-55,4602
-59,665,-283,4622
-452,-475,-619,4641
-356,-668,-75,4664
-394,-42,-116,4684
-1151,269,-291,4705
-1013,714,-321,4727
-729,729,-259,4749
-704,647,-218,4769
-710,538,-178,4790
-380,366,-114,4811
-28,201,-11,4832
285,-58,39,4850
284,-288,34,4869
-226,-38,110,4887
-216,261,-48,4907
-162,312,-87,4927
-283,86,-61,4946
-324,-101,-32,4965
-454,-280,-115,4985
-493,-673,-283,5008
-1080,-1201,-260,5029
-272,-1630,-565,5053
6,-1385,-239,5076
-142,-686,12,5096
1999,-2048,-2048,5115
1244,-1131,-440,5140
244,389,-118,5163
-464,5,-247,5182
-600,-549,9,5201
-768,-703,79,5220
-1417,-252,157,5239
-1452,325,199,5262
-54,869,-95,5282
-400,150,-611,5301
-855,-411,-463,5321
-103,-436,-88,5344
-718,144,-207,5364
-1641,401,-277,5385
-812,590,-374,5407
-838,669,-296,5428
-697,642,-172,5448
-600,617,-137,5470
-317,436,-139,5490
74,272,-81,5511
586,-57,-2,5529
305,-311,8,5547
-398,-121,161,5564
-125,97,-39,5584
-73,226,18,5604
-186,237,11,5621
-322,-11,-7,5640
-452,-258,-96,5659
-529,-778,-331,5680
-1062,-1569,-230,5701
-184,-1611,-404,5726
-114,-1012,-472,5748
-51,-724,-71,5771
2047,-2048,-2048,5791
699,-1002,-523,5815
299,133,-439,5836
-475,167,-227,5857
-1368,-376,105,5908
-1334,290,121,5924
-725,1028,-201,5937
-92,1062,0,5950
-276,640,-411,5963
-617,-242,-748,5980
-202,-689,-98,6002
-619,-114,-75,6023
-1526,384,-294,6043
-1012,705,-381,6066
-740,679,-353,6087
-720,542,-198,6108
-619,487,-84,6129
-509,456,-114,6149
-80,360,-120,6169
372,241,-28,6190
701,-115,-160,6208
-109,-107,-13,6228
-237,125,-92,6249
-77,357,-165,6269
-152,309,-63,6289
-326,60,-23,6308
-450,-238,-195,6328
-444,-851,-324,6349
-1520,-1589,-312,6371
-59,-2047,-404,6395
-74,-934,-320,6417
-38,-518,30,6437
-2048,-718,2047,6457
133,-1049,237,6479
226,178,-491,6500
-549,-105,-254,6519
-1010,-816,-18,6542
-1502,-354,181,6563
-1053,867,-288,6585
-126,1088,-183,6607
-491,-174,-790,6629
-345,-651,-125,6650
-740,-35,-52,6673
-1251,307,-225,6692
-850,689,-325,6714
-663,738,-320,6735
-736,599,-252,6756
-950,592,-201,6776
-430,334,-174,6798
-135,224,-60,6818
258,84,17,6838
548,-184,-20,6855
-1,-100,52,6875
-225,138,-7,6892
-166,335,-127,6910
-244,304,-111,6932
-237,51,-46,6952
-355,-212,-188,6971
-376,-951,-301,6993
-1187,-1633,-305,7015
-192,-1955,-478,7038
60,-1245,-346,7062
488,-1564,-2048,7083
-386,-966,614,7105
920,159,-724,7127
-397,330,-203,7146
-752,-422,-190,7166
-1200,-713,171,7189
-1352,-71,190,7211
-647,891,-238,7231
-155,708,-512,7251
-810,-266,-750,7273
-257,-787,16,7294
-636,-160,-165,7314
-1715,385,-356,7336
-962,803,-401,7358
-722,783,-306,7378
-733,627,-226,7400
-742,566,-173,7420
-412,395,-86,7441
-35,327,-50,7461
344,188,15,7480
763,-288,-80,7497
-196,-62,76,7517
-335,176,-26,7536
-199,259,-123,7556
-229,223,-23,7576
-91,46,48,7597
-217,-101,15,7613
-425,-414,-324,7632
-945,-1181,-492,7655
-893,-2048,-466,7677
153,-1746,-373,7700
-228,-641,-175,7723
-2048,-2048,2047,7744
1167,-199,-1020,7768
-214,290,-12,7791
-678,-558,-310,7811
-758,-723,89,7832
-1357,-264,166,7852
-1339,430,36,7874
-198,1062,-75,7894
-448,46,-647,7914
-678,-424,-383,7934
-283,-457,-63,7956
-1086,42,-266,7976
-1527,513,-328,7998
-756,708,-332,8019
-715,818,-320,8040
-746,745,-75,8061
-556,549,-73,8081
-226,383,-80,8100
111,254,-1,8121
429,-70,-1,8138
105,-262,-14,8156
-400,-46,83,8175
-266,76,-70,8195
-259,207,-65,8213
-262,78,6,8232
-429,-82,16,8249
-507,-385,-246,8268
-623,-1119,-319,8290
-927,-1751,-306,8312
62,-1128,-400,8347
-35,-866,-295,8360
-84,-526,174,8377
2047,-2048,-2048,8397
1210,-1228,-210,8421
696,165,-358,8443
-596,114,-352,8464
-788,-504,-54,8484
-1071,-631,98,8505
-1500,71,211,8526
-631,929,-339,8546
53,794,-245,8566
-448,-11,-672,8586
-465,-498,-99,8606
-296,-227,-96,8627
-868,141,-173,8647
-1059,484,-279,8669
-770,556,-321,8690
-736,439,-274,8711
-753,371,-115,8732
-685,344,-126,8753
-282,311,-87,8773
98,305,-39,8794
628,174,-2,8811
500,-146,-80,8828
-232,-64,15,8848
-274,-29,1,8867
-100,121,-42,8885
-86,198,52,8904
-119,269,82,8923
-320,167,35,8941
-603,-176,-203,8960
-758,-880,-380,8981
-1056,-1877,-284,9004
143,-1582,-329,9027
-79,-565,-189,9049
799,-1879,-2048,9070
-394,-987,854,9093
843,181,-1031,9113
-96,335,-160,9135
-591,-478,-137,9154
-737,-782,110,9176
-1167,-375,102,9197
-1296,326,12,9219
-324,851,-92,9238
-17,579,-429,9259
-804,-464,-628,9278
-231,-518,-163,9299
-164,-48,-7,9322
-646,155,-122,9340
-1173,248,-216,9361
-876,376,-324,9382
-871,527,-320,9404
-850,641,-178,9424
-599,488,-144,9445
-298,323,-106,9466
-54,252,-36,9487
254,54,13,9505
440,-227,-47,9523
-32,-190,9,9542
-237,3,-16,9560
-176,68,-55,9577
-202,122,-9,9596
-217,175,21,9615
-313,162,9,9633
-562,-60,-127,9652
-694,-634,-427,9672
-1327,-1647,-81,9694
-204,-1772,-374,9717
87,-992,-310,9740
-135,-624,59,9759
215,-896,-1366,9779
-2048,-1362,2047,9801
606,-56,-566,9825
-364,380,-338,9844
-634,-370,-148,9866
-680,-730,-21,9887
-1310,-224,83,9908
-1103,385,103,9929
-257,993,-63,9950
-210,385,-368,9969
-700,-361,-533,9991
-142,-614,-77,10012
-150,-124,-83,10034
-641,239,-153,10056
-952,421,-246,10078
-806,469,-281,10099
-713,463,-278,10122
-635,392,-227,10143
-706,332,-175,10165
-374,266,-76,10187
-49,265,-29,10208
263,154,-11,10227
456,-149,-77,10247
-112,-145,-6,10268
-320,-23,20,10289
-169,-3,-1,10308
-215,57,28,10328
-254,137,47,10346
-418,79,-48,10365
-607,-195,-178,10386
-906,-814,-244,10408
-791,-1438,-226,10431
10,-1451,-299,10456
-117,-859,-235,10477
-173,-401,107,10500
-1229,-498,-2048,10522
874,-1232,-117,10547
233,55,133,10569
-669,-90,-116,10589
-386,-519,-30,10610
-572,-399,-139,10632
-1201,-153,68,10655
-1036,217,143,10677
-234,708,-155,10698
-205,434,-280,10721
-671,-190,-592,10742
-140,-473,-240,10765
-98,-319,2,10788
-808,-62,-108,10807
-1355,352,-323,10828
-736,581,-379,10852
-656,756,-335,10873
-657,510,-195,10895
-470,272,-101,10917
49,189,-13,10952
240,117,2,10966
413,-26,-16,10979
222,-146,-46,10995
-159,-40,4,11016
-191,76,-31,11034
-151,169,-54,11055
-196,247,-36,11075
-275,152,7,11096
-440,-31,-59,11115
-533,-416,-305,11136
-1132,-1247,-225,11158
-345,-1814,-323,11184
42,-970,-336,11207
-174,-465,-21,11228
-2048,-114,-1302,11250
590,-1424,70,11275
223,610,33,11295
-553,-20,-348,11315
-487,-547,24,11336
-539,-566,-61,11357
-1051,-186,25,11378
-1044,169,143,11401
-553,547,29,11422
-70,624,-174,11442
-524,-92,-513,11463
-471,-369,-349,11485
80,-367,50,11507
-460,-16,-131,11527
-1492,162,-226,11548
-972,450,-282,11571
-601,631,-358,11593
-768,683,-244,11615
-403,398,-146,11636
-146,258,-38,11659
117,119,33,11679
350,-167,56,11698
76,-169,26,11718
-196,32,62,11737
-235,161,-3,11755
-249,166,4,11774
-272,115,24,11794
-303,20,67,11813
-468,-91,-7,11832
-673,-439,-253,11852
-1018,-1313,-245,11875
-253,-1805,-357,11899
98,-1126,-266,11924
56,-776,-800,11945
-2048,-2048,2047,11966
261,-564,-357,11992
-163,200,-157,12013
-538,-253,30,12035
-430,-624,4,12056
-632,-306,-93,12076
-1141,-49,110,12097
-937,119,127,12120
-425,473,-79,12140
-172,429,-248,12161
-583,-123,-643,12183
-220,-351,-302,12206
11,-243,-51,12228
-792,-64,-129,12249
-1499,216,-230,12270
-680,474,-352,12293
-585,738,-272,12315
-624,640,-240,12337
-339,354,-111,12358
-131,241,-29,12381
134,111,5,12401
349,-173,38,12419
100,-227,21,12438
-249,-29,95,12459
-209,72,13,12478
-178,101,37,12496
-251,102,70,12517
-288,78,62,12536
-424,-48,-15,12555
-668,-339,-249,12575
-988,-1220,-299,12599
-269,-1909,-263,12622
92,-1084,-307,12647
-134,-424,11,12668
2047,-2048,-2048,12689
-293,-262,-57,12715
685,-253,-347,12736
-619,121,-258,12758
-564,-439,-108,12780
-546,-483,-114,12803
-1070,-94,7,12825
-993,171,103,12846
-501,491,-70,12866
-45,629,-137,12887
-449,-198,-452,12907
-396,-394,-292,12931
-10,-335,32,12953
-523,107,-145,12973
-1277,235,-235,12995
-770,465,-282,13018
-593,458,-257,13039
-749,470,-73,13062
-668,363,-156,13082
-273,242,-65,13104
11,201,-26,13125
309,47,56,13144
487,-163,-10,13161
-100,-40,27,13182
-234,55,2,13202
-154,66,-62,13219
-177,70,-17,13239
-190,82,15,13259
-245,69,20,13278
-445,-67,-96,13296
-643,-374,-281,13318
-1037,-1281,-185,13340
-268,-1880,-270,13365
-17,-916,-257,13389
-159,-386,89,13411
842,-1413,-2048,13431
-660,-337,226,13456
615,-722,-8,13477
-492,170,-335,13497
-657,-161,-48,13519
-378,-530,-136,13541
-1158,-138,61,13572
-1178,56,116,13586
-639,364,-59,13606
-131,831,-54,13627
-328,65,-521,13648
-586,-330,-529,13669
11,-562,85,13691
-222,-170,-24,13711
-1182,29,-222,13732
-1139,417,-297,13754
-619,544,-328,13777
-578,661,-267,13799
-570,525,-190,13820
-337,282,-79,13842
-71,188,-32,13863
214,82,20,13883
420,-157,-3,13900
7,-127,3,13921
-213,-46,15,13937
-159,55,-59,13957
-157,63,-23,13977
-247,103,-10,13997
-301,83,0,14017
-491,-52,-110,14034
-655,-391,-303,14057
-969,-1147,-176,14080
-428,-1610,-304,14103
92,-1028,-200,14128
-161,-590,1,14149
134,-898,-1516,14169
-2048,-608,1734,14192
469,-433,79,14216
-208,-51,-203,14235
-704,-139,-45,14258
-407,-526,-87,14279
-851,-227,-42,14301
-1123,35,146,14323
-695,224,74,14344
-180,663,-74,14363
-258,241,-290,14385
-535,-246,-515,14406
-119,-398,-129,14429
-61,-116,-121,14452
-658,64,-131,14474
-1288,252,-215,14494
-740,436,-311,14518
-794,599,-169,14539
-657,477,-234,14561
-330,278,-131,14583
-110,200,-15,14605
123,80,21,14625
300,-120,13,14644
19,-82,18,14663
-197,47,11,14681
-212,69,-14,14699
-236,78,22,14720
-254,60,72,14738
-294,9,84,14756
-436,-54,-13,14774
-591,-290,-194,14795
-908,-1048,-191,14818
-531,-1549,-257,14842
109,-1027,-302,14866
-134,-629,-47,14888
59,-726,-611,14911
-2048,-1898,1880,14931
854,-324,-409,14956
-304,110,-194,14979
-706,-308,-105,15000
-323,-538,-52,15023
-678,-167,-167,15045
-1018,-110,88,15068
-843,39,97,15089
-425,310,-64,15109
-127,653,-158,15129
-539,-133,-600,15151
-279,-431,-254,15173
40,-334,40,15197
-592,124,-190,15215
-1563,292,-215,15237
-789,473,-303,15260
-617,530,-293,15282
-704,574,-223,15303
-468,384,-58,15326
-162,306,-33,15346
98,231,30,15367
312,68,46,15385
221,-116,-34,15403
-147,-39,12,15423
-271,37,47,15443
-259,64,40,15462
-280,91,41,15480
-275,87,54,15499
-362,28,-62,15518
-596,-244,-220,15538
-905,-1095,-308,15560
-539,-1862,-395,15585
105,-1387,-272,15608
-75,-473,-8,15631
317,-885,-1526,15651
-2048,-776,2047,15674
304,-745,153,15697
-265,212,-294,15719
-552,-93,-60,15740
-435,-607,-95,15761
-894,-279,1,15783
-1052,54,77,15803
-689,261,28,15822
-246,630,-110,15843
-275,358,-311,15864
-507,-328,-466,15886
-65,-520,35,15909
-343,-56,-117,15929
-1193,223,-282,15950
-858,521,-282,15974
-496,508,-264,15995
-617,487,-139,16017
-685,366,-156,16038
-271,215,-51,16061
14,157,3,16081
218,57,43,16098
425,-116,4,16116
14,-56,18,16135
-159,45,11,16152
-140,92,-54,16171
-173,60,-37,16191
-208,64,1,16224
-260,46,-4,16237
-377,-28,-42,16250
-583,-204,-143,16268
-836,-844,-225,16290
-847,-1441,-231,16314
138,-1255,-273,16337
-99,-653,-153,16360
-104,-373,253,16382
2047,-2048,-2048,16404
270,-560,-625,16429
1765,-713,-509,16451
-965,267,-188,16474
-549,-314,-183,16495
-404,-419,-95,16519
-1035,-217,19,16540
-933,86,122,16562
-559,287,-64,16582
-212,668,-24,16603
-339,101,-439,16623
-441,-406,-263,16646
-6,-440,48,16668
-368,47,-154,16687
-1016,285,-267,16708
-960,613,-296,16731
-494,485,-239,16752
-614,355,-114,16775
-644,271,-182,16796
-299,199,-74,16818
-64,197,-6,16839
194,81,37,16858
372,-80,-3,16875
52,-59,9,16893
-172,49,15,16911
-210,81,-14,16929
-254,74,1,16949
-259,25,21,16966
-245,-17,51,16986
-389,-64,-40,17005
-592,-242,-183,17026
-877,-832,-206,17049
-694,-1497,-292,17072
161,-1375,-236,17095
-127,-772,-146,17119
-146,-353,216,17141
-2048,-290,2047,17163
978,-616,-642,17187
361,-298,75,17209
-728,-265,-38,17228
-319,-439,-27,17251
-498,-175,-193,17272
-856,-246,0,17295
-1273,-114,76,17315
-521,296,-126,17337
-227,884,42,17358
-431,33,-382,17379
-446,-459,-447,17399
-55,-432,12,17422
-460,172,-165,17442
-1026,222,-218,17464
-881,454,-252,17486
-617,446,-280,17509
-624,401,-202,17530
-641,387,-142,17552
-319,267,-58,17574
-59,194,-30,17595
193,66,15,17614
386,-159,-13,17632
6,-136,24,17653
-178,-28,10,17671
-178,35,-4,17690
-157,45,-20,17710
-171,115,-1,17729
-229,152,5,17748
-470,9,-62,17767
-621,-291,-238,17786
-916,-1201,-210,17809
-435,-1832,-309,17832
15,-1116,-290,17857
-65,-558,-10,17879
1921,-2048,-2048,17899
-178,-402,-871,17925
633,-9,47,17947
-271,-49,-166,17965
-593,-291,-67,17987
-669,-474,-33,18009
-1080,-114,40,18030
-906,227,110,18053
-483,573,13,18073
79,560,-130,18093
-496,-182,-389,18113
-558,-421,-357,18136
79,-314,12,18158
-240,-111,-85,18178
-807,-31,-166,18199
-1114,361,-328,18221
-700,542,-342,18244
-600,636,-256,18266
-670,540,-231,18287
-507,262,-112,18310
-141,171,-48,18331
135,101,11,18352
333,-104,17,18371
64,-159,-11,18391
-172,-67,-12,18410
-128,12,-107,18430
-95,82,-113,18452
-212,99,-67,18471
-336,29,-114,18491
-528,-186,-237,18512
-721,-725,-234,18535
-864,-1244,-169,18557
-130,-1332,-320,18582
-38,-842,-74,18606
-153,-410,39,18626
122,-791,-1077,18648
-2048,-693,1404,18670
865,-179,-25,18694
-241,-16,-122,18715
-748,-477,-70,18737
-373,-473,-19,18758
-1164,-180,64,18781
-1062,192,150,18802
-487,584,-31,18824
-21,589,21,18845
-426,-314,-279,18891
-84,-237,-31,18905
91,-103,20,18918
-190,-39,-20,18931
-381,-45,-51,18947
-681,113,-286,18967
-726,272,-287,18990
-568,388,-292,19011
-729,440,-192,19033
-667,299,-195,19055
-350,115,-91,19077
-194,79,-52,19097
-14,13,-40,19118
102,-90,-13,19136
14,-61,-45,19155
-134,33,-73,19175
-147,64,-121,19194
-122,60,-124,19215
-227,42,-90,19236
-347,25,-101,19256
-475,-139,-105,19276
-744,-551,-167,19299
-835,-1142,-182,19322
-109,-1407,-371,19346
-5,-962,-188,19371
-155,-375,-19,19391
-2048,-382,716,19412
886,-1461,-16,19436
268,111,-62,19458
-927,-196,-99,19477
-361,-589,71,19499
-521,-308,-29,19520
-1158,-195,136,19542
-1020,178,287,19564
-318,642,130,19587
11,479,-242,19607
-597,-113,-362,19627
-290,-401,-265,19650
19,-334,-22,19673
-417,-102,25,19692
-832,44,-182,19714
-913,347,-308,19734
-578,590,-367,19756
-731,674,-260,19778
-723,479,-317,19800
-376,196,-209,19821
-239,172,-173,19844
-95,80,-157,19865
10,-71,-167,19885
3,-99,-191,19905
-146,-42,-172,19923
-188,2,-194,19945
-199,102,-191,19964
-395,148,-125,19987
-647,-131,-119,20008
-908,-750,-202,20031
-870,-1365,-167,20055
-99,-1217,-374,20078
0,-978,-49,20102
-158,-588,-37,20120
436,-2048,-2048,20142
679,-1437,-421,20165
1119,626,-500,20189
-1050,9,-353,20210
-477,-577,154,20231
-204,-510,66,20253
-582,-174,-42,20274
-1046,-82,109,20295
-808,123,171,20318
-175,544,-51,20338
-291,610,-262,20359
-541,108,-566,20381
-70,-249,-289,20403
67,-463,34,20424
-443,-394,-1,20444
-1199,134,-179,20464
-586,378,-250,20487
-551,579,-272,20509
-768,516,-220,20531
-604,301,-152,20552
...

This file has been truncated, please download it to see its full contents.

data_running_2

Plain text
0,0,0,66
-311,7,15,93
-197,-38,7,107
-219,-44,4,121
-202,-28,0,136
-273,-11,-2,150
-255,10,-7,164
-262,5,2,179
-241,4,-7,193
-256,4,4,207
-273,-43,8,222
-314,-54,24,236
-252,36,-7,250
-241,-32,27,265
-176,-31,-15,279
-281,28,-10,293
-203,-1,-43,308
-246,-11,7,322
-261,-19,-6,336
-265,0,-36,351
-330,-40,23,365
-280,-9,6,404
-310,0,-8,418
-314,-134,46,433
-200,-33,-6,447
-197,76,-15,461
-229,101,-13,476
-235,49,-10,490
-246,-17,7,504
-251,-42,10,519
-252,-36,3,533
-237,-24,0,547
-254,-2,-11,565
-255,-3,-21,581
-251,-3,-29,599
-252,6,-32,617
-250,12,-30,633
-250,3,-22,651
-252,4,-34,667
-243,1,-34,685
-245,-16,-26,701
-251,-34,-18,719
-245,-19,-34,739
-241,-2,-33,757
-244,-18,-38,775
-245,-48,-30,793
-250,-58,-34,813
-238,-59,-37,831
-236,-30,-49,849
-233,-29,-40,868
-254,-65,-39,887
-233,-98,-31,906
-215,-78,-46,924
-224,-45,-45,944
-272,-43,-68,962
-225,-124,-56,980
-250,-173,-28,1000
-280,-150,-43,1021
-339,-119,-59,1042
-363,-120,-48,1062
-445,-124,-14,1084
-456,-59,-22,1104
-320,-6,-34,1124
-318,2,-30,1143
-337,38,-43,1161
-257,138,-55,1179
-235,235,-179,1199
-424,127,-186,1220
-638,9,-182,1241
-528,45,-197,1259
-698,131,-121,1280
-697,148,-143,1300
-486,72,-89,1320
-396,103,38,1340
-205,136,30,1358
-80,147,1,1377
-1,138,-11,1393
-18,129,-8,1412
-84,101,15,1429
-123,66,67,1446
-128,29,115,1464
-119,-23,90,1483
-146,-111,3,1502
-227,-247,-135,1520
-263,-648,-291,1543
-381,-1037,-243,1564
-173,-1140,-251,1587
-47,-672,-184,1610
-5,-390,-138,1631
-1826,-432,1570,1650
209,22,-806,1674
302,-9,146,1692
-1,-181,-146,1710
-707,-232,14,1729
-307,-381,-27,1750
-417,-216,-96,1770
-633,-122,-25,1790
-800,-15,-7,1812
-582,115,15,1830
-317,364,-67,1849
-219,421,-22,1869
-263,39,-228,1889
-213,-215,-203,1908
-225,-134,-94,1930
-593,84,-121,1951
-882,240,-208,1971
-659,295,-170,1991
-701,380,-187,2013
-486,297,-144,2033
-237,179,-68,2054
-81,127,-7,2074
96,83,21,2092
187,62,22,2107
127,79,-29,2123
0,121,-44,2142
-78,123,-34,2158
-114,66,-11,2177
-150,36,21,2195
-156,0,60,2213
-230,-62,28,2230
-418,-239,-106,2248
-511,-697,-262,2271
-699,-1335,-185,2292
-87,-1225,-315,2315
-83,-794,-238,2337
487,-1069,-1791,2358
-718,159,453,2380
103,496,-686,2400
83,61,39,2420
-366,-501,-189,2436
-456,-763,67,2457
-275,-229,-75,2478
-429,-64,-194,2498
-667,-182,-113,2519
-1017,-66,71,2541
-637,121,101,2561
-343,593,-109,2580
-183,580,-199,2601
-224,-17,-530,2622
-227,-346,-194,2642
-386,-228,-20,2664
-916,78,-162,2685
-904,300,-195,2705
-542,442,-203,2725
-532,438,-191,2760
-298,274,-82,2774
-187,204,-44,2787
13,123,43,2807
174,12,59,2824
232,-67,13,2840
62,16,-7,2857
-78,111,-20,2874
-143,128,-8,2892
-153,73,22,2911
-199,20,73,2928
-185,29,66,2947
-309,-37,-11,2964
-485,-251,-191,2983
-708,-883,-198,3006
-652,-1474,-287,3027
17,-1282,-282,3050
-42,-614,-137,3072
-78,-381,-78,3092
-2048,248,2047,3111
407,-314,-714,3134
542,-62,186,3154
-496,-248,-163,3173
-513,-410,18,3194
-261,-333,-140,3215
-506,-130,-199,3236
-950,-154,22,3258
-1027,35,107,3278
-462,259,58,3298
-241,674,-123,3316
-257,339,-261,3338
-354,-184,-504,3358
-130,-383,-105,3380
-401,-93,-39,3402
-1071,107,-213,3422
-878,360,-205,3443
-516,451,-236,3464
-619,534,-216,3485
-441,328,-119,3506
-159,210,-18,3526
50,127,44,3547
208,33,56,3563
210,-20,35,3579
15,22,23,3597
-105,82,12,3613
-178,135,11,3631
-189,110,9,3649
-191,40,24,3667
-233,6,45,3685
-343,-75,-26,3701
-510,-249,-141,3721
-677,-804,-263,3743
-761,-1358,-278,3765
17,-1524,-293,3787
-41,-833,-177,3809
-79,-540,-493,3829
-2048,-1211,2047,3850
406,-274,-389,3874
292,-191,77,3895
-506,-312,-52,3913
-482,-477,-51,3935
-369,-247,-188,3955
-668,-168,-115,3977
-1204,-83,85,3999
-859,168,131,4019
-428,693,-12,4038
-65,620,-262,4058
-412,-104,-543,4078
-276,-460,-198,4100
-302,-186,6,4121
-972,74,-192,4141
-1168,367,-215,4160
-669,523,-219,4182
-743,625,-269,4203
-510,441,-176,4224
-269,267,-43,4244
-43,175,27,4263
146,64,71,4282
286,-57,43,4298
135,-32,9,4316
-84,61,6,4333
-201,140,21,4348
-188,146,-4,4367
-147,57,34,4385
-151,0,62,4404
-234,-40,29,4420
-425,-144,-123,4439
-646,-697,-308,4460
-994,-1270,-293,4483
-123,-1635,-309,4505
-16,-791,-232,4528
-120,-376,23,4549
364,-1231,-2048,4569
-2048,-129,1218,4591
445,-630,560,4615
-69,-235,-259,4634
-824,-76,-79,4655
-393,-391,-127,4675
-509,-210,-168,4697
-1131,-203,70,4718
-935,107,126,4740
-392,416,-103,4759
-71,715,-110,4780
-453,-110,-418,4800
-345,-438,-214,4822
-209,-264,10,4843
-859,220,-242,4862
-1251,490,-307,4884
-610,530,-175,4905
-666,559,-242,4926
-463,374,-156,4947
-227,273,-30,4968
26,217,18,4987
123,114,40,5005
195,-15,37,5022
44,-44,16,5040
-81,7,9,5056
-122,53,1,5071
-140,87,4,5088
-187,111,29,5104
-250,119,62,5123
-322,43,24,5142
-530,-116,-87,5159
-705,-522,-352,5180
-969,-1410,-194,5202
-33,-709,-147,5254
-131,-460,95,5267
-78,-287,228,5280
2047,-2048,-2048,5294
-2048,-1393,1651,5309
439,-532,271,5334
187,-214,-45,5353
-755,-107,-77,5372
-371,-431,-58,5393
-420,-267,-194,5414
-950,-139,51,5436
-1067,17,126,5455
-497,208,22,5476
-344,608,-45,5494
-338,358,-219,5514
-352,-222,-525,5535
-197,-403,-5,5557
-399,-35,-62,5576
-1024,247,-244,5597
-951,471,-227,5618
-486,509,-252,5639
-652,575,-251,5659
-450,398,-145,5681
-225,304,-55,5701
-34,216,2,5721
107,87,14,5738
199,-111,13,5754
30,-76,7,5773
-214,61,44,5788
-272,158,16,5807
-237,114,23,5825
-249,28,86,5843
-282,15,80,5861
-477,-59,-14,5879
-747,-358,-276,5899
-982,-1216,-346,5920
-370,-1747,-355,5944
168,-1111,-344,5966
-172,-600,-97,5988
96,-898,-1524,6009
-2048,-780,1264,6030
563,-530,95,6052
260,-201,63,6072
-660,-181,-84,6090
-366,-421,-73,6111
-428,-241,-193,6132
-830,-199,-3,6154
-1109,-39,146,6173
-612,163,99,6195
-256,585,-102,6213
-238,427,-266,6234
-438,-113,-470,6254
-230,-284,-221,6277
-227,-176,13,6298
-945,104,-194,6318
-1091,374,-231,6339
-537,479,-243,6361
-630,645,-186,6381
-545,431,-169,6403
-266,250,-58,6423
-80,181,17,6443
109,60,34,6460
211,-120,48,6477
62,-91,24,6496
-165,46,25,6512
-187,102,-12,6531
-212,128,-26,6550
-214,63,27,6569
-282,27,64,6587
-445,-36,0,6605
-668,-234,-197,6623
-757,-862,-318,6644
-720,-1572,-344,6667
151,-1415,-348,6689
-5,-781,-185,6711
-186,-344,100,6731
-2048,-611,1711,6752
806,-899,-429,6774
263,61,10,6796
-646,-285,-253,6812
-461,-524,5,6834
-308,-329,-124,6852
-616,-92,-176,6875
-1065,-106,151,6895
-849,41,155,6917
-358,328,-35,6936
-142,573,-151,6956
-422,56,-440,6976
-347,-270,-393,6996
-156,-262,-6,7018
-629,55,-96,7037
-1233,138,-179,7056
-915,467,-264,7078
-615,553,-190,7099
-607,529,-259,7119
-335,314,-126,7141
-125,239,-18,7161
88,143,45,7181
217,-12,63,7198
173,-119,13,7216
-62,-2,18,7234
-161,78,27,7250
-212,150,17,7269
-199,121,44,7287
-188,54,58,7306
-296,4,25,7323
-483,-116,-101,7341
-675,-470,-291,7362
-1050,-1210,-175,7384
-297,-1565,-393,7408
38,-1072,-124,7431
-248,-569,-15,7451
-661,-998,-1855,7473
89,-416,-253,7495
665,319,-235,7515
-537,-342,-179,7535
-493,-662,175,7557
-288,-371,-99,7577
-473,-66,-264,7599
-1135,-193,124,7632
-1112,-38,155,7646
-615,110,99,7662
-360,699,-84,7681
-223,486,-348,7700
-302,-103,-538,7720
-225,-323,-113,7743
-404,-152,-6,7764
-1165,16,-159,7784
-1020,348,-267,7805
-562,481,-262,7827
-657,637,-282,7847
-441,393,-116,7869
-191,262,-56,7889
51,158,13,7909
238,24,43,7926
331,-111,11,7943
29,-52,3,7961
-139,8,7,7976
-148,29,-25,7993
-111,3,-34,8011
-49,-5,11,8029
-83,56,41,8045
-158,92,8,8062
-407,45,-85,8079
-572,-208,-265,8097
-1014,-1078,-260,8119
-502,-1721,-334,8143
130,-1046,-302,8166
-125,-594,-140,8187
1861,-2048,-2048,8210
-219,-65,-24,8233
916,-39,-283,8253
-483,-250,-102,8273
-644,-559,54,8295
-259,-422,-41,8314
-533,-110,-248,8336
-962,-115,58,8357
-1032,3,115,8377
-491,178,17,8396
-240,590,-61,8415
-311,339,-252,8434
-414,-133,-519,8455
-202,-272,-187,8477
-356,-96,-24,8499
-1060,32,-158,8518
-1061,400,-270,8540
-556,491,-220,8561
-663,673,-287,8582
-411,428,-151,8603
-218,272,-43,8624
25,145,43,8643
224,-68,106,8660
224,-204,49,8679
-69,-9,65,8697
-196,91,59,8714
-193,131,16,8732
-221,128,34,8751
-202,64,34,8769
-274,14,27,8786
-431,-87,-75,8805
-667,-375,-249,8824
-958,-1028,-313,8846
-535,-1651,-316,8869
185,-1152,-294,8892
-215,-706,-114,8913
-946,-1256,-1882,8936
80,-473,-228,8960
758,432,-285,8979
-516,-286,-206,8999
-616,-668,138,9021
-242,-365,-135,9041
-484,-30,-252,9064
-847,-157,-5,9084
-1118,-89,148,9104
-521,68,77,9125
-276,563,-134,9143
-263,423,-223,9163
-398,-46,-466,9184
-244,-279,-179,9205
-342,-84,-53,9227
-1016,63,-153,9246
-1166,362,-257,9268
-709,482,-186,9289
-724,581,-289,9310
-404,405,-146,9331
-186,280,-43,9352
42,166,36,9371
250,-13,80,9388
282,-135,22,9406
-13,-2,27,9424
-147,66,26,9441
-188,110,-1,9459
-190,81,30,9478
-136,42,52,9495
-183,23,79,9512
-298,-42,15,9531
-513,-211,-201,9549
-737,-804,-359,9571
-788,-1597,-298,9593
127,-1402,-289,9616
-84,-715,-204,9637
-137,-340,143,9659
-2048,708,2047,9679
1082,-877,-639,9701
391,6,-115,9723
-686,-355,-197,9741
-445,-487,37,9762
-250,-270,-131,9782
-526,-109,-188,9804
-1078,-197,126,9826
-991,5,118,9847
-370,199,-65,9866
-323,632,-129,9885
-280,171,-391,9906
-317,-138,-391,9927
-271,-245,-49,9949
-784,15,-123,9969
-1300,203,-179,9990
-763,433,-249,10011
-673,564,-121,10033
-594,511,-211,10054
-295,285,-74,10077
-64,189,2,10097
191,19,54,10115
-959,-1022,-268,10312
-857,-1529,-310,10328
-124,-1774,-251,10341
104,-1301,-217,10354
-33,-736,-222,10368
-156,-487,-63,10381
-2048,-62,1666,10400
570,-735,-182,10423
298,438,120,10445
-699,-379,-312,10465
-445,-560,58,10487
-279,-247,-187,10508
-561,-73,-238,10531
-1021,-134,87,10553
-786,8,138,10574
-442,225,-87,10594
-279,626,-159,10614
-406,21,-431,10636
-297,-233,-292,10657
-284,-243,1,10680
-866,78,-155,10699
-1243,381,-262,10721
-647,462,-238,10743
-749,545,-89,10765
-569,414,-167,10786
-224,249,-52,10808
4,202,15,10828
219,98,39,10846
389,-31,41,10863
122,-40,30,10882
-143,16,49,10900
-154,51,15,10919
-169,85,14,10938
-131,49,63,10956
-154,38,87,10975
-228,26,30,10994
-440,-75,-138,11013
-639,-496,-325,11034
-1000,-1471,-286,11058
30,-1542,-295,11082
-43,-725,-235,11104
-128,-347,103,11126
-2048,-562,2047,11148
1038,-779,-1,11171
25,-41,147,11193
-820,-271,-129,11211
-269,-464,-32,11234
-455,-184,-219,11256
-755,-174,-83,11279
-1139,-45,108,11300
-446,166,-19,11323
-291,608,-66,11343
-308,214,-382,11364
-378,-187,-440,11386
-209,-324,17,11409
-551,-11,-122,11429
-1340,257,-247,11452
-689,537,-283,11474
-519,541,-221,11496
-652,495,-199,11518
-417,310,-72,11540
-179,228,-43,11560
140,78,-3,11582
393,-181,20,11599
153,-174,7,11619
-177,0,46,11637
-195,52,-7,11656
-138,108,-28,11674
-140,125,-5,11695
-216,79,26,11715
-438,3,-48,11734
-618,-226,-218,11752
-908,-1000,-303,11774
-656,-1705,-345,11799
132,-1195,-252,11823
-168,-605,-63,11846
381,-1964,-2048,11868
583,-716,-251,11891
475,286,-48,11914
-681,-364,-253,11933
-453,-493,30,11956
-339,-244,-153,11977
-538,-98,-217,12000
-1004,-132,64,12021
-727,21,122,12044
-337,241,-78,12063
-279,600,-301,12084
-424,-49,-499,12105
-217,-382,-91,12128
-241,-254,12,12149
-930,161,-234,12170
-1120,465,-307,12192
-540,468,-241,12215
-707,517,-202,12236
-482,279,-154,12259
-287,221,-58,12280
-60,196,32,12301
201,68,56,12320
380,-121,51,12338
95,-32,30,12357
-106,64,42,12376
-186,137,4,12394
-198,139,-1,12412
-138,82,15,12432
-192,32,49,12451
-296,-25,33,12470
-522,-127,-132,12489
-794,-674,-313,12513
-809,-1515,-277,12535
43,-1368,-257,12559
-79,-636,-182,12581
-128,-493,-71,12603
-2048,-1166,1536,12624
828,-490,-66,12650
-21,-5,139,12670
-672,-404,-68,12689
-302,-531,-36,12711
-476,-178,-231,12733
-734,-137,-60,12755
-1159,-81,142,12778
-541,92,70,12800
-367,556,27,12818
-254,360,-257,12837
-419,-174,-468,12860
-177,-345,20,12890
-271,-183,-12,12903
-1079,86,-199,12925
-1084,368,-270,12947
-584,480,-252,12969
-682,600,-273,12992
-521,351,-132,13014
-212,231,-32,13035
43,162,50,13057
290,21,77,13074
305,-86,23,13091
-66,21,23,13111
-155,38,-7,13128
-189,58,-11,13147
-185,28,35,13166
-159,22,59,13186
-229,26,63,13204
-393,-24,-53,13222
-606,-240,-276,13244
-986,-1129,-328,13266
-432,-1772,-385,13290
75,-991,-260,13315
-208,-569,-87,13335
1224,-1584,-2048,13357
-62,-156,-111,13382
839,157,-204,13404
-743,-474,-178,13424
-425,-601,124,13448
-271,-227,-164,13469
-528,-122,-209,13492
-1098,-215,126,13515
-735,-6,125,13538
-370,459,-52,13557
-189,552,-275,13579
-443,-1,-384,13600
-204,-263,-230,13621
-187,-286,40,13644
-816,28,-165,13665
-1175,329,-270,13685
-649,552,-299,13709
-518,545,-228,13730
-617,478,-257,13752
-376,241,-78,13774
-103,155,-21,13795
200,13,48,13815
369,-114,21,13833
8,4,18,13853
-178,45,29,13868
-191,49,0,13886
-184,73,-7,13903
-187,85,8,13923
-231,80,36,13940
-320,41,-29,13959
-553,-183,-171,13979
-723,-819,-325,14002
-697,-1667,-391,14024
127,-1480,-275,14049
-106,-583,-235,14071
-2048,-1013,1251,14094
675,-404,-837,14119
71,322,304,14141
-562,-377,-156,14159
-430,-660,-7,14183
-419,-267,-204,14203
-728,-93,-98,14226
-1106,-84,121,14247
-683,61,112,14269
-309,529,-75,14288
-162,432,-267,14310
-487,-190,-462,14331
-223,-359,-191,14354
-184,-204,-16,14377
-1027,70,-244,14399
-1220,378,-290,14420
-606,493,-242,14444
-724,586,-243,14466
-518,327,-109,14487
-239,206,-22,14510
30,157,51,14530
264,46,98,14547
359,-73,56,14565
11,28,42,14584
-140,77,27,14601
-171,111,-1,14619
-193,102,-7,14640
-135,42,1,14659
-167,-15,45,14676
-269,-40,-2,14696
-458,-162,-177,14716
-758,-762,-318,14739
-819,-1502,-316,14761
59,-1396,-323,14786
-44,-682,-197,14808
-113,-287,205,14829
-2048,-365,2047,14852
1038,-965,101,14875
140,-130,106,14897
-864,-256,-107,14918
-256,-413,-46,14941
-543,-181,-184,14962
-1039,-182,78,14986
-931,3,177,15007
-394,226,9,15026
-237,624,-146,15045
-374,133,-417,15067
-374,-364,-295,15088
-163,-413,46,15112
-587,36,-183,15132
-1368,314,-288,15153
-759,637,-278,15176
-661,556,-119,15198
-660,389,-272,15219
-359,239,-124,15242
-145,250,-13,15263
58,197,20,15284
206,-1,54,15301
209,-117,8,15320
-15,-18,13,15338
-158,64,-4,15356
-223,137,-46,15376
-210,144,-27,15396
-210,45,22,15417
-305,-32,9,15435
-492,-133,-99,15455
-651,-474,-296,15476
-884,-1545,-280,15506
-21,-1473,-368,15523
-41,-746,-159,15546
-82,-596,-271,15567
-2048,-1269,1899,15590
670,-476,-120,15614
-197,-58,129,15637
-670,-380,-13,15657
-278,-515,3,15679
-363,-180,-179,15698
-584,-112,-142,15722
-1032,-112,94,15745
-601,24,66,15766
-367,229,-22,15785
-176,574,-200,15806
-434,-67,-428,15827
-209,-285,-221,15850
-290,-167,-17,15873
-914,188,-140,15894
-1037,381,-252,15917
-530,425,-236,15939
-622,467,-137,15961
-490,264,-125,15983
-262,176,-46,16005
3,136,-1,16025
200,61,26,16043
344,-24,30,16060
115,-5,11,16078
-131,13,29,16096
-167,-39,11,16115
-182,-8,1,16135
-133,22,0,16152
-140,45,21,16171
-174,39,14,16189
-409,-7,-86,16207
-605,-196,-196,16227
-875,-937,-273,16250
-466,-1621,-272,16273
57,-839,-271,16296
-163,-473,-92,16318
1120,-1525,-2048,16339
-20,-156,-4,16364
918,51,-433,16385
-145,-70,103,16404
-717,-335,-66,16424
-191,-420,-66,16447
-368,-101,-155,16468
-468,-171,-187,16491
-907,-211,39,16515
-823,-8,59,16535
-378,224,-45,16553
-282,571,-92,16575
-240,142,-342,16595
-249,-337,-275,16617
-180,-363,35,16641
-587,157,-186,16661
-1091,227,-248,16683
-738,412,-256,16706
-554,371,-241,16728
-683,365,-220,16749
-409,209,-78,16772
-139,154,-27,16792
126,84,37,16813
328,-12,47,16830
245,-24,17,16849
-30,22,42,16868
-126,43,26,16885
-132,59,8,16905
-129,46,3,16922
-142,35,22,16940
-185,30,15,16958
-260,-37,-31,16977
-408,-205,-144,16998
-634,-748,-225,17020
-639,-1325,-171,17044
-14,-1127,-287,17068
-114,-578,-146,17090
-2048,-244,1459,17114
777,-1105,-629,17137
110,385,355,17160
-683,-293,-319,17180
-366,-493,98,17203
-262,-237,-129,17223
-387,-81,-194,17247
-601,-222,-88,17268
-931,-162,66,17290
-585,42,54,17311
-296,273,-112,17330
-175,525,-193,17351
-364,-69,-311,17374
-210,-316,-221,17395
-186,-231,-21,17418
-689,166,-200,17440
-969,311,-208,17462
-475,391,-195,17483
-505,414,-177,17506
-492,252,-182,17527
-254,125,-78,17549
-105,111,-3,17570
51,36,36,17590
139,-52,63,17606
126,-62,41,17625
12,66,1,17644
-35,36,25,17659
-141,61,43,17677
-253,97,51,17695
-311,104,44,17715
-320,64,52,17734
-402,20,19,17753
-564,-93,-91,17772
-775,-417,-207,17793
-684,-1372,-141,17815
-74,-1233,-274,17840
30,-629,-158,17862
-53,-280,137,17883
-2048,1256,1813,17904
431,-968,-207,17928
586,-245,-247,17949
-607,88,-185,17972
-382,-251,-44,17992
-298,-311,-69,18014
-360,-183,-119,18036
-450,-114,-87,18059
-642,-104,26,18080
-521,-51,3,18102
-303,64,-28,18120
-275,-100,-244,18170
-361,-269,-132,18185
-292,-306,-86,18198
-272,-143,-142,18211
-515,72,-149,18230
-669,190,-126,18251
-543,244,-138,18273
-603,364,-100,18294
-613,321,-197,18317
-297,174,-100,18338
-114,62,-3,18360
17,-40,32,18379
115,-100,48,18397
97,-45,0,18416
61,35,-28,18434
26,38,-9,18451
-77,76,4,18467
-174,105,12,18484
-198,96,22,18504
-235,40,28,18523
-322,-20,-14,18541
-466,-160,-90,18562
-529,-512,-161,18584
-609,-1103,-4,18607
-273,-906,-294,18628
60,-474,-278,18652
-29,-347,18,18672
1038,-1015,-2048,18692
-724,267,-168,18717
559,-363,256,18739
-146,-111,52,18759
-584,-168,-101,18781
-193,-241,-18,18803
-298,-191,-111,18825
-308,-129,-104,18848
-369,-160,-95,18871
-504,-179,-25,18892
-629,-67,45,18915
-358,73,11,18934
-253,211,-16,18953
-230,242,-89,18974
-185,109,-193,18995
-192,-167,-80,19016
-288,-132,-34,19039
-418,110,-108,19060
-479,147,-142,19082
-587,204,-95,19104
-738,215,-154,19125
-338,120,-97,19146
-201,65,-24,19168
-179,57,23,19187
-93,40,27,19206
-18,28,21,19223
38,45,29,19241
-29,68,36,19258
-121,64,47,19275
-175,31,56,19294
-204,24,50,19313
-249,-3,31,19332
-321,-83,-27,19350
-435,-260,-113,19372
-493,-652,-214,19394
-409,-1074,-112,19417
-120,-728,-322,19441
-112,-428,-301,19464
35,-788,-909,19486
-1254,-424,1135,19508
2,499,-629,19531
75,197,-12,19550
-317,-319,-61,19569
-338,-703,107,19591
-274,-117,-98,19612
-295,4,-148,19635
-325,-118,-88,19654
-385,-212,-117,19676
-547,-179,-23,19699
-715,-52,93,19721
-487,64,124,19740
-290,243,24,19760
-281,524,-55,19780
-137,255,-227,19801
-174,-194,-234,19822
-207,-241,-84,19846
-510,-64,-65,19867
-748,122,-90,19888
-704,247,-116,19909
-693,255,-202,19931
-377,165,-168,19952
-242,125,-88,19975
-77,103,-27,19995
46,85,-14,20015
98,78,-13,20033
24,103,-31,20050
-62,72,-34,20069
-89,22,-33,20087
-65,13,-42,20107
-83,12,-32,20125
-171,0,-58,20144
-309,-82,-123,20163
-347,-297,-247,20185
-512,-934,-199,20207
-391,-1159,-305,20231
48,-658,-345,20254
-46,-409,-82,20275
-1158,-976,-805,20296
90,-294,-617,20320
428,227,-1,20340
-362,-233,-37,20359
-634,-618,75,20381
-159,-359,-32,20402
-387,-39,-198,20423
-385,-139,-115,20446
...

This file has been truncated, please download it to see its full contents.

data_running_3

Plain text
0,0,0,66
-269,10,0,93
-252,19,-3,107
-232,12,4,121
-230,0,5,136
-272,-20,12,150
-264,-28,9,163
-235,-18,5,178
-233,5,4,192
-263,15,-1,206
-258,4,0,221
-248,-7,4,235
-246,3,0,249
-228,18,-8,264
-258,0,6,277
-261,-17,2,291
-244,-25,8,306
-246,-15,7,320
-255,-12,1,334
-255,1,1,349
-246,0,0,363
-249,-3,2,377
-283,-45,29,391
-224,-55,6,405
-254,56,-11,419
-253,80,-14,434
-238,20,-2,448
-252,-38,8,462
-257,-63,16,477
-249,-62,19,491
-248,-18,4,508
-248,14,0,525
-258,17,-5,540
-253,6,-5,558
-251,-7,2,574
-266,-2,-4,588
-248,-8,1,605
-248,0,0,644
-234,-9,0,657
-93,-153,-11,670
-295,-48,37,683
-251,-27,-6,696
-292,28,5,709
-240,1,-10,722
-237,-24,2,737
-273,14,-2,754
-265,43,-4,771
-254,47,-13,787
-262,35,-12,804
-290,52,-22,823
-229,19,-7,840
-238,-20,-10,857
-271,-15,-3,875
-252,-1,-6,893
-248,-49,10,910
-240,-24,-3,927
-251,-5,-5,945
-264,3,-4,962
-235,7,-8,977
-238,2,-23,993
-236,9,-25,1009
-229,-4,-21,1028
-261,7,-9,1046
-288,19,-5,1062
-231,14,-21,1080
-270,-12,-22,1099
-266,-46,6,1119
-257,-44,6,1136
-263,-38,18,1155
-256,6,-1,1173
-260,-12,-14,1189
-243,11,-24,1209
-250,51,-20,1228
-232,50,-18,1247
-248,4,-1,1265
-255,-21,5,1282
-252,-27,7,1300
-241,-15,-1,1317
-244,-8,4,1336
-250,-12,5,1353
-248,-17,-4,1371
-252,-17,-5,1389
-252,-5,-11,1408
-253,-1,-24,1427
-254,-3,-28,1445
-249,-4,-25,1464
-246,1,-23,1482
-255,9,-32,1501
-242,-10,-21,1518
-234,-59,4,1538
-239,-52,-9,1556
-242,10,-36,1574
-253,35,-57,1593
-242,-4,-46,1611
-241,-39,-46,1631
-233,-49,-45,1650
-236,-53,-25,1670
-247,-54,-43,1690
-237,-69,-38,1710
-239,-80,-33,1729
-223,-76,-50,1748
-222,-52,-54,1769
-257,-57,-60,1788
-226,-103,-48,1808
-227,-130,-49,1829
-228,-130,-63,1850
-260,-150,-57,1870
-312,-173,-56,1892
-368,-159,-40,1912
-369,-119,-48,1933
-341,-91,-60,1954
-332,-96,-71,1974
-340,-64,-52,1993
-301,-45,-66,2013
-261,16,-111,2033
-266,99,-165,2053
-342,86,-165,2072
-593,32,-158,2093
-817,27,-196,2112
-476,-23,-208,2131
-619,-34,-66,2153
-574,-27,-87,2172
-346,57,17,2192
-122,171,45,2209
25,253,48,2229
88,236,62,2245
0,197,55,2262
-132,158,60,2277
-255,135,94,2296
-316,94,134,2315
-336,12,141,2333
-309,-80,140,2353
-338,-199,45,2372
-348,-373,-84,2392
-409,-730,-61,2412
-609,-1024,-4,2434
-265,-991,-220,2454
-102,-669,-186,2476
-65,-455,-57,2498
259,-780,-1974,2518
-2048,-605,1983,2539
568,-134,-664,2563
387,-37,-55,2583
-457,-134,-45,2601
-464,-420,2,2623
-226,-398,-76,2641
-363,-139,-177,2662
-539,-147,-166,2684
-795,-109,10,2706
-655,47,13,2725
-307,197,-58,2743
-235,347,-66,2763
-208,288,-183,2783
-287,-9,-289,2803
-193,-219,-187,2824
-372,-88,-124,2845
-789,164,-178,2866
-778,368,-211,2887
-712,396,-189,2908
-430,300,-203,2928
-293,184,-89,2950
-36,23,63,2979
68,-40,83,2992
123,-68,63,3005
75,-21,39,3020
-44,91,27,3037
-154,176,33,3053
-240,141,35,3072
-285,61,59,3091
-326,-43,75,3108
-385,-170,68,3127
-480,-261,42,3146
-451,-375,-25,3167
-557,-611,-52,3187
-489,-877,-94,3208
-118,-859,-224,3229
-112,-847,-96,3251
-151,-594,-73,3271
667,-1072,-2048,3293
-1809,46,752,3315
452,-136,-259,3335
313,-124,-54,3356
-530,-242,-36,3376
-409,-474,2,3396
-193,-285,-121,3416
-377,-106,-154,3437
-587,-202,-128,3459
-849,-103,20,3481
-647,79,27,3501
-327,250,-81,3518
-243,389,-12,3537
-214,189,-213,3558
-305,-192,-329,3578
-151,-343,-109,3600
-228,-201,-10,3622
-567,61,-206,3643
-898,340,-279,3662
-654,487,-195,3684
-786,484,-256,3704
-370,244,-169,3725
-226,99,-20,3745
-135,15,47,3765
37,-98,75,3782
133,-96,85,3799
107,32,34,3817
-17,137,22,3833
-113,177,20,3851
-211,130,33,3869
-292,64,58,3889
-333,16,59,3906
-352,-52,69,3923
-409,-178,7,3942
-479,-352,-61,3961
-626,-671,-45,3982
-657,-1093,-10,4002
17,-863,-248,4025
-33,-772,-61,4044
-129,-602,56,4064
902,-1246,-2048,4084
-1914,-217,705,4107
395,-282,-3,4128
386,41,-68,4148
-464,-47,-117,4165
-506,-417,-28,4186
-294,-410,-92,4206
-411,-122,-195,4228
-680,-118,-74,4249
-787,-43,23,4270
-506,85,23,4289
-250,229,-48,4306
-283,447,-14,4326
-287,173,-294,4346
-304,-264,-340,4367
-64,-366,9,4388
-323,-69,-82,4406
-757,181,-236,4426
-957,374,-247,4447
-540,435,-233,4467
-678,458,-256,4489
-356,256,-120,4509
-170,154,-7,4530
-26,69,48,4549
116,-54,77,4566
177,-123,84,4583
47,-5,67,4601
-100,124,66,4618
-213,186,77,4636
-261,122,72,4655
-311,18,64,4673
-334,-62,70,4691
-438,-169,45,4710
-568,-373,-33,4729
-648,-768,-62,4751
-624,-1135,-99,4771
-94,-959,-307,4793
-32,-797,-118,4814
-141,-573,55,4835
49,-607,-1282,4854
-2048,-953,2047,4875
689,-377,-447,4898
460,-89,-75,4919
-489,-90,-73,4937
-551,-391,2,4958
-269,-438,-67,4976
-414,-152,-174,4997
-740,-101,-50,5019
-822,22,28,5040
-545,142,18,5057
-228,330,-80,5075
-207,520,-104,5096
-322,114,-344,5116
-236,-448,-342,5137
-40,-448,-41,5159
-291,-9,-65,5179
-666,157,-200,5197
-1048,381,-195,5219
-529,403,-242,5240
-715,460,-248,5261
-520,284,-150,5282
-225,154,-23,5303
-50,98,38,5322
101,-12,65,5339
199,-119,59,5357
86,-55,33,5376
-57,76,5,5392
-103,123,2,5407
-140,97,2,5426
-278,51,9,5458
-303,12,30,5471
-341,-18,11,5484
-438,-96,-21,5497
-579,-286,-113,5515
-625,-698,-164,5536
-679,-1290,-75,5559
-2,-1005,-299,5580
-13,-736,-48,5601
-139,-516,172,5621
306,-864,-1543,5642
-285,-320,-479,5663
382,81,140,5686
23,47,-138,5703
-511,-311,-36,5721
-489,-661,47,5741
-294,-267,-129,5762
-486,-97,-154,5783
-892,-102,2,5804
-787,17,25,5823
-508,193,-19,5840
-201,446,-138,5860
-198,459,-198,5881
-403,-144,-441,5902
-128,-493,-273,5923
-123,-361,81,5946
-556,36,-128,5965
-1154,340,-220,5985
-644,474,-191,6006
-602,495,-267,6028
-462,305,-199,6048
-285,159,-44,6069
-143,113,40,6089
25,11,82,6108
129,-77,76,6123
135,-87,52,6140
3,60,31,6159
-104,159,34,6173
-169,157,29,6192
-235,112,45,6211
-230,10,63,6230
-224,-63,93,6247
-327,-163,12,6265
-448,-321,-121,6286
-622,-874,-141,6307
-585,-1365,-75,6329
3,-987,-215,6351
-11,-611,-81,6370
-32,-371,202,6389
1813,-1568,-2048,6410
-2048,-66,667,6433
701,-344,148,6454
244,93,-177,6473
-620,-96,-92,6493
-568,-600,-8,6512
-271,-479,-56,6532
-650,-99,-94,6553
-945,1,30,6573
-773,126,23,6589
-397,231,-32,6607
-193,482,-120,6628
-283,318,-278,6648
-397,-255,-359,6669
-58,-420,-188,6691
-301,-194,-6,6712
-811,71,-191,6731
-1103,438,-251,6752
-405,586,-284,6773
-468,593,-242,6794
-482,315,-164,6815
-246,115,-59,6836
-31,27,51,6855
141,-65,59,6872
196,-149,43,6890
5,-58,28,6908
-85,48,7,6924
-107,96,-6,6939
-159,121,0,6958
-232,102,15,6975
-279,45,50,6993
-324,-49,-5,7012
-462,-250,-116,7030
-656,-694,-137,7052
-647,-1355,-52,7073
-150,-1132,-287,7096
-61,-757,-34,7118
-125,-380,222,7138
433,-853,-1795,7159
-1119,-169,207,7181
278,25,259,7202
43,-117,-87,7221
-550,-326,-14,7239
-463,-549,31,7260
-295,-227,-159,7280
-587,-139,-154,7302
-920,-107,52,7323
-757,61,79,7344
-351,240,-72,7361
-214,520,-121,7380
-340,283,-278,7401
-354,-227,-442,7422
-47,-455,-44,7444
-416,8,-121,7463
-941,176,-233,7483
-990,413,-204,7503
-427,418,-231,7524
-515,486,-201,7545
-525,307,-142,7566
-208,179,-55,7586
0,126,29,7606
192,41,34,7622
285,-106,17,7639
42,-96,15,7657
-90,1,0,7674
-101,58,-2,7689
-132,57,21,7706
-204,77,45,7724
-223,83,36,7742
-238,53,21,7759
-370,-38,-54,7777
-625,-270,-147,7796
-767,-879,-243,7819
-543,-1569,-191,7840
56,-1021,-265,7863
-92,-582,-35,7884
-2048,-1940,2047,7919
-411,-406,-307,7932
26,16,-76,7950
51,68,-185,7966
-329,-177,-63,7984
-524,-570,-2,8004
-315,-442,-57,8025
-527,-168,-162,8045
-868,-116,-10,8067
-840,27,81,8088
-490,181,10,8105
-194,505,-131,8124
-242,460,-309,8145
-379,-154,-486,8166
-65,-431,-141,8187
-152,-227,8,8209
-657,40,-185,8227
-1365,314,-183,8247
-524,400,-293,8268
-632,520,-289,8290
-494,387,-176,8310
-213,237,-62,8331
-23,166,12,8351
151,41,25,8369
226,-111,29,8385
73,-132,35,8403
-114,1,18,8422
-140,60,9,8438
-178,58,17,8455
-228,41,23,8473
-250,-2,81,8491
-274,-24,63,8508
-447,-111,-1,8526
-601,-366,-121,8547
-829,-1038,-118,8568
-382,-1384,-272,8591
117,-876,-251,8614
-119,-621,-27,8635
-45,-291,99,8655
-2048,891,2047,8675
300,-697,-670,8696
579,1,-209,8717
-356,140,-141,8734
-604,-261,-81,8756
-319,-533,-80,8776
-437,-241,-168,8797
-810,-50,-25,8819
-754,96,27,8839
-516,195,6,8856
-274,384,-74,8875
-235,464,-181,8894
-328,3,-375,8914
-224,-256,-334,8933
-97,-320,6,8955
-376,-25,-73,8973
-934,147,-200,8992
-887,338,-211,9014
-634,415,-148,9034
-600,421,-259,9055
-353,272,-98,9076
-165,194,-11,9096
25,95,24,9115
129,-15,50,9131
137,-128,56,9149
-23,-51,59,9167
-138,91,28,9185
-170,111,10,9202
-226,108,19,9222
-258,65,46,9240
-273,11,56,9257
-384,-93,-27,9276
-586,-315,-134,9295
-699,-996,-156,9317
-564,-1370,-157,9339
142,-953,-295,9362
-126,-667,-27,9382
-82,-491,-65,9403
-2048,-1461,2047,9423
932,-604,-810,9447
627,195,-55,9467
-456,-87,-174,9487
-641,-521,2,9507
-286,-530,-4,9526
-431,-150,-174,9546
-779,-96,-52,9568
-815,-17,18,9587
-594,90,37,9607
-313,291,-90,9624
-211,564,-119,9644
-400,68,-449,9664
-251,-373,-378,9684
13,-448,21,9706
-341,-50,-40,9723
-950,129,-209,9744
-1057,406,-218,9764
-440,428,-259,9786
-697,406,-258,9807
-454,257,-137,9828
-209,178,-60,9848
-58,139,16,9868
153,13,44,9886
259,-122,23,9903
84,-101,28,9921
-89,40,12,9939
-100,66,3,9956
-156,79,10,9972
-201,87,16,9990
-196,36,15,10008
-213,-15,29,10027
-380,-95,-65,10046
-566,-334,-168,10066
-722,-1102,-93,10090
-390,-1251,-176,10113
68,-749,-223,10137
-95,-549,19,10158
1758,-2048,-2048,10177
-285,-575,-158,10202
462,357,-124,10225
-327,119,-169,10246
-644,-487,-6,10267
-227,-702,66,10289
-356,-201,-205,10309
-639,-113,-108,10332
-888,-130,20,10355
-372,294,-59,10393
-171,539,-123,10406
-152,453,-220,10420
-396,-52,-426,10440
-250,-330,-371,10462
-1,-351,16,10485
-484,2,-86,10504
-1239,229,-193,10522
-741,394,-220,10546
-587,444,-190,10567
-572,336,-235,10589
-263,198,-78,10611
-82,156,12,10632
127,53,50,10650
221,-78,47,10668
50,-76,51,10687
-68,22,41,10704
-118,68,26,10722
-201,78,49,10741
-246,64,71,10760
-265,37,95,10778
-310,-6,79,10797
-437,-86,-35,10816
-620,-308,-199,10836
-801,-1053,-175,10859
-323,-1391,-330,10884
31,-890,-216,10907
-180,-539,-56,10928
18,-428,-589,10950
-2048,-1714,2047,10971
642,-553,80,10995
282,-8,-90,11016
-535,-50,-111,11034
-474,-474,23,11056
-368,-383,-102,11077
-554,-124,-123,11100
-857,-27,24,11122
-726,52,38,11143
-309,254,-63,11161
-182,507,-104,11182
-360,94,-310,11204
-358,-300,-383,11225
2,-458,37,11247
-270,-87,-90,11265
-813,169,-271,11286
-1023,488,-246,11308
-494,414,-198,11330
-692,393,-270,11353
-391,223,-120,11374
-203,177,-20,11396
-23,111,29,11417
143,-32,53,11436
179,-126,55,11454
-29,49,20,11474
-74,100,14,11492
-193,96,29,11510
-272,73,46,11529
-268,31,55,11548
-281,-18,55,11567
-397,-119,-18,11586
-608,-291,-154,11609
-742,-995,-175,11631
-445,-1321,-283,11654
118,-954,-283,11678
-129,-604,-66,11700
1065,-1768,-2048,11721
9,-559,-477,11747
213,380,-82,11766
-124,68,-185,11786
-543,-417,-11,11807
-299,-583,42,11829
-380,-230,-196,11849
-664,-130,-100,11873
-890,-58,55,11895
-636,104,70,11915
-305,357,-47,11935
-153,515,-188,11956
-398,-50,-446,11977
-189,-433,-307,11999
40,-475,66,12022
-410,-31,-103,12041
-1032,201,-238,12062
-878,492,-237,12086
-593,561,-221,12107
-666,394,-259,12129
-319,182,-122,12151
-193,151,7,12173
-4,53,58,12191
121,-103,76,12209
150,-181,62,12228
-9,29,25,12248
-70,109,13,12264
-190,153,33,12283
-271,137,54,12303
-254,33,55,12322
-279,-53,18,12342
-441,-191,-71,12361
-636,-458,-183,12383
-758,-1216,-118,12406
-149,-1269,-312,12430
-64,-718,-138,12453
-56,-464,76,12476
280,-881,-2048,12495
-2048,-590,885,12518
373,-390,375,12541
130,2,-148,12562
-551,-111,-104,12580
-464,-551,8,12604
-379,-360,-122,12623
-677,-121,-93,12646
-891,-21,3,12668
-608,101,45,12687
-286,304,-39,12706
-208,507,-114,12727
-376,15,-365,12749
-281,-325,-359,12770
46,-467,84,12792
-243,-143,-40,12812
-862,127,-292,12833
-1130,480,-240,12855
-474,505,-283,12878
-689,472,-258,12900
-454,242,-117,12921
-104,118,35,12955
22,56,54,12967
133,-46,70,12981
200,-154,60,12999
2,-8,33,13019
-64,104,34,13034
-190,159,43,13052
-281,151,38,13073
-288,60,30,13092
-312,-16,47,13111
-428,-145,-20,13130
-649,-316,-158,13153
-758,-1034,-205,13175
-326,-1287,-314,13200
161,-846,-182,13223
-148,-605,77,13245
2003,-2048,-2048,13266
-629,-395,11,13291
346,131,-66,13312
-64,-11,-114,13332
-570,-438,-22,13352
-330,-574,32,13374
-393,-165,-187,13394
-654,-88,-53,13418
-840,-87,52,13438
-639,-7,67,13458
-367,248,-14,13477
-220,591,-85,13498
-409,71,-379,13518
-271,-353,-405,13540
-13,-439,43,13562
-456,42,-114,13582
-1133,200,-199,13603
-899,475,-221,13626
-562,509,-154,13647
-594,391,-228,13670
-303,230,-111,13691
-122,194,-19,13713
57,66,39,13734
172,-84,68,13751
116,-108,53,13769
-64,56,35,13789
-115,85,51,13807
-181,93,54,13826
-232,63,77,13844
-198,4,74,13862
-229,-26,62,13881
-407,-114,-48,13900
-752,-452,-171,13922
-843,-1261,-49,13945
-193,-1348,-296,13968
-28,-670,-120,13991
-101,-493,98,14014
195,-737,-1727,14034
-2048,-970,1240,14057
356,-486,439,14082
36,45,-150,14102
-625,-152,-162,14120
-416,-575,13,14144
-369,-356,-117,14164
-722,-134,-109,14187
-927,37,5,14211
-563,162,39,14228
-223,335,-17,14247
-296,396,-156,14269
-441,-83,-482,14290
-102,-490,-68,14312
-156,-209,-19,14334
-761,117,-233,14356
-1257,433,-214,14377
-536,502,-261,14401
-694,443,-225,14423
-543,257,-129,14444
-269,185,-35,14467
-54,158,20,14487
195,38,32,14505
320,-115,10,14523
-6,13,21,14543
-98,41,18,14560
-153,63,4,14577
-193,95,1,14595
-207,94,18,14613
-236,48,59,14631
-338,-29,37,14650
-516,-174,-97,14670
-708,-659,-250,14692
-730,-1409,-189,14714
116,-1098,-375,14739
-53,-733,-83,14761
232,-1091,-2048,14782
-1652,-627,1136,14807
295,181,-166,14830
-86,61,-179,14851
-583,-302,-15,14871
-337,-600,31,14893
-376,-250,-149,14913
-704,-152,-67,14937
-863,-121,20,14958
-651,109,69,14979
-239,400,-29,14999
-170,531,-241,15020
-499,-99,-510,15041
-183,-440,-273,15064
32,-476,110,15086
-466,-51,-105,15106
-1184,291,-254,15127
-785,541,-283,15151
-627,528,-178,15172
-661,310,-238,15194
-329,142,-111,15216
-172,169,2,15238
12,108,42,15256
189,-61,51,15275
217,-174,30,15293
-8,35,25,15312
-88,95,30,15330
-199,158,23,15347
-255,147,12,15367
-269,67,18,15386
-320,-1,56,15406
-409,-91,-23,15424
-637,-267,-124,15444
-730,-830,-259,15468
-555,-1527,-191,15491
127,-1011,-285,15514
-2048,-770,2047,15565
-226,-330,-32,15579
518,-421,-363,15592
381,487,146,15605
-293,-55,-261,15625
-621,-578,65,15646
-264,-513,13,15668
-383,-140,-213,15688
-723,-141,-21,15711
-881,-115,78,15733
-556,65,45,15754
-232,379,-76,15772
-192,501,-183,15793
-430,-107,-421,15815
-120,-505,-198,15838
-58,-299,-40,15861
-637,125,-220,15882
-1246,373,-215,15903
-654,515,-276,15926
-605,490,-204,15948
-620,340,-258,15970
-295,148,-94,15991
-130,126,-1,16013
72,30,53,16032
252,-143,46,16049
131,-130,33,16069
-60,73,24,16089
-118,130,46,16106
-248,167,50,16125
-326,153,54,16146
-342,51,36,16165
-379,-67,38,16184
-521,-186,-43,16204
-738,-499,-162,16226
-672,-1344,-132,16248
-103,-1328,-278,16273
19,-807,-111,16296
-57,-633,-255,16317
-2048,-2048,2047,16339
557,-474,-374,16364
478,135,-66,16386
-497,-141,-47,16406
-431,-672,24,16428
-346,-312,-146,16448
-652,-88,-101,16472
-905,-72,35,16493
-638,28,86,16513
-324,245,-36,16532
-239,585,-130,16552
-381,33,-409,16574
-278,-348,-319,16595
1,-489,81,16618
-312,-51,-126,16635
-835,185,-291,16657
-1034,498,-234,16679
-463,473,-263,16702
-636,388,-249,16723
-558,199,-167,16746
-254,113,-58,16768
-63,118,39,16788
197,-9,67,16807
288,-146,42,16825
28,-45,30,16844
-56,52,4,16863
-134,83,14,16879
-221,121,21,16898
-266,119,16,16917
-283,52,46,16937
-365,-60,-10,16956
-611,-271,-134,16976
-713,-886,-257,17000
-599,-1465,-173,17022
142,-1068,-340,17046
-60,-682,-85,17070
-42,-464,-150,17090
-2048,-2048,2047,17112
734,-591,-307,17137
250,-81,-176,17159
-598,-181,-15,17179
-350,-581,8,17202
-392,-306,-107,17221
-636,-140,-79,17244
-908,-95,37,17266
-705,24,64,17286
-369,181,-69,17304
-195,490,-76,17326
-327,136,-378,17346
-401,-248,-430,17368
-49,-399,-6,17390
-275,-92,-44,17411
-891,131,-242,17431
-1057,472,-223,17453
-534,519,-142,17476
-626,477,-273,17498
-364,246,-128,17519
-165,163,-32,17542
24,57,37,17562
156,-100,68,17579
115,-181,63,17599
-97,-12,52,17618
-142,83,42,17637
-236,142,33,17655
-300,126,41,17676
-331,36,50,17695
-398,-75,15,17714
-586,-293,-106,17734
-705,-759,-209,17757
-634,-1376,-165,17779
106,-1066,-335,17804
-76,-732,-114,17826
-130,-502,13,17848
-2048,-294,2047,17869
957,-952,-648,17893
424,91,-32,17914
-574,-113,-246,17934
-556,-506,63,17956
-213,-397,-54,17977
-419,-148,-165,17999
-755,-197,17,18022
-479,192,-5,18069
-245,406,-86,18082
-163,563,-138,18096
-204,379,-240,18109
-393,-35,-437,18127
-170,-402,-244,18149
-91,-314,33,18171
-609,25,-130,18192
-1236,329,-213,18212
-626,458,-267,18235
-567,507,-197,18257
-595,338,-193,18279
-257,178,-62,18300
-53,132,18,18321
174,31,40,18340
249,-128,28,18358
-31,-86,36,18377
-131,36,2,18397
-172,78,-8,18414
-243,90,0,18433
-261,61,23,18450
-309,40,58,18469
-413,-43,2,18488
-618,-219,-129,18506
-726,-774,-272,18530
-627,-1453,-205,18552
169,-1137,-317,18576
-73,-731,-100,18599
861,-1441,-2048,18621
-1259,-198,514,18644
335,213,-119,18668
-72,-47,-154,18689
-572,-344,14,18709
-279,-544,8,18731
-323,-212,-164,18750
-585,-99,-77,18772
-799,-118,50,18794
-706,-50,68,18814
-404,163,-34,18834
-206,506,-100,18854
-271,158,-298,18877
-353,-193,-406,18898
-102,-386,-48,18921
-272,-112,-63,18944
-862,110,-266,18965
-978,470,-267,18987
-651,576,-176,19009
-588,404,-232,19031
-316,183,-112,19052
-181,107,-13,19075
33,2,57,19095
175,-140,75,19110
140,-170,46,19131
-57,39,21,19150
-105,94,9,19168
-163,127,13,19185
-259,112,49,19206
-269,43,61,19225
-328,-46,63,19244
-482,-189,-52,19264
-605,-500,-200,19286
-692,-1208,-71,19308
-178,-1178,-321,19332
92,-792,-169,19355
-121,-542,43,19376
-854,-93,-500,19397
85,-508,-520,19419
403,323,-143,19439
-365,61,-145,19461
-592,-405,-38,19481
-247,-518,9,19503
-372,-174,-182,19523
-563,-87,-106,19546
-795,-99,39,19567
-621,-8,61,19587
-356,166,-12,19606
-253,490,-89,19627
-264,272,-273,19647
-301,-198,-425,19670
-56,-436,-40,19692
-288,-59,-64,19713
-817,159,-232,19734
-1053,397,-194,19756
-611,400,-115,19778
-619,350,-246,19801
-375,196,-83,19822
-208,150,-3,19843
8,60,46,19863
165,-69,80,19878
164,-138,50,19897
-62,18,48,19916
-100,78,24,19935
-159,89,28,19953
-206,69,63,19972
-182,24,72,19991
-204,-30,52,20009
-371,-146,-60,20029
...

This file has been truncated, please download it to see its full contents.

data_running_4

Plain text
0,0,0,50
-253,-46,14,76
-256,-15,16,91
-245,24,5,105
-246,35,1,118
-253,18,2,133
-247,-3,5,147
-258,2,3,161
-248,25,-2,176
-244,15,7,189
-279,25,-1,203
-240,5,-3,218
-272,-5,26,232
-252,-18,17,246
-247,-7,10,261
-249,-43,10,274
-276,-17,1,288
-243,10,-3,303
-242,35,-12,317
-245,41,-7,331
-253,10,4,346
-256,-11,8,360
-256,1,9,373
-238,-91,32,388
-305,17,2,402
-252,79,-4,416
-223,77,-16,431
-286,-4,5,448
-231,-4,5,463
-234,-18,6,479
-265,9,1,496
-249,22,-1,510
-244,10,1,527
-257,-13,10,542
-250,-12,10,561
-253,9,3,578
-250,17,1,592
-254,11,0,608
-254,6,1,624
-252,9,0,638
-254,3,2,653
-264,16,14,667
-244,32,-8,685
-248,5,4,701
-253,-25,14,715
-255,-20,6,733
-253,25,2,750
-253,19,1,765
-254,-1,6,781
-245,-11,3,796
-272,-10,2,813
-239,0,2,830
-248,22,-1,844
-250,11,3,861
-254,15,1,876
-251,9,1,892
-249,-1,5,907
-256,1,1,922
-252,-7,5,936
-262,-13,6,953
-254,0,6,969
-250,6,2,984
-253,12,2,998
-253,9,1,1013
-246,18,0,1030
-245,2,1,1046
-255,4,4,1061
-254,21,3,1077
-250,9,2,1094
-256,-9,1,1110
-254,-4,7,1126
-245,5,1,1142
-243,0,6,1159
-248,-10,5,1174
-256,-7,8,1191
-255,-3,2,1208
-252,-1,7,1225
-252,1,1,1242
-253,3,0,1257
-223,-89,16,1272
-261,59,-9,1292
-272,51,3,1309
-259,70,-1,1326
-247,49,-5,1343
-257,3,6,1361
-250,-3,4,1377
-255,17,3,1393
-256,12,3,1410
-245,21,3,1427
-250,-6,9,1443
-208,-43,5,1460
-256,-33,13,1477
-239,7,2,1508
-259,10,7,1521
-259,12,5,1533
-251,6,5,1547
-253,-1,4,1561
-233,1,4,1577
-244,19,0,1593
-265,-10,8,1609
-261,-39,16,1628
-245,-28,10,1646
-253,33,3,1665
-241,-19,2,1682
-266,11,5,1699
-263,2,3,1716
-195,-63,4,1731
-239,-45,10,1750
-271,29,2,1768
-270,53,4,1784
-201,-49,-11,1801
-234,-31,13,1821
-263,13,1,1840
-281,53,4,1856
-241,24,-3,1872
-246,17,4,1891
-252,4,12,1907
-258,3,3,1924
-276,9,-1,1939
-252,-4,-9,1956
-201,20,-1,1974
-269,4,7,1991
-237,0,-8,2007
-232,-18,-7,2024
-282,-84,26,2042
-220,-32,7,2061
-244,-5,4,2078
-228,-1,-5,2096
-280,38,10,2113
-223,-4,3,2130
-280,-10,19,2148
-231,-12,5,2166
-229,10,0,2184
-266,-3,21,2200
-266,-7,-4,2219
-259,-15,2,2236
-294,45,6,2253
-187,-18,-6,2270
-264,-10,2,2289
-254,2,6,2307
-242,49,-7,2322
-235,-52,22,2339
-261,-53,27,2359
-244,-25,15,2377
-252,6,3,2396
-249,3,-4,2411
-246,1,-9,2428
-254,2,3,2445
-243,6,-10,2460
-254,12,-8,2478
-249,4,-9,2496
-246,0,-10,2512
-248,7,-14,2530
-248,2,-12,2548
-248,-19,-10,2566
-257,-28,-9,2585
-256,-19,-16,2604
-241,-33,-10,2624
-241,-44,8,2643
-258,-41,-2,2661
-247,-45,-17,2680
-249,-54,-20,2700
-253,-77,-16,2719
-254,-64,-17,2739
-254,-31,-30,2759
-245,-16,-40,2779
-250,-20,-36,2798
-235,-10,-44,2819
-218,-16,-43,2838
-234,-30,-30,2857
-260,-65,-22,2877
-264,-124,-2,2897
-290,-129,-28,2917
-318,-104,-40,2937
-337,-100,-13,2959
-354,-90,4,2979
-403,-72,10,2997
-507,-48,12,3016
-437,15,-13,3035
-350,112,-90,3053
-431,239,-183,3073
-414,285,-273,3094
-379,129,-292,3115
-440,-32,-131,3135
-383,23,60,3156
-232,177,-49,3174
-182,311,-85,3193
-166,335,-109,3214
-179,231,-66,3234
-187,136,-26,3254
-202,61,-1,3273
-236,19,22,3292
-243,-3,27,3309
-245,-6,21,3326
-249,-31,17,3344
-252,-94,11,3363
-284,-198,5,3382
-339,-366,-11,3400
-336,-600,-51,3422
-300,-689,-96,3442
-226,-614,-141,3463
-163,-589,-131,3485
-46,-529,-218,3507
-274,-680,185,3527
-592,-230,590,3549
-72,382,-630,3569
-27,200,26,3589
-249,-305,31,3606
-264,-623,62,3627
-263,-212,2,3646
-279,-31,-99,3664
-300,-135,-72,3685
-410,-276,-46,3705
-597,-245,-21,3726
-785,-61,-39,3747
-606,48,40,3767
-296,177,-23,3784
-300,409,-127,3804
-323,176,-312,3837
-319,-93,-313,3851
-358,-240,-201,3866
-680,-77,-1,3889
-744,172,-118,3907
-639,463,-180,3928
-385,541,-224,3949
-197,360,-150,3970
-85,188,-65,3990
21,65,-5,4008
72,-26,11,4025
47,-64,8,4041
-43,-1,35,4057
-121,121,63,4073
-178,178,60,4092
-281,132,44,4111
-360,-1,-16,4129
-508,-243,-77,4149
-625,-674,-42,4169
-647,-1086,-56,4190
-278,-982,-257,4212
-73,-763,-147,4234
-87,-545,-21,4254
287,-787,-1064,4274
-951,-331,556,4296
91,20,-256,4317
-65,12,52,4334
-314,-216,-102,4352
-381,-505,40,4373
-303,-335,-72,4392
-477,-122,-161,4414
-764,-98,-40,4435
-844,50,24,4455
-515,182,-2,4472
-211,332,-65,4492
-125,415,-120,4511
-334,148,-261,4532
-301,-211,-324,4553
-212,-300,-114,4575
-692,-3,-74,4596
-875,315,-186,4616
-679,530,-133,4636
-502,564,-205,4657
-263,305,-153,4678
-167,121,-33,4699
-72,16,39,4718
39,-73,53,4734
85,-113,54,4752
25,-29,28,4769
-68,82,37,4786
-149,161,37,4802
-197,193,32,4822
-264,107,42,4840
-376,-35,2,4858
-552,-265,-93,4877
-591,-823,-112,4897
-590,-1274,-76,4919
-233,-1003,-231,4940
-32,-653,-51,4964
-20,-441,-51,4983
357,-628,-1050,5003
-1085,-438,558,5025
130,-189,-177,5047
-116,-7,-92,5067
-408,-189,-13,5087
-336,-426,-25,5107
-390,-292,-123,5128
-593,-154,-102,5150
-902,-19,40,5172
-652,99,14,5190
-296,218,-22,5208
-221,445,-104,5228
-269,249,-262,5249
-306,-119,-345,5269
-159,-222,-79,5292
-486,-27,-70,5312
-828,190,-161,5331
-797,326,-210,5353
-602,436,-215,5373
-476,429,-192,5394
-275,308,-78,5415
-110,193,-24,5435
31,76,3,5454
126,-17,21,5469
118,-69,9,5487
-17,-4,11,5504
-116,64,9,5520
-169,104,9,5536
-209,130,4,5555
-279,82,25,5572
-362,-11,-2,5590
-522,-194,-70,5609
-611,-666,-142,5629
-752,-1243,-21,5651
-152,-1009,-333,5672
-43,-720,-94,5696
-25,-708,-404,5715
-1903,-1066,761,5736
464,-426,-583,5760
-91,490,-173,5780
-281,-5,-17,5799
-372,-521,-55,5819
-348,-597,113,5839
-432,-216,-180,5860
-710,-118,-112,5882
-933,28,50,5904
-617,175,45,5921
-238,410,-21,5940
-98,609,-186,5960
-367,226,-401,5980
-311,-249,-413,6000
-85,-368,-52,6023
-485,-159,10,6042
-1003,159,-177,6062
-905,417,-183,6084
-554,621,-275,6105
-398,509,-232,6125
-259,256,-88,6147
-109,103,5,6166
55,-24,52,6183
159,-137,71,6200
102,-91,50,6219
-35,48,42,6237
-147,166,44,6253
-183,227,37,6272
-267,134,67,6291
-448,-146,-51,6327
-532,-324,-122,6339
-645,-654,-186,6352
-713,-1198,-89,6374
-321,-1110,-317,6395
50,-819,-204,6419
-101,-667,68,6438
857,-861,-2048,6458
-1395,-998,1343,6480
122,-129,-210,6503
-74,43,-102,6523
-503,-262,-80,6543
-417,-502,-28,6563
-504,-302,-130,6584
-928,-35,24,6605
-814,144,0,6625
-425,262,1,6642
-185,450,12,6660
-168,382,-185,6679
-466,-30,-406,6700
-268,-300,-270,6720
-103,-299,80,6743
-531,-12,-149,6762
-1324,231,-222,6782
-757,455,-233,6804
-632,643,-244,6825
-469,550,-191,6846
-297,347,-90,6866
-127,179,-13,6887
74,20,24,6906
206,-135,26,6922
109,-145,23,6941
-119,23,20,6960
-184,112,-18,6977
-132,122,-28,6996
-173,64,27,7017
-272,23,15,7034
-482,-112,-52,7052
-745,-469,-186,7073
-890,-1337,-115,7095
-66,-1298,-335,7117
30,-906,-104,7140
137,-964,-1034,7159
-2048,-1340,1631,7181
381,-242,-309,7204
9,275,-26,7226
-427,-91,-183,7242
-516,-503,54,7263
-357,-574,-2,7283
-688,-246,-102,7303
-965,14,31,7324
-760,173,80,7343
-310,434,62,7361
-103,668,-115,7379
-558,179,-582,7400
-297,-375,-499,7421
80,-501,69,7443
-436,-170,-60,7460
-1410,219,-238,7482
-941,533,-294,7503
-466,802,-276,7524
-556,631,-259,7545
-301,341,-152,7566
-130,219,-49,7586
44,91,-22,7607
129,-65,0,7623
130,-174,13,7640
-70,-53,27,7658
-180,84,16,7676
-250,186,21,7694
-272,143,25,7712
-349,56,41,7731
-537,-115,-48,7749
-739,-476,-190,7770
-850,-1382,-57,7791
-354,-1414,-241,7814
102,-945,-197,7836
-39,-565,30,7857
943,-824,-2048,7876
-2048,-1392,1894,7898
444,-460,-156,7921
-125,212,-150,7943
-538,-138,-62,7963
-390,-554,-41,7984
-522,-433,-82,8005
-982,-114,-17,8026
-900,153,2,8046
-477,245,6,8064
-130,598,-15,8082
-295,224,-425,8101
-499,-277,-422,8122
-114,-328,-35,8144
-219,-47,-40,8165
-738,108,-196,8184
-1087,357,-177,8206
-546,451,-252,8227
-651,473,-260,8248
-491,377,-165,8268
-271,308,-66,8290
-111,243,-31,8309
22,115,-24,8329
106,-41,-3,8347
90,-103,5,8365
-59,-10,12,8381
-188,83,0,8398
-235,120,-4,8416
-244,103,13,8434
-310,60,32,8453
-456,-48,-23,8471
-617,-282,-151,8491
-789,-1152,-188,8512
-505,-1468,-238,8535
132,-912,-291,8558
-22,-654,62,8579
871,-953,-2048,8597
-1189,-1501,1343,8620
328,-86,-508,8643
-138,349,-85,8663
-396,-62,-115,8683
-511,-519,-47,8704
-501,-542,-11,8724
-873,-125,-32,8745
-901,162,34,8766
-605,308,37,8784
-235,406,-387,8823
-531,102,-519,8837
-471,-245,-513,8850
-117,-418,-128,8866
-103,-249,-6,8889
-699,-23,-184,8908
-1294,323,-222,8929
-527,594,-314,8951
-558,695,-303,8972
-454,493,-248,8992
-254,323,-110,9014
-102,178,-40,9034
52,-28,-12,9054
115,-212,8,9072
-14,-177,34,9090
-138,-31,25,9108
-206,90,-5,9126
-241,164,-31,9145
-309,105,-38,9164
-485,-75,-90,9184
-678,-341,-161,9204
-742,-1157,-11,9226
-522,-1238,-235,9247
-25,-862,-276,9271
-6,-694,10,9291
22,-603,-176,9309
-591,-1359,-583,9328
195,-914,227,9352
89,166,-259,9371
-176,243,-130,9390
-504,-146,-88,9411
-343,-531,-25,9432
-414,-435,-90,9452
-728,-197,-88,9474
-945,40,7,9494
-750,195,23,9510
-255,371,18,9529
-195,541,-203,9548
-448,114,-528,9569
-233,-346,-318,9589
-105,-382,70,9612
-745,-10,-179,9631
-1286,323,-200,9652
-566,506,-242,9674
-525,644,-270,9695
-507,449,-188,9715
-248,281,-94,9737
-54,194,1,9756
104,76,21,9773
219,-103,39,9789
86,-140,55,9808
-111,-5,52,9826
-163,115,24,9843
-203,186,4,9862
-239,123,17,9880
-304,30,26,9899
-434,-110,-61,9916
-638,-404,-183,9937
-742,-1316,-88,9959
-443,-1416,-288,9980
25,-923,-261,10004
48,-682,-23,10024
538,-690,-1250,10044
-1703,-791,1272,10066
413,-206,-243,10091
-112,154,-73,10113
-526,-278,-79,10133
-308,-602,-25,10156
-500,-307,-160,10177
-905,-106,-53,10200
-949,121,37,10222
-286,331,-5,10242
-134,540,-140,10261
-486,97,-472,10284
-307,-323,-231,10304
-52,-263,14,10327
-518,99,-154,10347
-1189,346,-192,10368
-638,483,-256,10390
-598,499,-270,10413
-683,436,-187,10434
-260,311,-61,10456
-94,228,10,10477
64,72,26,10496
155,-97,37,10512
73,-112,23,10530
-98,28,15,10550
-194,116,2,10567
-241,134,-6,10586
-222,38,8,10606
-304,-63,-7,10624
-492,-247,-134,10643
-678,-828,-185,10665
-733,-1383,-159,10689
-62,-1070,-330,10713
29,-764,-42,10736
121,-713,-848,10756
-2048,-1217,1540,10777
513,-552,-224,10803
-54,220,-105,10824
-338,-80,-101,10845
-462,-515,-20,10867
-383,-451,-78,10889
-743,-167,-51,10910
-993,43,16,10932
-666,230,3,10951
-210,418,-14,10970
-129,397,-173,10990
-473,52,-396,11013
-263,-265,-295,11033
-236,-269,-17,11056
-908,46,-126,11078
-1077,284,-226,11099
-645,498,-229,11121
-468,579,-281,11144
-290,420,-145,11165
-114,282,-30,11187
39,127,-7,11208
103,-21,1,11226
32,-91,18,11243
-115,-21,41,11260
-206,59,30,11281
-211,68,36,11315
-251,47,52,11328
-321,6,14,11341
-469,-76,-44,11355
-703,-432,-243,11375
-772,-1439,-123,11398
-226,-1364,-281,11422
60,-733,-176,11446
-64,-553,-1,11467
-367,-1129,-655,11487
55,-608,-141,11510
155,82,-40,11531
-142,128,-150,11550
-579,-218,-53,11572
-322,-544,-41,11593
-526,-329,-95,11616
-880,-66,8,11637
-835,128,53,11656
-476,268,21,11676
-160,478,-15,11696
-303,307,-372,11716
-402,-144,-446,11739
-5,-356,-67,11761
-95,-251,47,11781
-708,6,-187,11801
-1242,325,-220,11821
-601,540,-204,11843
-609,638,-265,11866
-341,351,-148,11887
-196,208,-61,11909
-27,103,-5,11929
106,-63,21,11949
96,-149,18,11967
-69,-38,18,11985
-141,86,0,12005
-160,118,-3,12022
-228,85,26,12042
-309,38,40,12060
-513,-88,-33,12080
-727,-365,-208,12100
-753,-1327,33,12123
-408,-1302,-195,12145
68,-714,-191,12169
-102,-620,116,12189
481,-772,-1587,12212
-1248,-737,1105,12234
140,28,-231,12258
-25,106,-68,12278
-332,-183,-82,12298
-491,-508,-24,12319
-335,-303,-101,12342
-635,-181,-62,12364
-825,-73,-15,12386
-666,85,4,12407
-368,224,5,12425
-189,544,-77,12443
-379,219,-435,12465
-301,-256,-422,12486
-4,-370,5,12509
-370,-49,-70,12526
-1003,150,-204,12548
-804,368,-222,12570
-582,512,-268,12592
-479,486,-224,12614
-232,314,-103,12636
-95,209,-36,12657
0,86,-2,12678
54,-47,13,12693
43,-115,20,12710
-37,-22,13,12729
-155,77,20,12748
-211,93,5,12767
-241,70,-1,12784
-307,1,30,12804
-447,-91,-51,12821
-669,-343,-188,12841
-640,-1133,-96,12865
-415,-1228,-246,12888
18,-860,-258,12911
-109,-642,-55,12933
61,-564,-647,12954
-1453,-765,893,12975
308,-177,-176,12998
-145,104,-100,13020
-412,-254,-65,13041
-334,-476,23,13064
-314,-318,-102,13084
-503,-153,-132,13107
-830,-106,4,13130
-751,27,39,13150
-412,161,18,13168
-174,445,-55,13188
-230,318,-312,13209
-329,-147,-372,13231
-100,-288,-73,13253
-401,-40,-104,13276
-943,214,-195,13297
-775,369,-201,13319
-581,479,-187,13341
-397,419,-159,13363
-203,257,-66,13384
-81,143,-2,13406
21,34,33,13424
94,-74,34,13441
55,-77,42,13458
-68,34,40,13476
-152,100,32,13494
-201,96,57,13513
-226,37,70,13533
-324,-38,50,13551
-493,-167,-22,13571
-697,-507,-171,13592
-567,-1293,-86,13616
-172,-1116,-263,13638
-52,-701,-278,13663
-106,-842,-262,13684
-678,-568,538,13707
-198,-109,-186,13729
-222,-48,-42,13752
-244,-263,-61,13772
-367,-337,-19,13794
-320,-252,-127,13816
-508,-187,-138,13839
-772,-124,-38,13862
-697,14,0,13884
-475,298,-178,14086
-344,230,-134,14098
-277,198,-83,14111
-197,173,-42,14125
-109,138,-21,14138
-9,89,-5,14150
76,31,8,14163
132,-25,15,14177
77,-29,8,14192
-42,31,12,14209
-124,82,7,14227
-169,80,-11,14244
-206,32,-20,14264
-253,-9,8,14283
-342,-46,-10,14302
-532,-178,-73,14322
-665,-516,-156,14344
-507,-1253,-97,14367
-146,-989,-230,14390
-36,-570,-206,14412
94,-576,-758,14435
-1450,-910,354,14455
259,-485,-157,14478
27,102,13,14500
-160,-12,-57,14518
-472,-316,-18,14538
-303,-415,-38,14561
-365,-175,-158,14582
-559,-139,-95,14605
-709,-60,1,14627
-580,67,20,14646
-188,146,-52,14664
-215,180,-26,14685
-255,185,-160,14706
-231,19,-208,14728
-122,-216,-145,14748
-211,-133,-68,14772
-530,93,-119,14793
-708,225,-114,14814
-801,319,-252,14836
-393,229,-202,14858
-337,147,-102,14879
-254,102,-37,14902
-95,59,0,14922
58,4,17,14939
98,-16,23,14954
-16,53,26,14972
-137,110,17,14990
-186,145,-7,15009
-247,89,-4,15030
-336,-15,32,15048
-444,-148,7,15068
-542,-382,-85,15087
-650,-767,-7,15110
-512,-901,-74,15130
-110,-652,-119,15152
-117,-604,-16,15175
-105,-522,-180,15197
-250,-368,-490,15219
-958,-197,475,15243
110,-122,-89,15264
-103,-70,0,15285
-404,-136,-74,15304
-291,-267,6,15326
-235,-238,-62,15345
-259,-85,-93,15368
-272,-74,-113,15388
-320,-126,-106,15410
-324,-128,-96,15433
-306,-83,-72,15455
-297,-52,-39,15475
-279,-37,-29,15497
-302,2,-33,15517
-274,24,-47,15536
-228,38,-51,15555
-321,53,-59,15576
-468,68,-98,15595
-528,166,-127,15614
-616,360,-175,15637
-691,315,-239,15659
-318,28,-187,15680
-253,-23,19,15702
-170,91,20,15721
-102,187,-22,15739
-36,190,-39,15761
-18,123,-60,15780
-87,42,-37,15800
-158,-10,-13,15818
-229,-64,20,15840
-302,-152,10,15859
-428,-307,-78,15880
-498,-449,-184,15902
-343,-610,-131,15925
-406,-499,-111,15947
-359,-315,-171,15971
-268,-255,-147,15993
-205,-388,-73,16016
-242,-346,0,16038
-371,19,295,16058
-258,444,-516,16077
-300,446,-172,16100
-87,-81,-80,16121
-240,-156,-59,16141
-286,-9,-45,16163
-369,40,127,16183
-319,-72,86,16202
-227,-4,-51,16222
-216,93,-62,16242
-273,62,-11,16262
-265,11,-16,16281
-262,49,-55,16302
-250,73,-62,16321
-246,76,-62,16340
-320,48,-35,16361
-236,71,-43,16380
-242,80,-39,16400
-239,35,-11,16419
-258,-22,14,16440
-254,3,-16,16459
-257,70,-45,16494
-283,47,-32,16507
-220,76,-23,16521
-212,47,-38,16537
-231,33,-36,16558
-325,33,14,16577
-286,24,-7,16595
-239,81,-22,16614
-288,53,-27,16634
-268,31,-40,16654
-248,23,-24,16673
-247,37,-16,16694
-253,39,-18,16713
-256,22,-16,16733
-242,35,-16,16752
-248,25,-17,16773
-259,4,-13,16792
-255,19,-6,16811
-252,64,-22,16830
-236,24,-19,16849
-256,19,-7,16869
-256,27,-12,16887
-251,27,-15,16908
-255,44,-16,16927
-247,29,-4,16947
-242,15,-2,16966
-256,18,0,16985
-254,18,-4,17002
-253,21,-4,17020
-250,12,2,17040
-252,16,0,17057
-252,31,-2,17075
-257,26,-6,17094
-252,16,-3,17113
-253,24,-4,17131
-256,27,-1,17149
-245,46,-11,17169
-258,34,-1,17188
-261,2,9,17207
-256,17,2,17224
-253,11,1,17242
-244,8,2,17259
-253,19,0,17275
-243,-7,2,17294
-251,30,-1,17311
-245,43,-5,17330
-250,31,1,17348
-255,23,3,17367
-256,18,2,17384
-211,3,3,17401
-266,37,-1,17418
-247,24,-1,17437
-235,-18,6,17456
-275,1,6,17474
-256,47,-7,17491
-257,36,-6,17510
-262,39,0,17528
-256,32,-3,17546
-243,37,-3,17565
-253,17,2,17584
-256,9,3,17601
-258,0,2,17617
-254,13,1,17635
-249,19,0,17652
-252,3,4,17670
-257,0,-1,17686
-255,15,1,17704
-255,6,0,17722
-252,4,-1,17738
-256,7,1,17757
-257,3,3,17773
-252,9,2,17789
-253,9,-3,17806
-253,7,0,17824
-256,-3,-2,17841
-256,-2,1,17859
-249,11,0,17876
-249,13,-1,17895
-253,10,0,17913
-252,-1,2,17931
-252,10,1,17948
-252,-1,4,17967
-255,-6,5,17984
-262,-5,3,18001
-256,0,1,18019
-245,4,-3,18036
0,0,0,55
-238,22,-6,69
-232,30,-7,82
-295,35,12,96
-251,63,-17,109
-242,26,-5,122
-215,-52,8,135
-257,12,-3,148
-255,47,-7,161
-242,19,2,175
-234,-10,5,188
-236,-22,6,201
-252,-4,1,214
-266,40,-10,230
-249,24,-16,243
-228,31,-12,257
-204,17,-13,270
-225,26,-13,287
-273,26,-7,306
-280,11,7,322
-254,30,-18,337
-213,22,-1,355
-245,20,-5,372
-306,77,-8,389
-301,18,0,405
-226,-1,-7,420
-308,19,-12,438
-284,79,-27,455
-319,76,-6,473
-189,18,-21,489
-246,12,-15,507
-271,-14,-8,525
-200,-21,2,542
-292,13,19,560
-199,-24,-22,576
-254,1,-5,594
-252,-12,-2,610
-240,-35,-4,628
-248,-12,-12,646
-238,18,-22,664
-241,44,-13,681
-249,32,-7,700
-257,16,-15,716
-282,9,-13,734
-262,47,-21,750
-265,86,-26,769
-278,56,-18,786
-221,38,-32,803
-186,-82,2,821
-260,-74,9,838
-276,-25,15,855
-228,-5,5,872
-236,1,1,887
-250,0,-11,903
-257,0,-5,919
-250,-1,-17,934
-250,0,-16,952
-248,15,-25,969
-252,37,-37,987
-247,38,-45,1004
-243,17,-44,1022
-250,23,-31,1042
-247,32,-40,1060
-253,1,-11,1079
-244,-44,-20,1097
-241,-34,-44,1117
-233,20,-60,1136
-252,35,-59,1155
-233,-16,-40,1174
-240,-66,-41,1193
-232,-74,-39,1213
-251,-57,-52,1233
-223,-116,-49,1285
-234,-108,-52,1301
-252,-84,-62,1314
-242,-57,-76,1328
-241,-53,-84,1340
-260,-82,-81,1353
-303,-135,-62,1374
-388,-157,-34,1394
...

This file has been truncated, please download it to see its full contents.

data_running_5

Plain text
0,0,0,64
-249,-28,-38,91
-246,-53,-31,105
-242,-37,-39,119
-226,1,-30,134
-240,31,-53,148
-249,11,-59,162
-250,-57,-43,177
-236,-107,-33,191
-238,-121,-35,205
-246,-92,-33,220
-243,-71,-40,234
-242,-49,-42,248
-243,-34,-48,263
-255,-46,-63,277
-233,-86,-75,296
-267,-119,-83,315
-311,-121,-62,334
-405,-118,-24,354
-460,-97,7,374
-418,-73,-2,391
-413,-55,-16,408
-382,-17,5,428
-339,51,0,444
-278,143,-16,459
-227,189,-73,478
-259,130,-177,497
-391,39,-172,517
-519,-62,-242,535
-968,14,-163,555
-680,-10,-117,574
-620,-49,-93,593
-711,31,-45,612
-478,189,-12,630
-237,343,-17,649
-65,384,-31,667
64,299,-2,685
73,148,7,701
-27,61,4,715
-110,32,0,730
-141,46,8,745
-159,54,23,761
-189,-9,55,778
-231,-113,52,794
-293,-269,-5,813
-342,-501,-97,832
-379,-719,-154,851
-275,-1098,-235,872
-128,-1101,-228,894
-71,-740,-222,916
27,-483,-168,935
-1340,-619,666,954
-58,129,-411,975
329,218,-638,994
144,195,-75,1012
-510,-303,-47,1032
-294,-464,10,1061
-350,-232,-121,1075
-502,-79,-162,1094
-873,-137,-2,1115
-917,50,27,1134
-478,258,72,1152
-314,516,14,1171
-130,508,-139,1189
-316,-17,-432,1210
-262,-295,-249,1231
-394,-194,-30,1253
-782,46,-110,1273
-802,274,-183,1294
-557,431,-185,1314
-590,557,-193,1335
-410,344,-120,1356
-141,199,-36,1377
59,136,28,1396
169,58,27,1413
86,3,17,1430
-44,30,-7,1444
-110,83,-33,1461
-139,123,-49,1479
-249,88,-16,1500
-301,-30,26,1518
-327,-124,-7,1537
-463,-324,-104,1557
-530,-726,-214,1579
-619,-1294,-200,1600
-107,-1301,-274,1624
-23,-928,-201,1646
-2048,-1509,1422,1667
252,-374,-414,1691
-44,662,-149,1712
-444,-25,-125,1731
-352,-676,74,1752
-339,-613,167,1772
-364,-160,-230,1793
-636,-33,-127,1814
-1136,-49,60,1836
-729,166,136,1855
-407,584,6,1874
-105,705,-280,1893
-356,-6,-595,1913
-235,-344,-350,1933
-105,-343,101,1955
-616,19,-73,1976
-1085,95,-133,1994
-712,372,-252,2015
-555,504,-278,2036
-763,584,-236,2057
-421,331,-101,2077
-176,195,-23,2099
42,76,36,2118
190,-62,48,2134
288,-155,0,2151
29,-56,9,2169
-106,69,4,2185
-128,128,1,2201
-135,126,29,2219
-200,81,95,2238
-215,53,108,2255
-319,-7,-14,2274
-463,-201,-197,2293
-552,-731,-354,2315
-803,-1410,-322,2336
-1,-1361,-393,2360
-34,-826,-288,2380
-120,-449,36,2401
-397,-381,-1438,2421
308,-385,-701,2444
442,82,-8,2464
-219,-146,-163,2481
-763,-424,-60,2503
-242,-288,-83,2524
-561,-165,-171,2544
-1154,-232,113,2567
-1030,122,118,2588
-325,484,-53,2609
-26,697,-147,2629
-493,-40,-446,2649
-311,-366,-358,2669
-162,-297,4,2692
-808,6,-119,2710
-1290,318,-246,2728
-767,436,-163,2750
-595,538,-261,2771
-607,467,-172,2792
-388,310,-46,2812
-128,213,3,2833
111,113,70,2850
366,-40,70,2868
255,-99,33,2885
-72,42,46,2904
-161,121,2,2920
-120,127,-34,2937
-177,69,9,2958
-192,2,56,2974
-197,-37,36,2991
-304,-120,-58,3009
-433,-397,-250,3031
-754,-910,-292,3052
-532,-1530,-339,3074
42,-1174,-357,3097
-121,-689,-259,3118
1136,-1938,-2048,3139
152,-164,-425,3164
676,236,-363,3184
-293,-19,-92,3204
-774,-592,-107,3224
-290,-334,-124,3246
-662,-172,-195,3267
-1130,-97,68,3290
-944,122,139,3309
-366,576,-57,3329
3,658,-114,3348
-527,31,-509,3366
-471,-386,-485,3386
-86,-442,63,3407
-479,-172,-24,3427
-1350,137,-242,3447
-940,526,-248,3469
-577,636,-297,3490
-725,575,-206,3511
-477,367,-64,3531
-196,250,17,3551
192,54,76,3581
332,-78,68,3595
278,-117,11,3608
-17,-18,25,3623
-180,106,23,3641
-148,152,-20,3659
-157,89,15,3679
-174,44,85,3697
-204,20,40,3715
-351,-92,-75,3732
-492,-336,-258,3752
-928,-1073,-362,3774
-381,-1912,-363,3796
3,-1122,-309,3820
-170,-548,-274,3840
-2048,-1737,1845,3861
566,-379,-764,3886
157,423,301,3906
-719,-400,-205,3924
-364,-646,127,3946
-436,-230,-133,3968
-917,-255,27,3989
-1265,-68,101,4008
-638,315,-33,4030
-157,857,-36,4049
-355,399,-359,4069
-515,-299,-540,4090
-110,-432,22,4112
-340,-87,-13,4131
-1274,58,-186,4152
-1135,357,-254,4172
-743,508,-210,4194
-825,623,-241,4214
-448,451,-133,4236
-181,339,-23,4256
83,198,18,4276
304,2,82,4293
402,-164,21,4308
-45,11,44,4327
-187,136,26,4343
-119,234,0,4363
-149,194,49,4380
-192,105,110,4399
-244,55,77,4419
-403,-103,-40,4436
-503,-510,-294,4457
-1061,-1412,-373,4478
-129,-2048,-328,4503
31,-920,-391,4526
243,-1177,-1604,4545
-1516,-456,1654,4569
442,-80,-503,4591
-93,35,-139,4611
-637,-375,-140,4630
-541,-621,-3,4652
-746,-348,-62,4671
-1227,-44,67,4692
-929,250,87,4712
-407,754,-30,4730
-52,556,-282,4751
-708,-287,-647,4770
-270,-471,-317,4792
-118,-330,68,4813
-1006,-118,-156,4834
-1415,394,-352,4856
-662,702,-374,4878
-734,868,-210,4899
-631,602,-126,4920
-305,345,-35,4940
-76,213,23,4961
175,73,39,4978
404,-158,28,4995
101,-141,13,5013
-208,70,51,5032
-193,182,-19,5050
-204,163,-7,5069
-225,62,94,5089
-217,14,72,5106
-415,-84,-29,5124
-628,-349,-267,5143
-1056,-1119,-400,5166
-450,-2016,-330,5189
51,-1182,-385,5212
-193,-609,-173,5233
1451,-2048,-2048,5255
304,-438,-534,5278
788,324,-264,5300
-388,-217,-172,5319
-770,-534,-82,5341
-375,-406,-133,5362
-982,-196,-33,5384
-1215,73,133,5404
-639,318,29,5425
-168,878,45,5443
-409,370,-428,5462
-591,-366,-678,5483
-148,-452,-47,5505
-252,-241,10,5525
-1387,0,-227,5544
-1271,500,-324,5565
-632,645,-326,5586
-655,728,-305,5607
-601,559,-111,5628
-257,337,-41,5649
-25,239,2,5668
303,83,64,5686
452,-117,29,5702
-37,-34,25,5721
-289,103,28,5738
-181,133,-62,5757
-169,75,-28,5777
-174,17,47,5795
-227,-17,11,5813
-442,-140,-119,5832
-684,-623,-366,5854
-1117,-1382,-442,5875
-33,-2027,-357,5900
-60,-905,-427,5921
-199,-587,-40,5942
515,-1246,-2048,5963
-1151,167,-98,5986
642,-243,323,6006
-131,-458,-117,6027
-938,-323,-132,6048
-280,-292,-165,6070
-1280,-163,132,6109
-1229,-9,222,6122
-789,226,87,6135
-292,940,-79,6153
-346,496,-388,6172
-533,-362,-654,6193
-170,-559,-44,6215
-432,-171,-31,6236
-1431,178,-242,6256
-1082,575,-284,6278
-679,705,-280,6300
-616,582,-193,6321
-675,475,-100,6341
-361,329,-27,6363
-59,237,-21,6382
266,114,29,6401
525,-142,-7,6419
81,-95,2,6437
-204,31,25,6453
-119,125,-63,6470
-87,167,-52,6491
-147,172,-7,6509
-208,100,-9,6528
-358,-96,-90,6546
-501,-500,-327,6566
-1040,-1213,-388,6588
-358,-2048,-244,6611
-45,-1053,-334,6635
-176,-580,-46,6657
2047,-2048,-2048,6677
83,-163,-626,6702
985,80,-127,6721
-344,-261,-69,6739
-992,-605,-109,6761
-255,-311,-184,6782
-1081,-206,-7,6804
-1168,-16,148,6825
-772,340,21,6846
-212,982,-3,6864
-383,310,-529,6884
-523,-500,-512,6904
-40,-439,-22,6926
-504,-45,-95,6945
-1404,78,-209,6966
-1066,453,-300,6986
-742,691,-338,7008
-793,826,-225,7029
-567,538,-133,7050
-295,379,-60,7070
-18,250,14,7091
268,60,46,7108
410,-212,-6,7124
-52,-60,24,7143
-211,86,-4,7161
-144,159,-57,7179
-171,187,-33,7198
-189,110,36,7219
-257,10,12,7237
-509,-129,-81,7255
-695,-603,-368,7275
-1079,-1553,-391,7298
-60,-1908,-290,7321
-65,-850,-339,7343
-145,-536,140,7364
-44,-948,-2048,7385
446,-326,-359,7406
585,170,-11,7428
-364,-266,-119,7446
-714,-485,-102,7468
-415,-394,-144,7490
-1164,-120,18,7512
-1145,116,145,7532
-541,465,-52,7554
-116,828,-44,7573
-627,-6,-530,7592
-384,-391,-425,7613
-48,-406,53,7634
-628,-40,-127,7653
-1465,231,-239,7673
-799,563,-301,7696
-602,721,-292,7716
-566,646,-213,7737
-561,478,-148,7758
-296,316,-51,7779
-21,231,3,7798
202,134,15,7816
370,-129,16,7833
20,-143,3,7852
-329,15,53,7868
-195,20,-48,7886
-206,47,-17,7905
-257,36,50,7923
-259,27,19,7941
-479,-78,-101,7959
-697,-475,-312,7980
-1108,-1372,-347,8001
-168,-2014,-376,8026
-42,-946,-400,8048
-187,-643,-57,8069
-33,-641,-379,8090
-2048,-1462,1445,8111
532,-481,107,8134
380,-539,-202,8155
-813,-152,-111,8175
-388,-395,-75,8197
-795,-268,-78,8218
-1245,-47,59,8239
-869,219,92,8258
-403,815,-65,8276
-133,563,-268,8297
-549,-403,-603,8317
-175,-523,-97,8339
-199,-180,-42,8360
-1090,67,-222,8381
-1249,468,-321,8401
-613,620,-286,8424
-607,656,-270,8444
-691,501,-168,8465
-476,350,-69,8486
-170,268,-44,8506
88,195,2,8525
321,27,26,8541
336,-188,-24,8558
-268,80,-5,8595
-136,40,-52,8608
-151,71,-4,8622
-174,92,2,8635
-203,125,29,8648
-288,107,-1,8667
-518,-130,-132,8686
-680,-715,-359,8708
-989,-1597,-403,8729
-7,-1791,-321,8753
-27,-868,-299,8773
-129,-436,140,8794
666,-1500,-2048,8815
328,-306,-374,8838
499,-41,118,8858
-280,-238,-202,8878
-680,-383,-96,8899
-494,-392,-124,8920
-1102,-142,60,8941
-1049,135,181,8963
-537,468,18,8983
-133,777,-61,9001
-563,47,-551,9022
-436,-415,-461,9041
-31,-421,25,9063
-336,-49,-87,9082
-1259,84,-187,9102
-1086,452,-253,9122
-558,586,-337,9145
-604,657,-200,9165
-550,566,-138,9186
-326,360,-49,9206
-81,245,-30,9227
154,125,-2,9245
292,-122,8,9263
23,-164,7,9281
-293,-43,69,9297
-233,65,-35,9316
-179,63,3,9334
-227,62,-1,9352
-252,84,21,9369
-420,-15,-36,9387
-621,-339,-232,9406
-997,-1183,-306,9428
-555,-1844,-319,9451
40,-1260,-367,9474
-107,-713,-140,9495
-8,-599,-231,9517
-2048,-1748,1400,9536
606,-683,160,9561
189,-396,-109,9580
-787,-166,-152,9601
-400,-406,-68,9623
-692,-262,-166,9644
-1192,-114,90,9665
-1020,179,138,9687
-374,741,-36,9707
-40,550,-250,9726
-552,-421,-466,9747
-307,-559,-151,9768
-108,-202,-22,9790
-650,149,-240,9811
-1192,270,-250,9832
-794,535,-319,9853
-759,595,-134,9874
-689,573,-198,9895
-380,433,-150,9916
-156,330,-37,9936
-6,198,4,9957
94,-5,42,9972
141,-158,33,9988
-30,-77,34,10006
-229,175,-1,10025
-249,198,-31,10045
-329,117,34,10065
-364,7,87,10086
-435,-86,15,10103
-672,-335,-172,10123
-963,-1049,-337,10146
-573,-1943,-332,10170
122,-1401,-332,10193
-102,-695,-106,10217
2047,-2048,-2048,10240
458,-377,-379,10264
531,422,19,10287
-469,-352,-192,10305
-528,-621,63,10328
-459,-303,-142,10349
-1030,-106,27,10372
-1090,77,182,10393
-565,347,44,10415
-156,725,-76,10434
-546,17,-592,10455
-375,-333,-391,10476
6,-376,54,10499
-619,-22,-106,10516
-1418,221,-199,10537
-732,488,-259,10561
-633,596,-311,10583
-675,626,-115,10604
-556,440,-128,10627
-260,289,-74,10648
15,184,-16,10669
285,2,27,10688
316,-163,3,10704
-175,-35,58,10723
-257,91,-59,10743
-162,67,-96,10763
-170,68,-68,10782
-230,56,-16,10802
-390,-23,-64,10822
-620,-328,-291,10843
-1124,-1211,-321,10865
-315,-1970,-328,10891
42,-1065,-319,10914
-213,-509,59,10936
-693,-348,-1488,10957
325,-414,-582,10981
417,318,166,11002
-515,-362,-128,11023
-496,-602,39,11045
-439,-219,-229,11066
-842,-156,25,11089
-949,49,177,11123
-585,269,-1,11137
-336,751,25,11150
-170,432,-314,11169
-593,-244,-671,11191
-179,-443,-139,11214
-247,-280,-20,11237
-1394,69,-232,11258
-1231,590,-304,11281
-547,791,-281,11303
-619,618,-153,11325
-547,388,-145,11347
-237,230,-33,11369
43,160,32,11389
303,-35,52,11408
315,-187,-19,11426
-93,-40,26,11447
-225,126,-28,11465
-147,121,-32,11487
-222,41,30,11507
-202,-18,57,11526
-353,-82,-41,11546
-540,-398,-271,11567
-963,-1178,-345,11589
-387,-2003,-289,11614
-3,-995,-318,11637
-184,-486,-27,11658
970,-1623,-2048,11680
540,-426,-640,11704
528,253,306,11725
-479,-303,-130,11746
-552,-617,45,11768
-385,-274,-183,11789
-844,-184,-21,11812
-1243,-80,109,11834
-602,242,-51,11855
-132,867,-76,11877
-496,119,-517,11897
-331,-354,-459,11919
-115,-478,96,11942
-710,32,-158,11963
-1384,204,-245,11983
-764,490,-263,12007
-637,536,-281,12028
-696,538,-200,12050
-402,384,-88,12072
-126,292,-27,12093
133,204,34,12113
329,-1,53,12132
168,-105,29,12150
-145,2,63,12170
-194,117,2,12187
-155,67,-36,12207
-178,60,-18,12226
-204,65,39,12246
-255,48,-29,12264
-446,-136,-165,12284
-694,-798,-335,12307
-937,-1682,-388,12329
38,-1694,-257,12354
-124,-684,-223,12376
-2048,-1836,2047,12398
705,-584,-754,12424
71,521,301,12445
-556,-419,-273,12464
-373,-831,131,12487
-442,-146,-150,12509
-802,-182,-3,12531
-1200,-171,113,12553
-654,189,-1,12575
-246,922,-132,12595
-565,159,-560,12617
-329,-359,-478,12639
-87,-350,16,12661
-791,23,-137,12682
-1373,246,-203,12702
-702,371,-253,12725
-683,524,-299,12747
-648,574,-94,12769
-549,449,-136,12789
-191,269,-37,12812
111,194,18,12832
409,34,50,12851
313,-118,8,12868
-151,-45,77,12888
-197,49,-5,12907
-129,27,-44,12925
-140,58,-28,12946
-161,70,26,12965
-237,40,-28,12984
-390,-183,-155,13004
-646,-804,-329,13027
-927,-1604,-318,13049
-18,-1539,-320,13074
-131,-739,-232,13096
-2048,-88,89,13119
354,-434,210,13140
589,626,-608,13161
-339,-22,-165,13181
-612,-831,32,13204
-301,-442,-23,13224
-587,-76,-194,13246
-1081,-219,80,13267
-1066,-47,173,13290
-451,473,4,13312
-79,709,-278,13330
-554,-117,-542,13351
-237,-399,-254,13374
-132,-161,-17,13396
-945,57,-182,13419
-1281,316,-199,13440
-685,435,-313,13462
-656,521,-308,13485
-657,607,-228,13506
-462,406,-75,13528
-154,262,-63,13549
224,107,-2,13570
452,-121,2,13588
77,-150,25,13607
-288,-46,56,13626
-150,-18,-50,13645
-88,-6,-27,13666
-165,82,13,13685
-243,124,-8,13704
-441,-35,-139,13723
-976,-1543,-259,13773
-411,-1817,-352,13787
-5,-1414,-358,13800
-1,-989,-320,13815
-90,-412,38,13836
-86,-606,-2048,13855
621,-668,-549,13879
760,-35,-18,13900
-567,-21,-155,13920
-529,-438,-26,13942
-417,-395,-133,13964
-926,-190,19,13986
-1131,64,137,14008
-520,338,-27,14028
-116,773,-7,14049
-382,186,-402,14069
-513,-497,-391,14091
-6,-512,86,14113
-183,-64,-100,14132
-879,185,-208,14154
-1074,437,-232,14176
-558,473,-297,14198
-691,496,-150,14221
-641,367,-210,14242
-307,209,-86,14264
-116,198,-30,14285
81,132,-1,14306
206,-15,23,14323
160,-111,-13,14343
-153,52,11,14363
-223,143,-30,14382
-199,68,-51,14403
-195,11,-18,14423
-246,-2,28,14442
-349,-1,-37,14460
-609,-141,-159,14481
-914,-754,-264,14503
-627,-1585,-317,14526
11,-1224,-202,14551
-103,-641,-94,14572
-166,-310,194,14594
-2048,-2048,2047,14616
494,-632,322,14641
109,-278,22,14661
-767,-81,-135,14682
-281,-364,-30,14703
-357,-295,-142,14725
-628,-173,-48,14748
-1011,-135,150,14770
-590,57,116,14792
-367,330,51,14813
-103,558,-183,14832
-446,17,-388,14854
-301,-268,-263,14875
37,-321,83,14898
-196,-72,-40,14916
-747,53,-163,14938
-935,197,-188,14958
-455,383,-272,14980
-622,523,-248,15002
-473,314,-208,15024
-247,161,-126,15045
-110,85,-76,15068
10,9,-32,15087
76,-58,-32,15104
57,-60,-56,15122
-74,40,-75,15141
-153,65,-94,15160
-210,33,-101,15179
-230,37,-81,15201
-335,60,-65,15220
-539,-9,-115,15240
-699,-326,-212,15260
-804,-1027,-124,15284
-271,-1202,-251,15307
43,-804,-170,15331
-108,-671,-63,15352
-93,-250,138,15374
-1678,1229,797,15394
95,-208,-740,15418
725,-413,63,15438
-573,-40,-98,15458
-563,-309,-47,15479
-216,-296,-43,15501
-337,-136,-113,15522
-381,-165,-83,15546
-584,-196,-14,15567
-785,-72,75,15589
-443,40,68,15609
-285,178,-27,15628
-169,264,-52,15648
-190,104,-123,15670
-310,-115,-210,15691
-158,-244,-36,15714
-200,-35,-60,15736
-530,181,-98,15757
-606,238,-146,15777
-624,318,-154,15800
-776,293,-272,15821
-340,118,-178,15843
-281,105,-127,15864
-203,60,-53,15887
-40,3,-43,15906
53,-75,-25,15924
17,-60,-64,15943
-85,2,-68,15962
-170,19,-61,15979
-226,19,-78,16000
-274,13,-79,16019
-343,-9,-67,16038
-408,-168,-125,16058
-408,-374,-120,16081
-480,-298,-105,16104
-695,-247,-81,16126
-646,-289,-104,16149
-358,-338,-126,16172
-226,-587,-33,16194
-120,-698,-40,16217
-211,-405,-47,16238
-934,101,-642,16273
-715,599,-1403,16286
-476,-93,428,16305
721,-572,-517,16325
-407,45,332,16348
-779,-155,-99,16367
-130,-122,25,16389
-161,115,-58,16410
-242,17,-2,16431
-263,-120,38,16449
-306,-44,-14,16471
-246,42,-47,16491
-238,68,-60,16510
-244,24,-55,16530
-251,57,-56,16550
-261,125,-77,16570
-235,99,-55,16590
-246,22,-50,16611
-249,27,-15,16630
-251,62,-22,16650
-233,38,-29,16670
-290,38,-37,16690
-253,64,-75,16709
-208,41,-38,16729
-310,7,-7,16749
-267,42,-33,16766
-209,94,-27,16786
-266,30,-26,16806
-246,19,-41,16826
-240,42,-27,16845
-233,3,-43,16866
-134,-27,-4,16884
-318,33,3,16904
-272,-31,18,16921
-331,14,29,16942
-98,49,-32,16960
-105,-84,-85,16978
-224,-4,-4,17000
-259,-11,-14,17018
-269,2,-10,17039
-256,58,-26,17057
-256,34,-19,17078
-238,19,-20,17097
-267,13,-13,17117
-270,-10,-12,17137
-235,6,-13,17158
-248,46,-27,17176
-272,31,-31,17196
-256,3,-25,17216
-253,0,-7,17234
-234,17,-13,17252
-245,18,-6,17272
-258,15,-8,17291
-247,14,-17,17309
-260,9,-19,17329
-257,10,-18,17348
-251,7,-12,17368
-249,-4,-1,17386
-243,-15,2,17405
-257,-7,-9,17424
-280,19,-29,17442
-238,10,-10,17462
-248,-3,-4,17482
-243,-10,-7,17501
-259,-4,-2,17520
-264,3,-9,17540
-247,4,-6,17557
-244,1,-6,17574
-253,-10,-4,17592
-228,13,-3,17612
-253,-137,-27,17631
-177,-49,1,17652
-292,15,-11,17672
-262,-1,-2,17691
-256,-22,-3,17710
-253,3,-10,17730
-248,-3,-2,17748
-255,-26,-2,17767
-234,-114,161,17786
-300,95,-10,17809
-263,8,-20,17828
-241,-9,5,17847
-271,24,-20,17865
-254,-1,-13,17885
-237,18,-17,17904
-239,9,-16,17924
-255,-29,-1,17943
-255,-11,-4,17963
-253,-7,-6,17982
-256,-26,-4,18001
-249,-17,-7,18021
-253,-23,-5,18040
-244,-8,-10,18060
-248,-11,-8,18080
-254,-15,-8,18100
-254,-11,-9,18119
-252,-2,-9,18140
-253,-2,-10,18158
-256,0,-11,18178
-253,-2,-10,18197
-253,-8,-9,18216
-249,-2,-10,18235
-252,-2,-5,18254
-252,-6,-7,18274
-255,-4,-7,18292
-253,0,-9,18311
-251,-6,-10,18329
-252,-14,-6,18349
-251,-10,-7,18368
-252,-20,-4,18387
-250,-12,-8,18408
-251,-4,-10,18427
-251,-8,-9,18447
-251,-11,-7,18466
-249,-24,-8,18486
-256,-8,-3,18505

data_walking_1

Plain text
0,0,0,52
-248,23,12,78
-254,-15,18,93
-250,-5,14,107
-251,28,8,121
-252,20,3,136
-253,0,8,149
-254,-21,14,163
-249,-3,18,178
-248,6,17,192
-251,12,16,206
-252,2,15,220
-255,14,21,234
-268,17,8,248
-242,75,2,263
-249,51,7,277
-253,-39,13,291
-244,-38,17,305
-253,14,7,319
-254,36,7,333
-252,18,5,348
-247,22,2,362
-246,17,6,376
-251,6,10,390
-255,3,11,404
-247,-2,11,418
-254,1,13,433
-249,3,13,447
-249,7,12,460
-248,1,11,475
-253,2,5,489
-247,25,1,503
-253,51,1,519
-251,24,4,535
-274,-40,9,551
-252,35,-5,567
-242,-24,14,583
-265,-26,27,602
-256,0,14,619
-384,-135,106,634
-190,14,7,654
-234,177,-15,670
-246,10,15,689
-253,-91,35,705
-251,-10,16,722
-249,45,2,741
-249,31,0,756
-255,21,-1,772
-248,31,0,788
-251,37,2,804
-248,45,0,820
-244,45,3,835
-242,57,-2,850
-248,41,-2,868
-249,10,2,884
-243,26,-6,900
-252,54,-19,916
-254,26,-13,934
-252,-25,-7,952
-258,5,-22,969
-255,7,-24,986
-250,-22,-12,1003
-254,-20,-7,1022
-254,-5,-9,1041
-252,-31,-2,1058
-247,-32,-1,1078
-252,-13,-10,1096
-247,-32,-6,1116
-245,-26,-16,1135
-248,-15,-29,1155
-245,-13,-25,1174
-249,-4,-20,1195
-243,8,-42,1213
-249,-32,-39,1230
-242,-54,-38,1250
-243,-39,-40,1270
-252,-31,-49,1290
-249,-49,-57,1309
-245,-81,-47,1330
-246,-106,-38,1349
-256,-82,-52,1370
-278,-65,-77,1389
-257,-73,-73,1410
-260,-65,-80,1429
-279,-70,-71,1448
-296,-75,-81,1469
-572,-31,-81,1488
-322,-47,-95,1508
-384,21,-88,1528
-342,30,-85,1547
-346,62,-81,1565
-336,82,-70,1584
-322,88,-62,1603
-302,-4,-85,1622
-264,-58,-32,1640
-254,29,-2,1660
-230,98,-6,1678
-210,76,-6,1695
-210,64,13,1713
-208,80,29,1731
-209,78,39,1748
-198,52,47,1766
-207,15,55,1783
-220,-9,50,1802
-227,-25,53,1819
-228,-15,53,1838
-236,12,54,1856
-239,6,51,1874
-260,-61,43,1904
-281,-107,45,1917
-305,-149,52,1931
-305,-206,45,1949
-300,-220,45,1969
-288,-210,36,1988
-267,-199,46,2009
-279,-170,64,2028
-255,-125,71,2048
-220,-90,72,2068
-202,-106,82,2086
-163,-103,66,2106
-49,-145,-632,2126
-1741,-26,771,2147
349,165,-326,2167
27,224,-268,2187
-346,-102,17,2206
-429,-226,12,2226
-193,-55,-74,2245
-220,13,-51,2266
-273,60,-56,2284
-244,43,-78,2302
-245,-40,-75,2321
-260,-28,-70,2341
-247,33,-75,2361
-244,37,-76,2379
-250,-2,-69,2399
-252,-17,-65,2417
-246,-14,-60,2437
-243,3,-60,2456
-245,5,-62,2475
-246,-11,-62,2492
-250,-4,-66,2511
-245,-7,-65,2531
-248,1,-62,2549
-247,3,-63,2567
-241,-4,-60,2584
-246,-20,-56,2604
-245,-7,-60,2623
-245,6,-67,2641
-243,2,-70,2660
-243,-7,-71,2677
-247,-7,-70,2696
-245,2,-74,2714
-250,11,-79,2733
-249,-1,-83,2751
-250,-1,-89,2769
-252,-8,-79,2788
-256,-11,-83,2807
-251,-11,-81,2827
-250,-4,-79,2846
-244,-15,-76,2866
-256,-30,-79,2885
-266,-66,-79,2905
-392,27,-167,2924
-489,202,-231,2945
-336,227,-162,2965
-377,-106,-15,2985
-321,-76,-75,3007
-279,202,-140,3026
-200,-7,-144,3047
-274,2,172,3067
-148,209,42,3085
-142,139,66,3103
-171,0,80,3122
-209,15,96,3139
-202,72,109,3156
-201,79,112,3175
-210,70,118,3194
-211,85,109,3213
-219,100,94,3231
-251,81,79,3250
-300,47,66,3268
-333,33,50,3286
-373,25,31,3303
-418,-23,12,3320
-442,-65,-6,3340
-454,-109,-4,3358
-383,-172,-23,3378
-306,-213,-27,3399
-303,-239,1,3420
-232,-311,-16,3438
-246,-267,-52,3460
-399,16,-155,3480
-321,686,-222,3500
-204,102,-117,3520
-263,-362,-80,3542
-257,-129,-90,3562
-233,79,-57,3582
-265,64,3,3602
-275,7,13,3618
-237,27,-39,3635
-260,9,-88,3653
-279,-39,-76,3672
-262,-42,-54,3691
-241,39,-44,3710
-245,64,-46,3730
-252,10,-54,3748
-260,-25,-60,3767
-250,-6,-62,3786
-245,24,-56,3806
-250,42,-60,3824
-244,31,-65,3843
-253,0,-64,3862
-252,2,-64,3879
-248,12,-58,3897
-253,6,-50,3915
-254,5,-55,3934
-256,1,-63,3951
-256,-9,-65,3969
-256,0,-64,3987
-258,18,-68,4005
-271,31,-68,4024
-270,14,-66,4042
-290,10,-49,4062
-323,-5,-54,4080
-334,-40,-49,4099
-344,-12,-37,4118
-459,66,-13,4139
-391,25,-50,4157
-447,2,-22,4175
-485,92,-56,4194
-493,194,-163,4212
-348,406,-248,4233
-308,227,-242,4253
-288,-147,-115,4275
-135,-55,-62,4326
-92,108,-73,4339
-22,200,-88,4353
10,231,-89,4366
-1,188,-71,4378
-50,102,-36,4391
-94,16,4,4408
-110,-21,30,4423
-114,23,39,4442
-126,67,30,4460
-165,89,31,4477
-211,75,34,4495
-254,37,34,4512
-315,18,40,4531
-388,7,36,4548
-428,-13,17,4564
-468,-70,0,4583
-467,-123,-8,4601
-528,-138,-2,4621
-479,-124,-7,4640
-416,-219,10,4661
-350,-380,63,4680
-310,-420,66,4700
-295,-274,-15,4719
-508,119,-64,4741
-317,667,-216,4760
-185,-243,-49,4781
-359,-455,-30,4802
-234,-9,-113,4823
-214,183,-67,4842
-269,53,4,4862
-271,-22,-9,4879
-238,25,-71,4897
-274,3,-95,4916
-269,-49,-69,4934
-249,1,-38,4954
-240,79,-44,4971
-249,56,-62,4990
-258,-28,-66,5009
-255,-38,-64,5028
-249,29,-63,5048
-249,34,-65,5067
-256,-2,-63,5086
-257,-16,-67,5104
-263,10,-68,5125
-247,18,-70,5143
-254,31,-63,5161
-264,42,-72,5180
-286,1,-58,5199
-257,-26,-58,5217
-284,0,-63,5236
-302,0,-57,5255
-310,0,-27,5272
-342,23,-30,5289
-342,0,-39,5308
-425,1,-32,5326
-472,34,-51,5344
-413,14,-50,5362
-448,126,-92,5381
-513,262,-171,5401
-378,404,-285,5422
-383,119,-253,5442
-328,-200,-75,5464
-232,-247,34,5484
-180,-57,-31,5504
-124,82,-55,5524
-39,180,-62,5542
5,191,-53,5561
-22,123,-22,5577
-62,34,10,5597
-89,1,24,5613
-106,25,16,5628
-123,73,3,5646
-142,86,-4,5663
-198,64,0,5681
-243,15,6,5697
-299,-6,-1,5713
-361,-15,-30,5732
-406,-56,-64,5751
-488,-86,-66,5771
-586,-154,-53,5791
-589,-241,-64,5812
-487,-300,-105,5832
-364,-466,18,5855
-358,-495,76,5874
-263,-311,-45,5894
-331,-164,43,5914
-399,5,5,5935
-797,726,214,5950
-95,593,-170,5969
-148,-459,-152,5990
-359,-451,-40,6011
-255,33,-64,6032
-222,207,-62,6050
-257,62,-21,6071
-251,12,-44,6089
-273,6,-83,6108
-269,-51,-76,6126
-256,-17,-49,6146
-246,71,-50,6165
-244,56,-65,6183
-249,-10,-67,6203
-250,-19,-62,6222
-255,15,-81,6242
-253,28,-63,6261
-254,5,-58,6280
-254,4,-62,6297
-247,22,-71,6315
-248,29,-66,6334
-257,17,-66,6352
-262,11,-70,6371
-267,5,-70,6390
-268,-11,-64,6408
-282,-7,-65,6427
-306,0,-57,6446
-308,1,-39,6464
-339,23,-35,6481
-339,8,-53,6500
-508,54,-46,6536
-406,7,-46,6549
-417,19,-34,6561
-462,107,-66,6575
-503,238,-99,6593
-410,348,-222,6612
-359,243,-253,6633
-334,-16,-137,6654
-220,-210,-3,6675
-182,-205,51,6694
-155,-54,-60,6714
-88,131,-70,6734
-22,224,-72,6753
-39,179,-52,6771
-81,53,-20,6791
-99,-33,-1,6808
-107,-29,3,6825
-117,31,-8,6843
-148,70,-25,6861
-195,60,-27,6880
-252,9,-24,6898
-319,-22,-35,6916
-383,-79,-68,6936
-432,-138,-83,6956
-509,-108,-81,6976
-535,-162,-72,6998
-546,-257,-80,7018
-424,-408,-29,7038
-367,-483,70,7060
-279,-407,2,7079
-275,-270,-42,7098
-348,-175,78,7119
-406,71,-36,7139
-488,958,-123,7157
-175,472,-45,7178
-179,-678,-125,7198
-390,-525,-13,7220
-254,69,-59,7240
-219,269,-73,7260
-251,91,-34,7279
-245,-27,-50,7298
-281,-29,-93,7318
-272,-38,-69,7337
-245,25,-53,7357
-243,79,-54,7375
-245,57,-66,7395
-255,-32,-66,7413
-256,-32,-54,7433
-250,32,-65,7453
-249,30,-68,7472
-256,-10,-59,7490
-259,-5,-60,7510
-251,19,-57,7529
-255,23,-56,7547
-265,-3,-58,7566
-270,-20,-55,7585
-269,-8,-59,7605
-279,-6,-64,7623
-298,-5,-57,7642
-313,6,-33,7661
-346,20,-45,7678
-336,-5,-54,7697
-381,-2,-34,7715
-499,76,-38,7735
-422,36,-37,7753
-436,155,-64,7772
-500,306,-128,7792
-378,360,-241,7813
-340,190,-227,7833
-287,-107,-155,7855
-231,-348,11,7876
-190,-235,1,7896
-133,-11,-64,7914
-48,214,-66,7934
13,312,-83,7953
-14,211,-64,7970
-76,57,-19,7990
-103,-35,7,8007
-118,-4,9,8025
-130,58,-2,8041
-171,97,-10,8059
-224,72,-3,8078
-290,36,-8,8095
-380,1,-19,8113
-431,-61,-50,8131
-464,-97,-64,8151
-544,-123,-63,8170
-569,-205,-71,8192
-497,-314,-103,8212
-375,-474,-50,8233
-342,-500,33,8255
-290,-335,0,8274
-325,-214,16,8293
-599,124,252,8312
-156,485,-292,8333
-228,-101,15,8353
-233,-403,-127,8373
-326,-133,-54,8395
-239,119,-55,8416
-247,145,-30,8435
-253,28,-33,8456
-260,-14,-78,8474
-276,-50,-74,8494
-261,-18,-62,8513
-245,68,-57,8534
-251,65,-60,8552
-251,-9,-59,8570
-257,-27,-55,8590
-248,13,-60,8609
-243,24,-61,8628
-252,0,-58,8646
-253,-6,-67,8665
-251,0,-65,8683
-256,10,-64,8700
-251,19,-70,8720
-245,14,-63,8738
-252,24,-65,8757
-269,13,-70,8775
-274,-28,-57,8795
-288,-13,-67,8814
-295,1,-59,8834
-322,9,-46,8852
-332,-1,-53,8869
-335,-16,-56,8888
-368,-15,-47,8907
-430,9,-32,8941
-401,46,-51,8954
-407,152,-91,8967
-470,273,-131,8984
-417,323,-189,9005
-333,221,-218,9025
-300,-44,-130,9046
-230,-258,-9,9067
-202,-249,54,9086
-139,0,-64,9106
-81,162,-41,9124
-9,276,-59,9143
-35,231,-50,9160
-98,97,-12,9179
-133,0,18,9197
-140,-3,22,9213
-155,46,11,9231
-188,74,1,9249
-226,55,-3,9266
-294,0,-16,9283
-357,-36,-31,9300
-400,-53,-54,9321
-443,-96,-60,9340
-515,-160,-43,9360
-529,-231,-32,9381
-465,-251,-60,9402
-375,-348,-35,9422
-335,-467,32,9443
-289,-392,14,9463
-318,-269,4,9483
-446,-86,191,9501
-466,608,-90,9522
-167,305,-120,9541
-195,-361,-129,9562
-299,-350,-103,9584
-306,-1,-24,9606
-230,157,-32,9624
-243,91,-18,9644
-244,19,-52,9663
-273,-7,-83,9681
-282,-58,-65,9700
-254,-21,-47,9720
-247,80,-44,9740
-245,79,-60,9758
-250,-13,-62,9777
-255,-31,-58,9797
-249,23,-59,9817
-250,37,-65,9835
-253,2,-57,9854
-257,-16,-53,9872
-255,5,-61,9891
-254,12,-59,9909
-252,8,-60,9928
-258,12,-64,9946
-267,2,-64,9964
-278,-28,-56,9982
-283,-8,-54,10002
-293,15,-58,10021
-319,16,-37,10041
-334,2,-47,10061
-340,-7,-45,10080
-432,27,-30,10099
-431,30,-45,10120
-444,46,-46,10139
-450,213,-115,10159
-464,336,-182,10181
-321,268,-253,10203
-344,2,-170,10224
-259,-197,-23,10244
-191,-195,55,10266
-140,-20,-65,10287
-86,132,-65,10307
-24,218,-75,10328
-45,167,-60,10347
-100,46,-6,10366
-122,-9,17,10386
-128,10,15,10404
-149,59,2,10423
-195,75,-4,10440
-237,48,-4,10460
-304,2,-9,10478
-361,-37,-24,10496
-419,-81,-44,10517
-480,-132,-44,10537
-528,-225,-19,10559
-534,-258,-47,10582
-426,-293,-46,10603
-345,-414,10,10625
-305,-440,37,10646
-301,-267,1,10667
-353,-156,90,10686
-654,345,269,10706
-101,503,-218,10728
-203,-307,-114,10749
-320,-398,-53,10772
-275,-19,-51,10795
-237,152,-35,10815
-255,64,-31,10835
-239,35,-63,10856
-280,-9,-87,10875
-276,-65,-57,10895
-247,8,-41,10916
-246,79,-49,10935
-248,33,-62,10954
-253,-27,-64,10974
-250,-9,-56,10995
-256,24,-61,11015
-249,19,-62,11034
-256,0,-65,11055
-254,-1,-62,11073
-251,18,-63,11092
-254,15,-56,11113
-256,6,-59,11132
-276,3,-63,11151
-267,-17,-50,11169
-275,0,-66,11191
-293,-2,-73,11209
-303,4,-46,11229
-334,16,-57,11248
-318,-16,-55,11268
-364,-20,-37,11288
-516,79,-36,11309
-413,25,-37,11329
-419,194,-82,11348
-473,353,-127,11369
-338,253,-236,11403
-346,67,-163,11416
-290,-161,-100,11433
-229,-308,52,11457
-195,-98,-14,11478
-113,100,-71,11498
-44,232,-71,11520
-35,213,-63,11539
-82,70,-25,11558
-102,-41,5,11577
-122,-37,20,11596
-133,45,6,11616
-166,81,-2,11633
-213,55,-15,11653
-277,-7,-12,11672
-345,-37,-21,11692
-403,-85,-60,11713
-442,-159,-59,11734
-536,-224,-19,11755
-531,-280,-30,11777
-410,-296,-65,11799
-352,-415,16,11821
-312,-462,45,11841
-273,-332,-12,11863
-435,-33,177,11884
-443,752,-205,11905
-202,242,-21,11927
-253,-499,-115,11948
-351,-315,-77,11970
-234,98,-39,11993
-250,137,4,12012
-262,45,-8,12030
-235,46,-67,12050
-288,-37,-99,12069
-261,-63,-63,12090
-250,59,-51,12111
-240,120,-65,12131
-254,18,-73,12151
-257,-46,-57,12171
-249,19,-65,12192
-247,33,-60,12212
-259,1,-61,12231
-257,-14,-59,12251
-248,10,-54,12271
-252,28,-58,12291
-259,5,-59,12311
-265,-16,-56,12329
-277,-12,-48,12350
-269,-4,-50,12370
-295,9,-61,12391
-301,2,-43,12409
-327,23,-28,12428
-332,11,-50,12448
-345,-26,-52,12468
-411,6,-13,12488
-494,81,-48,12507
-389,109,-74,12527
-456,275,-132,12548
-410,340,-219,12569
-364,235,-252,12592
-298,-21,-140,12613
-226,-238,-46,12635
-198,-290,36,12657
-149,-33,-55,12678
-59,208,-64,12698
7,318,-92,12719
-51,216,-72,12736
-114,46,-33,12755
-140,-65,4,12775
-143,-38,9,12794
-155,39,-10,12813
-205,64,-21,12832
-274,20,-26,12853
-355,-17,-38,12872
-431,-35,-71,12893
-523,-124,-68,12914
-575,-233,-55,12936
-599,-244,-80,12957
-409,-388,-70,12980
-380,-552,61,13001
-275,-460,14,13022
-301,-324,-3,13043
-446,-173,141,13064
-358,708,-219,13085
-148,291,-96,13107
-262,-416,-109,13128
-336,-366,-93,13151
-247,109,-45,13172
-226,158,-34,13194
-252,55,-36,13214
-268,15,-82,13234
-280,-56,-91,13254
-257,-29,-59,13275
-251,81,-54,13295
-247,73,-73,13316
-249,-11,-73,13335
-246,-11,-63,13356
-250,31,-64,13377
-251,13,-61,13396
-254,0,-59,13416
-248,11,-65,13434
-251,26,-60,13455
-256,11,-58,13474
-265,-5,-61,13494
-273,-24,-55,13514
-272,1,-51,13535
-288,19,-78,13553
-300,-2,-70,13573
-318,16,-53,13593
-344,23,-61,13613
-336,-18,-45,13632
-392,6,-15,13654
-519,92,-34,13672
-455,96,-77,13691
-422,315,-147,13712
-437,385,-207,13733
-352,256,-253,13755
-310,-45,-138,13777
-220,-278,-24,13799
-203,-277,61,13820
-144,-21,-77,13842
-76,206,-57,13862
-21,311,-62,13882
-67,184,-46,13901
-108,15,-17,13922
-121,-65,-1,13941
-139,29,-22,13972
-165,55,-35,13984
-205,42,-54,14001
-259,-4,-62,14020
-319,-42,-75,14041
-384,-71,-109,14061
-475,-154,-95,14083
-529,-245,-41,14104
-595,-220,-31,14127
-447,-273,-87,14148
-397,-467,46,14170
-326,-552,49,14191
-270,-360,-28,14212
-506,38,202,14233
-441,745,-158,14254
-179,190,-86,14275
-254,-481,-117,14296
-315,-316,-84,14319
-237,89,-36,14341
-272,154,0,14360
-255,82,-18,14380
-236,41,-90,14399
-295,-67,-96,14418
-258,-76,-56,14439
-242,88,-52,14460
-242,113,-59,14480
-254,2,-69,14500
-255,-47,-58,14520
-252,13,-69,14540
-246,49,-70,14560
-254,16,-64,14580
-251,2,-65,14600
-242,23,-69,14618
-243,39,-71,14638
-273,27,-64,14658
-269,-14,-56,14678
-255,-1,-62,14698
-265,0,-66,14718
-296,-17,-64,14737
-299,-19,-39,14757
-322,23,-21,14779
-330,2,-48,14798
-333,-39,-57,14817
-390,-14,-23,14837
-498,62,-50,14859
-411,51,-65,14878
-509,193,-79,14898
-438,383,-241,14919
-358,325,-275,14941
-310,2,-176,14962
-232,-208,-47,14983
-195,-335,101,15004
-151,-154,-49,15026
-67,97,-59,15048
15,248,-79,15067
11,289,-61,15085
-67,153,-5,15104
-125,16,32,15123
-136,-52,48,15141
-143,13,39,15161
-170,89,22,15180
-233,101,17,15199
-307,63,8,15218
-402,18,1,15236
-461,-51,-20,15254
-509,-94,-30,15275
-597,-141,-22,15295
-559,-192,-76,15318
-432,-326,-113,15339
-372,-504,29,15362
-308,-429,23,15383
-239,-257,-68,15404
-331,-189,42,15425
-622,296,293,15447
-105,744,-283,15467
-148,-120,-196,15489
-373,-658,5,15512
-319,-194,-51,15532
-224,179,-32,15553
-254,167,-20,15575
-232,39,-49,15595
-278,-15,-89,15614
-286,-72,-73,15635
-254,-6,-39,15656
-246,95,-43,15676
-243,59,-54,15695
-257,-29,-59,15716
-252,-31,-47,15736
-247,19,-53,15757
-252,19,-56,15777
-258,-21,-51,15797
-257,-12,-59,15817
-247,14,-63,15839
-249,16,-57,15858
-268,3,-55,15878
-263,-13,-62,15896
-278,-17,-52,15918
-273,-5,-64,15938
-312,-3,-62,15958
-315,3,-28,15978
-349,22,-26,15996
-354,-7,-30,16016
-376,-24,-18,16035
-546,109,-34,16057
-401,66,-56,16077
-500,135,-39,16097
-412,390,-220,16118
-294,373,-333,16140
-292,-78,-185,16161
-215,-354,-18,16184
-207,-257,45,16205
-137,-48,-68,16226
-47,133,-65,16247
9,240,-76,16267
-23,193,-52,16284
-79,78,-6,16305
-123,-2,31,16322
-133,2,38,16340
-142,60,28,16358
-177,86,15,16377
-242,57,19,16396
-309,15,14,16414
-368,-14,1,16433
-429,-35,-8,16452
-466,-56,-29,16472
-548,-100,-34,16492
-406,-306,-72,16539
-385,-382,-20,16555
-332,-431,34,16568
-297,-435,53,16581
-287,-296,-6,16600
-440,-68,166,16620
-568,461,-10,16642
-256,-23,4,16662
-225,-349,-84,16680
-228,-128,-175,16702
-270,-14,-14,16726
-297,49,54,16746
-237,77,-7,16764
-211,88,-75,16784
-291,-16,-101,16803
-290,-111,-60,16825
-247,27,-43,16847
-243,120,-47,16867
-242,67,-54,16887
-258,-28,-64,16908
-252,-17,-57,16928
-244,44,-63,16949
-246,50,-62,16968
-250,21,-66,16989
-249,11,-66,17008
-253,14,-62,17028
-254,11,-58,17048
-252,17,-61,17068
-251,28,-65,17087
-256,11,-68,17107
-268,-26,-63,17127
-291,-18,-62,17147
-285,-15,-59,17168
-316,-1,-41,17189
-333,-12,-39,17209
-347,-5,-42,17229
-437,44,-17,17250
-386,14,-33,17269
-424,83,-22,17289
-472,140,-54,17309
-479,229,-137,17330
-318,387,-245,17351
-294,135,-223,17374
-265,-184,-89,17395
-244,-373,51,17417
-199,-132,-15,17438
-114,90,-71,17460
-16,233,-73,17479
6,219,-83,17499
-34,114,-64,17517
-91,-23,-19,17537
-118,-42,3,17556
-127,26,1,17575
-147,80,-3,17593
-200,81,2,17611
-264,46,1,17629
-333,19,-9,17647
-390,-27,-24,17666
-453,-82,-34,17686
-513,-110,-29,17708
-558,-133,-60,17729
-522,-206,-65,17751
-386,-363,-20,17773
-335,-428,44,17795
-250,-295,-13,17815
-263,-178,-21,17838
-362,-63,134,17859
-640,630,77,17880
-203,364,-151,17899
-226,-485,-57,17922
-285,-300,-110,17943
-242,23,-60,17966
-249,148,9,17986
-261,74,4,18004
-225,38,-41,18022
-269,14,-105,18042
-276,-64,-88,18063
-251,-15,-52,18083
-250,91,-49,18105
-249,53,-60,18124
-253,-31,-61,18144
-250,-11,-58,18164
-246,39,-64,18186
-247,20,-63,18205
-254,-13,-60,18225
-261,-16,-54,18246
-251,3,-62,18267
-254,13,-61,18285
-246,17,-65,18306
-251,23,-69,18325
-253,29,-82,18344
-290,-15,-63,18364
-280,-41,-51,18385
-285,-3,-50,18406
-305,2,-41,18425
-324,-9,-36,18445
-325,-15,-51,18464
-324,-30,-42,18485
-494,66,-24,18506
-381,24,-45,18526
-429,148,-42,18545
-474,253,-77,18566
-375,344,-219,18587
-315,258,-252,18609
-277,-80,-187,18630
-245,-397,-12,18653
-256,-255,53,18674
-134,35,-91,18695
-60,227,-69,18715
-20,273,-83,18735
-54,159,-62,18754
-109,4,-6,18775
-135,-50,28,18792
-149,4,30,18811
-159,68,16,18829
-206,89,3,18848
-261,45,2,18866
-325,8,0,18883
-377,-23,-20,18900
-421,-63,-40,18921
-464,-101,-54,18941
-539,-176,-43,18963
-521,-200,-56,18985
-388,-268,-64,19007
-274,-357,18,19053
-254,-292,-21,19066
-276,-248,-17,19080
-335,-193,45,19093
-756,439,388,19115
-174,510,-200,19135
-162,-274,-84,19156
-307,-480,-70,19179
-264,-86,-79,19201
-268,149,23,19221
-273,112,-5,19241
-213,34,-56,19261
-275,-16,-84,19280
-295,-99,-60,19302
-244,-4,-42,19322
-238,109,-42,19342
-246,61,-50,19362
-260,-41,-62,19383
-250,-26,-53,19403
-248,38,-60,19424
-250,26,-59,19444
-255,-7,-56,19464
...

This file has been truncated, please download it to see its full contents.

data_walking_2

Plain text
0,0,0,61
-251,-26,19,88
-252,-16,16,102
-250,5,12,116
-251,11,12,131
-250,2,12,145
-254,6,11,159
-241,9,9,173
-262,-3,15,187
-267,33,14,201
-245,-27,23,216
-241,-12,14,230
-267,9,13,244
-251,19,17,259
-242,9,11,273
-260,-30,22,286
-239,-27,17,301
-250,16,12,315
-255,19,8,329
-252,-1,10,344
-241,-11,14,358
-254,-6,13,372
-251,5,13,387
-249,2,12,401
-248,0,15,414
-255,1,13,429
-244,-2,10,444
-249,-14,14,460
-258,1,14,479
-241,1,11,494
-255,0,14,509
-249,-14,14,525
-253,-1,24,543
-268,9,17,560
-236,-8,11,575
-251,-1,11,609
-248,3,12,621
-247,2,8,634
-252,0,11,648
-253,0,8,660
-252,0,8,673
-251,0,12,687
-251,-9,14,699
-255,-6,8,715
-253,-1,7,731
-244,-3,4,747
-254,-2,6,762
-254,5,3,778
-255,-6,9,792
-247,-10,8,807
-269,23,21,825
-267,-5,22,841
-235,-25,6,858
-245,-12,7,874
-250,0,5,891
-247,0,1,906
-255,8,7,920
-254,9,3,934
-280,0,9,950
-241,0,-1,964
-243,7,1,979
-256,6,6,994
-287,0,24,1009
-240,-28,4,1026
-265,-9,19,1043
-276,10,15,1060
-250,14,8,1079
-243,17,-2,1095
-254,-6,0,1113
-264,-1,12,1129
-252,-6,5,1147
-264,15,12,1164
-261,33,13,1181
-240,-44,16,1199
-261,5,7,1218
-239,33,-6,1233
-290,-86,25,1251
-238,63,-9,1269
-263,50,1,1288
-253,-30,7,1304
-252,-19,14,1321
-248,11,16,1340
-243,9,19,1358
-248,-5,12,1375
-249,-6,13,1392
-253,12,1,1411
-249,29,1,1427
-256,23,-4,1443
-255,5,-1,1461
-251,-2,1,1478
-249,12,-1,1495
-244,54,-4,1512
-243,57,-5,1529
-251,38,-13,1548
-248,28,-5,1566
-251,24,2,1584
-244,29,-4,1600
-253,29,-3,1618
-255,-4,-14,1636
-252,-17,-6,1654
-246,10,-8,1673
-249,6,-3,1691
-254,-3,-10,1708
-250,-2,-15,1726
-256,-4,-28,1745
-255,-23,-26,1764
-254,0,-28,1783
-253,21,-37,1801
-251,10,-40,1820
-245,0,-32,1839
-256,-14,-40,1856
-245,-31,-40,1876
-249,-14,-34,1896
-250,0,-44,1915
-248,-13,-42,1933
-258,-35,-48,1953
-236,-49,-56,1973
-240,-44,-54,1992
-247,-34,-61,2013
-264,-22,-55,2032
-282,-37,-62,2052
-269,-56,-55,2071
-260,-54,-60,2092
-280,-67,-74,2111
-334,-82,-79,2130
-460,-70,-71,2151
-443,-45,-52,2170
-372,12,-39,2190
-378,62,-31,2209
-378,121,-62,2228
-389,180,-101,2247
-401,137,-59,2268
-359,-10,-58,2288
-316,-81,-7,2308
-288,-26,-15,2326
-243,36,-45,2347
-194,77,-58,2365
-164,99,-47,2383
-132,112,-17,2402
-125,80,-6,2422
-129,36,-2,2440
-137,-1,-7,2457
-144,-2,-16,2476
-155,12,-11,2494
-172,24,-4,2512
-189,13,-8,2530
-218,-4,-9,2548
-267,-16,-17,2566
-306,-16,-26,2585
-349,-60,-26,2605
-391,-114,-17,2625
-482,-212,2,2646
-505,-270,-6,2664
-438,-228,-71,2684
-326,-313,-71,2705
-346,-457,16,2725
-308,-439,1,2746
-339,-248,-15,2764
-793,209,172,2785
-147,272,-211,2804
-182,-221,-107,2838
-263,-136,-135,2851
-351,-86,45,2869
-236,21,12,2888
-243,94,-8,2906
-239,102,-65,2923
-264,25,-89,2944
-265,-21,-74,2962
-252,35,-68,2981
-243,82,-42,3000
-255,18,-26,3019
-262,-19,-37,3038
-250,15,-58,3057
-248,30,-63,3077
-249,30,-54,3095
-253,10,-50,3113
-255,0,-51,3132
-251,17,-59,3150
-248,36,-63,3169
-244,32,-61,3187
-261,3,-48,3207
-260,0,-54,3224
-255,11,-60,3241
-259,5,-59,3260
-263,-10,-61,3278
-305,-31,-40,3298
-299,-21,-38,3317
-316,26,-28,3337
-334,27,-39,3356
-345,-4,-60,3375
-464,39,-45,3393
-414,38,-52,3412
-411,62,-5,3431
-436,194,-80,3448
-426,304,-123,3468
-382,305,-199,3489
-373,149,-205,3510
-335,-144,-147,3530
-265,-266,-3,3553
-227,-105,0,3572
-166,64,-70,3591
-95,178,-55,3610
-32,207,-66,3629
-48,96,-50,3647
-72,-2,-22,3664
-85,-46,3,3683
-92,15,2,3699
-109,88,-8,3715
-147,118,-12,3732
-204,76,-8,3752
-257,4,6,3770
-303,-29,2,3785
-352,-47,-24,3803
-398,-95,-67,3823
-472,-136,-70,3843
-541,-201,-48,3863
-537,-257,-58,3885
-472,-299,-85,3905
-389,-443,14,3926
-347,-457,74,3946
-265,-285,-20,3965
-314,-179,45,3986
-499,124,102,4006
-216,816,-334,4026
-199,-4,-104,4046
-271,-679,-12,4066
-339,-223,-60,4087
-255,158,-48,4108
-251,105,-6,4127
-268,-26,-13,4147
-273,23,-69,4166
-271,-7,-76,4185
-261,-47,-57,4204
-255,29,-36,4224
-247,69,-51,4242
-248,18,-67,4260
-248,-17,-62,4280
-251,17,-64,4299
-251,29,-61,4318
-252,17,-57,4337
-251,12,-59,4356
-254,23,-63,4374
-253,20,-61,4392
-261,2,-58,4412
-296,-15,-47,4429
-274,-29,-44,4449
-278,6,-66,4468
-308,19,-76,4487
-302,-7,-53,4505
-337,22,-26,4524
-350,21,-35,4543
-382,-8,-37,4561
-562,64,-28,4580
-460,47,-48,4598
-411,242,-124,4618
-462,417,-252,4638
-353,357,-307,4659
-386,44,-237,4680
-312,-243,-100,4700
-242,-360,91,4721
-181,-67,-62,4742
-130,116,-65,4761
-5,251,-77,4781
17,243,-69,4798
-39,108,-24,4816
-86,8,19,4835
-102,-26,27,4850
-125,21,35,4870
-129,69,22,4887
-163,91,18,4904
-213,58,18,4922
-274,21,14,4940
-346,0,9,4958
-399,-15,-12,4973
-450,-57,-40,4993
-559,-105,-41,5013
-570,-214,-35,5033
-579,-243,-70,5054
-386,-404,-67,5075
-364,-559,16,5096
-269,-483,-16,5115
-293,-230,-48,5137
-566,154,186,5157
-331,754,-257,5177
-186,-73,-95,5197
-217,-605,-79,5218
-246,67,-47,5398
-249,29,-57,5410
-250,-19,-63,5424
-254,-31,-56,5437
-252,-1,-55,5449
-248,26,-60,5463
-246,28,-63,5479
-245,2,-56,5492
-245,-18,-53,5505
-257,-12,-57,5521
-252,11,-65,5541
-248,8,-62,5560
-261,8,-61,5577
-260,23,-68,5595
-277,14,-69,5614
-282,-28,-58,5633
-315,-8,-66,5652
-315,2,-49,5670
-326,15,-28,5689
-345,25,-47,5707
-334,-12,-64,5726
-387,-24,-30,5746
-558,87,-44,5766
-416,117,-82,5784
-497,310,-107,5804
-404,408,-289,5825
-389,202,-277,5846
-345,-56,-163,5866
-261,-276,2,5888
-224,-283,102,5906
-168,-50,-54,5926
-73,182,-57,5947
7,317,-66,5965
-8,263,-45,5982
-76,76,14,5999
-113,-34,54,6017
-133,-70,78,6035
-143,35,66,6053
-168,125,54,6071
-242,116,56,6090
-300,39,46,6109
-353,-28,34,6126
-393,-37,18,6146
-464,-15,1,6164
-564,-78,-3,6181
-565,-230,-35,6200
-518,-330,-114,6221
-335,-482,-118,6243
-339,-632,-34,6264
-278,-478,-70,6286
-364,-252,9,6306
-823,379,226,6325
-103,430,-237,6345
-99,-114,-116,6366
-273,-471,-88,6386
-383,-175,-20,6408
-225,172,-22,6428
-214,181,-54,6448
-260,-11,-40,6467
-287,-134,-23,6488
-273,-74,-27,6508
-250,48,-40,6528
-253,60,-45,6547
-257,5,-46,6565
-256,-25,-53,6583
-248,0,-49,6602
-245,39,-53,6621
-251,44,-51,6639
-252,24,-62,6658
-251,11,-61,6677
-250,29,-55,6695
-244,46,-63,6714
-255,13,-61,6732
-263,2,-55,6752
-263,15,-62,6769
-283,-1,-58,6788
-293,-43,-46,6807
-311,-9,-52,6827
-311,6,-34,6845
-337,18,-26,6862
-329,8,-43,6882
-349,-9,-43,6899
-407,13,-1,6918
-523,96,-28,6935
-409,149,-57,6955
-501,265,-61,6974
-369,383,-272,6993
-403,256,-279,7015
-391,-89,-172,7035
-289,-342,-34,7056
-239,-221,50,7077
-161,13,-73,7097
-82,164,-64,7115
2,256,-59,7134
-10,211,-43,7151
-57,90,0,7170
-83,9,31,7185
-113,1,42,7200
-128,41,36,7218
-151,94,16,7235
-191,97,10,7252
-249,53,19,7270
-316,12,11,7288
-361,-22,-12,7306
-394,-48,-49,7325
-477,-14,-66,7346
-590,-90,-63,7365
-585,-242,-73,7385
-509,-342,-168,7406
-338,-565,-77,7428
-325,-566,-22,7448
-262,-388,-74,7469
-525,-107,304,7490
-496,633,-233,7511
-207,191,-55,7531
-211,-405,-22,7552
-294,-327,-154,7572
-277,43,-43,7593
-258,158,33,7613
-261,43,-9,7631
-250,-22,-42,7649
-269,-50,-56,7668
-285,-77,-31,7689
-260,3,-37,7708
-240,69,-43,7726
-251,46,-46,7745
-251,-37,-42,7780
-253,-4,-43,7793
-251,19,-43,7805
-250,25,-50,7821
-250,13,-51,7839
-243,3,-55,7858
-248,10,-60,7876
-263,1,-55,7895
-255,-13,-58,7912
-250,12,-52,7931
-250,45,-59,7951
-289,7,-55,7969
-287,-42,-44,7987
-296,-12,-69,8007
-310,2,-51,8027
-344,2,-36,8044
-368,-6,-38,8061
-377,-11,-28,8081
-503,79,-32,8100
-449,39,-21,8119
-479,149,-33,8138
-511,276,-182,8158
-354,485,-312,8178
-356,186,-289,8199
-317,-263,-97,8220
-260,-403,71,8241
-222,-135,-8,8260
-153,71,-62,8281
-68,212,-69,8299
-1,265,-71,8317
-18,171,-48,8335
-62,10,8,8354
-89,-43,37,8370
-120,-20,45,8387
-130,59,31,8407
-145,115,18,8424
-191,107,23,8442
-261,55,34,8461
-343,11,43,8479
-398,-24,16,8497
-425,-38,-25,8515
-495,-32,-37,8535
-581,-116,-40,8555
-569,-239,-76,8576
-444,-342,-113,8596
-354,-517,-30,8619
-301,-527,7,8639
-265,-332,-75,8657
-365,-188,18,8679
-859,395,464,8698
-99,521,-235,8718
-205,-123,-86,8738
-254,-581,-83,8759
-322,-144,-122,8779
-255,181,12,8801
-222,136,-1,8820
-272,30,-47,8839
-257,-55,-61,8857
-276,-88,-60,8878
-266,-15,-47,8897
-244,55,-42,8916
-251,29,-46,8936
-257,-20,-56,8954
-255,-16,-60,8974
-251,10,-56,8993
-247,15,-54,9013
-247,8,-58,9031
-245,0,-55,9049
-250,10,-57,9066
-246,6,-56,9085
-263,-15,-54,9103
-249,0,-58,9122
-244,40,-63,9141
-257,31,-64,9159
-277,-27,-64,9178
-300,-47,-63,9197
-305,-18,-63,9218
-326,24,-39,9237
-343,14,-43,9255
-361,-17,-45,9275
-375,-16,-32,9294
-569,86,-14,9314
-462,105,-79,9332
-440,314,-88,9353
-454,430,-196,9372
-312,360,-296,9393
-343,3,-225,9414
-286,-318,-65,9433
-240,-284,57,9453
-198,10,-44,9474
-111,153,-75,9492
-31,254,-67,9511
-36,195,-42,9530
-84,62,-2,9549
-104,-24,28,9566
-116,-3,28,9584
-139,79,16,9603
-172,114,9,9620
-236,82,16,9637
-284,35,12,9655
-349,-5,0,9673
-403,-42,-23,9690
-448,-54,-59,9709
-526,-98,-62,9729
-594,-189,-63,9749
-514,-232,-144,9769
-398,-443,-82,9791
-357,-557,11,9812
-262,-431,-50,9832
-272,-261,-46,9852
-638,83,478,9874
-339,695,-341,9892
-142,102,-168,9913
-245,-535,-129,9934
-296,-301,-148,9956
-307,62,35,9977
-262,123,23,9995
-238,23,-9,10014
-242,20,-60,10033
-287,-22,-67,10052
-282,-100,-41,10074
-249,55,-47,10095
-243,88,-47,10115
-253,-3,-46,10135
-246,23,-58,10177
-243,49,-63,10190
-244,40,-59,10203
-245,17,-57,10216
-254,-8,-48,10233
-264,-5,-50,10253
-255,7,-62,10273
-250,10,-62,10292
-256,29,-65,10311
-274,17,-63,10331
-279,-11,-60,10351
-305,-13,-64,10372
-319,-14,-54,10392
-327,17,-17,10414
-349,37,-26,10433
-373,6,-39,10452
-529,68,-15,10472
-451,62,-48,10491
-480,196,-16,10511
-443,388,-256,10531
-350,419,-315,10554
-340,4,-232,10575
-278,-317,-73,10595
-255,-380,101,10617
-173,-47,-58,10639
-91,162,-67,10659
1,283,-81,10680
1,253,-71,10697
-64,95,-26,10715
-100,-35,23,10734
-126,-54,38,10754
-125,15,23,10773
-135,70,4,10791
-190,85,1,10810
-259,42,13,10827
-328,8,17,10846
-391,-3,3,10863
-424,-37,-17,10882
-485,-32,-37,10902
-585,-99,-41,10923
-563,-230,-62,10944
-428,-362,-107,10966
-354,-542,-8,10988
-286,-468,-15,11010
-277,-308,-60,11031
-507,-78,271,11053
-455,677,-184,11074
-198,269,-58,11096
-231,-392,-152,11116
-364,-343,-72,11140
-242,74,-64,11161
-241,223,-16,11181
-263,7,2,11202
-236,-63,-47,11218
-283,-54,-65,11239
-276,-54,-52,11259
-254,46,-39,11281
-246,54,-30,11300
-255,-11,-44,11320
-255,-26,-57,11341
-245,20,-60,11362
-245,42,-61,11381
-251,25,-58,11402
-255,1,-54,11421
-255,13,-60,11440
-241,17,-68,11459
-251,31,-68,11480
-260,77,-85,11499
-281,15,-66,11518
-277,-52,-63,11539
-294,-14,-59,11559
-296,0,-30,11580
-335,-2,-19,11599
-345,1,-37,11619
-357,-9,-48,11637
-424,46,4,11657
-484,111,-41,11675
-453,128,-6,11696
-522,263,-91,11715
-342,483,-312,11737
-358,217,-293,11758
-308,-182,-181,11780
-264,-399,28,11803
-233,-177,23,11824
-131,23,-91,11844
-50,180,-86,11865
6,228,-93,11884
-19,151,-67,11901
-68,13,-10,11921
-98,-46,23,11940
-118,9,22,11959
-124,82,9,11976
-146,107,-3,11994
-216,94,-8,12014
-291,44,4,12033
-360,7,4,12050
-415,-7,-14,12067
-501,-42,-41,12087
-551,-126,-55,12107
-578,-204,-63,12129
-513,-275,-115,12151
-370,-528,-30,12174
-314,-538,20,12195
-256,-341,-53,12217
-403,-161,111,12238
-837,647,196,12260
-187,404,-85,12281
-209,-354,-91,12302
-320,-454,-110,12323
-240,64,-59,12347
-253,174,9,12366
-283,-12,33,12385
-239,-38,-44,12405
-278,-14,-78,12426
-275,-76,-48,12446
-254,24,-50,12468
-241,66,-52,12487
-254,2,-62,12507
-255,-40,-63,12525
-245,8,-58,12547
-249,30,-61,12565
-243,5,-58,12584
-254,-11,-54,12614
-256,6,-59,12627
-248,10,-63,12643
-244,18,-64,12663
-257,42,-77,12683
-274,17,-83,12702
-288,-22,-66,12722
-283,-15,-75,12743
-311,-16,-60,12764
-325,8,-19,12784
-339,19,-31,12804
-346,-9,-53,12823
-455,33,-16,12843
-464,59,-63,12863
-421,146,-66,12882
-522,287,-92,12903
-357,404,-290,12923
-370,181,-254,12946
-321,-171,-119,12967
-250,-358,60,12990
-209,-129,-6,13011
-131,91,-64,13032
-47,248,-64,13051
3,265,-62,13072
-32,115,-29,13089
-81,-31,19,13109
-123,-54,40,13127
-127,34,24,13148
-133,101,11,13166
-204,101,14,13186
-267,54,13,13206
-350,7,8,13224
-397,-26,-10,13241
-441,-55,-42,13262
-512,-107,-51,13283
-585,-227,-46,13304
-549,-247,-92,13326
-383,-375,-93,13348
-363,-506,15,13370
-277,-416,-23,13390
-287,-251,-40,13413
-549,58,316,13434
-199,824,-358,13454
-145,-38,-89,13476
-288,-601,-145,13497
-304,-192,-96,13519
-196,253,-65,13542
-266,221,-10,13562
-261,-65,-8,13583
-251,-100,-64,13603
-293,-42,-66,13625
-252,4,-43,13645
-246,80,-47,13665
-250,37,-47,13684
-255,-18,-63,13704
-254,-20,-64,13724
-249,25,-60,13746
-243,34,-61,13765
-243,18,-60,13785
-251,8,-59,13805
-249,21,-65,13824
-247,20,-66,13843
-251,1,-66,13863
-252,30,-74,13882
-273,63,-87,13901
-270,-15,-64,13921
-283,-28,-77,13942
-302,-15,-64,13963
-313,-6,-36,13983
-332,19,-14,14004
-343,1,-47,14023
-408,8,-19,14042
-470,43,-36,14061
-424,54,-32,14081
-474,223,-71,14100
-462,320,-165,14120
-328,370,-300,14143
-330,95,-199,14164
-274,-182,-74,14185
-239,-402,74,14208
-192,-98,-20,14228
-103,147,-67,14248
-7,315,-73,14270
1,258,-61,14288
-73,70,-16,14306
-113,-46,19,14324
-150,-42,41,14345
-148,53,25,14364
-172,88,16,14383
-226,80,7,14402
-292,48,3,14419
-368,6,-4,14437
-422,-29,-21,14454
-473,-62,-36,14476
-531,-122,-45,14496
-555,-174,-91,14518
-469,-250,-147,14540
-379,-505,-54,14563
-294,-501,-7,14584
-239,-269,-72,14606
-294,-232,-35,14627
-667,196,445,14649
-79,784,-424,14670
-152,27,-148,14691
-279,-679,-54,14711
-382,-382,-59,14734
-214,167,-58,14755
-238,231,-1,14776
-277,27,-28,14796
-258,-58,-73,14816
-277,-79,-62,14836
-269,4,-40,14857
-237,57,-34,14876
-255,23,-44,14896
-256,-33,-52,14915
-254,-19,-56,14937
-252,14,-58,14957
-245,4,-52,14977
-251,-8,-53,14996
-256,-13,-50,15015
-256,-13,-53,15036
-256,-5,-56,15056
-244,4,-53,15077
-248,21,-51,15095
-287,8,-50,15115
-308,7,-88,15168
-311,-2,-64,15181
-325,-1,-35,15195
-347,3,-12,15208
-371,17,-11,15220
-375,10,-16,15234
-507,65,-9,15250
-466,35,-28,15269
-431,139,-51,15289
-483,312,-133,15309
-349,442,-291,15332
-349,184,-268,15353
-286,-158,-154,15375
-215,-441,40,15398
-216,-189,3,15419
-128,55,-91,15438
-41,244,-78,15459
9,272,-85,15478
-36,149,-48,15496
-103,2,12,15515
-128,-57,38,15534
-130,20,34,15553
-137,103,15,15571
-211,115,16,15592
-277,58,18,15611
-358,2,16,15630
-393,1,0,15647
-451,-1,-21,15665
-516,-62,-33,15684
-577,-160,-45,15705
-558,-189,-56,15727
-411,-317,-78,15749
-386,-500,14,15770
-278,-460,-7,15792
-277,-309,-52,15812
-396,-198,160,15834
-729,601,83,15855
-202,370,-63,15876
-211,-290,-88,15896
-336,-424,-89,15918
-257,-12,-77,15940
-250,192,-2,15961
-263,26,27,15980
-244,-20,-38,16000
-281,-19,-77,16020
-270,-75,-42,16040
-256,15,-36,16062
-246,61,-41,16081
-253,6,-58,16101
-255,-48,-60,16119
-249,-18,-51,16141
-242,27,-53,16161
-246,30,-61,16181
-244,-5,-62,16201
-252,-12,-55,16221
-265,-10,-53,16241
-253,-1,-57,16263
-242,32,-66,16282
-251,51,-83,16302
-286,-7,-72,16321
-296,-37,-69,16342
-300,-10,-62,16362
-316,10,-30,16382
-343,11,-16,16403
-352,1,-45,16422
-380,-2,-38,16441
-496,54,-40,16461
-402,80,-60,16481
-494,241,-81,16500
-429,358,-232,16521
-322,352,-291,16543
-335,43,-170,16565
-256,-218,-54,16585
-219,-342,105,16608
-167,-49,-52,16629
-86,177,-55,16650
8,299,-68,16670
0,232,-56,16688
-96,70,-10,16705
-140,-43,34,16724
-162,-25,47,16744
-167,57,40,16763
-202,89,27,16782
-272,73,13,16801
-335,28,5,16820
-410,-7,-15,16837
-448,-46,-36,16858
-509,-126,-57,16878
-570,-204,-66,16900
-471,-245,-145,16921
-382,-364,-93,16945
-343,-439,3,16966
-259,-369,-33,16986
-263,-290,-60,17008
-352,-238,60,17030
-696,316,426,17050
-58,687,-320,17072
-160,-39,-162,17092
-337,-640,-31,17114
-311,-195,-118,17136
-237,260,-27,17159
-248,138,-29,17179
-256,-56,-44,17201
-282,-76,-48,17221
-270,-49,-48,17242
-255,21,-31,17263
-249,56,-50,17283
-254,6,-65,17302
-253,-31,-60,17320
-252,-4,-52,17342
-249,19,-52,17361
-245,1,-47,17381
-253,-5,-57,17400
-251,8,-59,17420
-252,5,-62,17438
-255,1,-63,17458
-252,11,-69,17476
-243,16,-68,17496
-286,-33,-60,17542
-296,-28,-60,17555
-298,-17,-56,17568
-310,15,-37,17582
-320,27,-46,17598
-336,-4,-54,17617
-357,-24,-55,17637
-480,63,-20,17658
-452,58,-34,17678
-405,197,-65,17697
-476,319,-100,17718
-342,380,-258,17740
-328,157,-206,17762
-289,-179,-116,17783
-267,-383,18,17807
-248,-197,44,17827
-104,45,-89,17848
-53,269,-62,17868
-10,315,-52,17888
-79,129,-19,17907
-114,-19,13,17928
-148,-67,49,17947
-155,29,38,17967
-173,95,24,17985
-240,104,10,18004
-317,46,1,18024
-387,-8,-14,18041
-431,-43,-39,18062
-484,-63,-69,18082
-553,-153,-71,18103
-563,-217,-119,18125
-405,-366,-133,18148
-367,-455,-33,18170
-249,-408,-50,18193
-249,-298,-79,18214
-412,-140,187,18236
-769,611,158,18258
-144,324,-114,18279
-185,-413,-96,18300
-340,-448,-143,18323
-288,-5,-63,18345
-226,238,-1,18365
-259,86,23,18384
-235,-46,-20,18404
-294,-54,-63,18424
-277,-64,-64,18445
-255,38,-44,18466
-242,77,-43,18486
-255,17,-36,18505
-252,-39,-45,18526
-252,-5,-53,18546
-250,31,-60,18566
-247,7,-52,18585
-257,-6,-53,18605
-257,5,-59,18624
-254,7,-66,18642
-262,-3,-60,18662
-254,0,-56,18681
-246,15,-53,18700
-255,24,-57,18720
-286,-12,-61,18740
-305,-31,-63,18760
-309,1,-48,18781
-325,28,-27,18800
-338,20,-34,18820
-352,-10,-42,18839
-379,2,-11,18861
-524,102,-29,18879
-387,112,-59,18899
-418,309,-95,18921
-387,393,-240,18941
-340,225,-257,18963
-326,-113,-174,18984
-284,-412,-21,19008
-260,-195,27,19030
-160,36,-82,19050
-77,235,-54,19070
-7,297,-54,19090
-31,171,-34,19108
-85,21,3,19129
-113,-56,20,19145
-124,-21,21,19165
-131,71,2,19184
-180,91,-1,19203
-246,57,0,19221
-311,19,-8,19238
-381,0,-25,19258
-437,-19,-52,19276
-508,-86,-58,19297
-564,-206,-49,19317
-572,-240,-73,19340
-389,-318,-117,19361
-385,-466,13,19384
-281,-448,-5,19405
-285,-310,-41,19426
-361,-226,69,19447
-746,371,368,19469
-100,475,-146,19489
-163,-171,-199,19511
...

This file has been truncated, please download it to see its full contents.

data_walking_3

Plain text
0,0,0,55
-255,-14,19,81
-238,85,-3,96
-226,28,7,110
-252,-69,30,124
-257,-52,31,139
-253,38,7,153
-202,-55,28,167
-277,37,16,182
-244,24,8,195
-248,-2,15,209
-252,-13,20,224
-247,-8,21,238
-245,0,18,252
-247,2,14,267
-250,-18,21,281
-253,-23,21,295
-245,-7,19,310
-245,5,18,324
-252,3,17,338
-251,-9,15,353
-248,-7,15,367
-250,-4,15,380
-246,-10,16,395
-250,6,13,409
-244,-18,13,425
-256,-25,20,443
-254,-1,13,460
-249,12,13,477
-256,-4,15,494
-245,-3,12,510
-248,-8,13,527
-255,-19,14,543
-248,-17,13,562
-262,0,18,579
-259,4,20,594
-258,-1,14,610
-249,-1,15,627
-255,6,16,644
-240,0,9,659
-235,-15,8,673
-268,-2,16,691
-218,-89,6,707
-216,-12,-3,723
-233,54,-4,741
-277,12,7,758
-243,-37,14,774
-264,-24,27,791
-233,-20,16,808
-243,11,10,827
-261,19,15,843
-256,0,13,860
-255,-5,14,875
-249,10,16,892
-235,3,13,909
-261,-9,15,924
-256,-36,34,941
-251,-18,16,959
-229,17,10,976
-261,-20,23,993
-248,-32,25,1010
-252,-1,16,1030
-251,-27,11,1047
-250,18,12,1065
-252,63,3,1084
-243,39,5,1100
-241,5,19,1117
-249,-15,33,1133
-244,-5,22,1153
-250,13,13,1170
-248,20,12,1187
-252,9,6,1205
-250,3,6,1221
-249,26,2,1236
-246,64,-14,1253
-244,52,1,1271
-247,23,2,1289
-252,4,5,1305
-252,0,3,1320
-248,7,-13,1336
-252,1,1,1354
-253,-14,-1,1370
-246,-11,1,1388
-256,-13,-10,1405
-251,-28,-5,1426
-247,-5,-7,1444
-257,7,-19,1462
-256,-33,-21,1480
-256,-71,-11,1500
-255,-16,-27,1519
-250,-5,-29,1539
-254,-48,-13,1558
-248,-64,-11,1577
-245,-32,-18,1597
-251,-39,-27,1636
-249,-26,-38,1648
-243,-15,-42,1661
-247,-36,-41,1676
-254,-59,-34,1696
-255,-44,-27,1716
-266,-47,-30,1735
-264,-53,-35,1756
-271,-69,-33,1775
-286,-83,-34,1795
-315,-89,-16,1815
-309,-64,-25,1835
-338,-62,-23,1854
-362,-68,-11,1873
-523,37,-26,1894
-300,44,-39,1912
-404,138,-68,1931
-455,182,-106,1951
-403,217,-192,1972
-384,175,-220,1992
-410,-26,-154,2014
-390,-157,-27,2034
-322,-50,28,2055
-214,92,-57,2073
-169,216,-40,2093
-108,216,-37,2112
-77,104,-11,2131
-90,18,17,2151
-114,4,31,2167
-133,36,27,2184
-149,65,28,2201
-175,74,30,2220
-211,51,28,2237
-251,9,12,2254
-282,-17,-3,2271
-328,-41,-34,2290
-357,-54,-50,2310
-411,-81,-77,2329
-508,-231,-70,2350
-514,-364,-71,2370
-439,-311,-124,2391
-365,-305,-103,2413
-358,-453,-3,2435
-300,-411,-29,2454
-305,-290,-41,2475
-397,-160,121,2496
-1048,832,266,2516
-63,452,-173,2537
-51,-498,-168,2557
-550,-735,64,2578
-320,-127,-30,2597
-198,270,-57,2619
-245,155,-52,2638
-267,-92,-34,2658
-309,-170,-14,2678
-264,-44,-32,2699
-246,46,-35,2718
-251,30,-38,2737
-262,-6,-49,2756
-252,-27,-57,2775
-248,-10,-54,2794
-254,24,-56,2814
-246,32,-56,2833
-252,16,-62,2851
-242,-12,-47,2870
-270,-4,-53,2890
-269,-5,-66,2909
-271,-25,-58,2927
-262,-15,-53,2948
-281,6,-57,2967
-295,1,-54,2984
-311,0,-32,3002
-331,21,-22,3020
-354,19,-32,3039
-365,-8,-45,3057
-403,-8,-34,3077
-560,110,-48,3095
-398,94,-111,3115
-448,239,-160,3134
-418,323,-245,3155
-426,178,-268,3176
-382,-23,-126,3196
-269,-151,10,3218
-211,-167,-14,3237
-173,14,-42,3258
-65,188,-55,3277
6,276,-63,3296
-10,197,-44,3312
-77,67,-3,3331
-121,-6,27,3348
-135,0,38,3365
-138,62,36,3382
-165,97,31,3399
-214,81,24,3418
-288,39,13,3435
-355,0,8,3452
-396,-32,-7,3468
-414,-38,-27,3487
-516,-45,-43,3507
-630,-174,-39,3526
-591,-307,-87,3548
-460,-395,-121,3568
-390,-673,33,3590
-311,-586,15,3610
-293,-314,-69,3630
-411,-165,65,3650
-846,680,91,3670
-173,505,-68,3689
-133,-333,-156,3708
-336,-465,-16,3730
-318,-28,-64,3751
-265,149,-73,3771
-239,100,-36,3790
-278,-3,-56,3811
-275,-71,-45,3829
-270,-47,-56,3849
-250,18,-55,3868
-256,40,-66,3888
-255,6,-65,3906
-248,-9,-63,3923
-245,13,-60,3943
-247,26,-60,3961
-247,10,-57,3980
-247,11,-62,3998
-250,17,-60,4041
-256,0,-55,4055
-280,-24,-51,4067
-293,-28,-50,4080
-281,-20,-56,4093
-269,22,-85,4113
-306,23,-82,4131
-317,-6,-53,4151
-345,21,-34,4169
-347,35,-48,4188
-350,4,-39,4207
-468,24,-10,4225
-539,84,-58,4243
-418,147,-136,4261
-537,334,-151,4283
-403,290,-282,4303
-439,107,-180,4324
-339,-35,-54,4345
-191,-142,40,4365
-146,-151,-47,4384
-158,25,-35,4405
-60,193,-59,4424
-15,255,-63,4443
-34,166,-55,4461
-90,24,-21,4481
-115,-40,-3,4498
-118,-16,-12,4516
-128,48,-23,4536
-173,79,-44,4555
-244,37,-52,4574
-297,-20,-61,4592
-383,-54,-78,4613
-445,-114,-101,4632
-500,-163,-96,4654
-567,-279,-74,4675
-561,-318,-119,4696
-429,-433,-83,4717
-359,-647,55,4738
-279,-497,-9,4758
-417,-151,117,4777
-815,619,181,4798
-219,331,-142,4818
-188,-371,-53,4839
-228,-329,-143,4859
-301,69,-35,4882
-292,142,-43,4900
-253,22,-19,4920
-264,20,-67,4939
-262,-9,-81,4958
-262,-27,-58,4976
-259,-1,-37,4996
-250,18,-46,5015
-254,1,-61,5033
-250,-24,-58,5051
-250,0,-61,5070
-248,20,-60,5089
-251,16,-62,5107
-250,2,-59,5126
-244,9,-60,5144
-245,20,-65,5161
-248,22,-68,5180
-260,25,-69,5198
-273,7,-72,5218
-274,2,-69,5235
-302,10,-82,5253
-317,-1,-72,5272
-319,5,-27,5291
-347,27,-33,5308
-322,1,-55,5326
-346,-35,-53,5345
-489,32,-27,5364
-479,55,-64,5383
-407,99,-139,5401
-514,287,-138,5422
-418,349,-284,5442
-448,197,-203,5463
-316,0,-64,5484
-208,-93,53,5501
-150,-146,-1,5520
-171,-34,-3,5540
-82,174,-50,5559
-18,261,-72,5577
-44,212,-48,5596
-106,70,4,5615
-138,0,25,5632
-158,0,32,5648
-162,66,11,5664
-197,104,-1,5683
-255,64,-3,5701
-322,-1,-11,5719
-382,-31,-31,5738
-441,-65,-63,5757
-515,-127,-60,5777
-577,-235,-47,5797
-533,-320,-105,5819
-429,-410,-107,5840
-385,-615,38,5862
-289,-556,26,5882
-251,-307,-65,5902
-399,-86,112,5922
-975,655,323,5943
-158,426,-185,5962
-186,-506,-107,5983
-310,-468,-82,6005
-350,45,-27,6026
-235,148,-8,6044
-240,61,2,6063
-271,3,-59,6080
-278,-46,-53,6097
-271,-67,-58,6117
-254,1,-48,6137
-254,45,-45,6155
-250,31,-60,6173
-246,-5,-60,6192
-247,-8,-53,6211
-247,17,-59,6230
-242,28,-61,6248
-256,4,-49,6266
-266,-12,-53,6285
-254,2,-53,6304
-255,14,-61,6322
-258,15,-63,6341
-266,-15,-52,6381
-285,26,-75,6394
-307,34,-87,6408
-313,10,-55,6423
-327,1,-15,6436
-360,15,-12,6453
-358,16,-34,6472
-400,-2,-32,6491
-537,69,-36,6509
-420,62,-109,6528
-455,221,-152,6548
-468,356,-215,6568
-371,288,-282,6589
-371,59,-183,6610
-272,-89,-43,6630
-175,-216,27,6649
-180,-176,-30,6670
-123,68,-31,6690
-17,284,-67,6709
7,305,-80,6727
-54,152,-52,6745
-103,7,-13,6763
-138,-39,16,6780
-139,25,4,6799
-156,89,-7,6816
-205,101,-15,6834
-281,30,-16,6853
-377,-13,-31,6873
-448,-75,-64,6892
-481,-118,-77,6912
-597,-147,-71,6932
-594,-199,-88,6953
-535,-316,-119,6974
-390,-621,15,6995
-347,-637,70,7016
-258,-315,-60,7035
-380,-216,67,7056
-641,164,333,7076
-140,732,-395,7096
-193,-61,-163,7116
-222,-615,-26,7138
-320,-154,-42,7158
-296,179,-47,7179
-226,97,-25,7198
-260,-31,-31,7218
-286,-39,-63,7237
-269,-32,-66,7257
-247,17,-62,7277
-252,54,-59,7296
-257,33,-64,7314
-243,0,-64,7332
-252,0,-65,7351
-254,12,-64,7368
-246,14,-66,7387
-252,12,-61,7406
-250,6,-60,7425
-243,17,-64,7442
-256,30,-62,7460
-281,2,-58,7480
-292,-28,-44,7497
-277,-2,-58,7517
-285,41,-81,7536
-321,8,-83,7555
-330,-10,-44,7572
-357,30,-39,7591
-350,24,-45,7611
-437,14,-10,7629
-534,65,-48,7648
-419,105,-146,7666
-538,329,-157,7688
-424,344,-301,7708
-430,173,-204,7729
-308,17,-89,7750
-197,-134,55,7769
-125,-254,-17,7788
-148,-95,-16,7810
-62,171,-69,7829
-11,319,-92,7847
-52,253,-53,7866
-114,91,-9,7885
-140,-24,23,7903
-145,-32,31,7921
-159,52,17,7941
-190,96,-5,7958
-241,70,-15,7975
-311,10,-30,7994
-406,-49,-43,8013
-471,-97,-70,8033
-535,-176,-74,8052
-598,-244,-61,8074
-590,-237,-84,8094
-464,-393,-67,8115
-399,-643,107,8136
-245,-463,-12,8157
-310,-274,-10,8177
-448,-68,91,8198
-625,793,-163,8217
-210,383,-63,8238
-147,-471,-183,8257
-327,-527,-23,8280
-336,-19,-20,8300
-249,168,-36,8320
-239,62,-31,8340
-264,1,-64,8358
-281,-33,-75,8376
-260,-51,-63,8395
-246,18,-50,8416
-246,67,-53,8434
-247,49,-66,8453
-247,-7,-65,8472
-248,-4,-62,8491
-247,20,-59,8509
-254,28,-58,8527
-254,8,-60,8547
-255,3,-62,8564
-249,8,-62,8582
-256,16,-59,8600
-271,12,-62,8619
-278,-3,-60,8637
-270,-9,-58,8655
-292,8,-78,8675
-310,6,-74,8692
-315,5,-33,8710
-346,29,-29,8727
-334,6,-42,8747
-465,58,-84,8799
-392,118,-110,8812
-452,228,-127,8825
-527,300,-130,8838
-436,327,-212,8851
-358,282,-298,8866
-355,147,-230,8887
-269,-44,-29,8907
-181,-253,99,8927
-158,-209,-19,8947
-127,71,-56,8968
-34,249,-92,8986
-13,301,-87,9006
-73,179,-43,9024
-134,5,5,9042
-146,-63,25,9058
-156,-27,21,9077
-176,63,10,9096
-222,101,-2,9113
-290,41,-7,9133
-359,-19,-14,9150
-437,-66,-45,9169
-510,-108,-66,9189
-555,-178,-45,9210
-633,-244,-37,9231
-476,-349,-115,9251
-381,-591,-3,9274
-316,-594,39,9293
-252,-368,-46,9313
-358,-253,88,9334
-837,357,480,9354
-72,590,-224,9373
-191,34,-138,9393
-252,-585,-77,9413
-371,-281,-44,9434
-246,175,-62,9454
-237,213,-25,9475
-262,48,-45,9494
-275,-101,-42,9512
-278,-85,-44,9534
-253,21,-45,9553
-246,61,-46,9572
-253,31,-53,9590
-250,-6,-58,9610
-250,3,-66,9628
-245,23,-63,9646
-244,21,-54,9665
-253,5,-47,9683
-259,-1,-50,9701
-254,12,-55,9719
-251,40,-60,9739
-264,29,-60,9757
-278,-8,-58,9776
-277,-25,-49,9794
-282,16,-67,9815
-318,9,-69,9833
-321,1,-29,9850
-341,30,-21,9869
-344,38,-23,9887
-429,28,-5,9906
-534,66,-11,9923
-430,105,-50,9943
-446,275,-94,9962
-435,334,-186,9981
-337,319,-252,10003
-370,83,-195,10024
-300,-122,-71,10045
-222,-277,58,10067
-191,-129,-57,10088
-167,107,-62,10109
-57,269,-108,10131
-22,236,-126,10151
-81,35,-91,10172
-117,-64,-55,10190
-122,-44,-47,10212
-135,51,-64,10232
-174,79,-76,10252
-248,32,-67,10272
-316,-32,-73,10292
-387,-60,-106,10312
-481,-99,-119,10335
-518,-140,-104,10356
-609,-240,-87,10379
-488,-384,-140,10401
-371,-634,-15,10424
-323,-532,17,10445
-240,-298,-62,10467
-436,-125,226,10488
-621,639,-37,10510
-171,333,-123,10531
-235,-555,-99,10553
-314,-447,-103,10574
-277,122,-42,10598
-238,228,-16,10618
-254,44,7,10639
-264,-24,-48,10656
-280,-57,-61,10678
-264,-48,-29,10698
-252,37,-16,10719
-254,57,-36,10739
-253,2,-54,10759
-256,-25,-53,10777
-256,4,-48,10799
-255,23,-43,10817
-252,6,-38,10836
-248,3,-29,10855
-251,28,-32,10874
-268,42,-43,10894
-279,1,-53,10913
-303,-35,-33,10933
-276,-4,-30,10953
-299,33,-64,10973
-313,-4,-51,10992
-321,1,-6,11013
-339,32,-13,11030
-367,29,-4,11049
-537,77,16,11069
-505,135,-31,11087
-454,416,-184,11122
-379,421,-259,11136
-334,305,-288,11152
-349,-36,-209,11173
-313,-257,-77,11196
-248,-266,59,11217
-217,-21,-73,11238
-167,181,-94,11258
-62,289,-135,11280
-32,199,-150,11300
-89,19,-115,11321
-126,-87,-73,11341
-141,-50,-73,11362
-143,61,-103,11382
-169,84,-126,11404
-253,37,-133,11424
-335,-27,-143,11445
-435,-92,-184,11467
-487,-138,-206,11489
-533,-235,-150,11511
-647,-302,-137,11535
-417,-398,-178,11557
-361,-553,-3,11580
-293,-495,-1,11601
-273,-329,-49,11622
-472,-129,243,11643
-732,675,156,11666
-115,403,-190,11686
-161,-507,-153,11708
-359,-545,-61,11731
-331,-16,7,11753
-214,232,-23,11771
-245,146,-51,11792
-270,-30,-68,11813
-291,-141,-38,11834
-273,-39,-24,11855
-239,74,-27,11877
-258,42,-49,11896
-253,-24,-56,11916
-255,-17,-47,11937
-251,24,-50,11958
-243,45,-52,11977
-247,17,-45,11998
-254,1,-43,12017
-254,13,-48,12036
-258,6,-49,12055
-270,14,-53,12075
-272,15,-61,12094
-277,-7,-53,12113
-295,-8,-53,12134
-310,-4,-52,12153
-317,8,-26,12173
-336,14,-30,12191
-338,-3,-42,12212
-505,53,-36,12231
-460,35,-12,12251
-438,178,-88,12271
-501,296,-91,12292
-407,343,-216,12312
-374,224,-263,12335
-352,-61,-151,12356
-261,-215,-1,12378
-212,-163,14,12399
-185,30,-62,12420
-89,196,-83,12439
-25,243,-108,12459
-41,118,-93,12480
-90,-28,-35,12499
-99,-62,-14,12519
-100,26,-28,12539
-115,93,-46,12559
-177,95,-49,12578
-256,28,-40,12599
-315,-37,-42,12618
-392,-67,-76,12639
-480,-125,-113,12660
-551,-179,-90,12683
-590,-238,-83,12704
-509,-307,-141,12727
-373,-579,3,12749
-350,-546,68,12769
-241,-297,-56,12789
-409,-144,139,12812
-823,590,205,12833
-171,401,-124,12854
-195,-418,-146,12876
-301,-439,-108,12899
-301,40,-6,12921
-267,162,-11,12941
-248,66,-21,12961
-250,9,-60,12981
-292,-33,-73,13000
-275,-83,-56,13021
-242,30,-43,13041
-237,99,-55,13062
-246,41,-69,13081
-249,-19,-63,13101
-251,0,-58,13121
-254,27,-51,13140
-252,13,-49,13160
-255,6,-58,13179
-254,13,-61,13199
-258,8,-58,13218
-263,-1,-54,13237
-266,6,-63,13256
-285,-15,-55,13276
-280,-28,-49,13296
-301,6,-62,13317
-313,17,-38,13336
-335,12,-35,13356
-353,-6,-34,13375
-453,5,-12,13395
-549,58,-61,13414
-444,141,-105,13433
-574,273,-110,13455
-351,400,-294,13477
-407,279,-253,13499
-289,-32,-115,13520
-199,-269,39,13543
-179,-270,-2,13563
-160,14,-47,13584
-37,234,-90,13604
32,312,-91,13624
-38,185,-38,13642
-132,-43,59,13686
-126,24,43,13700
-125,98,16,13713
-152,128,7,13726
-200,108,5,13740
-287,53,9,13757
-374,0,3,13774
-442,-49,-13,13792
-472,-95,-46,13812
-600,-154,-50,13833
-613,-243,-64,13854
-488,-349,-132,13877
-377,-601,-23,13899
-314,-566,24,13921
-241,-319,-69,13942
-430,-83,154,13964
-609,733,-46,13984
-173,346,-213,14006
-222,-577,-108,14027
-350,-505,-61,14050
-323,133,-13,14072
-224,198,-21,14093
-237,50,-46,14113
-265,-10,-66,14134
-288,-69,-72,14154
-248,-38,-36,14175
-238,83,-38,14196
-243,78,-62,14216
-247,2,-68,14235
-247,-17,-57,14254
-257,26,-58,14275
-259,20,-54,14295
-255,6,-52,14314
-259,11,-54,14333
-260,17,-63,14353
-256,-2,-49,14372
-295,1,-51,14393
-287,-32,-34,14411
-287,1,-47,14432
-307,27,-68,14450
-318,2,-47,14471
-328,1,-30,14489
-353,22,-35,14508
-401,11,-19,14528
-568,107,-43,14547
-447,199,-136,14568
-491,315,-124,14590
-349,412,-307,14612
-373,140,-226,14633
-268,-164,-54,14655
-208,-290,74,14678
-168,-64,-48,14698
-103,159,-75,14718
-30,291,-93,14740
-59,236,-62,14759
-116,67,-1,14779
-153,-5,33,14798
-174,16,40,14817
-184,86,24,14835
-235,105,8,14854
-308,53,1,14873
-361,-1,0,14891
-397,-36,-25,14908
-449,-26,-59,14929
-568,-93,-71,14950
-585,-219,-85,14970
-460,-289,-141,14993
-421,-447,-57,15015
-315,-594,15,15037
-256,-397,-53,15058
-304,-287,-40,15080
-552,-34,357,15101
-204,751,-350,15123
-222,194,-174,15144
-252,-663,-37,15166
-299,-298,-103,15187
-292,200,-23,15211
-252,131,-14,15232
-231,-19,-37,15252
-300,-64,-45,15273
-285,-78,-49,15294
-228,34,-56,15314
-244,116,-60,15335
-247,51,-65,15355
-242,-18,-57,15375
-252,5,-62,15396
-246,29,-65,15415
-256,17,-63,15434
-242,-3,-58,15454
-258,9,-66,15474
-272,31,-56,15493
-247,33,-70,15512
-283,11,-71,15533
-279,-43,-60,15552
-294,-16,-74,15572
-318,-12,-67,15594
-341,25,-7,15614
-356,31,-33,15633
-362,2,-35,15652
-425,12,-6,15672
-531,90,-47,15690
-422,180,-97,15710
-458,395,-142,15731
-381,370,-234,15753
-400,65,-226,15774
-356,-193,-88,15796
-220,-288,34,15817
-188,-33,-42,15838
-141,150,-56,15859
-15,237,-69,15880
-18,201,-55,15899
-76,72,-10,15919
-104,1,20,15938
-117,29,23,15955
-145,95,5,15974
-179,108,-8,15992
-229,72,-13,16012
-295,26,-20,16031
-361,-21,-27,16051
-433,-48,-48,16072
-518,-63,-81,16093
-619,-126,-93,16113
-633,-207,-79,16136
-457,-469,-84,16157
-360,-591,25,16179
-313,-498,-7,16200
-265,-349,-28,16230
-369,-302,139,16243
-869,571,195,16265
-284,455,-68,16285
-257,-335,-166,16306
-314,-483,-66,16329
-271,85,-81,16351
-258,181,-8,16370
-266,-16,-3,16391
-227,-23,-36,16410
-306,10,-75,16431
-263,-43,-68,16450
-242,26,-56,16472
-250,97,-60,16491
-260,53,-64,16510
-163,11,-93,16531
-293,-2,-61,16550
-259,-5,-42,16570
-236,39,-52,16590
-230,58,-69,16610
-251,48,-75,16629
-246,5,-69,16649
-278,3,-75,16668
-303,-13,-61,16687
-255,-9,-68,16707
-305,4,-88,16728
-318,-25,-66,16746
-359,18,-20,16766
-341,45,-34,16787
-357,-8,-55,16806
-413,-16,-44,16826
-554,79,-56,16846
-400,123,-112,16867
-472,346,-160,16888
-379,346,-277,16910
-371,38,-175,16932
-314,-141,-28,16953
-214,-180,46,16974
-166,1,-47,16996
-139,176,-40,17014
-75,265,-49,17035
-64,181,-30,17055
-89,18,13,17075
-105,-44,31,17092
-129,-3,24,17112
-140,74,2,17131
-176,105,-10,17148
-242,71,-4,17169
-307,15,-14,17188
-393,-29,-30,17208
-464,-67,-64,17228
-491,-95,-69,17249
-606,-154,-32,17270
-544,-237,-89,17292
-433,-373,-107,17313
-331,-552,1,17337
-273,-532,-25,17356
-247,-367,-81,17378
-486,-112,217,17400
-391,702,-369,17422
-207,221,-173,17443
-233,-602,-55,17466
-321,-282,-52,17487
-260,170,7,17509
-271,104,-3,17528
-245,0,-33,17548
-252,-14,-53,17566
-352,-58,-59,17588
-157,-47,-70,17608
-262,114,-53,17629
-245,125,-62,17649
-227,26,-64,17671
-252,-24,-64,17690
-241,27,-76,17711
-273,34,-64,17731
-238,-9,-45,17751
-280,13,-51,17770
-230,10,-65,17790
-261,27,-73,17810
-280,-8,-65,17829
-271,-9,-73,17849
-297,10,-78,17869
-315,-40,-63,17889
-344,3,-19,17909
-309,89,-12,17929
-357,-5,-31,17948
-470,-9,-34,17968
-485,80,-59,17988
-429,129,-94,18008
-468,302,-138,18028
-384,327,-217,18050
-399,99,-234,18072
-358,-88,-72,18093
-321,-156,30,18113
-197,-75,-13,18135
-169,94,-44,18155
-71,228,-61,18174
-31,205,-58,18195
-52,79,-24,18214
-79,-13,4,18233
-104,-28,6,18251
-142,30,0,18270
-168,81,-10,18287
-201,79,-16,18307
-280,35,-16,18327
-319,-3,-23,18347
-373,-32,-40,18366
-459,-46,-59,18387
-500,-62,-42,18408
-600,-183,-9,18428
-569,-254,-74,18449
-419,-308,-111,18471
-340,-607,13,18494
-292,-611,-17,18514
-263,-305,-82,18537
-352,-191,-3,18558
-801,263,617,18579
70,1071,-512,18600
-169,-224,-246,18621
-311,-841,58,18643
-286,-13,-105,18665
-240,244,-58,18686
-284,52,-2,18707
-233,-61,-20,18726
-251,-29,-79,18747
-249,17,-49,18786
-222,74,-64,18799
-238,98,-72,18812
-243,36,-70,18827
-245,-35,-58,18846
-256,-7,-53,18868
-240,16,-64,18887
-268,14,-66,18907
-231,-12,-64,18927
-247,39,-72,18948
-246,19,-70,18967
-288,-21,-62,18988
-271,-17,-62,19008
-286,3,-89,19028
-315,-24,-70,19047
-331,-3,-31,19068
-340,42,-38,19088
-338,-34,-58,19107
-380,-48,-55,19129
-425,6,-15,19149
-520,139,-83,19168
-371,209,-137,19189
-451,361,-184,19211
-400,230,-242,19232
-406,11,-97,19255
-241,-168,-63,19274
-265,-229,59,19296
-206,-57,-29,19317
-112,159,-19,19338
-29,298,-57,19358
-44,212,-48,19378
-84,27,-15,19398
-107,-73,22,19417
-130,-5,24,19436
-148,76,7,19456
-184,102,-8,19473
-250,60,-20,19492
-290,-1,-22,19512
-382,-35,-31,19532
-440,-14,-47,19553
-528,-85,-17,19573
-583,-227,-20,19595
...

This file has been truncated, please download it to see its full contents.

data_walking_4

Plain text
0,0,0,51
-252,21,22,77
-238,12,14,92
-248,15,13,106
-253,8,15,120
-241,13,7,135
-249,26,4,149
-249,39,-1,163
-248,53,-13,178
-246,59,-15,192
-247,49,-10,206
-244,37,1,221
-251,20,2,235
-244,7,4,249
-248,5,3,264
-248,8,1,278
-245,20,-14,292
-246,34,-22,307
-256,39,-31,321
-253,18,-22,335
-242,-2,-17,350
-252,0,-19,364
-254,-5,-19,378
-246,-21,-12,393
-255,-32,-10,407
-250,-31,-16,423
-255,-40,-25,442
-257,-39,-24,461
-253,-28,-31,480
-250,-23,-33,498
-252,-33,-37,517
-246,-40,-31,536
-247,-21,-30,555
-240,-6,-45,573
-255,-6,-58,591
-243,-25,-55,609
-247,-44,-48,627
-240,-54,-38,646
-244,-56,-43,665
-252,-29,-53,684
-268,-11,-72,702
-248,-47,-65,721
-254,-81,-58,740
-256,-76,-60,758
-258,-62,-67,777
-270,-65,-65,796
-281,-71,-63,815
-302,-72,-73,833
-323,-76,-84,852
-461,-63,-67,871
-456,7,-54,889
-318,11,-61,906
-446,66,-49,924
-432,187,-93,942
-445,233,-171,960
-491,102,-80,979
-408,-65,-69,999
-319,-89,3,1017
-274,8,-11,1035
-215,140,-32,1053
-186,222,-44,1073
-150,197,-24,1092
-122,107,-9,1112
-112,11,17,1131
-127,-26,32,1148
-147,-14,22,1167
-160,13,6,1186
-181,29,-8,1203
-205,6,-7,1220
-236,-38,-10,1236
-297,-67,-18,1257
-338,-63,-36,1276
-380,-63,-31,1296
-446,-132,-14,1315
-518,-253,0,1337
-511,-331,-35,1355
-405,-331,-92,1376
-331,-428,-40,1397
-306,-478,-16,1418
-250,-334,-47,1438
-292,-198,5,1460
-567,28,272,1478
-337,533,-317,1497
-185,98,-210,1518
-173,-338,-69,1538
-321,-353,-16,1558
-338,-32,36,1579
-218,126,-18,1598
-236,135,-61,1617
-279,4,-55,1637
-277,-137,-30,1655
-249,66,-55,1695
-247,70,-63,1709
-255,45,-59,1721
-252,10,-61,1734
-248,-19,-51,1751
-253,-6,-41,1770
-252,8,-46,1789
-252,8,-48,1807
-247,-4,-47,1824
-251,-5,-51,1843
-252,8,-55,1862
-251,14,-55,1880
-257,6,-56,1898
-255,16,-58,1915
-247,47,-79,1935
-266,52,-91,1953
-289,-16,-77,1972
-318,-37,-58,1992
-308,5,-38,2012
-324,44,-29,2029
-337,27,-43,2048
-402,7,-29,2067
-468,24,-52,2084
-422,38,0,2103
-433,112,-79,2120
-420,270,-108,2140
-379,281,-216,2160
-380,171,-210,2181
-406,-41,-100,2202
-286,-158,-28,2223
-207,-145,50,2243
-175,-29,-43,2264
-140,112,-25,2283
-43,193,-61,2302
-21,152,-64,2322
-53,61,-37,2340
-81,9,-2,2358
-94,-6,3,2373
-109,10,-2,2390
-138,43,-19,2407
-186,62,-23,2425
-240,34,-26,2444
-286,-24,-43,2463
-353,-67,-68,2483
-398,-74,-105,2502
-466,-88,-108,2524
-533,-168,-66,2544
-574,-256,-61,2565
-446,-289,-132,2586
-355,-400,-31,2608
-359,-520,87,2628
-226,-363,-16,2648
-364,-96,110,2669
-845,516,529,2689
-132,538,-211,2708
-137,-123,-296,2729
-344,-624,-52,2751
-362,-322,39,2771
-219,162,-38,2792
-289,227,-19,2811
-267,81,-46,2831
-253,-18,-87,2850
-279,-69,-82,2870
-263,-36,-50,2889
-240,61,-42,2909
-245,102,-58,2928
-250,56,-74,2948
-240,-20,-59,2966
-253,0,-56,2987
-248,29,-58,3004
-247,31,-52,3022
-256,1,-52,3041
-257,-7,-55,3059
-256,20,-63,3078
-250,33,-69,3096
-252,39,-77,3116
-260,29,-69,3134
-259,1,-64,3152
-297,-8,-68,3170
-280,-20,-61,3189
-298,-2,-40,3209
-308,26,-27,3227
-332,11,-44,3246
-345,-15,-63,3265
-450,6,-55,3284
-411,34,-39,3302
-403,67,-20,3321
-427,201,-107,3340
-483,290,-185,3360
-354,330,-267,3382
-374,150,-230,3402
-344,-65,-101,3423
-242,-177,1,3443
-195,-168,34,3463
-170,-32,-21,3482
-75,151,-26,3502
1,236,-66,3521
2,197,-80,3537
-53,101,-55,3554
-105,8,-8,3572
-129,-17,10,3590
-143,17,9,3608
-178,67,-1,3624
-224,76,-3,3642
-279,37,-14,3660
-373,-22,-41,3679
-425,-93,-78,3698
-484,-128,-85,3719
-575,-179,-67,3739
-612,-230,-66,3760
-460,-293,-118,3781
-383,-495,21,3803
-317,-551,69,3822
-248,-314,-31,3842
-344,-86,95,3863
-734,372,381,3881
-197,567,-250,3901
-220,-216,-166,3922
-275,-521,-43,3944
-253,-120,-61,3964
-283,170,-46,3986
-275,108,-18,4005
-217,33,-63,4025
-279,0,-92,4043
-249,-61,-45,4078
-241,8,-41,4091
-242,78,-52,4105
-247,88,-67,4118
-250,38,-81,4136
-243,-16,-67,4155
-254,2,-67,4174
-249,21,-61,4193
-249,25,-56,4211
-251,15,-61,4230
-244,21,-64,4249
-246,23,-69,4268
-255,25,-77,4286
-265,24,-77,4304
-268,-9,-68,4324
-265,-12,-60,4342
-278,10,-68,4362
-301,1,-68,4381
-311,-11,-46,4399
-344,17,-37,4418
-335,28,-55,4436
-398,15,-35,4456
-450,16,-39,4474
-441,14,-26,4493
-450,154,-93,4511
-503,323,-127,4532
-352,323,-276,4552
-373,117,-234,4573
-360,-85,-109,4594
-232,-184,7,4615
-164,-145,18,4633
-172,-4,-17,4654
-97,160,-27,4672
-20,239,-65,4690
-21,191,-56,4709
-82,68,-9,4728
-113,10,10,4745
-129,6,23,4762
-144,43,20,4780
-180,72,12,4797
-226,53,10,4814
-290,15,1,4832
-365,-27,-10,4849
-397,-68,-36,4869
-451,-80,-61,4888
-562,-169,-66,4908
-577,-342,-43,4929
-486,-293,-131,4950
-370,-334,-72,4971
-372,-517,61,4993
-235,-466,-9,5012
-320,-193,0,5031
-515,131,279,5051
-196,813,-352,5070
-246,138,-127,5091
-235,-581,-102,5112
-258,-306,-96,5134
-268,172,-35,5154
-275,203,-29,5174
-240,53,-23,5194
-233,8,-78,5213
-298,-27,-102,5230
-274,-87,-47,5252
-244,13,-34,5271
-246,71,-39,5289
-256,25,-52,5308
-254,-33,-62,5327
-252,-31,-52,5347
-250,10,-59,5366
-249,37,-57,5386
-250,16,-59,5404
-247,-16,-52,5423
-257,-14,-55,5442
-258,0,-60,5463
-256,13,-67,5480
-248,18,-63,5498
-256,15,-63,5518
-288,-9,-58,5536
-279,-23,-58,5555
-301,4,-71,5574
-308,20,-52,5593
-337,12,-40,5611
-342,1,-54,5629
-395,-1,-35,5648
-489,37,-35,5666
-401,18,-34,5685
-448,206,-103,5703
-492,335,-166,5725
-332,319,-281,5745
-394,61,-214,5766
-319,-140,-87,5786
-232,-214,37,5807
-193,-100,0,5826
-162,32,-33,5846
-74,153,-52,5864
-15,210,-64,5882
-30,132,-45,5901
-79,32,1,5920
-107,-5,24,5936
-115,13,32,5953
-126,66,22,5970
-163,105,8,5989
-226,76,15,6006
-291,33,14,6024
-351,-2,14,6041
-402,-49,-6,6060
-441,-67,-36,6078
-530,-80,-45,6097
-591,-179,-38,6118
-600,-257,-75,6138
-417,-392,-98,6159
-363,-581,21,6180
-278,-516,27,6200
-254,-282,-55,6219
-358,-120,101,6240
-709,666,-62,6261
-228,390,-63,6281
-232,-166,-195,6300
-290,-517,-46,6323
-275,-85,-51,6343
-250,171,-45,6363
-251,164,-24,6383
-259,71,-66,6403
-274,-55,-88,6421
-263,-82,-63,6440
-244,68,-58,6471
-248,81,-62,6484
-256,57,-71,6498
-243,6,-77,6517
-233,13,-77,6535
-242,40,-75,6553
-243,37,-65,6572
-244,23,-64,6591
-245,19,-63,6609
-255,2,-51,6628
-254,3,-52,6646
-246,23,-62,6664
-253,25,-72,6682
-272,13,-67,6701
-252,4,-67,6720
-279,5,-70,6737
-306,-9,-64,6755
-306,-27,-46,6773
-325,5,-44,6794
-318,37,-72,6811
-334,1,-59,6830
-413,-18,-16,6848
-504,36,-17,6867
-426,111,-55,6886
-435,261,-102,6905
-449,349,-149,6927
-325,280,-260,6947
-391,0,-144,6968
-327,-180,-79,6987
-214,-231,32,7008
-194,-52,-21,7027
-171,89,-48,7048
-80,211,-53,7066
-15,211,-69,7085
-33,111,-48,7103
-83,9,-15,7122
-102,-3,-20,7139
-112,29,-32,7157
-155,68,-36,7177
-214,68,-27,7195
-270,15,-28,7214
-337,-45,-52,7232
-393,-97,-87,7252
-446,-127,-96,7272
-511,-158,-81,7292
-560,-247,-73,7314
-518,-285,-100,7334
-389,-392,-31,7356
-359,-466,73,7377
-256,-376,5,7397
-301,-231,-1,7415
-430,-24,225,7435
-493,717,-183,7455
-189,258,-139,7476
-202,-395,-194,7496
-324,-525,-30,7519
-249,33,-32,7539
-241,212,-28,7558
-265,147,-29,7578
-225,38,-76,7598
-274,-28,-101,7616
-277,-69,-60,7636
-242,18,-41,7657
-246,82,-46,7675
-261,36,-45,7694
-251,-23,-62,7713
-244,-23,-57,7733
-251,19,-56,7752
-255,31,-62,7771
-250,11,-59,7790
-255,3,-64,7809
-254,2,-60,7826
-255,12,-59,7844
-257,17,-64,7863
-250,34,-67,7881
-257,20,-64,7900
-288,-11,-54,7919
-286,-14,-47,7939
-305,2,-60,7958
-308,18,-50,7976
-326,13,-48,7995
-325,-4,-56,8013
-341,-25,-51,8032
-483,36,-4,8052
-464,57,-26,8070
-382,129,-97,8088
-495,281,-125,8109
-409,333,-238,8129
-349,187,-261,8150
-360,-50,-128,8170
-253,-191,-14,8192
-195,-215,55,8212
-182,-74,-35,8231
-101,112,-40,8252
-18,237,-69,8271
-17,224,-59,8290
-74,87,-11,8309
-109,-15,19,8327
-125,-29,30,8345
-135,27,25,8364
-164,72,19,8382
-214,77,18,8399
-275,52,5,8417
-335,8,-6,8433
-387,-21,-23,8451
-464,-55,-42,8470
-527,-120,-46,8489
-584,-266,-37,8511
-534,-271,-100,8531
-381,-323,-113,8553
-359,-555,45,8576
-261,-524,5,8595
-289,-245,-57,8613
-521,75,353,8634
-384,667,-274,8653
-199,220,-117,8674
-227,-350,-178,8694
-308,-435,-44,8717
-252,22,-38,8737
-249,184,-7,8756
-272,111,-2,8775
-220,29,-47,8794
-266,13,-99,8812
-290,-38,-91,8830
-256,-56,-47,8851
-243,58,-33,8870
-252,74,-69,8904
-249,9,-73,8916
-247,-43,-61,8930
-251,-43,-50,8945
-251,18,-47,8965
-255,39,-55,8984
-253,7,-57,9003
-252,-11,-57,9020
-254,9,-62,9040
-254,32,-68,9058
-252,15,-64,9076
-257,5,-60,9095
-260,1,-60,9113
-299,-13,-61,9131
-284,-25,-48,9150
-286,12,-63,9169
-310,32,-52,9189
-327,7,-56,9207
-325,-28,-51,9225
-365,-24,-39,9245
-484,30,-1,9265
-501,74,-39,9282
-382,239,-101,9300
-463,369,-135,9322
-359,318,-256,9342
-356,154,-217,9363
-304,-107,-122,9384
-220,-294,9,9406
-188,-238,29,9424
-159,-5,-53,9445
-85,195,-66,9463
-21,297,-89,9482
-46,236,-79,9500
-95,52,-41,9520
-123,-54,-7,9537
-140,-58,5,9555
-166,7,-8,9574
-195,59,-26,9590
-244,65,-45,9609
-303,1,-44,9627
-384,-64,-46,9646
-420,-110,-72,9665
-468,-126,-78,9686
-547,-192,-51,9707
-578,-252,-37,9728
-417,-325,-96,9748
-356,-470,11,9768
-300,-508,54,9789
-261,-342,1,9808
-358,-163,112,9827
-741,319,329,9848
-125,531,-286,9868
-211,-56,-208,9888
-281,-457,-55,9910
-270,-214,-27,9930
-287,117,-14,9951
-272,105,-15,9971
-218,55,-65,9991
-273,35,-93,10009
-286,-47,-71,10029
-255,-63,-40,10050
-240,56,-45,10071
-253,70,-60,10090
-254,2,-68,10110
-244,-34,-56,10129
-250,7,-63,10149
-250,46,-62,10168
-249,19,-62,10188
-261,-10,-60,10208
-253,-10,-51,10228
-251,21,-59,10250
-245,34,-66,10269
-279,22,-69,10289
-267,-19,-62,10309
-281,-11,-73,10330
-312,-1,-67,10350
-317,-2,-26,10371
-337,24,-39,10390
-353,11,-50,10409
-463,19,-58,10429
-413,-1,-18,10449
-407,88,-77,10469
-440,241,-125,10488
-415,346,-207,10511
-355,230,-248,10532
-363,-25,-127,10554
-268,-179,-23,10576
-205,-189,36,10598
-181,-20,-15,10618
-85,182,-27,10640
1,260,-67,10659
-21,175,-61,10677
-80,51,-16,10696
-125,-15,19,10716
-133,9,23,10735
-155,63,10,10753
-208,78,3,10772
-256,44,2,10789
-329,3,3,10807
-397,-20,-13,10823
-441,-52,-59,10845
-511,-95,-64,10865
-585,-195,-59,10886
-536,-295,-127,10908
-387,-432,-106,10931
-342,-528,21,10953
-257,-401,-2,10975
-303,-241,-10,10995
-443,-88,263,11017
-459,545,-200,11038
-226,247,-84,11060
-187,-242,-217,11080
-312,-407,-18,11104
-266,-17,-36,11125
-256,171,-22,11146
-250,75,-19,11166
-247,1,-63,11187
-284,-60,-66,11205
-269,-67,-47,11226
-252,30,-46,11247
-249,80,-59,11267
-251,48,-71,11286
-252,-26,-62,11307
-244,-7,-51,11327
-249,39,-60,11346
-252,6,-63,11382
-250,-1,-55,11396
-252,11,-58,11409
-250,25,-63,11424
-248,18,-56,11445
-253,12,-60,11464
-263,30,-73,11484
-291,0,-64,11504
-274,-34,-57,11523
-302,-11,-52,11543
-316,7,-35,11564
-327,13,-57,11583
-335,0,-64,11602
-403,0,-31,11621
-495,39,-16,11640
-421,71,-59,11660
-428,215,-118,11679
-450,334,-168,11702
-328,269,-264,11723
-370,41,-158,11745
-275,-129,-56,11765
-199,-213,67,11788
-170,-88,-35,11808
-128,110,-35,11829
-41,242,-73,11850
-39,209,-68,11870
-83,76,-32,11889
-125,-31,4,11909
-134,-33,12,11927
-144,33,-4,11947
-189,96,-23,11965
-251,84,-33,11985
-330,1,-37,12005
-409,-63,-44,12023
-473,-129,-84,12045
-507,-153,-86,12066
-529,-200,-73,12088
-536,-231,-124,12110
-408,-445,-47,12133
-322,-549,46,12154
-242,-367,-21,12176
-280,-230,-1,12197
-388,-106,114,12218
-442,754,-298,12240
-235,297,-103,12262
-227,-438,-106,12283
-290,-439,-2,12307
-279,57,-45,12327
-253,165,-43,12347
-242,96,-47,12368
-258,39,-92,12388
-268,-66,-62,12407
-269,-59,-37,12428
-240,36,-51,12449
-252,66,-71,12469
-252,10,-71,12488
-243,-30,-57,12509
-251,-8,-50,12529
-252,29,-62,12549
-250,31,-68,12569
-249,2,-62,12589
-256,-1,-57,12607
-258,-1,-52,12626
-256,5,-59,12647
-255,17,-64,12665
-265,26,-77,12685
-290,-10,-62,12705
-292,-30,-63,12726
-305,16,-49,12746
-323,37,-53,12767
-328,-1,-54,12786
-362,-32,-44,12806
-501,37,-24,12826
-460,43,-71,12847
-428,192,-129,12866
-492,327,-172,12888
-356,284,-281,12910
-397,65,-186,12932
-290,-114,-40,12952
-182,-220,87,12975
-170,-115,-17,12995
-104,141,-47,13017
-13,257,-79,13038
-20,205,-60,13058
-83,52,-5,13077
-114,-34,27,13094
-126,-11,23,13115
-132,62,2,13134
-175,105,-12,13152
-242,62,-13,13173
-324,-10,-20,13193
-418,-60,-50,13213
-471,-109,-85,13235
-551,-157,-80,13256
-592,-236,-45,13278
-516,-302,-123,13300
-379,-488,-21,13323
-306,-548,28,13344
-240,-322,-46,13366
-382,-94,152,13387
-771,514,234,13408
-154,349,-180,13428
-201,-263,-187,13451
-258,-470,-109,13473
-296,-31,-21,13496
-271,176,5,13517
-252,99,-11,13536
-205,40,-61,13555
-280,2,-91,13576
-293,-77,-66,13594
-239,-21,-44,13615
-244,104,-45,13636
-250,78,-61,13657
-252,-17,-63,13676
-253,-43,-50,13697
-252,27,-59,13718
-253,55,-63,13737
-255,-3,-59,13757
-259,-27,-49,13777
-253,8,-53,13798
-253,41,-68,13816
-256,29,-69,13837
-261,4,-63,13856
-264,-1,-66,13875
-290,-25,-38,13915
-308,9,-24,13928
-322,23,-36,13941
-322,18,-56,13955
-346,-12,-58,13974
-454,3,-19,13995
-496,28,-35,14013
-433,106,-67,14033
-526,287,-105,14054
-399,461,-219,14075
-366,263,-256,14098
-330,-94,-190,14119
-214,-310,43,14141
-174,-216,39,14161
-158,31,-30,14183
-59,208,-65,14202
-10,265,-83,14222
-46,166,-54,14242
-104,27,0,14262
-132,-25,31,14279
-143,15,22,14300
-167,85,1,14318
-213,85,-6,14336
-298,29,-15,14354
-371,-31,-21,14374
-416,-69,-57,14395
-496,-95,-75,14415
-583,-168,-65,14437
-577,-250,-57,14458
-425,-332,-99,14480
-378,-485,19,14502
-302,-501,32,14523
-244,-324,-31,14543
-335,-206,73,14566
-485,43,235,14586
-246,793,-339,14606
-220,276,-166,14627
-247,-449,-94,14650
-316,-493,6,14671
-265,61,-69,14691
-248,253,-63,14711
-249,124,-41,14732
-249,-30,-61,14752
-288,-88,-62,14774
-266,-53,-50,14794
-237,40,-45,14815
-246,79,-63,14835
-251,45,-82,14855
-246,-18,-69,14874
-249,-11,-51,14895
-252,42,-60,14916
-241,40,-68,14936
-246,13,-68,14955
-255,6,-61,14976
-256,17,-64,14994
-252,21,-71,15013
-260,17,-73,15034
-274,-1,-68,15053
-281,-15,-66,15073
-292,-20,-53,15093
-311,-5,-35,15115
-327,18,-52,15134
-334,2,-66,15154
-383,-21,-42,15173
-516,30,-30,15194
-455,55,-61,15213
-444,202,-92,15234
-496,330,-162,15254
-329,383,-284,15276
-320,174,-264,15298
-281,-176,-67,15320
-196,-366,110,15341
-170,-108,-27,15364
-123,183,-43,15385
-23,354,-80,15406
-31,241,-66,15425
-109,34,-12,15446
-137,-67,29,15465
-140,-7,24,15484
-168,85,1,15504
-224,108,-8,15521
-312,61,-6,15541
-385,1,-15,15559
-468,-63,-60,15579
-524,-115,-69,15599
-567,-178,-48,15621
-574,-252,-121,15643
-398,-439,-117,15666
-345,-594,35,15688
-241,-452,-26,15710
-263,-253,-70,15731
-380,-129,142,15753
-725,574,15,15775
-178,419,-100,15795
-187,-240,-244,15816
-268,-558,-25,15840
-343,-109,28,15861
-266,130,-43,15882
-230,128,-43,15903
-248,53,-71,15924
-283,-52,-60,15943
-274,-115,-28,15965
-245,27,-39,15986
-247,89,-64,16006
-253,53,-74,16025
-248,-34,-54,16046
-256,-28,-43,16066
-254,20,-53,16087
-252,37,-64,16107
-255,12,-63,16126
-253,-14,-53,16146
-253,10,-54,16167
-252,5,-49,16187
-255,16,-63,16205
-287,10,-67,16225
-284,-21,-57,16245
-284,0,-64,16266
-303,23,-46,16284
-334,12,-40,16305
-340,-5,-48,16324
-380,-19,-41,16344
-528,37,-3,16365
-394,201,-121,16399
-490,325,-125,16412
-432,370,-205,16428
-347,286,-272,16449
-378,-16,-167,16471
-282,-238,-32,16492
-203,-263,67,16515
-176,-35,-43,16535
-92,162,-51,16556
-17,278,-67,16576
0,222,-62,16595
-63,93,-18,16613
-113,4,10,16632
-133,-15,23,16650
-141,27,9,16669
-174,65,0,16687
-240,72,-3,16705
-316,40,-10,16723
-398,-19,-34,16743
-476,-71,-70,16764
-528,-141,-73,16785
-580,-235,-59,16806
-552,-320,-125,16829
-375,-430,-97,16851
-352,-502,21,16873
-247,-424,-9,16894
-314,-200,11,16915
-626,160,405,16935
-155,414,-276,16956
-216,17,-103,16978
-224,-371,-161,16999
-287,-217,-46,17021
-290,107,16,17044
-273,127,-10,17063
-219,43,-52,17084
-256,9,-83,17104
-299,-63,-62,17123
-259,-64,-42,17143
-238,64,-42,17165
-253,98,-62,17184
-254,32,-72,17204
-252,-51,-53,17223
-248,-5,-52,17245
-251,53,-66,17264
-251,42,-68,17284
-250,-3,-52,17304
-257,-8,-53,17324
-257,18,-61,17343
-247,30,-66,17363
-255,9,-62,17383
-285,-8,-64,17401
-284,-39,-50,17421
-296,5,-66,17442
-298,22,-52,17461
-324,11,-30,17480
-339,-2,-49,17501
-366,-20,-47,17520
-441,6,9,17541
-557,71,-39,17557
-408,172,-132,17577
-498,309,-128,17599
-351,319,-298,17620
-385,132,-223,17643
-290,-114,-68,17665
-198,-252,65,17686
-168,-162,-9,17708
-136,68,-28,17728
-52,252,-70,17747
-22,258,-83,17768
-67,120,-39,17787
-113,-17,9,17807
-128,-53,25,17826
-133,16,7,17846
-158,88,-18,17863
-235,101,-31,17883
-324,10,-23,17904
-419,-77,-34,17924
-454,-120,-80,17944
-491,-105,-93,17967
-587,-196,-73,17988
-576,-297,-112,18010
-391,-465,-95,18033
-323,-541,6,18055
-257,-463,-20,18074
-311,-231,3,18097
-585,116,410,18116
-174,552,-341,18137
-222,132,-144,18159
-255,-424,-124,18181
-281,-206,-43,18203
-298,114,8,18226
-268,132,-6,18244
-211,64,-56,18264
-259,31,-89,18283
-297,-73,-63,18304
-256,-77,-25,18324
-242,66,-44,18344
-251,72,-50,18365
-256,-13,-60,18384
-249,-42,-48,18405
-255,4,-58,18426
-250,42,-65,18445
-248,30,-62,18464
-252,-1,-55,18484
-254,9,-58,18504
-240,22,-61,18523
-255,45,-66,18542
-266,38,-75,18563
-293,-9,-56,18582
-283,-31,-57,18601
-320,-2,-60,18622
-311,8,-29,18642
-333,21,-47,18661
-332,-4,-51,18680
-391,-17,-23,18701
-483,36,-18,18721
-392,90,-54,18741
-429,251,-123,18761
-425,316,-158,18783
-346,205,-249,18804
-372,-20,-141,18827
-271,-202,-30,18848
-235,-196,56,18870
-184,-49,-48,18891
-99,123,-29,18912
-64,100,-9,18969
-92,41,10,18982
-113,2,31,18996
-132,0,41,19009
-143,20,34,19022
-158,63,20,19036
-181,82,5,19049
-218,78,2,19062
-272,47,4,19076
-336,1,0,19094
-396,-64,-33,19110
-429,-110,-56,19131
-527,-133,-39,19152
-575,-201,-23,19175
-513,-231,-115,19196
-350,-330,-90,19219
-360,-517,68,19241
-245,-421,-3,19262
-301,-162,-12,19282
-645,228,453,19305
-124,550,-323,19325
-239,-46,-112,19347
-269,-568,-39,19369
-247,-186,-64,19391
-275,191,-47,19412
-284,124,-17,19434
-220,18,-51,19454
-274,-14,-90,19474
-278,-74,-49,19495
-257,-10,-38,19516
-250,46,-47,19536
-256,24,-58,19557
-254,-21,-61,19576
-245,-24,-51,19597
-250,17,-56,19617
-250,20,-59,19638
-254,2,-61,19657
-255,0,-56,19676
...

This file has been truncated, please download it to see its full contents.

Octave visualize file

MATLAB
clear; close all; clc

fprintf('Reading data ...\n');
%change the path to point to your file.
data = load('~/AStudy/Hobby/Machine_learning_approch/DATA_and_octave_scripts/DATA/Running_13bit_8g/running3.TXT');
Fs=(1/0.014);
nfft =1024;
X=data(:,1);
starting=1;
ending=size(X,1);
X_fft = fft(X(starting:ending).-mean(X(starting:ending)),nfft); 
Y=data(:,2);
Y_fft = fft(Y(starting:ending).-mean(Y(starting:ending)),nfft); 
Z=data(:,3);
Z_fft = fft(Z(starting:ending).-mean(Z(starting:ending)),nfft); 
figure (1);
subplot(3,1,1);
plot(X);
ylabel('X-data');
subplot(3,1,2);
plot(Y);
ylabel('Y-data');
subplot(3,1,3);
plot(Z);
ylabel('Z-data');

f_scale = (0:nfft/2)*Fs/nfft;

figure(2);
X_fft_abs= abs(X_fft.^2);
X_fft_abs = X_fft_abs(1:1+(nfft/2));
[X_max,X_freq_max_index]=max(X_fft_abs);
X_max_freq = f_scale(X_freq_max_index);
plot(f_scale,X_fft_abs);
ylabel('X-fft-data');

%figure(3);
Y_fft_abs= abs(Y_fft.^2);
Y_fft_abs = Y_fft_abs(1:1+(nfft/2));
[Y_max,Y_freq_max_index]=max(Y_fft_abs);
Y_max_freq = f_scale(Y_freq_max_index);
%plot(f_scale,Y_fft_abs);
%ylabel('Y-fft-data');

%figure(4);
Z_fft_abs= abs(Z_fft.^2);
Z_fft_abs = Z_fft_abs(1:1+(nfft/2));
[Z_max,Z_freq_max_index]=max(Z_fft_abs);
Z_max_freq = f_scale(Z_freq_max_index);
%plot(f_scale,Z_fft_abs);
%ylabel('Z-fft-data');

fprintf('Dominant_freq.: %f Hz \n',X_max_freq);

[peaksdata,index] = findpeaks(abs(X),'DoubleSided');
fprintf('peak average is.: %f \n',mean(peaksdata));

other octave codes

MATLAB
function [J, grad] = costFunction(theta, X, y)
%COSTFUNCTION Compute cost and gradient for logistic regression
%   J = COSTFUNCTION(theta, X, y) computes the cost of using theta as the
%   parameter for logistic regression and the gradient of the cost
%   w.r.t. to the parameters.

% Initialize some useful values
m = length(y); % number of training examples

% You need to return the following variables correctly 
J = 0;
grad = zeros(size(theta));

% ====================== YOUR CODE HERE ======================
% Instructions: Compute the cost of a particular choice of theta.
%               You should set J to the cost.
%               Compute the partial derivatives and set grad to the partial
%               derivatives of the cost w.r.t. each parameter in theta
%
% Note: grad should have the same dimensions as theta
%

J = -(1/m) * (y' * (log(sigmoid(theta'*X')))' + (1-y)' * (log(1- sigmoid(theta'*X')))'); 

grad = (1/m) * ((sigmoid(theta'*X') - y') * X);


% =============================================================

end

other octave codes

MATLAB
clear; close all; clc

data = load('ML_data.txt');
X = data(:,[1,2]);
y = data(:,3);

figure;
hold on;

pos = find(y == 1);
neg = find(y == 0);

plot(X(pos, 1),X(pos, 2), 'k+','LineWidth', 2,'MarkerSize', 7);
plot(X(neg, 1),X(neg, 2), 'ko','MarkerFaceColor','y','MarkerSize', 7);

% Put some labels 
hold on;
% Labels and Legend
xlabel('Dominant frequency in Hz');
ylabel('peak average');

% Specified in plot order
legend('Walking', 'Running');
hold off;

[m, n] = size(X);

X = [ones(m,1) X];

initial_theta = zeros(n+1,1);

[cost, grad] = costFunction(initial_theta,X,y);
fprintf('Cost at initial theta (zeros): %f\n', cost);
fprintf('Gradient at initial theta (zeros): \n');
fprintf(' %f \n', grad);

options = optimset('GradObj', 'on', 'MaxIter', 400);
[theta, cost] = ...
	fminunc(@(t)(costFunction(t, X, y)), initial_theta, options);

fprintf('Cost at theta found by fminunc: %f\n', cost);
fprintf('theta: \n');
fprintf(' %f \n', theta);

plotDecisionBoundary(theta, X, y);
% Put some labels 
hold on;
% Labels and Legend
xlabel('Dominant frequency in Hz');
ylabel('peak average');

% Specified in plot order
legend('Walking', 'Running');
hold off;

other octave codes

MATLAB
function plotData(X, y)
%PLOTDATA Plots the data points X and y into a new figure 
%   PLOTDATA(x,y) plots the data points with + for the positive examples
%   and o for the negative examples. X is assumed to be a Mx2 matrix.

% Create New Figure
figure; hold on;

% ====================== YOUR CODE HERE ======================
% Instructions: Plot the positive and negative examples on a
%               2D plot, using the option 'k+' for the positive
%               examples and 'ko' for the negative examples.
%

% Find Indices of Positive and Negative Examples
pos = find(y == 1); 
neg = find(y == 0);

plot(X(pos, 1), X(pos, 2), 'k+','LineWidth', 2, ...
'MarkerSize', 7);

plot(X(neg, 1), X(neg, 2), 'ko','MarkerFaceColor', 'y', ...
'MarkerSize', 7);

% =========================================================================



hold off;

end

other octave codes

MATLAB
function plotDecisionBoundary(theta, X, y)
%PLOTDECISIONBOUNDARY Plots the data points X and y into a new figure with
%the decision boundary defined by theta
%   PLOTDECISIONBOUNDARY(theta, X,y) plots the data points with + for the 
%   positive examples and o for the negative examples. X is assumed to be 
%   a either 
%   1) Mx3 matrix, where the first column is an all-ones column for the 
%      intercept.
%   2) MxN, N>3 matrix, where the first column is all-ones

% Plot Data
plotData(X(:,2:3), y);
hold on

if size(X, 2) <= 3
    % Only need 2 points to define a line, so choose two endpoints
    plot_x = [min(X(:,2))-2,  max(X(:,2))+2];

    % Calculate the decision boundary line
    plot_y = (-1./theta(3)).*(theta(2).*plot_x + theta(1));

    % Plot, and adjust axes for better viewing
    plot(plot_x, plot_y)
    
    % Legend, specific for the exercise
    legend('Admitted', 'Not admitted', 'Decision Boundary')
    axis([2, 8, 0, 2200])
else
    % Here is the grid range
    u = linspace(-1, 1.5, 50);
    v = linspace(-1, 1.5, 50);

    z = zeros(length(u), length(v));
    % Evaluate z = theta*x over the grid
    for i = 1:length(u)
        for j = 1:length(v)
            z(i,j) = mapFeature(u(i), v(j))*theta;
        end
    end
    z = z'; % important to transpose z before calling contour

    % Plot z = 0
    % Notice you need to specify the range [0, 0]
    contour(u, v, z, [0, 0], 'LineWidth', 2)
end
hold off

end

other octave codes

MATLAB
function g = sigmoid(z)
%SIGMOID Compute sigmoid functoon
%   J = SIGMOID(z) computes the sigmoid of z.

% You need to return the following variables correctly 
g = zeros(size(z));

% ====================== YOUR CODE HERE ======================
% Instructions: Compute the sigmoid of each value of z (z can be a matrix,
%               vector or scalar).

g = 1./(1 + e.^(-z));

% =============================================================

end

Credits

Jayraj Desai

Jayraj Desai

10 projects • 70 followers
Just a Hobbyist, trying things

Comments