diff --git a/code/arduino/lighting_control/lighting_control.ino b/code/arduino/lighting_control/lighting_control.ino new file mode 100644 index 0000000..1334898 --- /dev/null +++ b/code/arduino/lighting_control/lighting_control.ino @@ -0,0 +1,64 @@ +/* + Blink + + Turns an LED on for one second, then off for one second, repeatedly. + + Most Arduinos have an on-board LED you can control. On the UNO, MEGA and ZERO + it is attached to digital pin 13, on MKR1000 on pin 6. LED_BUILTIN is set to + the correct LED pin independent of which board is used. + If you want to know what pin the on-board LED is connected to on your Arduino + model, check the Technical Specs of your board at: + https://www.arduino.cc/en/Main/Products + + modified 8 May 2014 + by Scott Fitzgerald + modified 2 Sep 2016 + by Arturo Guadalupi + modified 8 Sep 2016 + by Colby Newman + + This example code is in the public domain. + + https://www.arduino.cc/en/Tutorial/BuiltInExamples/Blink +*/ +int pin_11 = 11; +int pin_12 = 12; +// the setup function runs once when you press reset or power the board +void setup() { + // initialize digital pin LED_BUILTIN as an output. + Serial.begin(9600); + pinMode(pin_11, OUTPUT); + pinMode(pin_12, OUTPUT); +} +int value = 0; +// the loop function runs over and over again forever +void loop() { + if (Serial.available() > 0) { + value = Serial.read(); + if (value == 48) { + Serial.println("standby mode"); + digitalWrite(pin_11, LOW); + digitalWrite(pin_12, LOW); + } else if (value == 49) { + Serial.println("go mode"); + digitalWrite(pin_11, HIGH); + digitalWrite(pin_12, HIGH); + } else if (value == 50) { + Serial.println("party mode"); + for(int i=0; i < 5; i++){ + digitalWrite(pin_11, HIGH); + digitalWrite(pin_12, HIGH); + delay(600); + digitalWrite(pin_11, LOW); + digitalWrite(pin_12, LOW); + delay(600); + digitalWrite(pin_11, HIGH); + digitalWrite(pin_12, HIGH); + delay(340); + digitalWrite(pin_11, LOW); + digitalWrite(pin_12, LOW); + delay(400); + } + } + } +} diff --git a/code/rpi/src/data.csv b/code/rpi/src/data.csv new file mode 100644 index 0000000..8553312 --- /dev/null +++ b/code/rpi/src/data.csv @@ -0,0 +1,1001 @@ +,temp,acc_x,acc_y,acc_z,gyro_x,gyro_y,gyro_z,mag_x,mag_y,mag_z +0,-138,1041,15945,-131,-17,109,-156,1491,83,-2229 +1,-135,1057,15914,-223,-27,115,-146,1471,82,-2166 +2,-134,1045,15951,-49,-14,103,-152,1479,81,-2179 +3,-130,1064,15907,-236,-62,132,-146,1497,70,-2265 +4,-133,1057,15989,-92,-13,114,-148,1486,110,-2222 +5,-132,1041,15856,-213,-75,119,-148,1507,86,-2288 +6,-135,1084,15937,-113,-9,109,-160,1504,79,-2231 +7,-134,1056,15973,-112,-46,116,-142,1507,97,-2178 +8,-134,1060,15890,-227,-73,119,-149,1526,94,-2215 +9,-135,1067,15903,-208,-70,113,-148,1551,52,-2188 +10,-135,1051,15923,-120,-15,103,-150,1498,133,-2208 +11,-136,1052,15916,-176,-62,112,-145,1553,59,-2202 +12,-136,1054,15970,-104,-36,107,-153,1500,58,-2207 +13,-134,1060,15950,-100,-53,112,-154,1504,103,-2240 +14,-133,1063,15896,-248,-83,128,-148,1507,118,-2184 +15,-131,1068,15878,-235,-74,128,-143,1548,112,-2232 +16,-138,1061,15914,-180,-38,129,-147,1515,60,-2206 +17,-136,1049,15966,-95,-12,117,-143,1523,121,-2221 +18,-132,1064,15905,-214,-74,116,-145,1491,106,-2165 +19,-135,1052,15943,-158,-47,120,-148,1466,86,-2177 +20,-133,1057,15953,-104,-39,112,-149,1510,88,-2173 +21,-132,1055,15955,-141,-53,97,-145,1485,90,-2168 +22,-135,1050,15898,-204,-55,118,-146,1508,80,-2236 +23,-136,1060,15988,-68,-19,110,-147,1483,68,-2176 +24,-133,1069,15939,-128,-45,123,-148,1503,79,-2148 +25,-132,1760,15770,-133,-133,-35,-108,1500,93,-2139 +26,-132,1729,15970,-234,35,-815,-153,1482,48,-2236 +27,-132,1499,15975,-396,-11,-293,-184,1514,97,-2197 +28,-136,1192,15840,-230,-74,-818,-185,1523,82,-2258 +29,-134,2927,16004,162,-272,-1272,-20,1980,-426,-2225 +30,-138,1234,15973,11,-120,-1840,-24,2509,-1017,-2350 +31,-131,1865,16003,-47,-131,-2283,-30,2661,-1150,-2361 +32,-135,1049,16020,46,-276,-2561,4,2494,-1019,-2356 +33,-135,1598,16503,-193,-176,-2305,5,2088,-548,-2489 +34,-133,1472,16134,-9,-189,-2072,-10,1914,-465,-2569 +35,-135,1387,16214,-249,-46,-2723,-52,2109,-666,-2648 +36,-134,1780,15728,61,-241,-3079,24,2144,-790,-2680 +37,-134,1319,16049,-27,-247,-3315,-27,1937,-685,-2743 +38,-135,745,15864,-76,-237,-2940,55,1722,-518,-2864 +39,-135,1540,15860,-16,-171,-2887,71,1556,-419,-2892 +40,-134,1301,15835,17,-149,-2866,-51,1446,-533,-2963 +41,-135,1199,15923,-286,-205,-2473,-63,1378,-528,-3032 +42,-133,1017,16012,-716,-165,-2417,-66,1210,-435,-3042 +43,-133,655,15850,-160,-201,-2588,37,1059,-356,-3072 +44,-134,1453,16146,-124,-305,-2826,-62,1010,-401,-3098 +45,-130,1051,16097,-275,-200,-2679,-116,944,-453,-3137 +46,-134,514,15727,25,-217,-2517,-41,818,-486,-3099 +47,-133,1634,15690,-455,-190,-2361,4,727,-457,-3083 +48,-132,893,15877,-142,-156,-2411,-134,665,-513,-3064 +49,-135,841,15978,-76,-128,-1957,92,576,-511,-3011 +50,-134,1249,16017,-289,-129,-2224,-20,543,-558,-2985 +51,-133,860,15996,-169,-197,-2646,20,428,-556,-3016 +52,-134,809,16036,-519,-213,-2960,6,357,-559,-2859 +53,-136,1025,16040,2,-276,-3069,-64,256,-578,-2894 +54,-132,512,15835,-79,-109,-2923,29,155,-596,-2797 +55,-136,1048,16195,-290,-250,-2740,-36,88,-604,-2708 +56,-134,1397,16009,-231,-196,-2465,20,7,-606,-2616 +57,-132,658,16178,-249,-214,-2429,22,-59,-633,-2483 +58,-134,470,15847,-352,-183,-2442,-40,-104,-616,-2439 +59,-132,1490,15970,-154,-116,-2406,109,-181,-622,-2327 +60,-135,745,15916,-111,-143,-2604,3,-157,-601,-2125 +61,-136,1297,15921,-401,-122,-2659,27,-206,-535,-2063 +62,-134,1493,16290,-27,-200,-2830,-29,-249,-472,-1830 +63,-135,988,15819,-281,-188,-2878,-102,-110,-495,-1616 +64,-132,845,15875,-332,-112,-3026,121,-93,-455,-1466 +65,-136,1168,15669,60,-336,-3278,22,109,-410,-1361 +66,-135,862,15934,-150,-269,-3002,1,323,-470,-1237 +67,-133,816,15844,9,-437,-2707,45,574,-467,-1164 +68,-136,910,16031,772,-239,-2656,-41,775,-468,-1197 +69,-135,415,15582,405,-131,-2670,-96,953,-524,-1158 +70,-134,586,15952,-292,-242,-2415,80,1172,-506,-1228 +71,-135,1410,16315,-388,-129,-2260,-22,1365,-563,-1273 +72,-135,1159,15967,-8,-116,-2398,-19,1385,-522,-1342 +73,-137,1148,15765,139,-257,-2535,-34,1471,-519,-1377 +74,-133,385,15896,418,-346,-2589,7,1589,-580,-1538 +75,-135,739,16154,-49,-160,-2549,99,1639,-560,-1607 +76,-133,1053,15815,254,-394,-2553,27,1702,-586,-1662 +77,-135,923,15636,873,-137,-2314,68,1759,-560,-1651 +78,-134,697,15821,-133,-250,-2033,-5,1739,-558,-1724 +79,-134,1337,15714,538,-85,-1929,19,1751,-549,-1768 +80,-135,1351,15935,71,-122,-1796,51,1818,-576,-1797 +81,-135,1804,16170,-301,-229,-2246,-8,1813,-564,-1785 +82,-133,1312,16001,462,-194,-2601,-19,1834,-569,-1855 +83,-133,1093,16392,-561,-135,-2919,-49,1887,-555,-1877 +84,-132,1181,16101,138,-207,-2974,-21,1893,-582,-1927 +85,-132,823,15732,366,-152,-2791,-10,1928,-523,-1984 +86,-131,722,15706,588,-39,-2671,53,1954,-575,-2058 +87,-135,503,16029,208,-197,-2414,17,2023,-525,-2027 +88,-133,550,16061,-208,-198,-1989,-32,2015,-575,-2127 +89,-136,409,16242,-984,62,-1548,1,2026,-546,-2138 +90,-134,1513,16231,-510,-175,-1205,-50,2023,-574,-2197 +91,-133,921,15864,-245,-185,-997,-107,2015,-478,-2179 +92,-132,968,15930,-634,-35,-940,28,2014,-525,-2202 +93,-135,84,15664,442,-380,-487,-150,2040,-529,-2166 +94,-132,1134,16605,-1660,-230,514,-83,2078,-533,-2246 +95,-133,1029,14879,1028,239,302,-96,2040,-522,-2228 +96,-138,1564,16381,-1016,-105,211,-151,2042,-536,-2186 +97,-133,812,15830,304,48,56,-42,2052,-506,-2198 +98,-133,1217,16099,-371,-109,35,-35,2060,-533,-2187 +99,-134,1241,15920,-85,18,89,-68,2047,-525,-2217 +100,-135,1284,15984,-366,-123,108,-66,2035,-539,-2243 +101,-136,1337,15902,-164,-22,142,-84,2059,-534,-2272 +102,-135,1305,16012,-291,-93,147,-79,2046,-526,-2177 +103,-133,909,15750,-170,104,75,-107,1989,-491,-2194 +104,-132,1638,16068,-391,260,-347,-40,2012,-476,-2238 +105,-132,1133,16695,-1532,490,-83,-135,2023,-453,-2212 +106,-135,34,14907,-1074,2311,-241,-372,2030,-438,-2115 +107,-135,1741,15945,-1784,-78,-281,-197,2028,-406,-2059 +108,-133,402,16849,-3742,873,182,-4,2016,-381,-2046 +109,-133,979,15253,-1278,2,-155,-197,2103,-351,-1958 +110,-135,104,16991,-3972,2287,-17,-120,2041,-282,-1794 +111,-135,1197,15405,-5661,3056,-132,-151,2036,-172,-1569 +112,-132,784,13001,-5243,3298,-5,-188,1983,71,-1366 +113,-132,657,13097,-8690,2442,23,-142,1979,321,-1183 +114,-135,1005,12210,-8829,2079,-129,-116,1998,485,-948 +115,-135,1012,12506,-10544,2208,-93,-68,1972,728,-839 +116,-135,-39,10313,-11186,2110,156,-293,1989,1031,-729 +117,-133,199,9677,-12029,2066,76,-184,1934,1343,-576 +118,-134,792,9046,-13308,1834,64,-59,1936,1550,-474 +119,-132,-29,7978,-13515,1340,110,-243,1991,1742,-374 +120,-131,704,7433,-13966,664,140,-189,1978,1841,-399 +121,-136,163,6883,-14010,165,84,-49,2050,1965,-272 +122,-133,754,7413,-14542,-369,149,-116,2007,1936,-335 +123,-131,786,7715,-14500,-257,146,-190,2031,1897,-371 +124,-133,-92,6662,-12848,-1319,322,-270,2008,1805,-387 +125,-134,874,8104,-13017,-552,107,129,1975,1702,-384 +126,-134,1720,6909,-11960,-2025,209,-75,1936,1528,-562 +127,-134,1631,11384,-12449,-3194,95,-22,1891,1258,-691 +128,-132,1078,12656,-10637,-3861,193,-32,1852,807,-934 +129,-134,480,13531,-8333,-3623,174,-44,1859,470,-1168 +130,-132,923,14330,-6797,-3613,251,-63,1823,226,-1479 +131,-135,1029,15093,-3922,-3612,194,2,1870,-42,-1780 +132,-133,937,16704,-1728,-3895,87,74,1903,-259,-1995 +133,-135,737,15936,160,-4064,89,-32,1923,-377,-2407 +134,-134,1044,16099,3255,-3905,212,38,1877,-356,-2651 +135,-133,752,15437,5381,-4093,199,85,1865,-273,-2900 +136,-130,1276,13412,8407,-4157,214,-6,1892,-93,-3110 +137,-133,1123,12971,10361,-4595,375,3,1931,131,-3448 +138,-134,1701,11607,12274,-4458,762,599,2065,338,-3688 +139,-133,966,9399,14088,-4333,366,146,2114,630,-3824 +140,-133,1571,7793,15043,-4316,125,130,2222,1032,-3988 +141,-133,1205,4949,16017,-3694,99,-88,2376,1343,-4025 +142,-133,1348,2756,16806,-3144,216,312,2526,1623,-4078 +143,-131,856,1009,16115,-2904,187,97,2620,1913,-4000 +144,-136,1386,-294,16576,-2826,164,93,2759,2200,-3963 +145,-137,1504,-2452,16446,-2481,118,-96,2868,2517,-3911 +146,-134,862,-4179,16936,-2635,141,213,2890,2814,-3876 +147,-133,1592,-5108,16350,-2462,168,4,2931,3161,-3756 +148,-133,1624,-7660,15807,-2894,126,153,3024,3397,-3674 +149,-132,1517,-8393,15010,-3023,124,182,3062,3754,-3532 +150,-134,1110,-9997,13603,-3026,17,361,3091,4066,-3351 +151,-133,1094,-11480,12733,-3206,-63,305,3101,4360,-3183 +152,-132,-29,-12278,10886,-3085,-104,393,3135,4729,-3005 +153,-132,450,-13546,8926,-3353,148,183,3180,4906,-2817 +154,-133,694,-14507,7797,-3171,276,78,3141,5216,-2597 +155,-132,47,-14897,5371,-2767,194,121,3199,5433,-2325 +156,-135,833,-16237,4829,-2497,78,176,3180,5547,-2125 +157,-133,-213,-16003,2987,-2475,88,138,3204,5695,-1932 +158,-133,383,-16760,1942,-2190,252,27,3174,5827,-1766 +159,-135,188,-16320,-310,-2110,-118,181,3128,5934,-1656 +160,-134,1032,-17037,-301,-2020,211,18,3143,6020,-1487 +161,-136,-543,-15745,-2717,-2212,181,110,3126,6090,-1329 +162,-134,1142,-16523,-4218,-1799,-5,113,2987,6232,-1223 +163,-135,36,-15270,-4572,-1606,370,119,2920,6288,-1124 +164,-133,1,-15423,-5563,-1269,17,62,2876,6325,-987 +165,-133,-441,-14925,-6723,-1097,103,63,2729,6431,-985 +166,-136,-488,-15469,-6105,-677,-3,-3,2749,6447,-917 +167,-137,8,-14803,-6418,-113,327,-30,2702,6439,-844 +168,-133,157,-15354,-6328,4,177,-62,2714,6464,-877 +169,-133,290,-15401,-6858,-241,195,0,2729,6504,-925 +170,-133,-335,-15350,-6151,-75,126,-16,2696,6480,-898 +171,-132,-277,-15138,-6433,25,167,-52,2715,6476,-887 +172,-137,-215,-14884,-6753,388,353,-20,2724,6508,-965 +173,-132,-117,-15412,-6452,852,885,161,2698,6493,-908 +174,-135,-242,-13899,-6421,682,102,-24,2645,6546,-1006 +175,-134,1138,-18160,-3410,1598,144,-58,2717,6485,-1141 +176,-132,-776,-15494,-4337,394,373,-39,2574,6662,-1130 +177,-134,-581,-13528,-4511,2170,564,-24,2533,6666,-1151 +178,-133,468,-14724,-3293,3655,-245,-192,2670,6543,-1329 +179,-134,-108,-16024,753,4092,-439,-112,2742,6328,-1684 +180,-134,229,-16111,5439,4246,-278,-165,2817,6138,-2004 +181,-133,-106,-15279,7105,4191,-112,-278,2886,5765,-2345 +182,-132,785,-15084,8363,4212,-77,-115,2910,5381,-2609 +183,-132,1912,-13630,11891,4348,139,-298,2937,4982,-2906 +184,-130,877,-11364,12164,4147,16,-264,2991,4517,-3254 +185,-133,398,-8927,14465,4201,-6,-79,2898,4029,-3470 +186,-132,1620,-7306,14547,3942,38,-146,2793,3576,-3580 +187,-132,817,-4467,16585,4320,-3,-131,2878,2969,-3808 +188,-132,977,-1244,17043,4824,44,-102,2807,2360,-3962 +189,-133,458,1235,18382,4993,87,-262,2742,1725,-3958 +190,-132,1447,4893,16778,4452,68,-173,2756,1119,-3978 +191,-134,1433,7092,16476,4429,-26,-229,2318,941,-3871 +192,-135,518,8465,14985,4100,44,-296,2147,629,-3748 +193,-133,1681,10733,12395,3600,159,-219,2029,398,-3614 +194,-131,1147,12318,11188,3687,142,-97,1908,253,-3410 +195,-135,401,13568,9261,3670,33,-185,1993,-50,-3148 +196,-134,1970,13904,7395,3156,176,-165,1988,-380,-2983 +197,-130,892,15667,4603,2820,97,-71,2057,-537,-2711 +198,-133,804,15166,4353,2684,45,-223,2120,-571,-2496 +199,-134,1121,16090,2055,2590,88,-83,2117,-637,-2307 +200,-134,763,15402,1052,2163,-149,-152,2158,-683,-2126 +201,-132,1226,14908,82,924,-51,-43,2198,-622,-2007 +202,-132,1164,15062,-570,-411,61,14,2201,-597,-1970 +203,-134,572,16523,-1231,-847,39,-52,2227,-700,-2053 +204,-135,833,15798,-663,88,451,-94,2242,-712,-2159 +205,-136,1236,15410,-237,-287,225,-19,2231,-721,-2152 +206,-133,647,16773,-976,-329,123,-20,2209,-701,-2156 +207,-132,1448,16693,-854,-56,38,6,2171,-671,-2173 +208,-133,1849,16369,-56,-602,42,-10,2183,-670,-2226 +209,-132,1245,16248,151,-62,139,-18,2205,-674,-2220 +210,-134,1134,15716,813,88,36,-46,2178,-689,-2216 +211,-135,1371,15889,689,-241,48,-1,2174,-691,-2171 +212,-134,1290,16069,384,-170,84,-20,2193,-683,-2235 +213,-132,2604,16715,-881,-33,411,-215,2162,-669,-2258 +214,-134,1355,15866,295,108,186,17,2138,-652,-2280 +215,-133,955,15622,321,626,10,33,2171,-669,-2172 +216,-134,1131,16491,-921,444,154,-119,2173,-627,-2191 +217,-134,731,15402,-941,649,-128,-173,2167,-676,-2101 +218,-132,1093,15748,-1360,2420,91,-103,2149,-576,-2012 +219,-132,855,16819,-4476,3546,-216,-262,2099,-332,-1839 +220,-132,691,14029,-5258,3751,107,-221,2293,-246,-1527 +221,-132,508,12955,-7216,3707,182,-268,2370,-24,-1294 +222,-131,952,12864,-8935,3721,-38,-123,2448,277,-1023 +223,-136,632,11342,-12077,3610,51,-200,2494,604,-875 +224,-136,506,9854,-12517,3127,413,-409,2487,951,-674 +225,-133,420,8154,-13101,2870,84,-77,2563,1283,-458 +226,-133,108,7395,-14412,1843,122,-13,2572,1612,-379 +227,-135,393,5284,-15437,2212,32,-34,2594,1870,-272 +228,-132,457,4239,-16022,2357,85,-20,2591,2174,-205 +229,-133,1132,2731,-15783,2592,30,69,2647,2492,-138 +230,-133,114,1278,-16017,2231,161,173,2649,2788,-59 +231,-134,-479,-600,-16542,2768,85,-171,2603,3201,-14 +232,-134,767,-2097,-15856,2435,137,-101,2539,3645,-21 +233,-133,845,-3881,-16543,2632,62,77,2538,3982,-4 +234,-132,-5,-5270,-15220,2783,83,-108,2492,4351,-35 +235,-133,96,-6981,-14785,2637,49,-191,2469,4752,-132 +236,-135,783,-8460,-13931,2480,101,-70,2446,5060,-174 +237,-132,-558,-10372,-13090,2350,314,62,2386,5411,-248 +238,-131,19,-10883,-11936,2673,-163,-264,2304,5735,-350 +239,-131,957,-12180,-11639,2109,-59,-213,2198,6036,-425 +240,-132,-12,-12378,-10224,1313,108,-177,2201,6194,-585 +241,-133,279,-13309,-9530,1770,28,-248,2153,6413,-614 +242,-132,472,-13566,-8948,1222,33,-138,2112,6547,-742 +243,-131,-252,-14422,-8137,488,1,-182,2056,6620,-758 +244,-130,434,-13555,-8262,-129,90,-106,2044,6650,-799 +245,-133,152,-14249,-8309,-6,24,-99,2035,6632,-831 +246,-134,373,-14603,-8250,-342,73,-92,2077,6649,-755 +247,-134,3,-14657,-8840,-252,-52,-300,2037,6664,-789 +248,-133,473,-14158,-8698,-215,4,-116,2077,6609,-747 +249,-135,192,-14151,-8999,-366,116,-138,2036,6633,-751 +250,-133,499,-13734,-8774,-42,11,-202,2049,6678,-771 +251,-134,271,-13471,-8606,-1001,184,-181,2073,6597,-719 +252,-135,138,-13087,-10060,-1736,168,30,2121,6422,-622 +253,-134,618,-11911,-10841,-2365,175,48,2230,6131,-496 +254,-132,463,-11149,-11713,-2482,172,1,2335,5843,-385 +255,-136,15,-10345,-12998,-2726,135,58,2355,5530,-277 +256,-135,-38,-8681,-13807,-3234,202,52,2347,5236,-201 +257,-133,115,-6604,-14766,-3451,96,72,2257,4885,-34 +258,-132,390,-5103,-15282,-3064,232,-71,2266,4605,-56 +259,-133,241,-3248,-16307,-3364,193,87,2192,4227,14 +260,-132,175,-1195,-16298,-3493,140,90,2103,3865,22 +261,-134,535,793,-16145,-3524,107,90,2053,3434,-78 +262,-133,637,3400,-15842,-3310,106,3,1991,3019,-80 +263,-135,263,5100,-15108,-3435,155,-17,1986,2585,-142 +264,-135,456,7317,-14496,-3205,189,-52,2023,2172,-310 +265,-134,516,8622,-13511,-3184,166,-26,2018,1716,-523 +266,-134,563,10420,-12720,-3180,198,19,2043,1318,-655 +267,-133,673,11278,-11264,-2942,144,66,2102,912,-770 +268,-131,577,12554,-10010,-3154,185,79,2160,554,-986 +269,-136,1047,13714,-8546,-3122,89,122,2216,180,-1236 +270,-132,1110,14634,-6299,-3052,-47,122,2234,-135,-1433 +271,-135,1446,14959,-4532,-3123,22,111,2293,-375,-1684 +272,-135,180,21554,-4221,-2936,13,336,2307,-636,-1891 +273,-135,1394,15855,-1747,-1761,24,50,2346,-757,-1984 +274,-136,924,16188,-1351,-1156,117,14,2293,-766,-2181 +275,-134,1182,15832,-578,-230,90,-24,2315,-759,-2130 +276,-132,1040,16103,-200,-74,109,-36,2346,-798,-2235 +277,-134,1223,15914,-136,-230,28,-150,2300,-802,-2207 +278,-135,666,16322,-873,-140,649,-111,2329,-753,-2156 +279,-134,1617,16039,88,101,163,29,2314,-757,-2174 +280,-134,1290,16063,-364,-130,221,-74,2263,-689,-2214 +281,-135,714,15700,309,-263,117,-42,2300,-726,-2170 +282,-135,939,16100,-308,-206,68,-9,2301,-778,-2174 +283,-132,1083,16095,-392,12,75,-38,2283,-743,-2151 +284,-133,2119,15844,251,152,70,-62,2305,-731,-2208 +285,-133,2268,16125,1102,-289,-1286,17,2284,-798,-2223 +286,-133,1947,15777,283,-251,-1025,33,2305,-788,-2262 +287,-133,2205,15613,187,-123,-1927,-126,2252,-767,-2313 +288,-132,1683,15771,508,-199,-2602,65,2292,-781,-2468 +289,-134,1121,15906,782,-349,-3195,-4,2227,-778,-2474 +290,-134,1181,16257,129,-410,-3581,-46,2332,-813,-2615 +291,-133,912,15924,725,-228,-3671,-119,2190,-749,-2653 +292,-133,861,16017,745,-125,-3743,-31,2128,-753,-2753 +293,-134,982,16361,-195,-338,-3417,-34,2115,-804,-2827 +294,-132,1740,15983,-10,-240,-2960,-1,2014,-812,-2893 +295,-133,1550,16159,380,-215,-2998,12,1916,-838,-2994 +296,-136,1003,16122,301,-254,-3112,117,1814,-859,-3015 +297,-131,1063,16096,176,-107,-3190,-23,1527,-711,-3126 +298,-135,1102,15912,-65,-165,-3028,-4,1407,-703,-3066 +299,-136,1359,15314,-77,-225,-2902,-51,1342,-757,-3141 +300,-135,1165,16288,-144,-417,-2499,87,1184,-717,-3170 +301,-134,1143,15632,502,-33,-1879,-28,1134,-704,-3082 +302,-134,314,16613,-941,-198,-1014,-55,1040,-699,-3095 +303,-129,381,15994,300,-71,-389,-39,1019,-678,-3181 +304,-133,1229,15957,-155,29,9,-37,1004,-664,-3142 +305,-134,1465,16344,-679,-9,127,-97,1004,-680,-3109 +306,-135,1036,16084,3,-63,186,-114,1001,-694,-3153 +307,-133,1350,16280,-544,-69,237,-107,964,-669,-3086 +308,-135,374,16080,314,-14,366,-75,1035,-673,-3147 +309,-133,580,15724,117,7,1475,-120,1038,-732,-3113 +310,-135,2067,15878,-320,302,1213,-166,1133,-675,-3111 +311,-133,-343,15534,-98,-279,2427,-70,1152,-709,-3113 +312,-133,822,15850,-167,122,3063,-55,1242,-629,-3108 +313,-133,1671,15973,205,80,3321,-165,1343,-678,-3060 +314,-136,630,15183,1293,45,3327,-77,1514,-676,-3044 +315,-133,1158,16105,55,11,3067,-125,1623,-666,-3017 +316,-133,2294,15483,-5,-96,3005,97,1742,-695,-2980 +317,-133,579,15491,-76,152,2703,-18,1854,-687,-2964 +318,-132,335,15362,751,149,2796,4,1952,-729,-2854 +319,-132,-666,15565,679,-26,2896,-183,2044,-738,-2807 +320,-134,1416,15899,680,0,3510,-51,2158,-695,-2754 +321,-131,1814,16224,673,376,3216,-267,2252,-744,-2634 +322,-133,2030,15528,1091,65,3326,-103,2277,-704,-2613 +323,-131,1215,16224,-382,136,3738,-156,2296,-708,-2446 +324,-130,1037,15770,831,306,4216,-161,2320,-748,-2398 +325,-134,1395,16035,484,88,4167,-160,2239,-708,-2269 +326,-133,1345,16119,574,253,3928,-221,2144,-666,-2186 +327,-135,613,16013,754,178,4087,-155,2145,-642,-2073 +328,-134,383,16004,169,231,4214,-100,2122,-664,-2043 +329,-134,1032,16076,323,209,4416,-79,2041,-648,-1996 +330,-133,1467,16286,679,105,4407,-215,2008,-636,-1933 +331,-131,1910,15833,401,188,4268,-187,1933,-658,-1801 +332,-132,1565,16240,235,248,3996,-84,1892,-645,-1757 +333,-134,1949,16045,364,131,3792,-139,1859,-641,-1684 +334,-132,2765,16416,-236,135,3542,-196,1763,-622,-1666 +335,-135,1838,15537,604,104,3056,-107,1790,-650,-1548 +336,-132,1253,16363,-388,-17,1995,-70,1706,-598,-1487 +337,-135,1771,16100,175,-64,950,-50,1594,-658,-1457 +338,-133,1441,16067,-20,-154,85,-47,1651,-632,-1527 +339,-135,1013,15958,46,-65,140,-57,1630,-661,-1516 +340,-135,1296,15718,127,-119,24,-83,1705,-652,-1504 +341,-133,575,15858,1869,264,175,-13,1669,-734,-1497 +342,-135,1471,16696,-1099,-156,188,-52,1686,-682,-1526 +343,-134,1021,15658,791,31,89,-42,1631,-667,-1525 +344,-131,1235,16070,138,-106,31,-83,1675,-666,-1511 +345,-132,1834,15837,315,43,-1374,32,1661,-678,-1553 +346,-132,3563,15969,571,-13,-779,-288,1662,-585,-1491 +347,-134,1726,16818,-936,-42,-1674,-185,1703,-643,-1556 +348,-133,1323,16046,-59,-353,-2539,64,1760,-644,-1648 +349,-133,742,16291,165,-190,-3023,21,1859,-637,-1649 +350,-133,969,15969,325,-149,-2829,4,1878,-650,-1735 +351,-133,359,16183,65,-138,-2801,-9,1901,-678,-1721 +352,-132,1287,15672,88,-167,-2802,33,1967,-707,-1830 +353,-134,1154,16201,-166,-173,-3072,-6,1985,-735,-1884 +354,-133,991,15919,188,-80,-3195,1,1943,-618,-1931 +355,-134,766,16022,169,-148,-3006,-15,1999,-651,-1947 +356,-132,688,16227,-96,-237,-2869,69,2035,-652,-1992 +357,-133,778,15991,-274,-313,-2958,-27,2088,-654,-2066 +358,-134,962,16059,270,-171,-2618,-55,2165,-658,-2062 +359,-133,739,15915,329,-219,-1988,-47,2155,-690,-2160 +360,-130,1100,15686,-227,-93,-1143,-11,2198,-649,-2176 +361,-133,1236,16193,176,-266,-741,-95,2189,-667,-2204 +362,-133,-63,15217,717,-147,-268,4,2185,-671,-2231 +363,-133,1272,16500,-768,-151,27,10,2232,-651,-2202 +364,-135,1969,16426,4,-45,91,-103,2192,-692,-2232 +365,-133,2842,15711,111,-118,-322,-107,2179,-686,-2304 +366,-132,1134,16113,30,-57,-598,8,2200,-671,-2232 +367,-134,900,15827,189,-257,53,-45,2167,-704,-2291 +368,-131,1127,15911,64,-37,86,-34,2232,-676,-2314 +369,-133,679,16000,248,-27,610,-11,2210,-645,-2244 +370,-134,1703,15841,413,-345,592,-212,2220,-681,-2253 +371,-134,786,16120,-270,104,1,40,2251,-662,-2279 +372,-135,1257,16032,518,-53,175,-187,2203,-681,-2214 +373,-133,962,15996,12,-103,8,-21,2223,-650,-2301 +374,-135,1976,15715,610,-64,52,-45,2181,-631,-2225 +375,-133,1239,16260,-254,-129,-761,-57,2186,-655,-2251 +376,-132,651,15907,338,229,-167,-3,2145,-642,-2279 +377,-134,1596,15564,789,5,-1682,71,2122,-621,-2303 +378,-132,1931,15651,111,-400,-2810,-164,2172,-658,-2372 +379,-131,1447,16098,449,-392,-3260,-30,2179,-663,-2470 +380,-130,561,16179,615,-300,-3523,-55,2160,-682,-2597 +381,-132,1288,15625,613,-238,-3552,56,2184,-703,-2713 +382,-132,770,15786,472,-161,-3401,-28,2045,-682,-2752 +383,-131,872,16440,-9,-236,-3624,-54,1922,-635,-2851 +384,-129,1009,16202,416,-199,-3603,-68,1879,-662,-2908 +385,-134,1289,16095,578,-332,-3518,-73,1787,-714,-2994 +386,-134,1322,16109,403,-278,-3400,-120,1574,-640,-3063 +387,-133,1640,16148,285,-253,-3356,5,1517,-708,-3060 +388,-133,1500,15830,253,-180,-3487,-70,1379,-716,-3096 +389,-133,934,16122,266,-278,-3624,-83,1221,-693,-3094 +390,-131,1242,16219,234,-190,-3524,-56,1077,-656,-3116 +391,-134,1139,15939,756,-215,-3411,-44,946,-742,-3116 +392,-134,1284,16188,-223,-243,-3311,-21,813,-768,-3053 +393,-132,965,16010,501,-291,-3316,23,730,-810,-2983 +394,-132,1267,15997,-75,-289,-2942,-21,607,-742,-2898 +395,-133,1238,15889,307,-82,-2649,43,503,-776,-2932 +396,-132,1062,16089,34,-230,-2799,47,352,-754,-2845 +397,-131,1358,15990,176,-255,-2982,-80,283,-740,-2772 +398,-132,686,16212,-163,-246,-2766,-24,204,-763,-2663 +399,-130,1285,16207,-25,-160,-2364,-52,119,-752,-2542 +400,-135,630,15915,12,-105,-1930,-155,-19,-714,-2450 +401,-133,436,15864,83,-149,-915,42,-40,-673,-2400 +402,-132,677,15881,-184,-103,-454,-21,-69,-685,-2382 +403,-135,598,15788,8,-390,866,-25,-90,-667,-2383 +404,-133,813,16144,-188,279,1064,-76,-82,-668,-2399 +405,-131,1904,15873,708,-168,155,4,-56,-673,-2417 +406,-134,630,16413,-476,-120,-99,-48,-125,-578,-2436 +407,-132,5064,15342,302,1,-233,-182,-103,-601,-2401 +408,-132,2095,18727,-2612,932,-1328,-1,-47,-714,-2341 +409,-135,-774,16251,-81,1695,-159,48,-172,-564,-2254 +410,-133,995,14550,-2191,1903,-1263,-468,-221,-537,-2034 +411,-132,2338,17137,-4248,1042,-794,254,-219,-454,-1892 +412,-132,874,15988,-4431,1842,-650,180,-204,-338,-1712 +413,-132,1009,15485,-5637,3147,-567,-75,-228,-196,-1436 +414,-134,548,14786,-7604,3221,-256,272,-55,-31,-1270 +415,-133,1356,13682,-7755,2727,-111,-177,30,212,-1096 +416,-133,47,13000,-10457,2712,28,-169,107,387,-833 +417,-134,496,10376,-11619,2120,90,-70,268,499,-701 +418,-133,560,10123,-12958,2066,37,-145,379,591,-508 +419,-134,1103,9492,-13420,2348,-41,77,594,610,-515 +420,-136,228,6949,-14630,2017,17,35,663,789,-361 +421,-135,457,7251,-13743,1939,61,-22,788,960,-217 +422,-131,1295,7112,-13732,-481,38,137,756,1137,-205 +423,-132,394,6355,-13697,-47,58,2,776,1146,-194 +424,-134,118,6630,-16203,-84,-35,145,753,1144,-199 +425,-133,391,6278,-14119,-205,94,97,778,1150,-217 +426,-133,175,6357,-14963,-623,288,145,734,1081,-266 +427,-133,365,6142,-14853,-79,120,-26,722,1073,-276 +428,-134,4,7152,-14719,-145,217,-79,730,1091,-260 +429,-134,362,6804,-14598,-152,252,-129,883,860,-235 +430,-134,463,7383,-14429,-115,90,116,867,875,-236 +431,-134,468,6802,-14693,-73,86,85,873,899,-184 +432,-131,302,6893,-14635,-45,13,248,858,890,-198 +433,-134,473,6756,-13731,80,401,-172,786,896,-264 +434,-133,-255,6770,-14816,-70,624,-709,784,848,-338 +435,-133,1662,6727,-14021,44,397,-695,747,833,-262 +436,-134,808,6423,-14182,-330,535,-738,812,797,-271 +437,-132,-436,6843,-14425,53,929,-1547,796,678,-389 +438,-134,304,7288,-14418,-151,1414,-2494,758,513,-478 +439,-133,48,7251,-14112,-57,1631,-2900,776,353,-546 +440,-132,419,7379,-13952,141,1472,-2867,904,116,-603 +441,-129,-113,6858,-14521,-134,1544,-2611,987,-37,-680 +442,-130,937,7777,-14928,-87,1546,-2776,1075,-194,-752 +443,-133,1193,8010,-14414,8,1513,-2942,1180,-340,-798 +444,-131,268,6879,-13990,-86,1482,-2864,1370,-451,-833 +445,-131,-292,7499,-14389,-45,1469,-2762,1479,-514,-920 +446,-132,561,7651,-14688,70,1508,-2704,1685,-613,-956 +447,-132,415,7072,-14683,-159,1501,-2573,1797,-657,-918 +448,-131,190,7399,-14505,-172,1312,-2496,1912,-635,-879 +449,-133,374,7759,-14825,-13,1399,-2391,2051,-606,-904 +450,-131,553,7148,-14306,-98,1209,-2474,2078,-580,-915 +451,-130,1059,7430,-13690,-24,1475,-2696,2248,-547,-930 +452,-130,479,7222,-14288,59,1338,-2538,2365,-474,-884 +453,-132,545,7404,-14179,-74,1344,-2499,2410,-442,-788 +454,-134,-140,7415,-13958,94,1222,-2382,2543,-405,-770 +455,-130,-509,7519,-12979,55,1217,-2220,2620,-328,-761 +456,-133,-79,7163,-13773,442,1484,-2671,2565,-81,-701 +457,-132,339,7471,-14780,105,1698,-3117,2509,202,-715 +458,-133,-34,7325,-15056,-225,1740,-3255,2603,279,-638 +459,-130,613,7759,-14921,-389,1860,-3456,2663,387,-601 +460,-133,-6,8457,-14325,-230,1845,-3560,2774,538,-478 +461,-133,-289,8049,-14758,-83,1846,-3339,2828,697,-426 +462,-130,326,7578,-14527,-104,1719,-3059,2837,884,-393 +463,-132,921,8052,-14616,65,1464,-2869,2772,1025,-270 +464,-131,943,7362,-15172,-67,1305,-2524,2807,1181,-257 +465,-130,158,7548,-14480,-104,1307,-2457,2760,1281,-217 +466,-130,-384,7583,-14120,27,1522,-2813,2713,1404,-117 +467,-133,331,7565,-14430,-88,1732,-2948,2675,1546,-126 +468,-131,477,7437,-14486,22,1488,-2713,2561,1737,-53 +469,-130,780,7692,-14452,-31,1363,-2610,2437,1869,40 +470,-131,135,7385,-14403,-2,1531,-2712,2407,1987,22 +471,-131,276,7166,-14495,-67,1506,-2714,2354,2095,62 +472,-133,2,7678,-14624,-141,1641,-2595,2316,2207,124 +473,-131,908,7312,-14298,-200,1477,-2700,2247,2194,142 +474,-133,1234,7739,-14419,-160,1560,-2970,2188,2299,124 +475,-131,180,7336,-14205,44,1562,-2942,2210,2424,222 +476,-127,-324,7242,-14555,22,1422,-2636,2016,2649,254 +477,-136,757,7194,-14027,-115,1273,-2308,1692,3041,311 +478,-131,-57,7059,-13394,48,1308,-2473,1630,3202,223 +479,-131,-54,7204,-13386,-143,1400,-2553,1470,3281,286 +480,-132,1119,7470,-14310,-11,1254,-2429,1368,3338,305 +481,-133,288,7663,-14306,-23,1501,-2746,1214,3381,270 +482,-132,-369,7557,-13955,-77,1761,-2971,991,3405,278 +483,-134,-361,7718,-14539,-60,1655,-2923,765,3376,211 +484,-132,737,7728,-14523,70,1480,-2820,574,3299,175 +485,-135,1437,7295,-14375,85,1373,-2812,286,3224,83 +486,-133,1267,7965,-14741,-89,1437,-2761,137,3094,-5 +487,-133,68,7637,-14680,21,1313,-2550,81,2889,-77 +488,-135,254,7323,-14704,-185,1358,-2744,-35,2651,-106 +489,-136,631,7429,-14154,-216,1485,-2863,-171,2486,-83 +490,-130,60,7950,-14311,11,1302,-2354,-158,2250,-258 +491,-133,589,6723,-14957,-46,1154,-2002,-95,1999,-273 +492,-134,705,6815,-14391,-172,898,-1877,-101,1874,-341 +493,-133,972,6903,-14440,-76,802,-1301,-142,1799,-398 +494,-133,90,7287,-15082,-164,642,-1107,-168,1747,-440 +495,-131,151,7157,-15266,-107,430,-825,-198,1697,-492 +496,-132,764,7111,-15294,-53,273,-229,-154,1620,-504 +497,-130,821,7744,-15826,9,-442,1225,-99,1558,-420 +498,-135,-2754,7991,-15702,-82,43,165,72,1522,-378 +499,-131,-438,7881,-15296,-170,165,31,67,1498,-363 +500,-134,555,6801,-14696,-272,73,-2,261,1330,-390 +501,-133,925,7203,-14410,-250,150,80,229,1347,-348 +502,-133,1551,7674,-14326,-53,192,-60,174,1381,-270 +503,-132,109,7446,-14811,51,55,-119,163,1405,-312 +504,-132,-24,6797,-14743,-146,86,11,163,1405,-317 +505,-134,2058,7251,-13967,-148,-28,326,134,1515,-326 +506,-133,2246,7197,-14202,-84,-1051,2362,159,1680,-302 +507,-134,2137,7681,-14366,16,-1647,3650,197,1874,-185 +508,-133,1405,7543,-14239,-122,-1898,4216,342,2116,-50 +509,-133,1067,7591,-13457,-71,-1878,4051,625,2332,13 +510,-132,969,7416,-14958,-279,-1538,3675,846,2517,174 +511,-135,209,8233,-14205,-235,-1499,3259,965,2698,166 +512,-133,1135,6469,-13978,55,-1300,2899,1086,2849,256 +513,-134,10,7959,-14348,85,-1511,3097,1376,2870,277 +514,-133,127,7794,-14727,157,-1441,3066,1582,2914,323 +515,-133,552,7363,-14332,151,-1445,2920,1637,3009,257 +516,-133,38,6973,-14399,-171,-1297,2905,1736,2998,296 +517,-135,-227,7382,-14635,-175,-1318,2879,1911,2817,284 +518,-135,-58,7377,-14480,-237,-1145,2615,2078,2657,214 +519,-133,427,7408,-14082,-178,-1149,2637,2109,2584,294 +520,-134,-107,7422,-14258,14,-1298,2777,2159,2478,200 +521,-132,381,7423,-13900,-58,-1403,3083,2201,2372,256 +522,-132,595,7639,-14276,61,-1532,3286,2211,2246,115 +523,-133,1145,8141,-14304,-123,-1703,3735,2252,2207,150 +524,-132,1258,8091,-14083,56,-2060,4290,2176,2200,22 +525,-135,-347,7206,-13892,-257,-1923,4306,2175,2153,-44 +526,-133,-870,7532,-13104,-100,-1841,4041,2282,1967,-101 +527,-133,-963,7394,-13853,-98,-1453,3153,2345,1763,-274 +528,-134,-492,7195,-14321,-76,-800,1836,2367,1706,-225 +529,-133,-454,7223,-14001,57,-516,1154,2376,1632,-260 +530,-134,149,7323,-14953,-103,-83,446,2408,1582,-320 +531,-131,-164,7279,-14770,-79,104,2,2382,1499,-262 +532,-133,-13,7339,-14021,-73,372,-598,2538,1487,-277 +533,-130,2139,7070,-14316,110,110,-3,2540,1463,-278 +534,-134,213,7345,-15115,-198,170,-76,2563,1466,-280 +535,-129,442,7360,-14243,-191,133,71,2517,1488,-268 +536,-133,613,7291,-14122,-54,134,-15,2518,1496,-283 +537,-131,212,7456,-15147,-34,61,27,2400,1566,-289 +538,-131,758,7341,-14004,30,103,-73,2376,1656,-276 +539,-131,501,7188,-14074,136,92,-74,2367,1618,-284 +540,-132,371,7103,-14657,-73,88,-43,2321,1691,-219 +541,-130,1197,6656,-14851,-811,208,-217,2259,1688,-355 +542,-131,967,8299,-12173,-1370,288,-128,2309,1477,-372 +543,-131,914,7886,-12321,-3463,200,59,2345,1077,-544 +544,-131,473,11101,-10965,-4566,113,263,2328,604,-736 +545,-133,1424,13841,-7746,-4390,30,265,2111,312,-1086 +546,-132,557,16042,-6760,-3998,20,287,2048,-57,-1407 +547,-133,1544,15888,-4559,-3778,-10,182,2074,-276,-1661 +548,-131,1299,16740,-2221,-2310,3,48,2122,-463,-1966 +549,-132,871,16482,-1290,-1945,419,46,2014,-519,-2087 +550,-131,1685,16323,-968,-951,361,-138,2081,-484,-2165 +551,-135,1493,16440,-446,-857,133,-16,2025,-485,-2306 +552,-135,1268,16411,133,-543,146,-114,2070,-553,-2348 +553,-131,1223,15970,-265,-233,166,-108,2152,-649,-2394 +554,-131,1333,15843,440,-207,178,-101,2149,-656,-2451 +555,-130,1322,16191,692,-148,139,-79,2111,-633,-2390 +556,-134,1444,16228,4,-144,115,-97,2123,-543,-2433 +557,-132,1389,15944,630,-112,127,-77,2143,-581,-2384 +558,-131,1264,16121,546,-19,110,-35,2193,-596,-2413 +559,-133,1468,16242,164,-105,138,-77,2132,-600,-2392 +560,-133,1417,15875,812,-57,171,-83,2090,-624,-2416 +561,-132,1268,15925,655,34,107,-57,2099,-606,-2456 +562,-132,748,15925,523,59,664,-11,2176,-619,-2464 +563,-130,1945,15683,1189,92,506,-372,2137,-606,-2402 +564,-133,1333,16295,180,-34,233,-156,2163,-591,-2385 +565,-130,755,16098,606,6,602,15,2142,-564,-2336 +566,-132,1207,15586,1116,26,1082,52,2130,-571,-2411 +567,-130,1639,15913,523,-117,781,-32,2096,-561,-2382 +568,-134,1350,15780,1198,-423,97,-34,2115,-566,-2415 +569,-133,879,15752,772,-458,129,-53,2071,-582,-2353 +570,-132,1260,15643,1283,-87,120,-80,2147,-608,-2334 +571,-135,1130,15776,1040,-71,123,-91,2109,-589,-2390 +572,-132,1315,15879,1057,-63,118,-69,2118,-521,-2354 +573,-132,1210,15932,1082,-42,129,-59,2149,-595,-2402 +574,-135,1212,16026,1197,-41,119,-70,2101,-533,-2354 +575,-130,1218,16020,1155,-48,119,-68,2106,-566,-2363 +576,-132,1208,15994,1126,-70,119,-73,2104,-600,-2347 +577,-133,1205,15937,1058,-50,123,-70,2098,-593,-2294 +578,-133,1217,15949,1094,-49,123,-76,2115,-608,-2379 +579,-133,1202,16007,1183,-28,119,-75,2092,-585,-2365 +580,-134,1208,16024,1167,-49,111,-78,2082,-573,-2335 +581,-133,1205,15993,1136,-61,110,-81,2107,-598,-2427 +582,-132,1188,15949,1053,-41,113,-70,2107,-558,-2436 +583,-133,1196,16013,1178,-37,110,-77,2111,-555,-2354 +584,-131,1188,15978,1104,-46,110,-70,2091,-576,-2396 +585,-133,1219,15968,1079,-59,110,-80,2125,-566,-2310 +586,-133,1189,15966,1079,-57,123,-80,2100,-524,-2385 +587,-130,1194,15974,1177,-32,127,-66,2106,-594,-2383 +588,-131,1185,16004,1171,-52,112,-75,2104,-550,-2322 +589,-134,1205,15930,1092,-56,117,-77,2109,-558,-2386 +590,-135,1211,15925,1064,-60,118,-70,2092,-518,-2347 +591,-132,1209,15966,1127,-36,105,-75,2059,-578,-2332 +592,-133,1177,16040,1147,-51,95,-67,2108,-592,-2376 +593,-134,1210,16027,1093,-57,115,-65,2117,-545,-2373 +594,-132,1232,15936,1065,-56,118,-75,2136,-556,-2372 +595,-133,1227,15974,1184,-35,106,-72,2087,-550,-2363 +596,-132,1221,16018,1174,-43,106,-75,2081,-536,-2339 +597,-131,1210,15991,1134,-54,106,-81,2065,-573,-2328 +598,-135,1189,15969,1084,-55,110,-72,2080,-583,-2340 +599,-130,1210,15937,1066,-59,122,-67,2039,-587,-2374 +600,-133,1193,15972,1130,-41,118,-80,2111,-583,-2327 +601,-136,1193,15992,1160,-42,104,-70,2051,-595,-2391 +602,-134,1147,15985,1153,-46,106,-73,2107,-544,-2370 +603,-132,1191,15967,1084,-66,106,-64,2079,-545,-2346 +604,-131,1244,15952,1088,-64,113,-67,2123,-537,-2375 +605,-134,1212,15981,1138,-33,120,-73,2112,-571,-2339 +606,-136,1212,15983,1166,-46,113,-66,2117,-548,-2439 +607,-134,1227,15998,1156,-50,99,-71,2102,-590,-2352 +608,-131,1280,15970,1094,-63,105,-85,2096,-589,-2389 +609,-132,1248,15967,1084,-55,116,-79,2105,-571,-2398 +610,-132,1206,15967,1136,-35,111,-76,2091,-538,-2376 +611,-131,1151,15981,1172,-40,104,-74,2096,-621,-2293 +612,-133,1179,16004,1171,-38,106,-75,2064,-568,-2366 +613,-133,1207,15977,1130,-62,107,-66,2088,-549,-2298 +614,-132,1219,15952,1060,-73,114,-74,2053,-565,-2321 +615,-134,1194,15946,1113,-45,109,-65,2087,-574,-2332 +616,-131,1208,15985,1136,-40,108,-78,2093,-596,-2392 +617,-131,1213,16015,1147,-59,109,-74,2119,-600,-2372 +618,-133,1204,15976,1130,-61,111,-75,2094,-599,-2303 +619,-132,1218,15971,1109,-60,117,-75,2085,-538,-2390 +620,-133,1212,16021,1151,-47,115,-65,2080,-571,-2361 +621,-133,1193,15954,1096,-50,105,-72,2109,-584,-2392 +622,-130,1214,15934,1056,-64,119,-76,2124,-554,-2356 +623,-132,1212,15979,1141,-42,128,-80,2074,-580,-2337 +624,-131,1191,16001,1192,-36,112,-79,2138,-594,-2305 +625,-133,1214,15938,1092,-59,120,-72,2090,-575,-2402 +626,-132,1215,15929,1048,-57,126,-74,2094,-587,-2317 +627,-131,1200,15974,1149,-47,118,-67,2078,-543,-2284 +628,-133,1203,15999,1172,-54,115,-71,2103,-569,-2360 +629,-132,1234,15941,1073,-60,111,-74,2121,-589,-2328 +630,-133,1213,15926,1132,-57,117,-68,2127,-569,-2283 +631,-131,1229,15992,1142,-34,122,-71,2151,-571,-2376 +632,-130,1208,16024,1165,-45,123,-67,2107,-557,-2336 +633,-134,1211,15985,1126,-61,108,-73,2100,-548,-2301 +634,-135,1225,15962,1135,-53,118,-68,2082,-546,-2325 +635,-132,1189,16021,1191,-41,100,-77,2095,-555,-2382 +636,-134,1198,15978,1095,-47,113,-79,2119,-553,-2355 +637,-131,1212,15951,1085,-63,121,-72,2151,-547,-2359 +638,-131,1277,16019,1054,-19,16,-57,2121,-535,-2326 +639,-134,1351,16007,1158,-123,179,-53,2139,-581,-2398 +640,-133,1154,16139,887,36,152,-88,2122,-580,-2350 +641,-132,1302,15908,1360,-100,117,-72,2105,-593,-2368 +642,-132,1067,16133,875,-42,112,-88,2118,-576,-2354 +643,-137,1318,15822,1264,-66,63,-59,2124,-539,-2361 +644,-132,1402,16085,1010,-43,140,-71,2068,-552,-2332 +645,-133,1358,16123,1107,-122,70,-47,2116,-600,-2382 +646,-134,1390,15906,1433,10,121,-75,2065,-572,-2408 +647,-134,1206,15946,1075,-113,192,-62,2104,-550,-2372 +648,-133,1206,15967,1165,-31,89,-75,2126,-547,-2279 +649,-131,1253,15888,1359,-105,114,-49,2113,-537,-2364 +650,-132,1226,16091,1128,11,122,-82,2065,-550,-2368 +651,-130,1211,16020,1240,-65,139,-78,2108,-533,-2351 +652,-132,1258,16043,1090,-86,112,-63,2138,-562,-2392 +653,-133,1282,15904,1216,-33,113,-64,2133,-587,-2359 +654,-132,1226,16100,1023,-5,121,-77,2084,-559,-2314 +655,-132,1072,16057,1199,-64,115,-70,2090,-562,-2352 +656,-130,1088,15985,1253,-32,112,-80,2083,-582,-2356 +657,-133,1230,15979,1124,-60,119,-79,2109,-593,-2365 +658,-130,1217,15955,1197,-43,143,-77,2129,-568,-2373 +659,-132,1182,16027,1158,-68,123,-80,2102,-530,-2378 +660,-131,1217,15938,1145,-41,121,-68,2121,-575,-2406 +661,-133,1259,16020,1042,-53,115,-62,2137,-558,-2347 +662,-135,1241,15992,1262,-41,118,-79,2105,-559,-2399 +663,-133,1222,15980,1027,-62,123,-73,2119,-547,-2376 +664,-131,1220,15911,1125,-67,111,-76,2050,-546,-2383 +665,-132,1282,15947,1213,-46,113,-74,2128,-544,-2361 +666,-134,1218,16092,799,-50,-101,-107,2093,-517,-2339 +667,-131,1296,15728,1357,-29,-671,-102,2123,-533,-2354 +668,-133,1611,16240,1010,99,-469,5,2110,-542,-2432 +669,-132,-131,16299,1350,-113,-1147,-86,2091,-628,-2352 +670,-131,1294,15945,1271,-238,-2383,-314,2132,-660,-2463 +671,-134,1748,16279,1180,-268,-2890,-246,2204,-663,-2512 +672,-129,1000,15990,1065,-347,-3074,-239,2250,-717,-2675 +673,-133,1034,16020,1038,-113,-3085,-219,2218,-744,-2716 +674,-132,952,15782,1694,-261,-3149,-238,2217,-735,-2737 +675,-133,1042,15526,1735,-286,-3491,-341,2157,-754,-2868 +676,-133,340,16159,902,-315,-3546,-123,2106,-793,-2974 +677,-133,1868,16068,832,-270,-3164,-184,1997,-770,-2984 +678,-131,509,16655,643,-483,-2981,-72,1878,-812,-3085 +679,-132,1101,15920,824,-115,-3027,-166,1834,-787,-3144 +680,-131,1487,15656,1520,-227,-2925,-65,1732,-808,-3165 +681,-132,2032,15983,1426,-394,-2889,-120,1620,-784,-3237 +682,-132,212,15816,1987,-87,-1971,-140,1541,-787,-3276 +683,-131,1292,16183,967,-148,-799,-92,1472,-773,-3192 +684,-131,677,16277,899,9,-669,-27,1441,-802,-3241 +685,-131,1138,16187,530,-139,66,-56,1429,-770,-3290 +686,-134,1221,16023,1052,-117,77,-11,1482,-787,-3242 +687,-134,1130,16148,1006,-85,129,-34,1433,-825,-3292 +688,-132,1074,16148,1142,-82,118,-42,1364,-794,-3269 +689,-133,1098,15984,1269,-48,91,-29,1388,-791,-3237 +690,-132,1302,16056,956,-50,105,-14,1406,-796,-3255 +691,-134,1213,16203,712,-36,138,-38,1401,-795,-3249 +692,-130,1032,16021,1195,-22,199,-55,1449,-817,-3242 +693,-132,655,15929,1222,-60,780,-9,1422,-763,-3181 +694,-132,2384,15829,800,-43,766,-330,1525,-774,-3243 +695,-131,910,16000,886,221,390,-193,1543,-785,-3193 +696,-130,143,15822,1288,-5,2142,132,1555,-813,-3231 +697,-131,530,16181,1091,71,3549,189,1679,-774,-3177 +698,-130,471,15967,1328,75,4228,151,1740,-703,-3166 +699,-130,658,16099,1499,145,4171,148,1863,-694,-3083 +700,-131,782,15888,1422,194,3853,217,1929,-630,-3059 +701,-133,919,16027,1104,214,3931,237,2032,-584,-2926 +702,-133,1526,15794,1663,164,4137,162,2098,-594,-2821 +703,-133,1578,16369,1390,174,3879,114,2098,-554,-2642 +704,-131,1489,16067,1558,153,3712,138,2118,-525,-2592 +705,-132,1447,16220,893,9,3187,16,2110,-512,-2502 +706,-132,1246,15897,708,66,2836,126,2063,-513,-2420 +707,-131,1562,16050,1091,-6,1994,45,2101,-513,-2385 +708,-133,1416,15975,697,-113,942,19,2077,-517,-2349 +709,-131,1422,15732,1458,-103,95,-59,2042,-524,-2338 +710,-129,1441,15876,1276,-111,28,-43,2089,-519,-2374 +711,-131,1286,15844,1418,23,128,-121,2073,-515,-2401 +712,-132,1528,15935,1120,-34,148,-80,2047,-545,-2329 +713,-131,982,16016,1055,-19,150,-120,2021,-516,-2408 +714,-130,1232,15970,1242,-35,80,-64,2053,-506,-2353 +715,-129,1313,16030,1118,-32,117,-78,2072,-542,-2339 +716,-132,1294,15924,1179,-69,116,-82,2078,-529,-2311 +717,-132,1206,15927,1074,-42,126,-86,2091,-527,-2292 +718,-129,1214,15927,1128,-54,117,-81,2097,-534,-2334 +719,-128,1229,16022,1223,-31,116,-80,2053,-514,-2324 +720,-132,1355,16518,919,57,71,-94,2105,-509,-2320 +721,-132,1364,15762,1499,-413,219,-60,2048,-500,-2401 +722,-132,1314,16328,517,256,-141,-107,2080,-509,-2346 +723,-131,770,15620,1773,-139,547,16,2109,-539,-2310 +724,-133,976,16340,699,-76,201,39,2087,-532,-2295 +725,-135,966,16124,799,121,1083,122,2033,-565,-2383 +726,-130,1608,15969,605,-201,2377,-109,2001,-519,-2333 +727,-132,618,15650,1562,62,2924,53,1998,-520,-2223 +728,-130,603,15195,1261,185,3586,380,1961,-500,-2151 +729,-131,766,16447,1261,145,3693,-37,1857,-455,-2083 +730,-132,1737,15980,2040,176,3518,195,1866,-484,-1991 +731,-133,480,15992,757,43,3268,151,1789,-485,-1979 +732,-133,986,16211,1389,266,3252,92,1719,-487,-1884 +733,-131,1780,15957,1012,142,3482,-11,1633,-408,-1792 +734,-131,289,15755,1684,190,3842,67,1565,-439,-1784 +735,-132,998,15626,1598,176,3723,152,1459,-404,-1671 +736,-131,1092,16077,1021,128,3064,-76,1380,-398,-1652 +737,-131,1127,15499,1239,31,2186,17,1258,-369,-1608 +738,-133,1362,15934,1492,22,1386,42,1199,-365,-1555 +739,-134,2006,15950,854,43,507,-43,1151,-372,-1601 +740,-133,1147,15657,1443,-189,260,-19,1215,-309,-1569 +741,-134,1352,15720,1224,-323,-290,-109,1202,-333,-1598 +742,-133,606,16042,876,-88,-7,-109,1139,-311,-1609 +743,-135,946,15562,1908,211,564,-97,1166,-331,-1601 +744,-132,1673,15976,739,-66,37,-115,1099,-306,-1557 +745,-134,1168,15789,1508,-41,154,-125,1138,-298,-1577 +746,-131,1131,15961,1372,26,101,-96,1144,-340,-1569 +747,-133,959,16266,601,-144,18,-101,1125,-303,-1529 +748,-132,1483,15838,1347,99,82,-74,1148,-344,-1554 +749,-134,937,15567,1661,-141,133,-110,1064,-244,-1569 +750,-132,807,15146,2106,-102,15,-204,1133,-314,-1555 +751,-133,1735,16387,560,154,-642,-241,1141,-349,-1508 +752,-133,-170,16145,1271,94,-1091,-290,1159,-285,-1563 +753,-129,2080,16569,250,-253,-1715,-134,1177,-315,-1595 +754,-132,1514,15534,1768,-272,-3275,-301,1273,-326,-1636 +755,-132,1582,15540,1577,-337,-3980,-389,1454,-354,-1736 +756,-132,875,16279,1015,-362,-4327,-334,1615,-457,-1785 +757,-132,1348,16213,1172,-82,-4030,-246,1702,-511,-1823 +758,-134,1934,16560,435,-496,-3882,-230,1869,-524,-1915 +759,-134,1120,16266,1468,-276,-3963,-152,1960,-562,-1986 +760,-135,951,16163,1157,-259,-3356,-282,2041,-606,-2065 +761,-132,1019,15832,1578,-237,-2755,-346,2067,-605,-2136 +762,-132,926,16152,1429,-231,-2547,-149,2164,-691,-2194 +763,-131,994,15986,1261,-115,-2645,-82,2130,-623,-2297 +764,-134,625,15959,1513,-56,-1583,-68,2187,-674,-2272 +765,-133,1093,16062,1094,-186,-523,-188,2211,-668,-2334 +766,-133,1352,16048,834,1,311,-73,2202,-653,-2332 +767,-132,835,15852,1369,-78,169,-27,2211,-670,-2335 +768,-132,1262,16126,993,14,295,-97,2197,-673,-2393 +769,-134,1037,15618,1158,-148,721,76,2183,-629,-2300 +770,-132,1466,15780,1270,140,291,-56,2175,-652,-2301 +771,-133,785,15788,1408,-182,99,-2,2137,-610,-2313 +772,-131,1260,16053,1056,234,206,-89,2135,-610,-2313 +773,-132,922,16263,1061,-34,387,-17,2143,-607,-2281 +774,-130,633,15640,1332,61,180,-22,2141,-636,-2295 +775,-134,395,16289,983,89,671,136,2119,-587,-2319 +776,-132,486,15922,1278,23,2111,112,2080,-522,-2304 +777,-134,1391,16032,1135,169,3490,224,1970,-490,-2260 +778,-134,743,16079,1532,85,4405,168,1910,-546,-2184 +779,-131,1042,16406,1015,194,4960,151,1819,-508,-2073 +780,-133,833,16011,2022,246,5431,146,1706,-472,-1920 +781,-130,1244,15091,2233,219,5359,159,1618,-458,-1829 +782,-134,1444,16750,1120,103,5165,253,1477,-472,-1749 +783,-134,698,16182,1256,229,5566,282,1332,-412,-1660 +784,-131,1974,15556,2190,379,5288,117,1151,-378,-1606 +785,-132,1148,15288,2159,50,5553,324,902,-368,-1468 +786,-132,1339,16428,1140,450,5475,274,656,-298,-1401 +787,-132,205,16097,879,188,4939,35,299,-313,-1551 +788,-132,439,15963,904,82,4307,261,122,-331,-1575 +789,-133,3567,16495,2332,-87,3745,228,12,-425,-1680 +790,-134,2074,16263,837,89,3532,66,-72,-520,-1839 +791,-131,1062,15817,2153,265,3813,99,-183,-456,-1978 +792,-132,2181,15817,1973,-8,4122,105,-126,-582,-2127 +793,-133,582,16145,1581,436,3500,-102,-133,-576,-2333 +794,-131,2735,15978,1468,-58,2391,329,-63,-629,-2455 +795,-131,1703,17189,236,72,1467,-33,-64,-628,-2500 +796,-132,1775,15280,2220,12,659,-87,37,-726,-2461 +797,-133,1069,16139,404,-208,-147,26,109,-741,-2518 +798,-132,853,15625,1558,73,-82,-74,46,-668,-2473 +799,-132,1162,16233,694,-102,95,-44,61,-720,-2421 +800,-132,1046,15839,1452,24,105,-45,48,-681,-2491 +801,-131,1185,16154,722,-139,129,-32,103,-750,-2519 +802,-131,1093,15713,1378,-19,113,-40,49,-716,-2509 +803,-132,1183,16137,818,-65,139,-23,73,-745,-2457 +804,-130,448,15821,1471,-69,989,170,40,-679,-2571 +805,-132,1391,15485,1177,337,249,-140,126,-778,-2533 +806,-133,1688,15907,1225,-392,-430,-62,37,-711,-2504 +807,-133,513,16383,475,43,-316,66,7,-746,-2476 +808,-132,871,15522,1954,15,514,-39,56,-711,-2528 +809,-133,1656,16142,969,370,-74,-360,78,-733,-2486 +810,-134,1152,16807,242,-211,-920,-180,8,-661,-2530 +811,-132,17,16098,450,270,-585,53,119,-838,-2458 +812,-134,2446,15536,1147,-154,-1129,-162,157,-846,-2404 +813,-132,1174,16395,708,-156,-2233,-119,250,-917,-2404 +814,-132,78,15966,1777,-312,-2650,-219,204,-906,-2212 +815,-134,-68,16639,363,-115,-2630,-238,157,-813,-2100 +816,-135,1098,16208,1182,-106,-2670,-51,201,-817,-1977 +817,-133,735,16375,970,-191,-3014,-192,310,-860,-1856 +818,-132,1192,16583,676,-147,-3537,-225,393,-887,-1710 +819,-135,952,16043,1313,-276,-4009,-223,566,-895,-1562 +820,-134,217,16111,1222,-175,-4169,-164,780,-853,-1531 +821,-133,374,15666,1699,-278,-4092,-200,1141,-981,-1450 +822,-134,1202,16040,1466,-282,-4261,-248,1359,-950,-1433 +823,-137,1318,16081,1067,-305,-4176,-160,1593,-1012,-1519 +824,-131,1226,15739,1576,-405,-3977,-333,1820,-1086,-1586 +825,-133,1278,15688,1759,-236,-3528,-304,1971,-1120,-1642 +826,-133,1187,16275,724,-126,-3413,-249,2155,-1145,-1653 +827,-133,1572,15928,1304,-265,-3358,-282,2252,-1149,-1727 +828,-131,1846,15904,1045,-182,-3364,-242,2309,-1168,-1838 +829,-133,813,15784,1659,-273,-3270,-157,2398,-1188,-1883 +830,-132,1103,16171,1409,-148,-3306,-271,2507,-1191,-1938 +831,-132,502,16002,1379,-237,-2802,-134,2566,-1191,-2017 +832,-135,523,16161,1366,-119,-2707,-170,2586,-1240,-2098 +833,-132,877,15520,1546,-206,-2336,-138,2619,-1185,-2186 +834,-133,659,15848,1293,-222,-2137,-108,2613,-1215,-2181 +835,-133,722,16596,1109,-114,-1746,-93,2674,-1204,-2222 +836,-134,1172,16477,757,-280,-1107,-31,2683,-1229,-2262 +837,-132,1703,16088,1241,-237,-742,-65,2693,-1206,-2383 +838,-132,1477,15990,1043,-131,-587,-40,2707,-1207,-2360 +839,-132,841,16044,1495,-63,-659,-86,2707,-1213,-2408 +840,-133,209,15579,1741,101,-181,38,2673,-1220,-2342 +841,-133,1531,16047,655,-58,151,54,2704,-1219,-2343 +842,-131,1236,15905,1011,-45,166,-8,2694,-1205,-2392 +843,-134,1021,15892,1576,-94,320,46,2663,-1216,-2342 +844,-132,1089,16232,872,-123,554,54,2643,-1212,-2359 +845,-129,1551,15829,1463,-2,129,18,2680,-1196,-2352 +846,-132,1159,16109,892,-134,94,33,2685,-1154,-2380 +847,-130,1266,15911,1524,25,133,-9,2664,-1176,-2334 +848,-133,1200,16172,1063,-104,96,15,2688,-1194,-2436 +849,-130,1307,15913,1378,-59,128,-3,2670,-1201,-2380 +850,-132,1203,16183,1058,-59,108,12,2660,-1165,-2333 +851,-130,1282,16006,1392,-53,117,3,2696,-1193,-2386 +852,-134,1245,16092,993,-66,113,11,2642,-1198,-2317 +853,-131,1267,15986,1324,-62,118,4,2658,-1169,-2357 +854,-133,1237,16096,1193,-40,108,6,2678,-1174,-2363 +855,-133,1236,15970,1227,-80,108,10,2688,-1166,-2366 +856,-131,1231,16040,1154,-57,122,3,2670,-1195,-2298 +857,-134,1243,16065,1288,-64,114,19,2680,-1178,-2321 +858,-131,1246,16065,1240,-46,109,-4,2650,-1195,-2321 +859,-130,1242,16001,1144,-98,110,9,2676,-1175,-2293 +860,-129,1246,16032,1211,-51,102,8,2672,-1139,-2294 +861,-133,1247,16100,1265,-51,114,13,2672,-1175,-2328 +862,-130,1249,16003,1184,-47,118,5,2665,-1144,-2335 +863,-131,1245,16097,1255,-48,109,3,2654,-1140,-2361 +864,-131,1256,16015,1215,-79,128,5,2671,-1150,-2387 +865,-131,1253,16025,1140,-52,119,10,2661,-1151,-2348 +866,-133,1242,16061,1280,-48,120,17,2661,-1145,-2318 +867,-131,1247,16083,1264,-50,103,3,2678,-1132,-2289 +868,-131,1244,16029,1165,-77,118,9,2670,-1163,-2351 +869,-133,1272,16032,1160,-60,116,-3,2700,-1148,-2263 +870,-134,1244,16075,1269,-55,113,3,2632,-1164,-2356 +871,-130,1242,16041,1204,-50,118,10,2655,-1169,-2316 +872,-132,1247,16003,1166,-78,111,-5,2682,-1184,-2292 +873,-133,604,16393,1035,-150,-1696,35,2687,-1195,-2355 +874,-132,2631,15706,1767,40,-186,-42,2629,-1187,-2341 +875,-132,1973,16201,1405,-185,-550,-31,2605,-1166,-2409 +876,-130,388,16204,1293,-254,-505,-193,2643,-1177,-2412 +877,-129,-254,16394,1369,-99,-470,52,2739,-1235,-2435 +878,-131,1329,16127,1554,-84,93,118,2703,-1197,-2335 +879,-132,1087,16188,977,67,576,47,2703,-1151,-2407 +880,-133,1595,15985,1358,-119,557,-20,2645,-1142,-2412 +881,-130,1137,16034,1194,4,38,21,2680,-1156,-2393 +882,-131,1354,16131,1153,-62,131,-2,2655,-1182,-2364 +883,-132,1065,15968,1339,-23,93,-7,2656,-1169,-2358 +884,-135,1151,16041,1094,-82,86,16,2672,-1193,-2389 +885,-131,1235,15969,1292,-70,106,4,2679,-1150,-2344 +886,-131,1165,16066,1211,-37,105,8,2655,-1187,-2357 +887,-133,1203,16033,1287,-79,99,8,2663,-1150,-2349 +888,-132,1218,16032,1150,-40,105,8,2698,-1148,-2331 +889,-132,1227,16096,1271,-44,105,7,2685,-1137,-2352 +890,-133,1238,16071,1247,-57,109,7,2672,-1170,-2370 +891,-132,1226,16012,1137,-84,106,7,2668,-1132,-2351 +892,-131,1242,16017,1234,-46,103,6,2646,-1137,-2369 +893,-133,1249,16094,1241,-50,104,6,2654,-1120,-2374 +894,-131,1257,16016,1204,-63,110,1,2649,-1136,-2338 +895,-132,1234,16035,1190,-44,110,8,2665,-1142,-2392 +896,-131,1215,16071,1289,-51,119,5,2665,-1135,-2431 +897,-131,1230,16047,1192,-67,107,9,2673,-1131,-2401 +898,-130,1261,16008,1156,-52,107,17,2657,-1142,-2355 +899,-134,1240,16071,1244,-36,101,13,2649,-1120,-2390 +900,-133,1247,16077,1251,-59,109,4,2616,-1138,-2412 +901,-134,1246,15994,1158,-53,113,5,2634,-1154,-2345 +902,-135,1228,16054,1263,-39,110,8,2658,-1132,-2368 +903,-133,1258,16042,1243,-66,111,-2,2647,-1143,-2383 +904,-133,1256,15986,1142,-80,115,7,2646,-1138,-2443 +905,-131,1262,16040,1232,-44,115,8,2647,-1139,-2445 +906,-132,1274,16075,1267,-44,110,1,2635,-1151,-2452 +907,-131,1269,16049,1234,-68,112,3,2623,-1171,-2412 +908,-132,1284,15998,1135,-72,118,2,2669,-1169,-2423 +909,-132,1276,16046,1234,-50,113,14,2640,-1128,-2389 +910,-130,1265,16071,1265,-45,108,-5,2659,-1117,-2405 +911,-134,1264,16024,1154,-69,118,-3,2653,-1164,-2388 +912,-131,1273,15985,1136,-70,118,7,2685,-1125,-2369 +913,-132,1247,16039,1286,-32,110,13,2597,-1168,-2346 +914,-132,1249,16065,1270,-43,104,-1,2634,-1108,-2400 +915,-131,1254,16012,1160,-77,129,1,2648,-1102,-2456 +916,-129,1274,16022,1191,-50,126,3,2651,-1147,-2419 +917,-131,1251,16033,1225,-49,99,1,2667,-1162,-2404 +918,-133,1261,16071,1260,-54,106,-4,2652,-1129,-2457 +919,-133,1262,16008,1164,-79,117,1,2668,-1127,-2371 +920,-131,1273,16033,1163,-48,117,4,2648,-1111,-2442 +921,-134,1258,16063,1283,-31,102,-8,2632,-1107,-2374 +922,-131,1265,16038,1211,-58,116,-1,2657,-1117,-2432 +923,-134,1272,16001,1138,-75,114,250,2664,-1121,-2436 +924,-134,1270,16003,1161,-59,120,6,2625,-1091,-2415 +925,-132,1249,16061,1282,-43,106,-2,2641,-1114,-2411 +926,-132,1270,16021,1136,-74,123,-4,2641,-1126,-2396 +927,-132,1284,16079,1254,-42,110,3,2660,-1128,-2369 +928,-129,1263,16061,1227,-70,105,-3,2662,-1115,-2427 +929,-129,1271,15986,1198,-60,113,2,2672,-1133,-2361 +930,-132,1270,16091,1280,-34,106,4,2641,-1145,-2380 +931,-127,1263,16033,1179,-52,108,-5,2654,-1123,-2429 +932,-132,1247,15991,1150,-60,117,7,2659,-1128,-2401 +933,-130,1274,16052,1250,-51,111,7,2631,-1165,-2373 +934,-130,1248,16046,1227,-37,102,-5,2653,-1134,-2419 +935,-132,1282,16000,1153,-75,111,2,2626,-1149,-2363 +936,-130,1265,16039,1227,-47,112,5,2641,-1097,-2396 +937,-132,1243,16068,1261,-55,109,0,2653,-1120,-2413 +938,-133,1268,16007,1154,-73,122,0,2631,-1108,-2410 +939,-133,1261,16040,1262,-36,116,-9,2621,-1129,-2396 +940,-132,1265,16060,1234,-72,115,-4,2642,-1143,-2386 +941,-131,1249,15991,1145,-84,118,-1,2605,-1157,-2479 +942,-132,1270,16045,1202,-48,118,-7,2654,-1145,-2387 +943,-133,1256,16077,1269,-42,103,-1,2642,-1161,-2414 +944,-132,1263,16010,1173,-84,109,-1,2655,-1121,-2361 +945,-133,1269,15998,1164,-57,122,4,2647,-1118,-2399 +946,-131,1259,16056,1272,-42,108,1,2608,-1125,-2390 +947,-130,1250,16056,1235,-66,107,-4,2651,-1175,-2329 +948,-132,1528,15993,1151,-78,112,-3,2649,-1178,-2359 +949,-132,1273,16016,1182,-63,113,-3,2596,-1163,-2379 +950,-132,1242,16052,1274,-41,108,3,2667,-1141,-2380 +951,-133,1265,16051,1238,-72,106,-6,2665,-1145,-2361 +952,-131,1268,15986,1134,-78,120,0,2607,-1153,-2391 +953,-133,1270,16054,1217,-51,120,-2,2644,-1171,-2404 +954,-133,1277,16068,1270,-44,109,-8,2602,-1140,-2410 +955,-130,1251,16012,1120,-77,112,3,2617,-1173,-2407 +956,-131,1267,15996,1133,-75,124,1,2634,-1163,-2371 +957,-133,1249,16050,1224,-43,115,-1,2647,-1170,-2421 +958,-130,1266,16069,1260,-51,118,0,2660,-1164,-2399 +959,-132,1279,16012,1151,-65,122,4,2664,-1094,-2434 +960,-131,1255,16070,1279,-51,107,2,2648,-1150,-2321 +961,-131,1276,16054,1213,-70,112,0,2656,-1137,-2359 +962,-132,1264,15982,1120,-74,117,5,2656,-1156,-2396 +963,-130,1254,16057,1243,-51,118,11,2627,-1143,-2331 +964,-135,1265,16024,1181,-76,122,-6,2622,-1164,-2453 +965,-132,1286,16018,1156,-51,117,-5,2637,-1172,-2361 +966,-132,1256,16059,1276,-48,104,-6,2626,-1160,-2371 +967,-130,1257,16044,1207,-76,100,-3,2591,-1146,-2397 +968,-131,1274,15998,1145,-63,115,1,2631,-1137,-2322 +969,-132,1248,16082,1269,-40,108,-1,2640,-1197,-2308 +970,-131,1250,15993,1159,-76,115,-1,2609,-1126,-2388 +971,-133,1268,16015,1170,-56,117,-1,2667,-1119,-2342 +972,-133,1266,16094,1282,-48,116,-6,2623,-1174,-2374 +973,-131,1261,16010,1188,-68,121,-2,2660,-1182,-2406 +974,-133,1273,16002,1140,-62,125,-1,2646,-1123,-2330 +975,-130,1249,16070,1267,-52,103,-7,2670,-1136,-2387 +976,-132,1253,15995,1147,-70,116,2,2674,-1125,-2401 +977,-133,1264,16079,1266,-50,110,4,2602,-1156,-2349 +978,-130,1263,16048,1209,-70,113,-6,2634,-1154,-2369 +979,-130,1263,15990,1157,-76,118,-2,2653,-1145,-2325 +980,-131,1257,16034,1231,-55,108,6,2683,-1131,-2379 +981,-128,1254,16077,1271,-45,99,-2,2680,-1144,-2370 +982,-130,1269,16046,1227,-66,111,-5,2647,-1155,-2391 +983,-130,1261,16033,1180,-66,116,0,2679,-1140,-2387 +984,-131,1262,16042,1479,-37,113,7,2673,-1168,-2318 +985,-129,1267,16068,1265,-58,111,-4,2669,-1154,-2416 +986,-130,1257,16002,1169,-79,118,-4,2673,-1142,-2342 +987,-133,1278,16026,1182,-56,129,2,2649,-1134,-2345 +988,-131,1277,16082,1254,-47,123,-2,2682,-1157,-2344 +989,-134,1246,16047,1215,-78,112,4,2654,-1163,-2365 +990,-132,1267,15978,1164,-83,115,5,2666,-1140,-2356 +991,-131,1271,16058,1234,-50,107,-3,2685,-1112,-2456 +992,-133,1256,16063,1269,-49,112,-6,2670,-1139,-2411 +993,-132,1265,15997,1145,-72,115,-5,2626,-1123,-2389 +994,-130,1261,16027,1202,-45,121,-1,2618,-1171,-2462 +995,-133,1271,16091,1284,-43,108,-10,2651,-1147,-2388 +996,-133,1243,16006,1189,-75,119,0,2630,-1129,-2420 +997,-133,1259,16010,1174,-57,120,-4,2638,-1180,-2415 +998,-132,1266,16063,1272,-52,115,-5,2620,-1166,-2399 +999,-132,1272,16044,1215,-65,113,-4,2657,-1148,-2421 diff --git a/code/rpi/src/data_90.csv b/code/rpi/src/data_90.csv new file mode 100644 index 0000000..4fec83b --- /dev/null +++ b/code/rpi/src/data_90.csv @@ -0,0 +1,1001 @@ +,temp,acc_x,acc_y,acc_z,gyro_x,gyro_y,gyro_z,mag_x,mag_y,mag_z,time +0,-147,1074,15936,-507,-86,128,-145,2269,-495,-2143,2022-10-21 16:19:06.404196 +1,-145,1063,16029,-405,-57,132,-135,2332,-538,-2150,2022-10-21 16:19:06.538871 +2,-145,1080,15939,-482,-71,130,-149,2300,-500,-2062,2022-10-21 16:19:06.668017 +3,-147,1064,16006,-442,-57,121,-152,2292,-509,-2126,2022-10-21 16:19:06.803949 +4,-147,1086,15925,-510,-72,129,-139,2287,-505,-2057,2022-10-21 16:19:06.928153 +5,-146,1077,15989,-465,-50,126,-142,2317,-498,-2125,2022-10-21 16:19:07.063037 +6,-147,1110,15945,-488,-76,132,-149,2332,-489,-2137,2022-10-21 16:19:07.191679 +7,-144,1065,16035,-416,-57,127,-130,2316,-507,-2068,2022-10-21 16:19:07.323207 +8,-146,1109,15965,-488,-78,125,-153,2313,-488,-2122,2022-10-21 16:19:07.453820 +9,-147,1068,16026,-423,-69,135,-151,2299,-479,-2142,2022-10-21 16:19:07.583956 +10,-142,1078,15932,-508,-78,147,-149,2269,-506,-2139,2022-10-21 16:19:07.712292 +11,-146,1063,16010,-429,-54,129,-147,2289,-500,-2114,2022-10-21 16:19:07.841148 +12,-145,1048,15939,-485,-82,132,-134,2290,-483,-2118,2022-10-21 16:19:07.970091 +13,-144,1062,16040,-434,-60,132,-149,2315,-469,-2145,2022-10-21 16:19:08.102341 +14,-142,1075,15912,-522,-91,125,-145,2324,-502,-2128,2022-10-21 16:19:08.233160 +15,-144,1085,15977,-448,-57,134,-144,2330,-491,-2137,2022-10-21 16:19:08.360369 +16,-144,1064,15982,-450,-69,132,-150,2307,-466,-2202,2022-10-21 16:19:08.488452 +17,-145,1101,15916,-490,-66,140,-151,2282,-495,-2142,2022-10-21 16:19:08.621872 +18,-143,1103,15995,-439,-68,123,-141,2285,-486,-2139,2022-10-21 16:19:08.749811 +19,-145,1111,15962,-472,-70,136,-148,2319,-499,-2150,2022-10-21 16:19:08.869483 +20,-144,1099,15967,-466,-91,135,-148,2289,-475,-2180,2022-10-21 16:19:08.990082 +21,-140,1096,15955,-495,-81,130,-150,2286,-472,-2101,2022-10-21 16:19:09.111239 +22,-146,1088,15918,-503,-67,128,-155,2277,-424,-2182,2022-10-21 16:19:09.233930 +23,-145,1062,16038,-404,-56,130,-139,2331,-458,-2162,2022-10-21 16:19:09.363601 +24,-142,1081,15994,-442,-70,131,-144,2302,-513,-2213,2022-10-21 16:19:09.488790 +25,-145,1113,15933,-495,-59,129,-131,2289,-485,-2170,2022-10-21 16:19:09.616269 +26,-142,1105,16004,-410,-47,137,-139,2312,-500,-2180,2022-10-21 16:19:09.740431 +27,-145,1088,15916,-487,-72,136,-142,2303,-475,-2160,2022-10-21 16:19:09.871712 +28,-144,1079,15961,-469,-58,134,-150,2277,-466,-2178,2022-10-21 16:19:09.997855 +29,-143,1063,16019,-395,-63,124,-143,2322,-506,-2176,2022-10-21 16:19:10.126167 +30,-144,1073,15926,-487,-68,133,-139,2305,-499,-2193,2022-10-21 16:19:10.255258 +31,-144,1073,16039,-419,-47,132,-134,2308,-476,-2150,2022-10-21 16:19:10.384941 +32,-147,1071,15920,-501,-61,136,-144,2281,-504,-2212,2022-10-21 16:19:10.513805 +33,-142,1077,15999,-424,-58,141,-143,2307,-504,-2159,2022-10-21 16:19:10.646224 +34,-144,1093,16022,-430,-52,136,-131,2304,-472,-2199,2022-10-21 16:19:10.784640 +35,-145,1096,16027,-397,-58,130,-144,2291,-482,-2186,2022-10-21 16:19:10.909544 +36,-143,1094,15934,-507,-79,131,-141,2282,-488,-2154,2022-10-21 16:19:11.038130 +37,-146,1076,15989,-426,-59,139,-146,2296,-515,-2151,2022-10-21 16:19:11.165378 +38,-146,1068,15990,-438,-68,125,-152,2314,-540,-2200,2022-10-21 16:19:11.295298 +39,-145,1076,15909,-496,-70,133,-142,2305,-508,-2105,2022-10-21 16:19:11.421132 +40,-144,1089,15994,-433,-54,146,-141,2291,-479,-2155,2022-10-21 16:19:11.546582 +41,-145,1091,15993,-451,-76,131,-141,2303,-514,-2175,2022-10-21 16:19:11.676158 +42,-146,1094,15997,-422,-48,130,-136,2297,-529,-2134,2022-10-21 16:19:11.810120 +43,-145,1065,15991,-443,-68,128,-139,2298,-516,-2147,2022-10-21 16:19:11.937599 +44,-147,1079,15981,-446,-63,137,-141,2294,-499,-2194,2022-10-21 16:19:12.069803 +45,-145,1074,15992,-438,-47,130,-147,2284,-500,-2109,2022-10-21 16:19:12.198355 +46,-144,1085,15949,-477,-78,121,-142,2296,-536,-2207,2022-10-21 16:19:12.324963 +47,-146,1097,15973,-448,-61,139,-138,2281,-525,-2160,2022-10-21 16:19:12.453920 +48,-143,1100,16025,-520,-52,119,-139,2261,-507,-2067,2022-10-21 16:19:12.580776 +49,-145,1147,15916,-367,-112,127,-142,2312,-508,-2079,2022-10-21 16:19:12.708949 +50,-143,1123,16037,-663,-41,134,-150,2312,-527,-2140,2022-10-21 16:19:12.836391 +51,-144,844,15965,-114,-118,139,-177,2272,-541,-2215,2022-10-21 16:19:12.965163 +52,-145,1033,15984,-621,63,126,-127,2310,-509,-2135,2022-10-21 16:19:13.095100 +53,-144,1082,16052,-601,-148,150,-148,2294,-520,-2208,2022-10-21 16:19:13.219785 +54,-145,912,15915,-165,-85,45,-166,2301,-502,-2215,2022-10-21 16:19:13.347841 +55,-145,632,15803,16,75,124,-137,2260,-518,-2141,2022-10-21 16:19:13.477936 +56,-144,1292,16187,-588,122,81,-137,2275,-530,-2110,2022-10-21 16:19:13.606493 +57,-146,1099,16315,-905,-56,47,-48,2300,-537,-2224,2022-10-21 16:19:13.734947 +58,-146,1120,16102,-1266,629,231,-146,2270,-529,-2093,2022-10-21 16:19:13.859276 +59,-145,1343,15486,-8,48,156,-60,2237,-448,-2043,2022-10-21 16:19:13.989054 +60,-143,1238,15596,-740,-530,187,-50,2292,-535,-2110,2022-10-21 16:19:14.116485 +61,-147,967,15973,-1074,-39,39,-108,2189,-480,-2039,2022-10-21 16:19:14.244829 +62,-145,1421,15836,-206,-169,177,-89,2228,-483,-2111,2022-10-21 16:19:14.372366 +63,-145,1269,16161,-1494,-269,142,-122,2301,-518,-2125,2022-10-21 16:19:14.501689 +64,-144,1449,16088,-828,0,69,-117,2221,-452,-2141,2022-10-21 16:19:14.629702 +65,-145,1497,15942,-863,-1839,69,-116,2231,-582,-2189,2022-10-21 16:19:14.763931 +66,-144,1865,16261,1430,-1314,-68,-64,2217,-605,-2338,2022-10-21 16:19:14.888849 +67,-145,1600,16228,838,44,-354,-143,2270,-676,-2394,2022-10-21 16:19:15.016832 +68,-146,1325,16948,1382,434,-22,124,2189,-589,-2282,2022-10-21 16:19:15.144084 +69,-143,1595,16149,129,1875,89,-222,2210,-626,-2193,2022-10-21 16:19:15.269758 +70,-144,1966,15130,125,866,406,-198,2092,-526,-2124,2022-10-21 16:19:15.395974 +71,-146,1484,16916,-674,-1424,83,-219,2165,-505,-2154,2022-10-21 16:19:15.524078 +72,-145,1189,15680,979,-1543,224,-151,2224,-646,-2289,2022-10-21 16:19:15.651088 +73,-145,1600,15725,1054,-21,117,-174,2297,-784,-2298,2022-10-21 16:19:15.779994 +74,-144,1405,15841,1268,392,433,-75,2280,-774,-2225,2022-10-21 16:19:15.903705 +75,-145,1641,15840,794,-63,351,-124,2272,-723,-2163,2022-10-21 16:19:16.031114 +76,-146,1444,15286,1000,821,63,-177,2355,-863,-2172,2022-10-21 16:19:16.153980 +77,-145,1483,15479,15,53,302,-95,2433,-949,-2161,2022-10-21 16:19:16.282176 +78,-145,1433,15489,684,-57,-149,-247,2454,-925,-2157,2022-10-21 16:19:16.415207 +79,-146,1676,15662,195,-41,146,-209,2460,-929,-2137,2022-10-21 16:19:16.540271 +80,-142,1544,15835,266,-292,30,-172,2385,-871,-2168,2022-10-21 16:19:16.668132 +81,-145,1239,15719,851,-215,55,-173,2283,-763,-2119,2022-10-21 16:19:16.799016 +82,-143,1406,16322,664,-101,108,-101,2326,-774,-2112,2022-10-21 16:19:16.928322 +83,-142,1721,15943,279,32,255,-150,2347,-816,-2165,2022-10-21 16:19:17.055683 +84,-147,1113,15972,677,677,159,-219,2250,-768,-2171,2022-10-21 16:19:17.175539 +85,-144,1226,16030,45,64,161,-268,2336,-819,-2116,2022-10-21 16:19:17.294014 +86,-143,1381,16026,59,65,208,-209,2326,-814,-2117,2022-10-21 16:19:17.420389 +87,-146,1217,16271,-175,-21,173,-173,2298,-768,-2035,2022-10-21 16:19:17.550772 +88,-144,1486,15790,123,-213,264,-143,2314,-745,-2130,2022-10-21 16:19:17.680626 +89,-144,1241,16188,-164,64,98,-131,2264,-744,-2107,2022-10-21 16:19:17.806298 +90,-146,1036,15876,123,-39,126,-147,2291,-729,-2102,2022-10-21 16:19:17.932791 +91,-145,1249,15900,-110,-34,152,-113,2319,-801,-2151,2022-10-21 16:19:18.062086 +92,-142,970,15393,684,-552,61,-120,2310,-738,-2173,2022-10-21 16:19:18.188945 +93,-144,1135,16244,172,-48,-92,-252,2353,-846,-2181,2022-10-21 16:19:18.315825 +94,-144,1339,15944,471,-86,184,-190,2317,-766,-2118,2022-10-21 16:19:18.439847 +95,-144,1217,15877,818,-304,100,-146,2368,-796,-2183,2022-10-21 16:19:18.563975 +96,-144,894,15467,1297,-440,200,-100,2386,-839,-2228,2022-10-21 16:19:18.690406 +97,-144,1413,15972,866,-182,222,-142,2346,-796,-2239,2022-10-21 16:19:18.820301 +98,-144,1115,15965,646,68,185,-163,2394,-877,-2234,2022-10-21 16:19:18.946478 +99,-144,1198,15653,1390,-133,104,-146,2418,-858,-2266,2022-10-21 16:19:19.072634 +100,-145,1319,16056,803,27,95,-153,2360,-827,-2275,2022-10-21 16:19:19.199601 +101,-147,1544,15590,1464,-201,135,-105,2370,-832,-2197,2022-10-21 16:19:19.321858 +102,-144,1167,16348,398,-50,63,-148,2418,-880,-2260,2022-10-21 16:19:19.448540 +103,-146,1437,16431,660,-149,48,-168,2345,-840,-2270,2022-10-21 16:19:19.577187 +104,-145,1165,15756,1566,-145,-2,-130,2407,-864,-2281,2022-10-21 16:19:19.704155 +105,-141,1366,16185,835,-99,144,-74,2394,-867,-2274,2022-10-21 16:19:19.828877 +106,-144,1221,15802,1505,-117,194,-157,2360,-828,-2237,2022-10-21 16:19:19.957199 +107,-146,1553,15948,973,109,382,-182,2378,-864,-2281,2022-10-21 16:19:20.083786 +108,-145,1093,16175,837,182,343,-163,2322,-835,-2279,2022-10-21 16:19:20.209496 +109,-146,1246,15655,1347,-13,73,-148,2395,-871,-2263,2022-10-21 16:19:20.334531 +110,-147,1110,16034,991,-56,-148,-146,2368,-902,-2243,2022-10-21 16:19:20.461519 +111,-144,1079,15871,1014,-13,-90,-123,2360,-822,-2274,2022-10-21 16:19:20.588349 +112,-145,1379,15778,1006,-48,-45,-138,2371,-869,-2281,2022-10-21 16:19:20.710591 +113,-147,857,16102,665,-164,-495,-80,2458,-885,-2253,2022-10-21 16:19:20.837150 +114,-147,2529,15649,828,105,-508,-160,2317,-810,-2259,2022-10-21 16:19:20.963271 +115,-145,1665,16199,621,-153,-1494,-347,2466,-891,-2333,2022-10-21 16:19:21.088489 +116,-144,1567,16088,757,-282,-1934,-149,2440,-900,-2405,2022-10-21 16:19:21.218899 +117,-143,1429,16047,1069,-273,-2683,-312,2440,-874,-2356,2022-10-21 16:19:21.344610 +118,-146,1552,16118,629,-227,-2631,-226,2398,-851,-2432,2022-10-21 16:19:21.471772 +119,-143,1609,16006,1192,-164,-2590,-225,2360,-826,-2517,2022-10-21 16:19:21.601396 +120,-146,1683,15867,1035,-174,-2830,-277,2357,-857,-2655,2022-10-21 16:19:21.728432 +121,-146,1319,16023,966,-210,-2906,-274,2414,-960,-2693,2022-10-21 16:19:21.858169 +122,-144,795,15997,927,-361,-2445,-236,2239,-865,-2765,2022-10-21 16:19:21.984572 +123,-145,975,15973,894,-260,-1978,-258,2101,-762,-2825,2022-10-21 16:19:22.113689 +124,-145,1618,16102,812,-149,-1795,-271,1871,-544,-2889,2022-10-21 16:19:22.241270 +125,-145,1343,15726,934,-200,-1778,-329,1499,-238,-2935,2022-10-21 16:19:22.369171 +126,-142,1570,15818,1119,-158,-1821,-278,1505,-273,-2929,2022-10-21 16:19:22.496307 +127,-147,1519,16080,652,-157,-1890,-308,1473,-311,-2989,2022-10-21 16:19:22.615633 +128,-146,1076,15809,929,-221,-2031,-307,1377,-277,-2990,2022-10-21 16:19:22.740394 +129,-143,1226,15579,996,-472,-1801,-299,1275,-262,-3043,2022-10-21 16:19:22.864362 +130,-144,940,15944,1042,-132,-1589,-263,1163,-270,-3109,2022-10-21 16:19:22.994453 +131,-143,594,15620,1010,-217,-1074,-239,1047,-120,-3085,2022-10-21 16:19:23.121512 +132,-145,945,15777,942,-92,-504,-211,984,-150,-3073,2022-10-21 16:19:23.247626 +133,-145,1223,16035,1046,-85,-79,-232,1123,-267,-3088,2022-10-21 16:19:23.375571 +134,-143,1455,15962,836,-116,145,-162,1256,-442,-3093,2022-10-21 16:19:23.500340 +135,-144,1395,15748,1027,-61,193,-177,1376,-578,-3094,2022-10-21 16:19:23.627695 +136,-144,1558,15992,986,-110,143,-147,1568,-714,-3114,2022-10-21 16:19:23.755637 +137,-145,1238,15923,922,-155,121,-148,1538,-729,-3109,2022-10-21 16:19:23.885261 +138,-143,1420,15957,1005,-58,144,-140,1650,-840,-3087,2022-10-21 16:19:24.011178 +139,-143,1196,15722,1332,-45,121,-172,1402,-531,-3112,2022-10-21 16:19:24.138371 +140,-144,1417,16091,758,-20,22,-148,1289,-441,-3072,2022-10-21 16:19:24.262952 +141,-143,1081,15817,1359,-43,108,-155,1315,-463,-3118,2022-10-21 16:19:24.391631 +142,-142,1776,15932,814,-92,164,-211,1331,-481,-3152,2022-10-21 16:19:24.517570 +143,-143,1643,15811,1400,-12,129,-186,1340,-451,-3109,2022-10-21 16:19:24.647747 +144,-147,944,16107,990,-18,209,-218,1376,-458,-3121,2022-10-21 16:19:24.775218 +145,-143,1422,15883,1135,-113,93,-159,1326,-515,-3138,2022-10-21 16:19:24.903822 +146,-144,1201,15957,1019,22,146,-171,1367,-541,-3101,2022-10-21 16:19:25.029749 +147,-145,1320,15991,1072,-69,102,-136,1388,-537,-3115,2022-10-21 16:19:25.159303 +148,-144,1438,15493,1514,-46,87,-170,1392,-550,-3029,2022-10-21 16:19:25.287133 +149,-144,750,16046,1131,24,639,-195,1417,-542,-3118,2022-10-21 16:19:25.415004 +150,-145,2357,15624,1321,-88,1394,-244,1415,-512,-3050,2022-10-21 16:19:25.539261 +151,-149,608,15527,1679,133,1353,-156,1468,-535,-3076,2022-10-21 16:19:25.668836 +152,-145,1066,16165,971,67,2559,-2,1602,-575,-3052,2022-10-21 16:19:25.800421 +153,-144,1303,15987,1398,104,3140,-18,1640,-468,-3088,2022-10-21 16:19:25.933545 +154,-145,1120,15814,1393,218,3030,-91,1733,-509,-2968,2022-10-21 16:19:26.061156 +155,-147,1031,16229,876,130,3178,-108,1871,-583,-2847,2022-10-21 16:19:26.190523 +156,-144,1543,15838,1059,153,3361,-45,2013,-662,-2844,2022-10-21 16:19:26.318455 +157,-146,1548,15797,1196,116,3464,62,2077,-583,-2711,2022-10-21 16:19:26.447636 +158,-145,1434,15911,1242,123,3401,23,2102,-587,-2686,2022-10-21 16:19:26.572825 +159,-145,1122,15872,1515,38,3299,54,2102,-574,-2620,2022-10-21 16:19:26.703078 +160,-144,1097,15814,1258,211,2958,-22,2119,-515,-2522,2022-10-21 16:19:26.836712 +161,-145,1089,15659,1703,67,2535,-88,2145,-530,-2431,2022-10-21 16:19:26.967677 +162,-144,1527,16118,766,-26,2148,-116,2092,-453,-2358,2022-10-21 16:19:27.093452 +163,-146,952,15917,1115,92,2021,-98,2036,-489,-2293,2022-10-21 16:19:27.223752 +164,-146,906,15740,1376,27,1899,-159,2011,-488,-2270,2022-10-21 16:19:27.352802 +165,-146,951,15688,1423,50,1630,-63,2231,-694,-2291,2022-10-21 16:19:27.482274 +166,-144,1559,15761,1284,-10,1026,-66,2428,-983,-2215,2022-10-21 16:19:27.612323 +167,-144,1396,16175,1058,-111,290,-116,2488,-985,-2238,2022-10-21 16:19:27.741634 +168,-144,1402,15804,1126,0,139,-166,2366,-839,-2186,2022-10-21 16:19:27.870387 +169,-145,1282,16058,1056,-13,19,-133,2436,-886,-2200,2022-10-21 16:19:27.998008 +170,-143,1537,15994,1124,-76,114,-138,2369,-811,-2159,2022-10-21 16:19:28.123257 +171,-146,1370,15922,1099,-56,113,-172,2394,-846,-2190,2022-10-21 16:19:28.252961 +172,-144,1317,15897,1073,-122,104,-111,2392,-849,-2215,2022-10-21 16:19:28.380653 +173,-145,1411,16010,1020,81,165,-98,2374,-826,-2159,2022-10-21 16:19:28.509561 +174,-145,1289,15901,1019,-226,140,-133,2420,-894,-2215,2022-10-21 16:19:28.635192 +175,-143,1189,16024,1285,-86,134,-114,2370,-858,-2183,2022-10-21 16:19:28.763237 +176,-143,1319,15821,1079,-74,121,-172,2373,-893,-2134,2022-10-21 16:19:28.888953 +177,-145,1268,15905,1167,-61,129,-130,2389,-824,-2136,2022-10-21 16:19:29.017041 +178,-143,1291,15924,1186,-48,134,-148,2363,-875,-2128,2022-10-21 16:19:29.140926 +179,-145,1251,15915,1118,-75,131,-134,2379,-886,-2116,2022-10-21 16:19:29.270812 +180,-143,1526,16136,404,-42,208,-73,2337,-809,-2088,2022-10-21 16:19:29.399901 +181,-145,1556,15722,1527,-306,214,-137,2373,-823,-2124,2022-10-21 16:19:29.530356 +182,-145,1124,15821,1110,134,84,-161,2349,-840,-2244,2022-10-21 16:19:29.654409 +183,-143,1739,16030,944,-34,-301,-198,2344,-855,-2162,2022-10-21 16:19:29.784685 +184,-145,447,15949,1266,-107,-315,-126,2431,-848,-2199,2022-10-21 16:19:29.913538 +185,-144,1512,15783,1348,-47,97,-115,2326,-740,-2160,2022-10-21 16:19:30.042894 +186,-143,1487,16063,888,-73,118,-133,2374,-853,-2188,2022-10-21 16:19:30.166845 +187,-146,1141,16154,967,-57,-10,-155,2385,-831,-2245,2022-10-21 16:19:30.298270 +188,-146,710,16018,1210,-55,-42,-186,2409,-828,-2212,2022-10-21 16:19:30.425829 +189,-144,1091,15921,1244,-41,-856,-214,2439,-877,-2241,2022-10-21 16:19:30.553835 +190,-143,1449,15888,1171,-158,-1562,-256,2455,-893,-2215,2022-10-21 16:19:30.683976 +191,-146,1125,16131,974,-275,-2151,-180,2472,-863,-2295,2022-10-21 16:19:30.821997 +192,-143,1324,16008,1230,-151,-2481,-282,2400,-870,-2398,2022-10-21 16:19:30.954017 +193,-146,1296,15896,1106,-167,-2462,-256,2456,-852,-2561,2022-10-21 16:19:31.085387 +194,-145,1042,15836,1399,-233,-2585,-336,2440,-861,-2544,2022-10-21 16:19:31.216474 +195,-143,1507,16100,1188,-304,-2832,-332,2394,-860,-2605,2022-10-21 16:19:31.346113 +196,-145,1794,16162,1396,-170,-2996,-354,2281,-803,-2649,2022-10-21 16:19:31.474158 +197,-142,2112,16090,1422,-345,-3173,-300,2140,-684,-2789,2022-10-21 16:19:31.603034 +198,-145,1335,15904,1210,-166,-3005,-370,2083,-753,-2877,2022-10-21 16:19:31.729666 +199,-145,1660,15980,1478,-403,-2762,-253,2006,-693,-2935,2022-10-21 16:19:31.858432 +200,-146,1164,15917,1510,40,-2632,-379,1925,-733,-3039,2022-10-21 16:19:31.988491 +201,-146,1058,16282,722,-388,-2527,-334,1767,-677,-2989,2022-10-21 16:19:32.114125 +202,-147,1272,15348,1299,-129,-2063,-313,1636,-589,-3083,2022-10-21 16:19:32.245831 +203,-144,1065,15794,650,-88,-1677,-198,1470,-556,-3097,2022-10-21 16:19:32.371318 +204,-144,1018,16082,1137,-254,-1085,-201,1331,-460,-3101,2022-10-21 16:19:32.499695 +205,-144,1017,15860,1348,-79,-393,-159,1416,-496,-3125,2022-10-21 16:19:32.623216 +206,-146,1471,16031,1098,-41,380,-196,1494,-637,-3037,2022-10-21 16:19:32.752841 +207,-145,871,15977,1025,-81,96,-117,1567,-731,-3037,2022-10-21 16:19:32.896949 +208,-141,1212,15839,1329,-13,222,-105,1590,-751,-3096,2022-10-21 16:19:33.023136 +209,-142,1129,16073,994,13,247,-184,1558,-730,-3073,2022-10-21 16:19:33.142876 +210,-143,1318,16004,1159,-83,299,-139,1475,-650,-3113,2022-10-21 16:19:33.262069 +211,-147,1280,16010,1099,-64,176,-151,1467,-632,-3081,2022-10-21 16:19:33.380754 +212,-145,1226,15940,1125,-57,196,-149,1456,-631,-3140,2022-10-21 16:19:33.501746 +213,-145,1068,15804,1328,69,281,-141,1507,-628,-3041,2022-10-21 16:19:33.621005 +214,-145,1457,16196,817,-187,366,-148,1505,-627,-3065,2022-10-21 16:19:33.740328 +215,-144,1388,15888,1143,-2,203,-167,1514,-626,-3068,2022-10-21 16:19:33.860008 +216,-144,1273,16019,934,-92,116,-154,1484,-602,-3095,2022-10-21 16:19:33.979684 +217,-144,1212,15980,1070,-36,126,-172,1490,-632,-3084,2022-10-21 16:19:34.098578 +218,-145,1163,15842,1137,-94,174,-132,1516,-662,-3077,2022-10-21 16:19:34.217979 +219,-143,1327,15929,1020,-59,260,-130,1508,-648,-3082,2022-10-21 16:19:34.337829 +220,-144,1333,15884,1041,-100,87,-158,1512,-622,-3052,2022-10-21 16:19:34.458879 +221,-144,1095,16008,1223,30,121,-171,1528,-650,-3128,2022-10-21 16:19:34.585520 +222,-143,1016,16277,828,-76,272,-116,1484,-643,-3034,2022-10-21 16:19:34.712786 +223,-143,1295,15831,970,-33,221,-127,1520,-638,-3071,2022-10-21 16:19:34.840400 +224,-145,1459,16148,946,4,282,-191,1513,-642,-3083,2022-10-21 16:19:34.968342 +225,-146,1218,16242,1060,-142,148,-146,1533,-640,-3074,2022-10-21 16:19:35.091450 +226,-144,482,16034,1088,-51,818,-90,1508,-617,-3057,2022-10-21 16:19:35.221270 +227,-145,920,16127,1025,3,1810,-59,1593,-579,-2987,2022-10-21 16:19:35.354343 +228,-144,1215,15919,1303,146,2439,-63,1653,-595,-3062,2022-10-21 16:19:35.480886 +229,-144,1266,16302,1206,119,2860,-7,1747,-633,-3033,2022-10-21 16:19:35.611091 +230,-145,1377,15975,1475,73,3185,-11,1869,-618,-2956,2022-10-21 16:19:35.739565 +231,-143,1350,15911,1287,150,3210,36,1988,-678,-2909,2022-10-21 16:19:35.869720 +232,-144,1721,16003,1340,17,3042,45,2041,-651,-2796,2022-10-21 16:19:35.996359 +233,-145,1777,15730,1469,119,3202,-2,2163,-702,-2766,2022-10-21 16:19:36.123019 +234,-145,894,15971,1506,116,3219,-4,2247,-752,-2653,2022-10-21 16:19:36.253622 +235,-142,1821,15443,1461,-23,3338,90,2290,-722,-2545,2022-10-21 16:19:36.380277 +236,-142,1373,15843,1362,192,3221,-34,2342,-756,-2483,2022-10-21 16:19:36.508893 +237,-145,1315,15725,1310,35,3082,91,2363,-742,-2434,2022-10-21 16:19:36.634057 +238,-145,1169,15895,1117,136,2697,16,2324,-763,-2309,2022-10-21 16:19:36.764614 +239,-144,1208,15835,1470,39,2514,17,2380,-798,-2328,2022-10-21 16:19:36.893924 +240,-148,1295,15811,1265,56,2007,70,2366,-799,-2185,2022-10-21 16:19:37.024246 +241,-144,1460,15909,1239,7,1313,-96,2372,-780,-2231,2022-10-21 16:19:37.153266 +242,-146,1908,15731,1315,-80,197,-143,2319,-793,-2234,2022-10-21 16:19:37.282245 +243,-144,1572,16128,1048,-104,-617,-165,2362,-869,-2230,2022-10-21 16:19:37.410815 +244,-145,521,15838,1269,-34,188,-185,2281,-774,-2193,2022-10-21 16:19:37.539946 +245,-146,1105,16038,1102,-22,94,-89,2340,-822,-2273,2022-10-21 16:19:37.666557 +246,-146,1337,15946,1037,-57,312,-88,2332,-828,-2253,2022-10-21 16:19:37.795795 +247,-147,1166,15963,1038,-146,-7,-270,2326,-785,-2267,2022-10-21 16:19:37.920365 +248,-144,1199,15823,1324,-60,95,-139,2346,-819,-2245,2022-10-21 16:19:38.047049 +249,-146,917,15887,1205,-147,471,46,2366,-817,-2204,2022-10-21 16:19:38.171227 +250,-147,1278,15938,1310,42,189,-147,2348,-803,-2192,2022-10-21 16:19:38.300390 +251,-144,1313,16055,1038,-77,235,-118,2332,-802,-2221,2022-10-21 16:19:38.429138 +252,-145,1317,15906,1286,-37,155,-151,2350,-810,-2241,2022-10-21 16:19:38.553641 +253,-144,1313,16043,1135,-77,159,-134,2377,-821,-2269,2022-10-21 16:19:38.679218 +254,-146,1317,16022,1198,-49,124,-153,2341,-834,-2228,2022-10-21 16:19:38.807551 +255,-144,1398,16033,1032,-83,144,-153,2345,-800,-2239,2022-10-21 16:19:38.933236 +256,-145,1336,15909,1291,-49,136,-144,2332,-834,-2280,2022-10-21 16:19:39.060737 +257,-146,1338,15912,1182,-32,69,-142,2344,-816,-2208,2022-10-21 16:19:39.186414 +258,-144,1377,15968,1102,-75,-55,-151,2343,-822,-2249,2022-10-21 16:19:39.316570 +259,-144,1480,15946,1249,-96,-230,-162,2365,-836,-2203,2022-10-21 16:19:39.445022 +260,-146,1226,15983,1015,-83,198,-190,2336,-816,-2251,2022-10-21 16:19:39.572774 +261,-146,1030,15907,1314,-41,100,-134,2355,-837,-2237,2022-10-21 16:19:39.698804 +262,-144,1400,15992,1119,-61,-31,-148,2373,-851,-2219,2022-10-21 16:19:39.826111 +263,-145,1251,16144,1715,-78,63,-109,2353,-858,-2249,2022-10-21 16:19:39.953056 +264,-147,1300,15894,1250,0,44,-184,2389,-813,-2175,2022-10-21 16:19:40.086394 +265,-146,1490,15864,1136,-86,-782,-203,2395,-899,-2233,2022-10-21 16:19:40.219330 +266,-145,1405,15712,1125,-176,-1568,-224,2429,-849,-2272,2022-10-21 16:19:40.348398 +267,-143,1538,15952,1012,-128,-2284,-284,2446,-831,-2303,2022-10-21 16:19:40.476499 +268,-145,1721,15985,1212,-214,-2650,-315,2450,-897,-2346,2022-10-21 16:19:40.602540 +269,-145,1348,15942,1492,-201,-2878,-313,2399,-835,-2444,2022-10-21 16:19:40.732515 +270,-145,1485,15936,1178,-235,-2753,-308,2358,-800,-2538,2022-10-21 16:19:40.863581 +271,-142,936,16171,1198,-213,-2886,-311,2379,-809,-2666,2022-10-21 16:19:40.990387 +272,-145,825,15974,1411,-220,-2989,-269,2338,-853,-2692,2022-10-21 16:19:41.116120 +273,-144,1452,15978,1432,-194,-3256,-347,2215,-746,-2799,2022-10-21 16:19:41.246341 +274,-144,2103,15910,1160,-252,-3481,-375,2106,-751,-2899,2022-10-21 16:19:41.375046 +275,-145,1785,16367,1348,-268,-3358,-293,1925,-746,-2917,2022-10-21 16:19:41.504580 +276,-145,1442,15955,1456,-332,-3337,-318,1824,-736,-3007,2022-10-21 16:19:41.632698 +277,-144,1118,15882,1159,-166,-2535,-356,1629,-666,-3065,2022-10-21 16:19:41.766733 +278,-144,277,15853,1033,-210,-1423,-240,1621,-692,-3080,2022-10-21 16:19:41.891337 +279,-146,444,16880,403,-152,-236,-174,1560,-694,-3103,2022-10-21 16:19:42.020561 +280,-145,1392,15876,913,-260,125,-144,1535,-687,-3087,2022-10-21 16:19:42.149901 +281,-143,1403,15740,1198,-55,190,-146,1540,-680,-3039,2022-10-21 16:19:42.276758 +282,-145,1170,15717,1149,-69,76,-174,1531,-658,-3110,2022-10-21 16:19:42.404016 +283,-145,1281,15953,959,-27,92,-130,1544,-702,-3101,2022-10-21 16:19:42.529390 +284,-144,1229,15774,1124,-61,78,-142,1582,-680,-2994,2022-10-21 16:19:42.658253 +285,-146,1146,15870,1085,-34,123,-144,1538,-673,-3078,2022-10-21 16:19:42.799701 +286,-145,1208,15914,1052,-72,140,-164,1535,-692,-3105,2022-10-21 16:19:42.926504 +287,-143,1153,15952,1044,-38,130,-154,1524,-674,-3063,2022-10-21 16:19:43.053279 +288,-145,1250,15965,1063,-127,132,-171,1520,-669,-3047,2022-10-21 16:19:43.179822 +289,-144,1190,15948,1211,27,147,-158,1544,-695,-3074,2022-10-21 16:19:43.309838 +290,-143,1290,16107,832,-144,179,-143,1529,-666,-3073,2022-10-21 16:19:43.436710 +291,-144,1128,15851,1255,-43,195,-185,1529,-634,-3101,2022-10-21 16:19:43.566322 +292,-144,1301,16014,941,-66,301,-135,1550,-669,-3100,2022-10-21 16:19:43.689002 +293,-146,1211,15901,1110,-45,310,-134,1532,-672,-3054,2022-10-21 16:19:43.815310 +294,-145,1431,15989,1034,-45,247,-160,1564,-674,-3097,2022-10-21 16:19:43.939533 +295,-145,1279,15914,1090,-70,218,-144,1589,-641,-3080,2022-10-21 16:19:44.069793 +296,-144,1271,15956,1053,-50,150,-153,1550,-671,-3055,2022-10-21 16:19:44.194337 +297,-146,1277,15966,1143,-71,138,-157,1541,-670,-3061,2022-10-21 16:19:44.323745 +298,-145,1234,15918,1056,-69,142,-155,1552,-627,-3069,2022-10-21 16:19:44.451855 +299,-145,1236,15947,1079,-54,123,-150,1576,-650,-3038,2022-10-21 16:19:44.577872 +300,-146,1269,15966,1098,-36,131,-155,1549,-655,-3057,2022-10-21 16:19:44.703896 +301,-145,1257,15961,1097,-54,138,-155,1573,-642,-3034,2022-10-21 16:19:44.836478 +302,-145,1243,15947,1116,-61,125,-171,1537,-653,-3106,2022-10-21 16:19:44.964867 +303,-142,1274,15935,1052,-66,122,-163,1557,-624,-3111,2022-10-21 16:19:45.092010 +304,-145,1231,15940,1082,-54,133,-154,1533,-653,-3024,2022-10-21 16:19:45.215179 +305,-145,1251,15970,1105,-46,126,-160,1541,-658,-3070,2022-10-21 16:19:45.342517 +306,-146,1262,15936,1065,-65,134,-149,1594,-640,-3049,2022-10-21 16:19:45.469383 +307,-145,1263,15965,1095,-50,124,-154,1550,-676,-3017,2022-10-21 16:19:45.596272 +308,-143,1245,15950,1082,-65,128,-154,1557,-664,-3040,2022-10-21 16:19:45.726472 +309,-145,1244,15943,1067,-65,130,-147,1553,-647,-2968,2022-10-21 16:19:45.852131 +310,-143,1256,15967,1109,-58,126,-159,1540,-643,-2997,2022-10-21 16:19:45.981555 +311,-144,1201,15927,1069,-75,133,-163,1548,-689,-3124,2022-10-21 16:19:46.109458 +312,-146,1220,15964,1127,-52,125,-160,1564,-692,-3058,2022-10-21 16:19:46.238822 +313,-144,1227,15927,1044,-77,122,-155,1547,-658,-3037,2022-10-21 16:19:46.366785 +314,-144,1257,15927,1077,-59,129,-157,1579,-686,-3050,2022-10-21 16:19:46.493950 +315,-147,1257,15957,1110,-73,133,-162,1575,-646,-3040,2022-10-21 16:19:46.620869 +316,-144,1260,15930,1055,-79,140,-150,1554,-656,-3075,2022-10-21 16:19:46.748781 +317,-146,1255,15966,1102,-61,126,-164,1544,-638,-3079,2022-10-21 16:19:46.874102 +318,-144,1265,15967,1087,-58,121,-162,1518,-648,-3025,2022-10-21 16:19:47.000790 +319,-145,1237,15932,1049,-67,137,-148,1572,-620,-3008,2022-10-21 16:19:47.126415 +320,-145,1260,15971,1143,-61,125,-160,1544,-650,-3015,2022-10-21 16:19:47.254150 +321,-143,1331,16099,1011,-39,167,-117,1526,-633,-3156,2022-10-21 16:19:47.378600 +322,-146,1122,16078,1003,-84,110,-226,1560,-629,-3063,2022-10-21 16:19:47.509743 +323,-145,1158,16040,1127,-70,119,-166,1548,-661,-3094,2022-10-21 16:19:47.636331 +324,-146,1171,15960,1107,-52,117,-135,1546,-659,-3046,2022-10-21 16:19:47.763692 +325,-145,1219,16052,1029,-77,120,-152,1507,-658,-3106,2022-10-21 16:19:47.890700 +326,-145,1225,15958,1143,-43,124,-141,1522,-649,-3046,2022-10-21 16:19:48.017205 +327,-145,1278,15945,1036,-74,146,-137,1544,-620,-2994,2022-10-21 16:19:48.144412 +328,-144,1279,16007,1044,-87,130,-163,1549,-673,-3049,2022-10-21 16:19:48.274230 +329,-144,1278,15884,1216,-43,153,-165,1558,-637,-3043,2022-10-21 16:19:48.398555 +330,-145,1372,16059,900,-56,132,-146,1568,-627,-3033,2022-10-21 16:19:48.529398 +331,-144,1412,15962,1185,-55,155,-170,1538,-622,-3065,2022-10-21 16:19:48.655628 +332,-145,1218,15999,1001,-86,137,-164,1554,-637,-3032,2022-10-21 16:19:48.784931 +333,-147,1175,15978,1126,-57,173,-146,1544,-667,-3044,2022-10-21 16:19:48.909377 +334,-146,1357,15878,1149,-44,390,-172,1498,-646,-3118,2022-10-21 16:19:49.035210 +335,-148,993,15895,991,-154,223,-134,1580,-609,-3081,2022-10-21 16:19:49.162536 +336,-146,1779,15851,1192,19,315,-146,1561,-625,-3068,2022-10-21 16:19:49.290258 +337,-146,923,15987,968,-12,1397,-50,1540,-609,-3087,2022-10-21 16:19:49.419700 +338,-145,909,16123,1197,68,2443,9,1598,-556,-3071,2022-10-21 16:19:49.548804 +339,-146,909,15825,1332,161,3464,-6,1799,-677,-3026,2022-10-21 16:19:49.677543 +340,-143,954,15984,1274,181,3879,52,1913,-661,-2921,2022-10-21 16:19:49.806111 +341,-145,1119,15847,1306,82,3504,67,2039,-682,-2855,2022-10-21 16:19:49.935228 +342,-146,892,16163,1341,183,3078,9,2120,-714,-2820,2022-10-21 16:19:50.064020 +343,-144,854,16071,1257,-16,2878,28,2208,-761,-2760,2022-10-21 16:19:50.193173 +344,-145,1421,15933,1201,165,2845,36,2236,-736,-2644,2022-10-21 16:19:50.319248 +345,-144,1429,16035,978,112,2934,-6,2325,-744,-2592,2022-10-21 16:19:50.445218 +346,-145,1095,15895,1426,68,2840,21,2323,-762,-2561,2022-10-21 16:19:50.572124 +347,-145,1177,15857,1193,81,2445,-34,2329,-759,-2468,2022-10-21 16:19:50.699912 +348,-146,1587,15829,1316,59,2149,-74,2343,-784,-2395,2022-10-21 16:19:50.835225 +349,-146,1242,15711,1287,71,1735,-71,2361,-817,-2348,2022-10-21 16:19:50.961622 +350,-147,1274,16240,1133,-14,1349,-50,2356,-808,-2274,2022-10-21 16:19:51.094382 +351,-147,1446,16238,1308,-5,1158,-75,2293,-779,-2294,2022-10-21 16:19:51.222360 +352,-147,1611,15784,1553,-6,771,-140,2286,-786,-2189,2022-10-21 16:19:51.349236 +353,-146,1402,15898,974,-62,53,-84,2341,-806,-2229,2022-10-21 16:19:51.477007 +354,-145,1368,16004,901,-88,99,-144,2327,-810,-2225,2022-10-21 16:19:51.607699 +355,-146,1223,16000,1328,-45,17,-179,2299,-789,-2260,2022-10-21 16:19:51.735663 +356,-144,1318,15764,1253,-114,140,-143,2324,-845,-2218,2022-10-21 16:19:51.864550 +357,-146,1433,16101,1293,79,245,-121,2298,-760,-2160,2022-10-21 16:19:51.993158 +358,-143,1214,16074,1039,-169,151,-142,2385,-790,-2214,2022-10-21 16:19:52.122265 +359,-145,1254,15842,1338,14,127,-156,2349,-826,-2202,2022-10-21 16:19:52.250188 +360,-149,1240,16051,1035,-102,136,-144,2407,-837,-2305,2022-10-21 16:19:52.374303 +361,-145,1270,15788,1312,-46,126,-144,2348,-780,-2244,2022-10-21 16:19:52.502390 +362,-147,1296,16094,1039,-62,142,-142,2323,-805,-2258,2022-10-21 16:19:52.630032 +363,-145,1297,15888,1290,-106,130,-143,2384,-798,-2243,2022-10-21 16:19:52.758542 +364,-145,1273,16022,1038,-48,130,-145,2373,-802,-2249,2022-10-21 16:19:52.883983 +365,-145,1259,15973,1263,-87,129,-134,2386,-833,-2255,2022-10-21 16:19:53.012435 +366,-144,1261,15940,1118,-44,119,-144,2357,-823,-2286,2022-10-21 16:19:53.141984 +367,-145,1258,15998,1180,-64,138,-138,2384,-829,-2228,2022-10-21 16:19:53.269651 +368,-145,1254,15926,1209,-53,135,-140,2346,-786,-2220,2022-10-21 16:19:53.395199 +369,-146,1339,15910,1220,108,128,-135,2363,-836,-2251,2022-10-21 16:19:53.522211 +370,-147,1464,16430,346,-122,164,-136,2371,-824,-2276,2022-10-21 16:19:53.649860 +371,-147,1231,15625,1392,-238,187,-174,2346,-810,-2217,2022-10-21 16:19:53.776321 +372,-147,1123,16183,1098,122,105,-143,2357,-832,-2213,2022-10-21 16:19:53.900553 +373,-147,1379,16156,1165,-120,135,-130,2353,-809,-2232,2022-10-21 16:19:54.030010 +374,-146,1375,15963,1312,32,142,-127,2365,-805,-2280,2022-10-21 16:19:54.162592 +375,-145,1307,16156,887,-34,135,-170,2354,-848,-2228,2022-10-21 16:19:54.292607 +376,-146,1235,15954,1302,-103,140,-148,2422,-837,-2277,2022-10-21 16:19:54.419333 +377,-144,1237,15990,1102,-9,139,-158,2381,-820,-2266,2022-10-21 16:19:54.548760 +378,-147,1490,15875,1044,-83,236,-163,2344,-869,-2200,2022-10-21 16:19:54.677927 +379,-144,1265,15618,1057,-104,157,-153,2392,-831,-2220,2022-10-21 16:19:54.811374 +380,-146,1171,15891,1134,29,139,-154,2355,-840,-2273,2022-10-21 16:19:54.938235 +381,-146,1442,16054,930,-149,154,-114,2367,-837,-2201,2022-10-21 16:19:55.070376 +382,-147,1307,16018,1190,-26,127,-123,2362,-801,-2198,2022-10-21 16:19:55.198830 +383,-146,1319,16049,1270,-114,128,-139,2362,-855,-2269,2022-10-21 16:19:55.326443 +384,-145,1370,16057,1194,-7,100,-137,2363,-856,-2261,2022-10-21 16:19:55.457841 +385,-145,1264,15632,1276,-170,28,-145,2371,-839,-2213,2022-10-21 16:19:55.582644 +386,-146,1473,16096,1076,45,-63,-141,2334,-825,-2256,2022-10-21 16:19:55.713728 +387,-144,2147,15892,1185,-174,-1109,-167,2392,-858,-2228,2022-10-21 16:19:55.842856 +388,-146,2287,16189,1059,15,397,-228,2337,-798,-2288,2022-10-21 16:19:55.971231 +389,-147,1392,16043,1095,-172,147,-195,2357,-852,-2255,2022-10-21 16:19:56.099169 +390,-144,1537,15882,1230,-8,-1018,-261,2437,-880,-2295,2022-10-21 16:19:56.226934 +391,-146,1786,16005,932,-242,-1874,-228,2442,-868,-2287,2022-10-21 16:19:56.350301 +392,-144,2414,16050,1434,-230,-3009,-327,2359,-833,-2381,2022-10-21 16:19:56.479882 +393,-146,1564,16183,1087,-320,-3681,-335,2393,-818,-2501,2022-10-21 16:19:56.610106 +394,-143,1642,15781,1434,-314,-4138,-400,2332,-804,-2645,2022-10-21 16:19:56.737954 +395,-143,2162,15902,1236,-230,-4030,-372,2238,-781,-2753,2022-10-21 16:19:56.868792 +396,-149,1361,16052,1417,-313,-3774,-379,2199,-788,-2828,2022-10-21 16:19:56.994565 +397,-145,1528,16211,1304,-246,-3162,-322,2076,-739,-2856,2022-10-21 16:19:57.121982 +398,-146,1992,16228,998,-264,-2757,-344,1943,-722,-2950,2022-10-21 16:19:57.249196 +399,-144,1378,15907,1237,-206,-2734,-323,1858,-691,-3014,2022-10-21 16:19:57.376747 +400,-144,1040,16110,799,-374,-2377,-332,1730,-695,-3082,2022-10-21 16:19:57.501216 +401,-142,869,16298,1236,-135,-1934,-271,1656,-681,-3086,2022-10-21 16:19:57.629244 +402,-146,1059,16234,1146,-170,-1292,-230,1565,-634,-3099,2022-10-21 16:19:57.756288 +403,-146,107,15692,1140,-184,-686,-162,1592,-656,-3125,2022-10-21 16:19:57.885979 +404,-148,698,16097,944,-120,-92,-149,1514,-717,-3051,2022-10-21 16:19:58.010409 +405,-148,1216,15843,1129,-5,392,-136,1480,-698,-3081,2022-10-21 16:19:58.139889 +406,-144,1614,15988,1201,-120,185,-150,1493,-637,-3082,2022-10-21 16:19:58.269484 +407,-145,1376,16094,1124,-29,-100,-172,1508,-645,-3057,2022-10-21 16:19:58.397943 +408,-144,1275,15975,934,-82,195,-141,1481,-658,-3063,2022-10-21 16:19:58.522927 +409,-145,1255,15791,1308,-123,161,-151,1515,-698,-3108,2022-10-21 16:19:58.652717 +410,-146,1223,15881,1049,-45,137,-150,1515,-687,-3158,2022-10-21 16:19:58.784871 +411,-146,1041,15840,1233,-43,367,-132,1498,-655,-3096,2022-10-21 16:19:58.919908 +412,-146,1324,15991,923,-52,478,-161,1516,-617,-3089,2022-10-21 16:19:59.047161 +413,-147,1382,15774,1076,-48,92,-145,1523,-648,-3084,2022-10-21 16:19:59.180293 +414,-145,1217,15834,1173,-57,12,-168,1512,-693,-3103,2022-10-21 16:19:59.307847 +415,-145,1271,16027,942,-121,152,-160,1503,-681,-3080,2022-10-21 16:19:59.440154 +416,-145,1249,15904,1154,-46,184,-115,1502,-679,-3091,2022-10-21 16:19:59.567227 +417,-144,1233,16006,1066,-66,153,-154,1534,-640,-3109,2022-10-21 16:19:59.698260 +418,-143,1261,15942,1061,-34,138,-173,1516,-669,-3119,2022-10-21 16:19:59.826586 +419,-144,1348,15962,1085,-110,59,-158,1522,-689,-3107,2022-10-21 16:19:59.956920 +420,-141,1137,15971,1055,-69,161,-130,1511,-673,-3073,2022-10-21 16:20:00.083877 +421,-146,1297,15983,1110,-71,218,-159,1502,-667,-3096,2022-10-21 16:20:00.215242 +422,-146,1282,15949,1045,-78,144,-151,1487,-686,-3097,2022-10-21 16:20:00.344223 +423,-147,1267,15977,1109,-59,129,-166,1505,-681,-3099,2022-10-21 16:20:00.475820 +424,-148,1267,15825,1053,-105,85,-159,1497,-651,-3122,2022-10-21 16:20:00.603323 +425,-146,1245,15810,1233,-72,139,-150,1495,-617,-3060,2022-10-21 16:20:00.731339 +426,-146,1260,15985,992,-32,146,-162,1517,-659,-3063,2022-10-21 16:20:00.857943 +427,-142,1328,15977,953,-116,99,-152,1506,-640,-3100,2022-10-21 16:20:00.986084 +428,-145,1151,15858,1158,-40,99,-158,1514,-657,-3041,2022-10-21 16:20:01.109881 +429,-144,1278,15800,1190,-55,154,-148,1530,-672,-3095,2022-10-21 16:20:01.239327 +430,-147,1256,16007,915,-71,125,-159,1525,-667,-3068,2022-10-21 16:20:01.365087 +431,-143,1225,15849,1130,-34,302,-165,1534,-646,-3148,2022-10-21 16:20:01.503198 +432,-147,1306,16127,1059,6,484,-128,1536,-630,-3057,2022-10-21 16:20:01.629929 +433,-145,1250,16031,1018,-97,152,-103,1526,-655,-3048,2022-10-21 16:20:01.756863 +434,-144,1465,16169,722,-58,415,-100,1507,-643,-3051,2022-10-21 16:20:01.883262 +435,-146,1293,15829,867,-49,986,-151,1530,-616,-3029,2022-10-21 16:20:02.011802 +436,-146,689,15667,1006,12,1828,-62,1573,-638,-3052,2022-10-21 16:20:02.141689 +437,-143,1533,15781,1017,13,2462,-55,1635,-645,-3021,2022-10-21 16:20:02.270509 +438,-147,1111,15784,1372,216,3003,-12,1775,-702,-2956,2022-10-21 16:20:02.397627 +439,-146,1013,15856,936,94,3644,54,1878,-678,-2952,2022-10-21 16:20:02.526137 +440,-145,1212,15898,1427,100,3899,34,2024,-710,-2868,2022-10-21 16:20:02.653869 +441,-147,880,15863,1113,140,4004,26,2150,-706,-2806,2022-10-21 16:20:02.787644 +442,-147,1156,15972,1473,146,4275,109,2229,-744,-2664,2022-10-21 16:20:02.912961 +443,-143,1137,16032,1573,150,4288,57,2323,-730,-2518,2022-10-21 16:20:03.040634 +444,-143,1429,16282,1457,116,3897,107,2317,-751,-2409,2022-10-21 16:20:03.171172 +445,-144,1856,15982,1375,78,3160,10,2360,-775,-2318,2022-10-21 16:20:03.300080 +446,-143,1505,15683,1317,26,2248,11,2375,-793,-2325,2022-10-21 16:20:03.427414 +447,-142,1402,15836,1059,73,1586,25,2335,-770,-2205,2022-10-21 16:20:03.564290 +448,-146,1222,16048,1098,-50,1358,-147,2314,-799,-2209,2022-10-21 16:20:03.695591 +449,-143,1592,16130,1298,36,844,-115,2340,-798,-2159,2022-10-21 16:20:03.826648 +450,-143,1512,16088,953,-115,89,-95,2344,-829,-2168,2022-10-21 16:20:03.954684 +451,-146,1066,16080,866,-183,148,-189,2311,-805,-2163,2022-10-21 16:20:04.085142 +452,-143,818,15876,1260,43,101,-190,2325,-777,-2145,2022-10-21 16:20:04.215266 +453,-144,1106,16131,1064,-35,100,-144,2322,-786,-2158,2022-10-21 16:20:04.346579 +454,-144,1135,16078,1030,-106,122,-160,2339,-750,-2180,2022-10-21 16:20:04.473184 +455,-146,1147,15713,1288,-67,127,-152,2320,-833,-2196,2022-10-21 16:20:04.605350 +456,-144,1209,15962,1186,-73,124,-135,2355,-811,-2137,2022-10-21 16:20:04.736875 +457,-145,1236,15800,1178,-103,114,-170,2356,-795,-2204,2022-10-21 16:20:04.864806 +458,-145,1286,16090,1068,-16,92,-148,2341,-769,-2179,2022-10-21 16:20:04.991743 +459,-146,1284,16120,1053,-147,72,-233,2344,-818,-2205,2022-10-21 16:20:05.120144 +460,-143,1140,15870,1415,-49,78,-132,2327,-796,-2150,2022-10-21 16:20:05.256987 +461,-146,1479,16008,1130,-134,94,-106,2334,-813,-2194,2022-10-21 16:20:05.389395 +462,-146,1250,15944,1171,-13,137,-161,2355,-841,-2155,2022-10-21 16:20:05.513628 +463,-146,1374,15952,1081,-74,113,-111,2342,-811,-2200,2022-10-21 16:20:05.642464 +464,-143,1419,15886,1192,-46,136,-140,2324,-833,-2181,2022-10-21 16:20:05.773057 +465,-147,1261,15932,1157,-94,140,-151,2312,-830,-2153,2022-10-21 16:20:05.898144 +466,-144,1273,16077,979,-22,124,-131,2333,-836,-2124,2022-10-21 16:20:06.024829 +467,-147,1338,15864,1256,-143,132,-138,2372,-835,-2156,2022-10-21 16:20:06.152712 +468,-147,1325,15906,1221,8,136,-149,2338,-841,-2096,2022-10-21 16:20:06.282145 +469,-144,1193,15943,1229,-85,124,-151,2339,-845,-2136,2022-10-21 16:20:06.405123 +470,-145,1183,15894,1114,-56,115,-136,2381,-811,-2162,2022-10-21 16:20:06.528144 +471,-145,1301,15923,1112,-92,110,-132,2362,-797,-2186,2022-10-21 16:20:06.653264 +472,-146,1329,15961,1158,-51,112,-144,2358,-817,-2133,2022-10-21 16:20:06.785610 +473,-145,1378,15897,1250,-81,145,-143,2392,-870,-2219,2022-10-21 16:20:06.911271 +474,-143,1343,16112,1024,4,130,-147,2358,-848,-2110,2022-10-21 16:20:07.041093 +475,-144,1472,15954,1194,-83,164,-133,2380,-843,-2118,2022-10-21 16:20:07.169494 +476,-145,1395,15742,1361,-47,-198,-193,2367,-855,-2152,2022-10-21 16:20:07.299325 +477,-145,1470,15971,860,-115,-836,-160,2382,-854,-2227,2022-10-21 16:20:07.426420 +478,-146,1762,15938,1216,-67,134,-197,2307,-793,-2211,2022-10-21 16:20:07.551870 +479,-145,2252,16007,1207,-127,-251,-216,2372,-827,-2226,2022-10-21 16:20:07.681597 +480,-145,1912,15822,1110,-69,-1050,-167,2414,-903,-2202,2022-10-21 16:20:07.809519 +481,-143,1841,15606,1301,-251,-1870,-166,2399,-878,-2226,2022-10-21 16:20:07.937980 +482,-148,1583,15761,1105,-153,-2295,-294,2378,-822,-2360,2022-10-21 16:20:08.062263 +483,-145,1195,15769,1037,-240,-2488,-196,2348,-814,-2381,2022-10-21 16:20:08.192351 +484,-146,1414,15959,1377,-183,-2636,-333,2391,-785,-2491,2022-10-21 16:20:08.326560 +485,-143,1577,16140,1088,-260,-2924,-325,2302,-763,-2536,2022-10-21 16:20:08.458894 +486,-143,923,16995,1336,-304,-2953,-331,2310,-829,-2585,2022-10-21 16:20:08.584756 +487,-143,808,15961,1305,-342,-3107,-344,2275,-847,-2672,2022-10-21 16:20:08.713789 +488,-143,-160,16575,1185,-396,-3027,-170,2211,-817,-2711,2022-10-21 16:20:08.843299 +489,-144,1158,15386,1811,-293,-2729,-308,2021,-771,-2832,2022-10-21 16:20:08.969384 +490,-147,1050,16012,503,47,-2640,-489,1883,-738,-2890,2022-10-21 16:20:09.096293 +491,-144,936,16128,979,-387,-2506,-217,1824,-692,-2907,2022-10-21 16:20:09.228456 +492,-146,741,15605,1005,-221,-1897,-325,1712,-642,-2982,2022-10-21 16:20:09.355245 +493,-143,1102,16979,961,-84,-1579,-248,1568,-643,-3019,2022-10-21 16:20:09.480741 +494,-145,958,16127,1407,-289,-1061,-201,1551,-642,-3022,2022-10-21 16:20:09.611680 +495,-144,1292,16283,460,-64,-559,-221,1485,-622,-3039,2022-10-21 16:20:09.739960 +496,-143,1029,16581,825,-185,-52,-207,1532,-655,-2993,2022-10-21 16:20:09.866107 +497,-147,1468,16154,977,-23,162,-154,1487,-646,-3010,2022-10-21 16:20:09.995047 +498,-146,1173,15741,1146,-204,183,-154,1504,-657,-2984,2022-10-21 16:20:10.123868 +499,-145,1099,15824,1107,15,138,-142,1525,-636,-3035,2022-10-21 16:20:10.253572 +500,-145,1098,16041,893,-167,151,-138,1494,-643,-3067,2022-10-21 16:20:10.383185 +501,-145,1270,15737,1293,-107,142,-163,1536,-638,-3017,2022-10-21 16:20:10.508993 +502,-146,1256,15974,936,-127,194,-146,1489,-608,-3027,2022-10-21 16:20:10.635526 +503,-143,1272,15862,1204,-31,148,-155,1557,-658,-3048,2022-10-21 16:20:10.769990 +504,-146,1279,15945,993,-91,133,-149,1510,-642,-3025,2022-10-21 16:20:10.899075 +505,-144,1199,15791,1213,-51,150,-164,1526,-619,-3064,2022-10-21 16:20:11.023660 +506,-145,1295,15994,1067,-45,129,-158,1531,-592,-3051,2022-10-21 16:20:11.150654 +507,-144,1239,15892,1116,-90,132,-143,1504,-618,-3026,2022-10-21 16:20:11.277501 +508,-144,1250,15969,1107,-47,115,-147,1527,-650,-3074,2022-10-21 16:20:11.404913 +509,-145,1239,15943,1126,-76,129,-153,1523,-635,-3065,2022-10-21 16:20:11.531290 +510,-145,1035,15849,1181,11,208,-137,1506,-672,-3017,2022-10-21 16:20:11.661598 +511,-144,1207,15976,1034,-108,409,-151,1522,-597,-3056,2022-10-21 16:20:11.792133 +512,-147,1503,15965,1105,-24,332,-174,1514,-603,-3065,2022-10-21 16:20:11.923402 +513,-145,1359,15928,1106,-73,230,-177,1491,-604,-3008,2022-10-21 16:20:12.048836 +514,-145,1188,15908,1062,-48,125,-164,1482,-595,-3027,2022-10-21 16:20:12.178847 +515,-145,1233,15964,1114,-57,118,-162,1554,-608,-3067,2022-10-21 16:20:12.303150 +516,-143,1281,15941,1116,-71,144,-162,1566,-639,-3071,2022-10-21 16:20:12.426876 +517,-144,1273,15923,1047,-78,137,-167,1487,-562,-2973,2022-10-21 16:20:12.552352 +518,-145,1259,15965,1132,-48,130,-154,1542,-579,-3029,2022-10-21 16:20:12.678998 +519,-147,1250,15905,1154,-101,138,-151,1514,-620,-3026,2022-10-21 16:20:12.803955 +520,-145,1256,15958,1041,-33,127,-143,1557,-609,-3062,2022-10-21 16:20:12.923713 +521,-147,1264,15936,1117,-73,135,-150,1586,-616,-3050,2022-10-21 16:20:13.050159 +522,-144,1246,15965,1107,-45,135,-161,1513,-586,-3061,2022-10-21 16:20:13.171866 +523,-145,1281,15942,1200,-36,137,-162,1551,-610,-3030,2022-10-21 16:20:13.295097 +524,-143,1168,16043,921,-80,218,-118,1539,-592,-3010,2022-10-21 16:20:13.425079 +525,-146,1055,16158,1036,-135,298,-111,1538,-549,-3072,2022-10-21 16:20:13.552744 +526,-144,1451,15931,899,39,328,-163,1526,-600,-3037,2022-10-21 16:20:13.682128 +527,-144,1718,15913,694,-62,380,-141,1527,-614,-3069,2022-10-21 16:20:13.809036 +528,-146,1051,15672,1450,-30,1049,-110,1574,-578,-2993,2022-10-21 16:20:13.942036 +529,-144,493,15970,790,106,2178,-97,1582,-558,-3044,2022-10-21 16:20:14.070150 +530,-147,513,15954,1184,-5,3054,-4,1760,-620,-3001,2022-10-21 16:20:14.202502 +531,-146,1300,16161,1522,191,3445,216,1839,-590,-2946,2022-10-21 16:20:14.331927 +532,-146,1713,16422,1244,147,3146,-8,1949,-652,-2881,2022-10-21 16:20:14.460317 +533,-144,1312,15380,1450,117,3343,56,2068,-696,-2839,2022-10-21 16:20:14.588894 +534,-146,1232,15708,1356,317,3458,-6,2169,-648,-2725,2022-10-21 16:20:14.721089 +535,-146,1687,16114,1329,71,3667,-5,2225,-670,-2606,2022-10-21 16:20:14.856316 +536,-143,1700,15848,1444,128,3274,-27,2248,-711,-2518,2022-10-21 16:20:14.986131 +537,-144,2020,16261,1656,69,2670,-11,2318,-743,-2472,2022-10-21 16:20:15.111196 +538,-144,2068,16025,953,-37,1879,-24,2359,-736,-2405,2022-10-21 16:20:15.237751 +539,-144,1275,15894,949,23,1784,-116,2341,-733,-2404,2022-10-21 16:20:15.368558 +540,-144,1461,15446,1325,51,1896,-28,2305,-750,-2292,2022-10-21 16:20:15.498240 +541,-144,1332,16160,1054,56,1909,81,2351,-742,-2328,2022-10-21 16:20:15.623087 +542,-145,1765,15901,1118,23,1489,-30,2335,-797,-2258,2022-10-21 16:20:15.752979 +543,-144,1482,16151,998,-36,984,-53,2312,-817,-2279,2022-10-21 16:20:15.883201 +544,-143,1611,15918,1308,-70,420,-95,2340,-774,-2272,2022-10-21 16:20:16.013802 +545,-144,1442,15913,1083,-134,92,-123,2361,-804,-2216,2022-10-21 16:20:16.139272 +546,-141,1236,15874,1105,-42,114,-150,2330,-767,-2254,2022-10-21 16:20:16.267731 +547,-145,1139,15824,1264,-105,149,-155,2314,-833,-2175,2022-10-21 16:20:16.397550 +548,-144,1369,15908,1194,15,126,-131,2316,-767,-2216,2022-10-21 16:20:16.529998 +549,-144,1514,16029,1095,-62,107,-155,2371,-793,-2210,2022-10-21 16:20:16.654803 +550,-146,1488,16104,1128,-47,127,-150,2355,-801,-2186,2022-10-21 16:20:16.786242 +551,-147,1431,15988,965,-156,117,-214,2367,-810,-2193,2022-10-21 16:20:16.915053 +552,-147,1142,15897,1449,-31,48,-127,2354,-717,-2222,2022-10-21 16:20:17.045166 +553,-144,1345,15945,1080,-105,107,-130,2373,-821,-2194,2022-10-21 16:20:17.170289 +554,-145,1408,15914,1078,-37,116,-145,2364,-793,-2210,2022-10-21 16:20:17.297104 +555,-146,1364,15662,1577,-132,123,-124,2325,-760,-2181,2022-10-21 16:20:17.425661 +556,-146,1205,16139,933,-24,105,-153,2381,-844,-2193,2022-10-21 16:20:17.552221 +557,-145,1247,15971,1392,-55,117,-143,2352,-830,-2240,2022-10-21 16:20:17.681679 +558,-143,1283,16276,898,-55,108,-120,2377,-841,-2217,2022-10-21 16:20:17.814587 +559,-146,1381,15907,1191,-125,119,-138,2312,-812,-2209,2022-10-21 16:20:17.940833 +560,-146,1329,16086,1136,3,143,-149,2320,-833,-2162,2022-10-21 16:20:18.072169 +561,-145,1370,15860,1267,-79,130,-154,2365,-854,-2155,2022-10-21 16:20:18.199792 +562,-144,1152,16221,993,-67,97,-147,2399,-833,-2160,2022-10-21 16:20:18.329978 +563,-144,1220,15987,1149,-24,146,-130,2357,-795,-2225,2022-10-21 16:20:18.456777 +564,-146,1260,16068,1090,-106,122,-128,2350,-799,-2157,2022-10-21 16:20:18.586567 +565,-145,1208,16092,1056,-66,136,-152,2345,-802,-2117,2022-10-21 16:20:18.714420 +566,-144,1307,16031,1243,-77,121,-134,2383,-787,-2182,2022-10-21 16:20:18.848748 +567,-144,1395,16002,920,-22,142,-140,2392,-814,-2195,2022-10-21 16:20:18.977949 +568,-145,1301,16028,1143,57,132,-173,2326,-795,-2231,2022-10-21 16:20:19.110259 +569,-143,1769,16107,775,-42,-155,-155,2363,-820,-2169,2022-10-21 16:20:19.238711 +570,-144,1051,16042,974,-242,-156,-113,2347,-856,-2239,2022-10-21 16:20:19.371768 +571,-145,1228,15777,1315,39,137,-159,2330,-753,-2197,2022-10-21 16:20:19.499335 +572,-144,1333,16039,788,-67,-9,-167,2394,-852,-2176,2022-10-21 16:20:19.629908 +573,-144,1201,15770,1172,21,-63,-123,2381,-838,-2197,2022-10-21 16:20:19.758435 +574,-144,1063,15851,859,-103,68,-143,2360,-823,-2207,2022-10-21 16:20:19.886107 +575,-144,1043,16020,1247,20,55,-118,2347,-818,-2235,2022-10-21 16:20:20.012401 +576,-142,2285,16204,837,-128,-340,-178,2382,-805,-2207,2022-10-21 16:20:20.142231 +577,-141,1862,15867,1300,-140,-1159,-113,2347,-801,-2289,2022-10-21 16:20:20.270804 +578,-143,1319,16159,869,-173,-966,-187,2362,-773,-2298,2022-10-21 16:20:20.399650 +579,-145,1578,15776,1519,-28,-941,-228,2331,-795,-2283,2022-10-21 16:20:20.525677 +580,-144,1402,15747,685,-168,-861,-212,2421,-857,-2349,2022-10-21 16:20:20.656069 +581,-146,1407,15767,1168,-83,-768,-213,2351,-804,-2382,2022-10-21 16:20:20.790133 +582,-144,1626,15885,691,-184,-883,-150,2392,-814,-2427,2022-10-21 16:20:20.916938 +583,-144,1269,15927,995,-106,-1022,-187,2404,-850,-2364,2022-10-21 16:20:21.044916 +584,-142,1393,15753,903,-180,-1018,-211,2412,-868,-2435,2022-10-21 16:20:21.174706 +585,-145,1491,15497,941,-148,-1112,-197,2343,-852,-2474,2022-10-21 16:20:21.303261 +586,-145,1386,15939,1233,-90,-1233,-220,2395,-870,-2545,2022-10-21 16:20:21.432045 +587,-143,1395,16486,756,-167,-1218,-230,2396,-841,-2492,2022-10-21 16:20:21.559570 +588,-146,1361,16039,1089,-194,-1234,-192,2435,-840,-2575,2022-10-21 16:20:21.688868 +589,-143,1258,16160,858,-122,-1221,-220,2367,-845,-2602,2022-10-21 16:20:21.819829 +590,-143,1379,16059,986,-154,-1244,-244,2372,-889,-2601,2022-10-21 16:20:21.948840 +591,-143,1176,15649,650,-164,-1182,-183,2266,-764,-2670,2022-10-21 16:20:22.074220 +592,-144,1571,15725,1217,-144,-1170,-205,2216,-722,-2707,2022-10-21 16:20:22.200632 +593,-145,1813,16091,966,-85,-1483,-271,2237,-817,-2810,2022-10-21 16:20:22.333174 +594,-145,872,15728,1086,-219,-1509,-220,2221,-804,-2794,2022-10-21 16:20:22.466104 +595,-145,1234,15950,1133,-162,-1542,-249,2167,-773,-2839,2022-10-21 16:20:22.596433 +596,-146,1455,15904,1103,-135,-1435,-222,2079,-760,-2897,2022-10-21 16:20:22.729953 +597,-144,1126,15760,672,-197,-1311,-286,1959,-668,-2920,2022-10-21 16:20:22.861536 +598,-143,1427,16282,1089,-109,-1067,-226,1932,-684,-2950,2022-10-21 16:20:22.989173 +599,-144,822,15969,887,-147,-1123,-198,1879,-728,-2999,2022-10-21 16:20:23.119746 +600,-143,1269,16235,1324,-188,-1162,-209,1821,-653,-2966,2022-10-21 16:20:23.250559 +601,-145,1070,15855,911,-177,-1054,-233,1763,-634,-2969,2022-10-21 16:20:23.379851 +602,-143,1439,15965,811,2,-780,-214,1700,-636,-2923,2022-10-21 16:20:23.508299 +603,-144,1648,16003,1327,84,-830,-236,1622,-647,-3074,2022-10-21 16:20:23.639026 +604,-143,426,16461,1702,-336,-682,-96,1599,-626,-3033,2022-10-21 16:20:23.770146 +605,-146,730,16675,645,-122,-410,-161,1612,-648,-3061,2022-10-21 16:20:23.897515 +606,-143,1178,15959,870,-76,-12,-155,1585,-647,-3023,2022-10-21 16:20:24.024696 +607,-142,1399,15774,1104,-59,-499,-219,1581,-642,-3019,2022-10-21 16:20:24.160866 +608,-145,1089,16219,926,-54,-307,-160,1564,-651,-3052,2022-10-21 16:20:24.286398 +609,-145,714,15908,1207,-68,40,-117,1530,-645,-3043,2022-10-21 16:20:24.414469 +610,-144,972,15461,1079,-152,182,-133,1521,-679,-3014,2022-10-21 16:20:24.539830 +611,-144,1247,15977,851,-102,140,-146,1511,-679,-2999,2022-10-21 16:20:24.666772 +612,-145,1143,15490,1440,-117,135,-171,1533,-691,-3092,2022-10-21 16:20:24.794971 +613,-142,1400,15842,1105,-115,214,-173,1524,-663,-3041,2022-10-21 16:20:24.925273 +614,-146,1419,16167,813,9,244,-172,1520,-670,-3051,2022-10-21 16:20:25.049919 +615,-143,1203,15995,1130,-123,186,-155,1512,-660,-2996,2022-10-21 16:20:25.180178 +616,-142,1323,15900,1216,-50,148,-164,1553,-656,-3095,2022-10-21 16:20:25.307813 +617,-143,1245,15990,1022,-36,185,-110,1517,-632,-3076,2022-10-21 16:20:25.436191 +618,-144,1219,15888,1140,-51,227,-136,1510,-628,-3078,2022-10-21 16:20:25.560916 +619,-145,1291,16031,1064,-43,127,-152,1523,-656,-3016,2022-10-21 16:20:25.690087 +620,-144,1232,15914,1150,-56,146,-150,1530,-667,-3003,2022-10-21 16:20:25.820966 +621,-142,1306,16019,1130,-54,98,-162,1516,-657,-3091,2022-10-21 16:20:25.949606 +622,-145,1228,16024,970,-130,142,-137,1492,-662,-3098,2022-10-21 16:20:26.073843 +623,-143,1302,15909,1095,7,128,-165,1497,-654,-3085,2022-10-21 16:20:26.203825 +624,-145,1266,15845,1302,-95,110,-163,1527,-663,-3134,2022-10-21 16:20:26.330220 +625,-145,1251,16038,891,-45,100,-164,1531,-676,-3107,2022-10-21 16:20:26.459298 +626,-145,1324,16017,1080,-129,123,-133,1560,-641,-3094,2022-10-21 16:20:26.578869 +627,-142,1138,15797,1280,-57,132,-176,1549,-668,-3096,2022-10-21 16:20:26.701462 +628,-145,967,15817,1199,-85,74,-155,1537,-680,-3122,2022-10-21 16:20:26.830896 +629,-143,1141,15986,982,-87,120,-143,1557,-658,-3088,2022-10-21 16:20:26.955526 +630,-145,1237,15867,1323,-41,125,-162,1531,-658,-3056,2022-10-21 16:20:27.084843 +631,-141,1165,16063,878,-96,132,-164,1552,-672,-3140,2022-10-21 16:20:27.216735 +632,-146,1176,15839,1209,-48,122,-154,1519,-632,-3095,2022-10-21 16:20:27.343525 +633,-144,1193,15904,1124,-62,120,-148,1544,-641,-3103,2022-10-21 16:20:27.472506 +634,-143,1262,15877,1142,-63,128,-164,1530,-663,-3107,2022-10-21 16:20:27.602857 +635,-142,1248,15753,1357,-46,114,-136,1500,-651,-3099,2022-10-21 16:20:27.726436 +636,-144,1229,15961,989,-41,193,-160,1519,-647,-3098,2022-10-21 16:20:27.857674 +637,-143,300,15437,1818,-153,1136,-149,1543,-660,-3106,2022-10-21 16:20:27.986213 +638,-147,1275,15512,1510,347,-124,-119,1503,-634,-3113,2022-10-21 16:20:28.116479 +639,-145,901,15915,1031,-56,52,-112,1542,-638,-3092,2022-10-21 16:20:28.243795 +640,-143,1044,16167,1328,-11,230,-167,1538,-680,-3133,2022-10-21 16:20:28.376140 +641,-146,654,16427,761,32,1130,-165,1548,-574,-3080,2022-10-21 16:20:28.506505 +642,-145,1631,15969,838,-47,2168,-28,1560,-560,-3063,2022-10-21 16:20:28.631315 +643,-146,1894,16064,1494,261,2776,-52,1681,-603,-3006,2022-10-21 16:20:28.760753 +644,-144,1612,16420,659,145,2745,26,1842,-659,-3004,2022-10-21 16:20:28.893917 +645,-143,1394,15957,1375,52,2628,40,1937,-677,-2949,2022-10-21 16:20:29.023651 +646,-144,1260,16199,1031,-25,2592,-52,1971,-655,-2905,2022-10-21 16:20:29.149402 +647,-144,1247,16211,1329,113,2814,-69,2082,-747,-2793,2022-10-21 16:20:29.280464 +648,-144,1206,16075,1160,-16,2986,-11,2178,-751,-2808,2022-10-21 16:20:29.407100 +649,-145,1110,16075,1316,86,3018,-33,2242,-754,-2710,2022-10-21 16:20:29.533717 +650,-145,1696,16145,1200,123,3089,105,2254,-735,-2642,2022-10-21 16:20:29.652990 +651,-143,1196,15872,1394,-41,2866,-26,2291,-745,-2540,2022-10-21 16:20:29.775202 +652,-144,1224,15587,1318,116,2597,46,2338,-763,-2415,2022-10-21 16:20:29.896188 +653,-145,1592,16073,949,112,2374,17,2345,-781,-2364,2022-10-21 16:20:30.025689 +654,-142,1457,16060,1468,10,2128,-107,2326,-786,-2367,2022-10-21 16:20:30.155107 +655,-142,1686,15885,1566,60,1789,-52,2349,-795,-2332,2022-10-21 16:20:30.281514 +656,-143,1660,15804,1040,10,1232,-16,2347,-797,-2307,2022-10-21 16:20:30.409995 +657,-144,1395,16248,936,63,887,-140,2321,-810,-2184,2022-10-21 16:20:30.539323 +658,-143,1119,15816,1499,-108,683,-123,2321,-781,-2246,2022-10-21 16:20:30.668848 +659,-146,1257,16073,1000,8,457,-125,2332,-843,-2239,2022-10-21 16:20:30.801477 +660,-145,1683,16028,1412,76,241,-180,2305,-810,-2232,2022-10-21 16:20:30.926620 +661,-146,1708,16205,902,-79,116,-133,2335,-864,-2151,2022-10-21 16:20:31.055228 +662,-144,1353,15970,1031,-101,160,-150,2342,-830,-2240,2022-10-21 16:20:31.181770 +663,-144,1116,16033,1109,-90,134,-154,2327,-817,-2138,2022-10-21 16:20:31.307050 +664,-144,1002,15779,1492,-34,116,-156,2288,-801,-2222,2022-10-21 16:20:31.436566 +665,-144,1166,15951,995,-55,89,-110,2319,-853,-2208,2022-10-21 16:20:31.568346 +666,-145,1375,15798,1356,-23,114,-144,2350,-840,-2206,2022-10-21 16:20:31.694228 +667,-144,1184,16014,977,-57,74,-182,2365,-805,-2193,2022-10-21 16:20:31.827101 +668,-145,1487,15776,1156,21,125,-185,2291,-805,-2232,2022-10-21 16:20:31.960834 +669,-144,1452,16013,985,-203,166,-141,2353,-827,-2234,2022-10-21 16:20:32.087124 +670,-145,1303,15903,1062,-101,134,-152,2349,-822,-2210,2022-10-21 16:20:32.216965 +671,-146,1243,15903,1309,-86,121,-137,2329,-795,-2302,2022-10-21 16:20:32.348852 +672,-146,1462,15337,1593,-116,150,-161,2352,-845,-2189,2022-10-21 16:20:32.478157 +673,-145,1278,15901,951,28,148,-151,2334,-829,-2207,2022-10-21 16:20:32.609055 +674,-145,1325,16076,1191,-54,151,-173,2324,-820,-2163,2022-10-21 16:20:32.734210 +675,-143,1382,15943,1081,-120,139,-143,2346,-820,-2217,2022-10-21 16:20:32.865273 +676,-145,1280,16069,700,-232,125,-163,2354,-853,-2223,2022-10-21 16:20:32.993896 +677,-146,1319,16182,787,48,136,-147,2309,-821,-2230,2022-10-21 16:20:33.123769 +678,-141,1349,16129,972,-99,128,-152,2339,-876,-2194,2022-10-21 16:20:33.252686 +679,-146,1346,15966,1256,-131,125,-135,2331,-793,-2199,2022-10-21 16:20:33.384462 +680,-144,1425,15964,1246,31,135,-154,2327,-838,-2226,2022-10-21 16:20:33.517455 +681,-145,1326,16078,1031,-95,105,-156,2389,-875,-2219,2022-10-21 16:20:33.648580 +682,-146,1436,15808,1178,-33,-17,-191,2350,-804,-2206,2022-10-21 16:20:33.777038 +683,-147,1300,16044,966,-101,-213,-171,2365,-862,-2266,2022-10-21 16:20:33.906062 +684,-145,1424,15929,1034,-55,-451,-195,2361,-840,-2237,2022-10-21 16:20:34.030676 +685,-147,1678,15900,1065,-199,182,-163,2361,-769,-2244,2022-10-21 16:20:34.156999 +686,-143,1016,15813,1219,-45,-49,-109,2363,-847,-2269,2022-10-21 16:20:34.287015 +687,-141,1583,16021,1016,-107,49,-103,2390,-856,-2264,2022-10-21 16:20:34.418425 +688,-144,1952,15804,1144,-72,-53,-213,2367,-788,-2264,2022-10-21 16:20:34.549960 +689,-144,1887,15842,1161,-115,-1317,-171,2383,-866,-2254,2022-10-21 16:20:34.676873 +690,-145,1695,16088,1084,-141,-2078,-195,2429,-869,-2308,2022-10-21 16:20:34.811720 +691,-143,1537,16204,1114,-195,-2325,-300,2346,-831,-2383,2022-10-21 16:20:34.942214 +692,-145,1589,15850,1136,-185,-2249,-315,2370,-807,-2402,2022-10-21 16:20:35.073789 +693,-143,1467,16108,1266,-234,-2302,-317,2345,-806,-2535,2022-10-21 16:20:35.198578 +694,-142,1225,16018,1311,-175,-2269,-239,2312,-771,-2606,2022-10-21 16:20:35.327194 +695,-144,1372,15924,1133,-217,-2474,-348,2257,-763,-2631,2022-10-21 16:20:35.454514 +696,-143,1731,15770,1341,-222,-2764,-313,2250,-738,-2741,2022-10-21 16:20:35.584841 +697,-146,1601,16187,1402,-232,-2999,-304,2211,-766,-2824,2022-10-21 16:20:35.709965 +698,-145,1209,16164,1108,-255,-2968,-303,2067,-744,-2859,2022-10-21 16:20:35.840873 +699,-144,1242,16127,1127,-263,-2515,-286,1962,-743,-2934,2022-10-21 16:20:35.969648 +700,-147,1472,16090,1222,-352,-2150,-271,1826,-698,-3018,2022-10-21 16:20:36.098069 +701,-142,1997,16239,1229,-225,-2097,-323,1750,-720,-3039,2022-10-21 16:20:36.223129 +702,-146,1511,16466,680,-159,-1753,-270,1691,-679,-3035,2022-10-21 16:20:36.354530 +703,-143,1171,15975,697,-94,-1491,-192,1606,-659,-3054,2022-10-21 16:20:36.483048 +704,-148,938,15867,1007,-156,-1259,-176,1549,-673,-3042,2022-10-21 16:20:36.619449 +705,-143,1147,15761,726,62,-984,-199,1509,-636,-3058,2022-10-21 16:20:36.749562 +706,-145,1153,16637,613,-176,-197,-174,1450,-674,-3127,2022-10-21 16:20:36.879621 +707,-145,1100,15607,1309,-43,421,-152,1468,-744,-3060,2022-10-21 16:20:37.009469 +708,-144,1504,15994,936,-129,564,-140,1467,-669,-3082,2022-10-21 16:20:37.136450 +709,-146,1336,15831,1168,-85,71,-162,1484,-690,-3057,2022-10-21 16:20:37.270317 +710,-145,1301,15798,1113,-105,-10,-171,1483,-701,-3088,2022-10-21 16:20:37.401841 +711,-146,1147,15962,1242,-7,73,-160,1500,-666,-3100,2022-10-21 16:20:37.531749 +712,-143,1214,16204,869,-138,207,-163,1496,-665,-3138,2022-10-21 16:20:37.663970 +713,-142,1207,16029,1149,-118,214,-157,1527,-667,-3083,2022-10-21 16:20:37.792969 +714,-144,1234,15996,987,-33,200,-140,1503,-639,-3040,2022-10-21 16:20:37.922557 +715,-144,1265,15956,1129,-91,248,-153,1508,-651,-3079,2022-10-21 16:20:38.052874 +716,-142,1271,15927,1078,-32,123,-165,1491,-683,-3019,2022-10-21 16:20:38.180339 +717,-143,1252,15770,1315,-68,130,-170,1466,-649,-3046,2022-10-21 16:20:38.315226 +718,-144,1308,16054,871,-155,118,-152,1497,-624,-3001,2022-10-21 16:20:38.444323 +719,-144,1304,15709,1413,-4,78,-156,1485,-671,-3081,2022-10-21 16:20:38.575026 +720,-144,1155,16024,1027,3,32,-163,1465,-686,-3059,2022-10-21 16:20:38.707829 +721,-141,1293,16033,1107,-108,60,-148,1511,-657,-3094,2022-10-21 16:20:38.842214 +722,-144,1226,15919,1244,-103,4,-130,1516,-697,-3120,2022-10-21 16:20:38.972022 +723,-147,1216,16068,1068,-10,169,-155,1473,-659,-3024,2022-10-21 16:20:39.099091 +724,-145,1282,15978,1151,-88,128,-145,1499,-711,-3095,2022-10-21 16:20:39.229248 +725,-142,1304,15837,1073,-74,56,-153,1516,-689,-2998,2022-10-21 16:20:39.357745 +726,-144,1213,15934,1153,-11,69,-175,1509,-661,-3007,2022-10-21 16:20:39.486130 +727,-143,1129,15963,1011,-50,227,-138,1535,-699,-2998,2022-10-21 16:20:39.610556 +728,-145,1150,16079,903,-56,361,-130,1528,-699,-3091,2022-10-21 16:20:39.740141 +729,-145,1521,15821,1081,-155,406,-128,1555,-669,-3151,2022-10-21 16:20:39.869865 +730,-143,1172,15590,1475,0,92,-184,1519,-716,-3069,2022-10-21 16:20:39.993672 +731,-145,1277,15958,1056,-7,68,-169,1517,-679,-3102,2022-10-21 16:20:40.120732 +732,-144,1248,15772,1327,4,74,-162,1537,-673,-3042,2022-10-21 16:20:40.250153 +733,-145,1052,16137,1094,-11,205,-149,1515,-658,-3183,2022-10-21 16:20:40.376934 +734,-145,1215,16160,681,-43,328,-174,1489,-682,-3059,2022-10-21 16:20:40.502475 +735,-143,1529,16223,907,-189,266,-119,1502,-677,-3088,2022-10-21 16:20:40.627213 +736,-145,1452,15666,1500,-130,332,-135,1480,-644,-3092,2022-10-21 16:20:40.756735 +737,-146,1739,15937,1033,22,233,-155,1505,-619,-3028,2022-10-21 16:20:40.884406 +738,-145,1046,16137,1129,-44,121,-179,1523,-655,-3050,2022-10-21 16:20:41.013273 +739,-145,1113,16377,1007,-14,191,-141,1520,-650,-3077,2022-10-21 16:20:41.138857 +740,-144,1146,16017,1094,-35,1311,-46,1531,-639,-3055,2022-10-21 16:20:41.269258 +741,-145,972,15943,857,165,2176,-36,1595,-602,-3075,2022-10-21 16:20:41.399893 +742,-147,1149,15775,822,66,3028,9,1665,-604,-3051,2022-10-21 16:20:41.529952 +743,-145,1647,15766,1218,117,3463,19,1885,-685,-2926,2022-10-21 16:20:41.659247 +744,-144,1592,16191,1357,128,3309,-8,1997,-755,-2872,2022-10-21 16:20:41.794176 +745,-144,1374,15677,1296,93,3142,-11,2117,-728,-2776,2022-10-21 16:20:41.923745 +746,-144,1428,15918,1037,144,3344,-26,2148,-728,-2674,2022-10-21 16:20:42.054779 +747,-148,1386,16174,1241,-45,3516,-26,2224,-723,-2665,2022-10-21 16:20:42.185239 +748,-143,1413,15923,1523,167,3265,-105,2285,-737,-2585,2022-10-21 16:20:42.315663 +749,-142,1771,16152,1176,68,2827,45,2317,-792,-2508,2022-10-21 16:20:42.443950 +750,-143,1165,15817,1211,92,2448,15,2330,-797,-2456,2022-10-21 16:20:42.573904 +751,-145,1434,15846,1333,89,2242,-31,2325,-805,-2332,2022-10-21 16:20:42.705801 +752,-147,1599,15878,1017,-25,2148,20,2320,-812,-2247,2022-10-21 16:20:42.840672 +753,-144,1720,16257,1060,33,1735,-149,2340,-803,-2187,2022-10-21 16:20:42.976363 +754,-146,1710,15966,1380,-40,1139,-94,2332,-866,-2181,2022-10-21 16:20:43.102818 +755,-144,1409,15800,1100,2,505,-74,2328,-849,-2230,2022-10-21 16:20:43.233132 +756,-143,1435,16178,1086,-59,151,-141,2283,-810,-2172,2022-10-21 16:20:43.360804 +757,-142,928,16091,1096,-50,713,-138,2315,-785,-2152,2022-10-21 16:20:43.492334 +758,-145,1684,15830,1105,-36,660,-127,2284,-805,-2184,2022-10-21 16:20:43.623243 +759,-144,1736,15870,1149,-48,111,-141,2311,-880,-2212,2022-10-21 16:20:43.753269 +760,-145,1422,16036,1121,-91,115,-176,2313,-812,-2149,2022-10-21 16:20:43.880557 +761,-143,1060,15927,1210,-55,89,-230,2311,-868,-2164,2022-10-21 16:20:44.007733 +762,-142,1592,15959,1215,45,3,-121,2307,-871,-2201,2022-10-21 16:20:44.139919 +763,-142,1392,16071,869,-129,164,-135,2323,-858,-2168,2022-10-21 16:20:44.267694 +764,-142,1205,15973,1359,-162,141,-164,2359,-827,-2110,2022-10-21 16:20:44.396245 +765,-146,1065,16055,1029,15,88,-149,2314,-822,-2125,2022-10-21 16:20:44.525666 +766,-144,1145,15938,1181,-93,109,-127,2347,-846,-2123,2022-10-21 16:20:44.656202 +767,-144,1228,15885,1244,2,115,-140,2306,-838,-2222,2022-10-21 16:20:44.789036 +768,-145,1193,15903,1132,-116,135,-150,2342,-847,-2233,2022-10-21 16:20:44.915295 +769,-147,1311,16019,930,-27,131,-160,2344,-830,-2148,2022-10-21 16:20:45.045775 +770,-144,1299,15911,1234,-73,152,-153,2360,-839,-2121,2022-10-21 16:20:45.173938 +771,-143,1333,15902,1124,-70,157,-135,2305,-832,-2142,2022-10-21 16:20:45.304627 +772,-144,1274,16129,1084,-80,127,-134,2295,-867,-2144,2022-10-21 16:20:45.430296 +773,-146,1196,15976,1014,-104,123,-140,2331,-868,-2190,2022-10-21 16:20:45.562435 +774,-146,1324,15783,1389,23,107,-143,2311,-894,-2203,2022-10-21 16:20:45.691613 +775,-145,1383,16052,892,-61,113,-146,2368,-872,-2172,2022-10-21 16:20:45.822317 +776,-144,1280,15902,1144,-86,139,-154,2337,-871,-2247,2022-10-21 16:20:45.948965 +777,-144,1000,15709,1289,2,69,-175,2353,-881,-2239,2022-10-21 16:20:46.087606 +778,-144,1368,15908,1085,-41,23,-167,2345,-842,-2199,2022-10-21 16:20:46.219542 +779,-144,1187,15999,1122,-119,103,-122,2360,-864,-2182,2022-10-21 16:20:46.352986 +780,-145,1446,15988,910,20,-105,-219,2366,-877,-2197,2022-10-21 16:20:46.482983 +781,-147,835,15831,1070,-108,-784,-100,2411,-878,-2214,2022-10-21 16:20:46.615199 +782,-145,2452,15768,1083,-67,83,-145,2298,-791,-2228,2022-10-21 16:20:46.747991 +783,-144,1486,15820,1083,-125,148,-159,2365,-855,-2159,2022-10-21 16:20:46.879320 +784,-145,1140,15929,1191,-8,123,-144,2391,-894,-2226,2022-10-21 16:20:47.012731 +785,-144,1263,15921,1070,-23,56,-138,2380,-854,-2155,2022-10-21 16:20:47.145112 +786,-144,1879,16021,1059,-109,-497,-153,2387,-859,-2237,2022-10-21 16:20:47.272993 +787,-143,1324,15676,1189,-124,-1111,-140,2457,-915,-2208,2022-10-21 16:20:47.403062 +788,-142,1571,15969,1019,-93,-1605,-222,2382,-888,-2277,2022-10-21 16:20:47.533393 +789,-148,1378,15976,1014,-205,-1736,-200,2353,-838,-2316,2022-10-21 16:20:47.668977 +790,-143,1642,15739,1534,-121,-2017,-256,2376,-848,-2376,2022-10-21 16:20:47.795843 +791,-146,1911,16199,807,-161,-2242,-246,2433,-806,-2369,2022-10-21 16:20:47.929514 +792,-145,1257,15781,1335,-354,-2497,-296,2408,-823,-2495,2022-10-21 16:20:48.056744 +793,-143,1714,15811,1442,-176,-2657,-315,2381,-784,-2547,2022-10-21 16:20:48.189777 +794,-145,1488,16058,804,-214,-2808,-281,2305,-790,-2596,2022-10-21 16:20:48.317127 +795,-142,1275,15786,1206,-204,-2743,-367,2314,-849,-2697,2022-10-21 16:20:48.459144 +796,-143,1043,16126,1160,-410,-2802,-291,2193,-817,-2779,2022-10-21 16:20:48.586702 +797,-143,1119,15474,1519,-112,-2873,-299,1942,-666,-2829,2022-10-21 16:20:48.716809 +798,-143,1413,16090,1100,-142,-2871,-331,1938,-734,-2911,2022-10-21 16:20:48.847043 +799,-145,733,16103,1202,-326,-2694,-280,1809,-693,-2957,2022-10-21 16:20:48.979293 +800,-144,780,16148,1431,-156,-2068,-285,1755,-734,-2957,2022-10-21 16:20:49.109972 +801,-144,836,15500,1193,13,-1609,-278,1637,-733,-2996,2022-10-21 16:20:49.239808 +802,-143,1159,16597,881,-101,-890,-218,1543,-680,-3041,2022-10-21 16:20:49.370219 +803,-144,792,15444,872,-127,-399,-187,1566,-717,-3045,2022-10-21 16:20:49.500827 +804,-145,1163,16319,833,-172,67,-186,1546,-669,-3050,2022-10-21 16:20:49.626525 +805,-143,1428,16086,873,-81,155,-186,1571,-694,-3068,2022-10-21 16:20:49.759265 +806,-143,1215,15933,1211,-46,172,-159,1499,-698,-3095,2022-10-21 16:20:49.890276 +807,-145,1280,16198,358,-95,189,-128,1529,-676,-3102,2022-10-21 16:20:50.020303 +808,-145,1150,15785,1512,-111,241,-143,1529,-705,-3137,2022-10-21 16:20:50.148883 +809,-147,1183,16060,904,3,85,-145,1582,-675,-3096,2022-10-21 16:20:50.280494 +810,-145,1420,16115,1014,-124,159,-155,1545,-680,-3107,2022-10-21 16:20:50.408407 +811,-144,1109,15885,1315,-108,138,-161,1567,-704,-3005,2022-10-21 16:20:50.540924 +812,-143,1274,16175,817,-83,99,-157,1567,-659,-3070,2022-10-21 16:20:50.667269 +813,-146,1178,15936,1244,-66,116,-148,1550,-699,-3076,2022-10-21 16:20:50.809498 +814,-145,1138,15914,1038,-88,82,-152,1516,-638,-3119,2022-10-21 16:20:50.937193 +815,-144,1211,16047,1034,3,125,-156,1516,-679,-3046,2022-10-21 16:20:51.070647 +816,-146,1372,16031,1029,-132,108,-139,1541,-665,-3079,2022-10-21 16:20:51.204640 +817,-144,1388,15915,1213,-27,188,-148,1559,-638,-3063,2022-10-21 16:20:51.335603 +818,-143,1161,15653,1403,-7,185,-151,1554,-665,-3067,2022-10-21 16:20:51.463194 +819,-146,1270,16069,775,-13,158,-137,1535,-682,-3029,2022-10-21 16:20:51.595965 +820,-142,1041,15891,1535,-4,359,-134,1529,-665,-3042,2022-10-21 16:20:51.727713 +821,-144,930,15993,811,38,1133,-119,1540,-655,-3063,2022-10-21 16:20:51.860718 +822,-142,508,16282,1008,-120,-23,-97,1572,-684,-3056,2022-10-21 16:20:51.988444 +823,-144,1581,15957,1167,-89,249,-162,1557,-691,-3032,2022-10-21 16:20:52.120686 +824,-145,1365,15780,1063,130,326,-189,1559,-638,-3062,2022-10-21 16:20:52.251742 +825,-146,871,16243,621,-10,224,-131,1597,-636,-3090,2022-10-21 16:20:52.381646 +826,-146,-63,16234,1014,165,2239,33,1621,-672,-3055,2022-10-21 16:20:52.516376 +827,-143,272,16307,1276,161,3584,64,1725,-624,-3017,2022-10-21 16:20:52.650287 +828,-144,654,16024,1113,78,3682,129,1937,-729,-2900,2022-10-21 16:20:52.777053 +829,-143,966,15785,1375,129,3865,51,2068,-760,-2844,2022-10-21 16:20:52.904520 +830,-145,713,16157,1196,198,4162,43,2141,-738,-2770,2022-10-21 16:20:53.030671 +831,-145,1057,16003,1439,123,4672,112,2260,-728,-2620,2022-10-21 16:20:53.157587 +832,-144,1524,16060,1491,195,4419,74,2289,-740,-2523,2022-10-21 16:20:53.288461 +833,-144,2112,16307,1600,104,3683,73,2341,-784,-2428,2022-10-21 16:20:53.410236 +834,-142,1758,16114,1423,88,2929,-8,2353,-798,-2370,2022-10-21 16:20:53.539251 +835,-142,1488,15806,1358,87,2350,107,2357,-792,-2311,2022-10-21 16:20:53.674629 +836,-144,1390,15829,793,77,2014,65,2296,-822,-2280,2022-10-21 16:20:53.805404 +837,-145,2088,16034,1126,-35,1384,-84,2306,-834,-2218,2022-10-21 16:20:53.939188 +838,-146,1692,15652,1190,-59,655,-104,2369,-809,-2151,2022-10-21 16:20:54.069598 +839,-143,1275,16009,1105,-50,107,-216,2325,-853,-2174,2022-10-21 16:20:54.199311 +840,-146,1708,15724,1124,-75,163,-210,2330,-811,-2169,2022-10-21 16:20:54.329032 +841,-143,1262,15686,1300,18,38,-177,2374,-846,-2181,2022-10-21 16:20:54.461382 +842,-144,1229,16047,1206,-102,27,-184,2396,-842,-2237,2022-10-21 16:20:54.592402 +843,-143,1201,15962,1253,-22,94,-130,2372,-831,-2214,2022-10-21 16:20:54.725562 +844,-144,1214,16139,1109,-2,137,-63,2344,-867,-2217,2022-10-21 16:20:54.862601 +845,-144,1541,16085,1224,-98,166,-143,2369,-891,-2191,2022-10-21 16:20:54.993527 +846,-144,1409,15967,1171,-38,155,-156,2327,-846,-2269,2022-10-21 16:20:55.123570 +847,-145,1344,16134,967,-92,146,-145,2357,-881,-2177,2022-10-21 16:20:55.252533 +848,-141,1260,15712,1249,-104,112,-171,2356,-881,-2153,2022-10-21 16:20:55.383978 +849,-145,1120,15781,1432,4,88,-169,2380,-832,-2143,2022-10-21 16:20:55.512982 +850,-144,1307,16112,970,-91,133,-72,2419,-865,-2206,2022-10-21 16:20:55.646415 +851,-143,1259,15898,1322,-38,110,-153,2408,-864,-2238,2022-10-21 16:20:55.770478 +852,-143,1328,15937,1207,-22,120,-142,2401,-843,-2181,2022-10-21 16:20:55.893256 +853,-144,1271,16065,1002,-86,88,-149,2390,-866,-2133,2022-10-21 16:20:56.017884 +854,-144,1255,15871,1360,-46,91,-167,2376,-874,-2203,2022-10-21 16:20:56.147692 +855,-144,1447,16010,1178,-15,-301,-171,2362,-843,-2181,2022-10-21 16:20:56.277720 +856,-146,697,16079,717,-66,75,-137,2413,-870,-2196,2022-10-21 16:20:56.407234 +857,-146,2033,15631,1838,118,-632,-191,2347,-839,-2164,2022-10-21 16:20:56.541473 +858,-145,2484,16569,70,-338,-796,-102,2432,-889,-2228,2022-10-21 16:20:56.673116 +859,-139,1840,15424,1957,-63,-1633,-228,2400,-869,-2219,2022-10-21 16:20:56.800719 +860,-145,1275,16119,969,-248,-2114,-202,2424,-916,-2295,2022-10-21 16:20:56.933588 +861,-144,1581,15913,1444,-35,-2417,-247,2392,-864,-2361,2022-10-21 16:20:57.063860 +862,-144,1291,16542,982,-239,-2400,-222,2404,-822,-2428,2022-10-21 16:20:57.198451 +863,-146,1556,15991,1405,-263,-2473,-330,2365,-840,-2535,2022-10-21 16:20:57.327394 +864,-145,1049,16551,1292,-196,-2943,-275,2339,-836,-2595,2022-10-21 16:20:57.458913 +865,-143,1327,15803,1635,-234,-3412,-297,2345,-911,-2618,2022-10-21 16:20:57.590834 +866,-142,1667,16030,1422,-183,-3705,-408,2244,-870,-2750,2022-10-21 16:20:57.718898 +867,-146,1595,15537,746,-280,-3554,-363,2060,-772,-2849,2022-10-21 16:20:57.850357 +868,-144,1866,15588,1645,-334,-3036,-360,1998,-801,-3016,2022-10-21 16:20:57.980217 +869,-143,1624,15639,1126,-209,-3016,-382,1784,-677,-2999,2022-10-21 16:20:58.111725 +870,-144,693,16222,997,-267,-2610,-354,1662,-710,-3009,2022-10-21 16:20:58.241158 +871,-143,470,16076,1302,-30,-1775,-252,1529,-746,-3027,2022-10-21 16:20:58.372238 +872,-146,825,16406,650,-184,-734,-235,1534,-699,-3122,2022-10-21 16:20:58.507280 +873,-145,790,15950,1267,-68,-105,-148,1517,-704,-3044,2022-10-21 16:20:58.636872 +874,-144,1344,15968,1050,-149,231,-141,1446,-689,-3007,2022-10-21 16:20:58.771194 +875,-147,1198,16011,1242,-159,180,-167,1512,-712,-3069,2022-10-21 16:20:58.902258 +876,-146,1113,15855,1182,-27,87,-165,1512,-689,-3038,2022-10-21 16:20:59.029489 +877,-142,1237,16110,969,-63,191,-126,1481,-687,-3100,2022-10-21 16:20:59.157845 +878,-142,1200,15945,1264,-34,254,-141,1481,-724,-3056,2022-10-21 16:20:59.287803 +879,-144,1379,16051,954,-70,352,-189,1504,-625,-3021,2022-10-21 16:20:59.418373 +880,-143,1205,15978,1360,-38,403,-140,1517,-681,-3014,2022-10-21 16:20:59.547416 +881,-145,1469,16043,1164,-73,214,-164,1522,-673,-3059,2022-10-21 16:20:59.678893 +882,-144,1330,16055,968,-42,155,-132,1492,-656,-3034,2022-10-21 16:20:59.807362 +883,-143,1173,15721,1297,-89,119,-164,1551,-652,-3118,2022-10-21 16:20:59.933965 +884,-141,1260,15968,957,-21,166,-147,1534,-667,-3112,2022-10-21 16:21:00.065100 +885,-143,1220,15817,1189,-97,153,-154,1535,-685,-3027,2022-10-21 16:21:00.192829 +886,-144,1259,15802,1183,7,126,-190,1540,-652,-3034,2022-10-21 16:21:00.330185 +887,-141,1226,16372,611,-79,158,-157,1498,-657,-3076,2022-10-21 16:21:00.464699 +888,-145,1284,15875,1095,-162,197,-141,1543,-646,-2987,2022-10-21 16:21:00.592582 +889,-144,1407,15998,877,90,307,-174,1530,-627,-3055,2022-10-21 16:21:00.722826 +890,-145,988,16144,683,-162,348,-141,1540,-660,-3039,2022-10-21 16:21:00.860139 +891,-144,1327,15691,1634,77,117,-156,1555,-699,-2958,2022-10-21 16:21:00.989951 +892,-144,1224,16345,563,-11,125,-136,1543,-670,-3059,2022-10-21 16:21:01.119719 +893,-145,537,16160,803,-76,1440,-52,1585,-643,-2994,2022-10-21 16:21:01.252634 +894,-145,785,15738,1366,56,2623,-29,1660,-608,-2975,2022-10-21 16:21:01.384516 +895,-142,589,15939,1072,175,3165,41,1770,-648,-2893,2022-10-21 16:21:01.516896 +896,-143,345,16724,1179,119,3228,-24,1902,-698,-2936,2022-10-21 16:21:01.650580 +897,-144,1444,15898,1500,104,3500,17,2033,-712,-2778,2022-10-21 16:21:01.783197 +898,-142,998,15923,1072,142,3556,48,2150,-695,-2756,2022-10-21 16:21:01.919259 +899,-143,1213,15917,1326,39,3793,-12,2244,-741,-2698,2022-10-21 16:21:02.050361 +900,-146,1917,15979,1423,283,3620,-33,2233,-759,-2548,2022-10-21 16:21:02.180857 +901,-143,1639,16063,1143,-3,3338,51,2345,-767,-2497,2022-10-21 16:21:02.312707 +902,-142,1689,15544,1171,202,2884,13,2316,-782,-2445,2022-10-21 16:21:02.439368 +903,-144,1761,15739,1445,65,2624,-69,2347,-832,-2378,2022-10-21 16:21:02.572583 +904,-144,1707,16164,1272,-59,2145,89,2348,-811,-2319,2022-10-21 16:21:02.702200 +905,-145,1441,15913,1361,98,1600,-61,2310,-824,-2304,2022-10-21 16:21:02.838237 +906,-144,1429,15951,943,-164,1392,-64,2312,-815,-2271,2022-10-21 16:21:02.967687 +907,-145,1071,15873,1428,67,929,-124,2303,-775,-2168,2022-10-21 16:21:03.099345 +908,-142,1424,16026,1096,-74,579,-121,2318,-838,-2194,2022-10-21 16:21:03.229132 +909,-143,1204,16032,1203,5,68,-194,2364,-838,-2229,2022-10-21 16:21:03.360196 +910,-143,1244,16075,934,-172,93,-182,2345,-823,-2215,2022-10-21 16:21:03.493503 +911,-146,1501,15826,1346,-101,137,-168,2339,-822,-2187,2022-10-21 16:21:03.625736 +912,-147,851,15926,1499,3,-30,-124,2396,-826,-2208,2022-10-21 16:21:03.755827 +913,-144,1387,16360,850,-118,158,-128,2357,-853,-2200,2022-10-21 16:21:03.884823 +914,-145,1276,15807,1422,-90,152,-151,2373,-766,-2256,2022-10-21 16:21:04.015259 +915,-144,1218,16093,984,-4,105,-144,2391,-832,-2172,2022-10-21 16:21:04.149073 +916,-147,1497,15886,1079,-106,151,-124,2373,-817,-2235,2022-10-21 16:21:04.276667 +917,-145,1213,16009,1052,-50,134,-202,2399,-851,-2216,2022-10-21 16:21:04.408127 +918,-145,1367,15944,1185,-109,112,-101,2388,-825,-2169,2022-10-21 16:21:04.538147 +919,-145,1445,15985,1172,-127,35,-78,2348,-858,-2207,2022-10-21 16:21:04.671273 +920,-147,1411,16092,956,-58,152,-152,2346,-856,-2234,2022-10-21 16:21:04.802367 +921,-145,1291,15847,1275,-28,125,-162,2337,-834,-2196,2022-10-21 16:21:04.933186 +922,-146,1242,16075,981,-59,124,-135,2402,-829,-2237,2022-10-21 16:21:05.068258 +923,-143,1395,15788,1274,-79,114,-140,2378,-820,-2242,2022-10-21 16:21:05.195780 +924,-144,1268,15935,1117,-21,104,-161,2339,-871,-2212,2022-10-21 16:21:05.328298 +925,-143,1395,16036,1141,-90,110,-126,2375,-853,-2247,2022-10-21 16:21:05.460878 +926,-146,1522,15837,1272,-76,14,-142,2354,-822,-2221,2022-10-21 16:21:05.593159 +927,-143,1474,16167,1079,-103,-994,-78,2404,-823,-2247,2022-10-21 16:21:05.721988 +928,-146,1745,16160,974,23,-180,-223,2374,-824,-2283,2022-10-21 16:21:05.853622 +929,-145,1710,16038,1304,-197,-254,-148,2359,-847,-2301,2022-10-21 16:21:05.984860 +930,-146,1664,15920,1535,19,-722,-129,2405,-850,-2214,2022-10-21 16:21:06.116791 +931,-145,1947,16225,904,-193,-1249,-220,2420,-861,-2303,2022-10-21 16:21:06.248110 +932,-145,1133,15906,1505,-156,-1752,-197,2416,-860,-2338,2022-10-21 16:21:06.378811 +933,-147,1389,15770,1159,-103,-2192,-246,2449,-858,-2402,2022-10-21 16:21:06.508574 +934,-141,1868,15878,1077,-267,-2650,-376,2415,-843,-2436,2022-10-21 16:21:06.643761 +935,-145,1342,15798,1388,-280,-2893,-325,2385,-789,-2561,2022-10-21 16:21:06.779886 +936,-144,948,15752,1630,-222,-3141,-172,2347,-789,-2599,2022-10-21 16:21:06.911991 +937,-144,1206,16012,1130,-187,-3328,-383,2331,-817,-2678,2022-10-21 16:21:07.040463 +938,-147,1482,15841,1502,-292,-3283,-330,2230,-843,-2763,2022-10-21 16:21:07.172644 +939,-145,1441,16299,1137,-230,-3314,-261,2082,-772,-2874,2022-10-21 16:21:07.301641 +940,-144,1443,15446,1019,-191,-3108,-381,1924,-711,-2936,2022-10-21 16:21:07.427731 +941,-146,1319,15670,797,-298,-3011,-356,1801,-692,-2935,2022-10-21 16:21:07.556937 +942,-144,903,16073,1722,-251,-2719,-332,1696,-700,-3008,2022-10-21 16:21:07.690069 +943,-143,311,15981,1357,-180,-2012,-280,1599,-680,-3057,2022-10-21 16:21:07.823153 +944,-146,847,16085,1247,-365,-1055,-247,1469,-642,-3064,2022-10-21 16:21:07.953810 +945,-145,960,16463,717,35,-32,-191,1454,-601,-3011,2022-10-21 16:21:08.080180 +946,-145,1272,16016,1111,-258,246,-139,1515,-683,-3095,2022-10-21 16:21:08.210085 +947,-144,1202,16007,920,49,276,-121,1461,-662,-2926,2022-10-21 16:21:08.340641 +948,-144,1121,15576,1637,-122,467,-144,1480,-646,-3005,2022-10-21 16:21:08.473090 +949,-145,1317,15932,744,-38,470,-72,1495,-629,-3006,2022-10-21 16:21:08.602022 +950,-147,1404,15785,1358,14,222,-169,1504,-638,-3053,2022-10-21 16:21:08.729900 +951,-147,1259,16064,805,-116,146,-152,1483,-617,-3047,2022-10-21 16:21:08.857611 +952,-147,1292,15849,1289,-16,176,-162,1497,-658,-2994,2022-10-21 16:21:08.984432 +953,-146,1223,16036,853,-128,121,-156,1455,-657,-3014,2022-10-21 16:21:09.116953 +954,-145,1255,15671,1459,-75,157,-165,1514,-672,-3039,2022-10-21 16:21:09.249615 +955,-144,1173,15927,890,-85,165,-135,1497,-654,-3054,2022-10-21 16:21:09.378388 +956,-144,1429,16160,914,-11,298,-159,1500,-633,-2965,2022-10-21 16:21:09.505534 +957,-147,1317,15798,1154,-197,230,-129,1502,-639,-3042,2022-10-21 16:21:09.638916 +958,-143,1275,15585,1462,72,234,-193,1511,-661,-3060,2022-10-21 16:21:09.774125 +959,-145,871,16041,1072,14,137,-199,1525,-649,-3048,2022-10-21 16:21:09.907623 +960,-147,578,15963,1130,78,135,-172,1504,-673,-3055,2022-10-21 16:21:10.041818 +961,-146,1062,16054,734,-120,93,-132,1483,-673,-3016,2022-10-21 16:21:10.175199 +962,-143,1127,15878,1167,-58,127,-146,1543,-630,-2995,2022-10-21 16:21:10.304337 +963,-145,1281,16126,883,-94,154,-157,1525,-644,-2973,2022-10-21 16:21:10.435186 +964,-144,1421,15986,1205,1,268,-157,1500,-651,-3020,2022-10-21 16:21:10.567273 +965,-144,686,16192,847,78,1680,-35,1534,-642,-3061,2022-10-21 16:21:10.699993 +966,-144,1241,15675,1230,157,3077,-33,1649,-664,-2953,2022-10-21 16:21:10.836908 +967,-142,1025,15826,1237,181,3794,-1,1795,-665,-2956,2022-10-21 16:21:10.972113 +968,-144,1453,16215,1342,121,3966,60,1977,-717,-2914,2022-10-21 16:21:11.105262 +969,-145,1899,15978,1275,139,3614,16,2065,-724,-2752,2022-10-21 16:21:11.236879 +970,-146,1352,15971,1461,159,3692,109,2179,-719,-2682,2022-10-21 16:21:11.369199 +971,-145,2069,15850,1600,163,3759,-67,2242,-736,-2644,2022-10-21 16:21:11.499299 +972,-145,2043,16383,829,64,3331,114,2248,-762,-2533,2022-10-21 16:21:11.631075 +973,-144,1433,15479,1731,160,3187,-40,2317,-772,-2470,2022-10-21 16:21:11.763237 +974,-145,1296,15785,958,17,2883,23,2404,-832,-2394,2022-10-21 16:21:11.895575 +975,-145,1217,15970,1305,149,2224,16,2391,-820,-2282,2022-10-21 16:21:12.028869 +976,-146,1567,15978,1311,126,1873,128,2352,-773,-2215,2022-10-21 16:21:12.161973 +977,-146,1596,15933,1236,29,1580,-147,2376,-811,-2233,2022-10-21 16:21:12.292867 +978,-146,1601,15806,1201,-43,1087,-53,2354,-845,-2189,2022-10-21 16:21:12.424805 +979,-144,1748,15741,1173,-21,383,-145,2333,-863,-2160,2022-10-21 16:21:12.552847 +980,-147,889,15878,1302,-69,133,-169,2361,-854,-2103,2022-10-21 16:21:12.685398 +981,-144,1498,15993,927,-89,73,-168,2356,-822,-2195,2022-10-21 16:21:12.818348 +982,-146,1203,15782,1702,-72,106,-146,2324,-827,-2221,2022-10-21 16:21:12.944371 +983,-145,1397,16032,474,-64,112,-158,2400,-879,-2160,2022-10-21 16:21:13.075745 +984,-146,1380,15652,1528,-132,133,-135,2366,-820,-2248,2022-10-21 16:21:13.209285 +985,-144,1191,16084,842,-9,145,-125,2391,-849,-2152,2022-10-21 16:21:13.339333 +986,-144,1413,15734,1366,-52,129,-153,2343,-844,-2230,2022-10-21 16:21:13.469727 +987,-145,1247,16069,1093,-17,135,-152,2388,-852,-2214,2022-10-21 16:21:13.600964 +988,-142,1166,15975,1029,-81,114,-173,2352,-834,-2150,2022-10-21 16:21:13.732643 +989,-143,1521,15919,1422,28,68,-146,2374,-819,-2200,2022-10-21 16:21:13.865490 +990,-144,1327,16135,784,-120,114,-136,2414,-863,-2172,2022-10-21 16:21:13.992837 +991,-147,1230,15779,1267,-97,119,-148,2351,-829,-2160,2022-10-21 16:21:14.126101 +992,-143,1145,16049,995,-32,80,-117,2361,-867,-2185,2022-10-21 16:21:14.256781 +993,-142,1179,15958,1132,-165,110,-126,2350,-833,-2225,2022-10-21 16:21:14.388905 +994,-143,1324,15908,1302,3,103,-152,2303,-803,-2154,2022-10-21 16:21:14.527228 +995,-144,1250,16228,849,-69,89,-139,2372,-860,-2185,2022-10-21 16:21:14.661375 +996,-146,1472,15965,1249,-62,-42,-116,2370,-852,-2224,2022-10-21 16:21:14.796793 +997,-145,614,15969,989,-157,-1088,-1,2436,-909,-2290,2022-10-21 16:21:14.927773 +998,-142,2712,16056,1053,-61,-690,-130,2332,-821,-2204,2022-10-21 16:21:15.061288 +999,-144,1900,16084,904,-258,-1458,-175,2371,-852,-2199,2022-10-21 16:21:15.191875 diff --git a/code/rpi/src/flask_test_cpu.py b/code/rpi/src/flask_test_cpu.py new file mode 100644 index 0000000..f7ab9fe --- /dev/null +++ b/code/rpi/src/flask_test_cpu.py @@ -0,0 +1,14 @@ +from flask import Flask +import subprocess + +app = Flask(__name__) + +@app.route("/") +def hello_world(): + return "

Hello, World!

" + +@app.route("/move") +def run_script(): + #subprocess.call("sudo pigpiod", shell=True) + subprocess.call("python3 /home/mrcoffee/move.py", shell=True) + return "

move arm

" diff --git a/code/rpi/src/imu_data_plot.py b/code/rpi/src/imu_data_plot.py new file mode 100644 index 0000000..9ef0620 --- /dev/null +++ b/code/rpi/src/imu_data_plot.py @@ -0,0 +1,135 @@ +"""IMU data playback with raw data plot and pose estimation 3d plot. (LSM9DS1 IMU)""" + +"""CSV file column format: 'temp', 'acc_x', 'acc_y', 'acc_z', 'gyro_x', 'gyro_y', 'gyro_z', 'mag_x', 'mag_y', 'mag_z', 'time'""" + + +import pandas as pd +import seaborn +import matplotlib.pyplot as plt +import sys +import time +import matplotlib.animation as animation +import numpy as np + +class PoseEstimationIMU(): + def __init__(self): + self.csv_file = '' + self.output = False + self.imu_data = None + self.input_data() + self.csv_to_pandas() + self.index = 0 + + # gyro calibration -> mean 25 observations + self.acc_calibration = {'acc_x': 0, 'acc_y': 0, 'acc_z': 0} + self.gyro_calibration = {'gyro_x': 67.56, + 'gyro_y': -131.56, 'gyro_z': 144.96} + self.mag_calibration = {'mag_x': 0, 'mag_y': 0, 'mag_z': 0} + + self.data = pd.DataFrame(columns=['temp', 'acc_x', 'acc_y', 'acc_z', + 'gyro_x', 'gyro_y', 'gyro_z', 'mag_x', + 'mag_y', 'mag_z', 'time']) + # 2d projection + # self.fig, self.axs = plt.subplots(ncols=2, nrows=2, figsize=(7, 7)) + + # 3d projection + self.fig, self.axs = plt.subplots( + ncols=2, nrows=2, figsize=(7, 7), subplot_kw=dict(projection='3d')) + self.fig.suptitle( + 'End-effector pose estimation from IMU data. \n (90 degree CW turn) ', fontsize=12) + + def input_data(self): + try: + self.csv_file = sys.argv[1] + if len(sys.argv) > 2: + if sys.argv[2] == '--save': + self.output = True + except (IndexError, TypeError): + print("Check csv file path.") + sys.exit(1) + + def csv_to_pandas(self): + try: + self.imu_data = pd.read_csv(self.csv_file) + except FileNotFoundError: + print("Unable to read provided file.") + + def genarator(self, index): + try: + yield self.imu_data.iloc[index] + except KeyError: + plt.pause(15) + sys.exit(1) + + def plot_acc(self): + ax = self.axs[0, 0] + seaborn.lineplot(ax=self.axs[0, 0], data=self.data[[ + 'acc_x', 'acc_y', 'acc_z']]).set_title("Accelerometer") + + def plot_gyro(self): + seaborn.lineplot(ax=self.axs[1, 0], data=self.data[[ + 'gyro_x', 'gyro_y', 'gyro_z']]).set_title("Gyroscope") + + def plot_mag(self): + seaborn.lineplot(ax=self.axs[1, 1], data=self.data[[ + 'mag_x', 'mag_y', 'mag_z']]).set_title("Magnetometer") + + '''TODO''' + + def plot_end_effector_pose(self): + # end-effector pose estimation results + self.axs[0, 1].set_title("end-effector") + self.axs[0, 1].set_xlim([0, 500]) + self.axs[0, 1].set_ylim([500, 0]) + self.axs[0, 1].set_zlim([0, 500]) + + # initial point (x, y, z) (265, 15, 375) plot (x, y, z) => robot (z, x, y) + self.axs[0, 1].scatter(265, 375, 15, color='b') + + # base location + # self.axs[0, 1].scatter(250, 250, 470) + + def save_video(slef, anim): + writer = animation.FFMpegWriter(fps=10) + anim.save('imu_pose_estimation.mp4', writer=writer) + + def update(self, index): + g = next(self.genarator(index)) + + # clear prev plots + self.axs[0, 0].clear() + self.axs[0, 1].clear() + self.axs[1, 0].clear() + self.axs[1, 1].clear() + + # update data + new_row = {'temp': g.temp, + 'acc_x': g.acc_x, 'acc_y': g.acc_y, 'acc_z': g.acc_z, + 'gyro_x': g.gyro_x + self.gyro_calibration['gyro_x'], + 'gyro_y': g.gyro_y + self.gyro_calibration['gyro_y'], + 'gyro_z': g.gyro_z + self.gyro_calibration['gyro_z'], + 'mag_x': g.mag_x, 'mag_y': g.mag_y, 'mag_z': g.mag_z, + 'time': g.time} + + self.data = self.data.append(new_row, ignore_index=True) + + # create new plots + self.plot_acc() + self.plot_gyro() + self.plot_mag() + self.plot_end_effector_pose() + + self.index += 1 + + def main(self): + anim = animation.FuncAnimation(plt.gcf(), self.update, frames=1000, + interval=10, blit=False, repeat=False) + if self.output == False: + plt.show() + elif self.output == True: + plt.close() + self.save_video(anim) + + +if __name__ == '__main__': + PoseEstimationIMU().main() diff --git a/code/rpi/src/imu_data_with_time.csv b/code/rpi/src/imu_data_with_time.csv new file mode 100644 index 0000000..c04f406 --- /dev/null +++ b/code/rpi/src/imu_data_with_time.csv @@ -0,0 +1,1001 @@ +,temp,acc_x,acc_y,acc_z,gyro_x,gyro_y,gyro_z,mag_x,mag_y,mag_z,time +0,-181,1220,15942,487,-97,136,-33,2499,-976,-2348,2022-10-15 13:29:03.413191 +1,-173,1251,16065,460,-68,96,-31,2501,-1027,-2365,2022-10-15 13:29:03.576882 +2,-173,1217,16058,652,-76,85,-39,2527,-1015,-2299,2022-10-15 13:29:03.713630 +3,-172,1295,16046,799,-52,109,-33,2502,-1001,-2324,2022-10-15 13:29:03.850976 +4,-168,1277,16016,835,-30,113,-33,2487,-983,-2304,2022-10-15 13:29:03.989925 +5,-169,1268,16008,704,-48,118,-30,2483,-1003,-2330,2022-10-15 13:29:04.129095 +6,-168,1362,15839,1061,-66,-107,-16,2508,-1034,-2338,2022-10-15 13:29:04.270386 +7,-163,1242,16356,320,-123,-26,-55,2538,-976,-2379,2022-10-15 13:29:04.413272 +8,-165,1058,15882,1349,-37,156,-34,2543,-996,-2332,2022-10-15 13:29:04.556632 +9,-165,1277,15794,1362,-49,-175,-15,2536,-997,-2342,2022-10-15 13:29:04.702717 +10,-165,2228,15391,1120,-105,-3,-37,2512,-1021,-2416,2022-10-15 13:29:04.855125 +11,-163,1939,16153,696,267,-128,-24,2485,-1013,-2352,2022-10-15 13:29:05.005389 +12,-164,1181,16298,264,-66,-2152,-300,2467,-1062,-2423,2022-10-15 13:29:05.156524 +13,-161,2144,15876,1267,-441,-4100,-118,2616,-1085,-2483,2022-10-15 13:29:05.309950 +14,-162,390,16094,1418,-233,-5475,-278,2610,-1140,-2675,2022-10-15 13:29:05.469039 +15,-162,2164,16317,1792,-285,-5819,-355,2515,-1208,-2832,2022-10-15 13:29:05.625892 +16,-161,1126,16285,978,-243,-4915,-254,2413,-1249,-2987,2022-10-15 13:29:05.783566 +17,-159,961,15863,816,-266,-4489,-207,2222,-1247,-3114,2022-10-15 13:29:05.944953 +18,-159,1464,16160,1099,-204,-2990,-145,2006,-1262,-3144,2022-10-15 13:29:06.105956 +19,-156,1015,16096,160,-295,-927,-23,1892,-1245,-3176,2022-10-15 13:29:06.269312 +20,-155,721,16239,783,-168,110,-23,1883,-1263,-3125,2022-10-15 13:29:06.435256 +21,-157,1433,16324,665,-52,-100,14,1898,-1279,-3180,2022-10-15 13:29:06.604061 +22,-157,1460,16214,883,-135,-56,-6,1898,-1202,-3114,2022-10-15 13:29:06.770567 +23,-158,1122,16406,655,-123,-44,45,1826,-1208,-3208,2022-10-15 13:29:06.937117 +24,-157,2086,15866,652,-503,40,59,1895,-1216,-3198,2022-10-15 13:29:07.106264 +25,-154,591,15779,1055,-113,97,-34,1810,-1199,-3174,2022-10-15 13:29:07.276686 +26,-156,910,15885,1435,-29,128,1,1842,-1208,-3188,2022-10-15 13:29:07.447532 +27,-154,2074,16411,301,-75,91,64,1836,-1235,-3220,2022-10-15 13:29:07.620618 +28,-154,1060,16216,902,-21,646,50,1810,-1209,-3202,2022-10-15 13:29:07.793803 +29,-154,959,15765,1214,107,1087,-124,1869,-1236,-3202,2022-10-15 13:29:07.968307 +30,-154,261,16320,1369,-110,3304,387,1994,-1217,-3174,2022-10-15 13:29:08.143561 +31,-154,1067,16338,1114,221,4817,261,2160,-1117,-3079,2022-10-15 13:29:08.321526 +32,-155,925,16063,1732,253,4986,167,2298,-1092,-2992,2022-10-15 13:29:08.501224 +33,-155,800,16035,1306,99,5007,199,2433,-1051,-2770,2022-10-15 13:29:08.682040 +34,-153,2059,15923,1682,91,4598,257,2480,-947,-2642,2022-10-15 13:29:08.861015 +35,-154,1973,16047,1517,114,3989,161,2472,-926,-2486,2022-10-15 13:29:09.040715 +36,-152,1559,16042,1131,-25,2501,52,2443,-871,-2372,2022-10-15 13:29:09.220578 +37,-153,1949,15941,623,7,1545,230,2416,-904,-2333,2022-10-15 13:29:09.399125 +38,-151,1581,15701,1446,-152,366,-40,2422,-913,-2319,2022-10-15 13:29:09.587909 +39,-152,566,16081,942,60,134,-102,2359,-889,-2280,2022-10-15 13:29:09.768542 +40,-151,1231,15903,1134,-24,391,-37,2376,-891,-2265,2022-10-15 13:29:09.948479 +41,-149,1274,16041,1072,-100,-104,174,2488,-943,-2303,2022-10-15 13:29:10.127740 +42,-152,1681,16030,1238,-28,97,229,2447,-926,-2283,2022-10-15 13:29:10.308094 +43,-151,1208,15679,1727,-85,145,-55,2416,-869,-2307,2022-10-15 13:29:10.487813 +44,-152,284,16260,661,54,444,-111,2418,-899,-2237,2022-10-15 13:29:10.668256 +45,-152,720,16490,175,189,2418,6,2387,-893,-2258,2022-10-15 13:29:10.847786 +46,-148,837,15978,1160,48,3683,7,2351,-863,-2154,2022-10-15 13:29:11.027271 +47,-153,765,15612,1541,65,4813,227,2200,-791,-2044,2022-10-15 13:29:11.211673 +48,-152,998,16520,1529,44,4945,321,2064,-822,-1857,2022-10-15 13:29:11.390115 +49,-150,1068,15590,1759,80,4086,161,1940,-814,-1797,2022-10-15 13:29:11.571082 +50,-151,1139,15555,1665,34,3425,110,1820,-792,-1663,2022-10-15 13:29:11.750252 +51,-150,1783,15897,1581,18,3019,192,1709,-814,-1560,2022-10-15 13:29:11.929058 +52,-149,1576,16146,938,238,1428,-64,1563,-770,-1560,2022-10-15 13:29:12.107806 +53,-151,1660,15482,908,-179,271,-27,1497,-758,-1541,2022-10-15 13:29:12.286792 +54,-149,168,15947,1747,174,-425,-43,1473,-767,-1543,2022-10-15 13:29:12.464998 +55,-148,1042,15878,1105,-142,-557,-97,1535,-741,-1548,2022-10-15 13:29:12.643962 +56,-150,1127,15714,1528,-113,193,-96,1509,-798,-1565,2022-10-15 13:29:12.823146 +57,-149,856,15904,1389,-53,33,-42,1552,-759,-1584,2022-10-15 13:29:13.002409 +58,-151,1138,15997,1352,-28,100,-41,1522,-805,-1590,2022-10-15 13:29:13.180826 +59,-152,1250,16011,1138,-137,60,-3,1577,-801,-1559,2022-10-15 13:29:13.359649 +60,-151,1580,16121,1494,-250,-78,125,1531,-809,-1595,2022-10-15 13:29:13.545409 +61,-150,2232,16093,1094,-414,-2013,-269,1594,-852,-1655,2022-10-15 13:29:13.724888 +62,-150,1065,16212,1643,-328,-3613,-316,1748,-882,-1691,2022-10-15 13:29:13.902615 +63,-149,1855,15655,2076,-462,-4385,-426,1922,-899,-1773,2022-10-15 13:29:14.081021 +64,-150,1343,15911,1540,-233,-4762,-468,2143,-946,-1960,2022-10-15 13:29:14.265140 +65,-150,1593,15637,1787,-337,-4201,-270,2272,-1004,-1993,2022-10-15 13:29:14.447716 +66,-147,1375,16221,1537,-280,-3333,-214,2419,-1019,-2196,2022-10-15 13:29:14.627195 +67,-148,155,15855,1764,-219,-2917,-198,2489,-1058,-2225,2022-10-15 13:29:14.807215 +68,-147,794,15985,1340,-279,-2205,-205,2580,-1021,-2364,2022-10-15 13:29:14.987044 +69,-149,872,16161,1076,-166,-808,3,2554,-1039,-2402,2022-10-15 13:29:15.168193 +70,-150,1709,15783,1511,76,44,-2,2519,-1029,-2375,2022-10-15 13:29:15.347888 +71,-152,1238,16015,1026,-13,296,-66,2547,-988,-2329,2022-10-15 13:29:15.526985 +72,-147,1255,16090,1228,11,693,10,2524,-1038,-2314,2022-10-15 13:29:15.706977 +73,-150,1157,15952,1180,-105,102,-22,2525,-1001,-2386,2022-10-15 13:29:15.887219 +74,-149,5587,15230,1629,-138,-212,25,2498,-982,-2358,2022-10-15 13:29:16.070437 +75,-148,3537,16306,1069,230,-947,-98,2464,-932,-2442,2022-10-15 13:29:16.247906 +76,-147,1362,16192,732,-120,-3028,-192,2530,-1023,-2473,2022-10-15 13:29:16.426530 +77,-148,1600,16155,677,-543,-5391,-261,2582,-1116,-2669,2022-10-15 13:29:16.604869 +78,-148,1044,16369,1352,-534,-5855,-498,2528,-1249,-2881,2022-10-15 13:29:16.782917 +79,-149,190,15725,1384,-198,-4350,-36,2386,-1238,-3050,2022-10-15 13:29:16.961610 +80,-147,508,16014,1336,-232,-3531,-286,2240,-1241,-3118,2022-10-15 13:29:17.139185 +81,-150,1167,15645,793,-290,-1744,-81,2069,-1247,-3106,2022-10-15 13:29:17.319673 +82,-146,484,15848,774,-92,-592,-49,1995,-1223,-3164,2022-10-15 13:29:17.502332 +83,-149,1523,16266,887,-30,-347,22,1970,-1263,-3185,2022-10-15 13:29:17.679887 +84,-147,1356,16337,806,-259,120,40,1939,-1251,-3147,2022-10-15 13:29:17.859806 +85,-148,922,16135,1827,48,516,20,1951,-1200,-3203,2022-10-15 13:29:18.038890 +86,-147,982,15688,1251,-113,193,-6,1984,-1202,-3186,2022-10-15 13:29:18.217765 +87,-148,227,16303,1375,-219,-269,17,1932,-1231,-3114,2022-10-15 13:29:18.395727 +88,-148,1608,15794,1198,-170,141,-4,1941,-1186,-3185,2022-10-15 13:29:18.575162 +89,-149,1219,16367,1201,-240,185,-37,1915,-1196,-3183,2022-10-15 13:29:18.753948 +90,-146,775,15947,1556,-47,86,-10,1943,-1225,-3175,2022-10-15 13:29:18.933046 +91,-147,1536,15821,1227,-38,103,-19,1945,-1200,-3217,2022-10-15 13:29:19.117186 +92,-147,1488,15757,1071,68,105,-5,1879,-1203,-3205,2022-10-15 13:29:19.297110 +93,-146,1458,16131,727,82,818,99,1942,-1208,-3206,2022-10-15 13:29:19.477208 +94,-146,996,15586,1043,-197,-1049,-53,1949,-1213,-3213,2022-10-15 13:29:19.657183 +95,-146,1325,16044,1521,303,1541,55,1948,-1197,-3103,2022-10-15 13:29:19.836372 +96,-147,441,16672,259,-322,4212,185,2152,-1166,-3146,2022-10-15 13:29:20.017521 +97,-148,88,16295,1794,231,4649,396,2384,-1174,-2980,2022-10-15 13:29:20.198375 +98,-146,1446,15886,1070,81,4127,441,2430,-1091,-2867,2022-10-15 13:29:20.378366 +99,-148,988,15502,1772,224,3628,249,2448,-1026,-2741,2022-10-15 13:29:20.557460 +100,-147,1281,16438,852,218,3518,191,2534,-989,-2562,2022-10-15 13:29:20.740768 +101,-148,1117,16342,681,61,2790,103,2512,-976,-2488,2022-10-15 13:29:20.919724 +102,-148,1326,15991,1110,-91,2364,125,2534,-974,-2414,2022-10-15 13:29:21.099268 +103,-147,2081,16289,1447,-24,1697,118,2463,-969,-2348,2022-10-15 13:29:21.276218 +104,-148,2245,15962,1083,207,786,29,2464,-976,-2344,2022-10-15 13:29:21.458664 +105,-145,1562,16177,1089,-180,43,57,2462,-959,-2282,2022-10-15 13:29:21.636680 +106,-148,1584,15718,1464,98,116,-35,2484,-934,-2288,2022-10-15 13:29:21.814813 +107,-147,1034,16135,1472,-134,82,-10,2444,-962,-2320,2022-10-15 13:29:21.992233 +108,-147,1508,15885,1708,-42,153,-56,2410,-965,-2319,2022-10-15 13:29:22.171365 +109,-147,1850,16167,1055,79,-223,-53,2450,-969,-2276,2022-10-15 13:29:22.349551 +110,-145,-45,16049,1149,98,-466,8,2465,-1039,-2390,2022-10-15 13:29:22.527679 +111,-147,1247,16236,969,-185,-1216,-149,2486,-976,-2373,2022-10-15 13:29:22.705044 +112,-147,1142,15669,1226,-454,-3777,-183,2534,-1073,-2463,2022-10-15 13:29:22.883352 +113,-145,1003,15927,1191,-349,-4229,-216,2559,-1086,-2617,2022-10-15 13:29:23.064073 +114,-146,1201,16191,1304,-158,-3415,-83,2552,-1144,-2737,2022-10-15 13:29:23.242968 +115,-144,1247,16079,1399,-171,-3430,-131,2519,-1173,-2824,2022-10-15 13:29:23.420524 +116,-145,1545,16166,1400,-149,-3273,-87,2376,-1232,-3003,2022-10-15 13:29:23.601531 +117,-143,1439,15972,1139,-281,-3269,-153,2252,-1246,-3072,2022-10-15 13:29:23.785038 +118,-147,1127,15818,1370,-218,-3139,-146,2089,-1235,-3111,2022-10-15 13:29:23.964762 +119,-147,1317,15823,1137,-193,-3510,-237,1914,-1244,-3145,2022-10-15 13:29:24.146156 +120,-146,1505,15925,782,-293,-3441,-121,1720,-1274,-3163,2022-10-15 13:29:24.325392 +121,-144,1550,16160,428,-289,-3244,-62,1578,-1317,-3132,2022-10-15 13:29:24.506452 +122,-145,1425,16092,1003,-443,-3472,-228,1421,-1319,-3109,2022-10-15 13:29:24.686297 +123,-145,1542,15940,1505,-364,-3322,-115,1229,-1361,-3002,2022-10-15 13:29:24.865205 +124,-145,2039,15897,755,-230,-3453,-283,1015,-1350,-2870,2022-10-15 13:29:25.045975 +125,-145,1183,16178,1443,-248,-3331,-155,900,-1378,-2748,2022-10-15 13:29:25.226435 +126,-143,1584,16295,984,-8,-3281,-89,835,-1380,-2538,2022-10-15 13:29:25.409698 +127,-143,1546,16077,836,-327,-3131,-111,783,-1385,-2352,2022-10-15 13:29:25.591890 +128,-145,335,16121,1232,-145,-2955,-185,805,-1420,-2166,2022-10-15 13:29:25.769661 +129,-144,1547,16337,654,-258,-3050,-23,848,-1410,-1930,2022-10-15 13:29:25.948427 +130,-146,962,16397,1199,-527,-3833,-121,1002,-1413,-1778,2022-10-15 13:29:26.127150 +131,-146,1371,16945,961,-328,-3461,-73,1180,-1399,-1659,2022-10-15 13:29:26.308473 +132,-145,690,16143,1363,-349,-3450,-186,1423,-1409,-1546,2022-10-15 13:29:26.486565 +133,-145,1390,15850,1476,-140,-3751,-324,1743,-1478,-1502,2022-10-15 13:29:26.665350 +134,-144,1682,16494,1090,-353,-3653,-119,1994,-1527,-1532,2022-10-15 13:29:26.844018 +135,-147,1373,16197,1507,-499,-3490,-167,2292,-1590,-1555,2022-10-15 13:29:27.022332 +136,-144,1730,16051,1551,-302,-3438,-197,2420,-1586,-1685,2022-10-15 13:29:27.200285 +137,-145,1007,16174,1123,-132,-2855,-67,2581,-1642,-1710,2022-10-15 13:29:27.379952 +138,-145,995,15724,1698,-227,-3241,-99,2656,-1619,-1816,2022-10-15 13:29:27.559270 +139,-143,1651,16059,1334,-364,-2769,-129,2759,-1647,-1864,2022-10-15 13:29:27.737821 +140,-145,1276,16073,1425,-303,-2667,-84,2835,-1642,-1970,2022-10-15 13:29:27.916100 +141,-144,1059,15427,2111,-167,-2860,-82,2825,-1554,-2015,2022-10-15 13:29:28.095643 +142,-145,1679,15666,470,13,-2880,-147,2784,-1493,-2041,2022-10-15 13:29:28.275386 +143,-146,1219,16079,1212,-16,-2111,-193,2203,-780,-2152,2022-10-15 13:29:28.460500 +144,-144,1605,15970,1073,-87,-1827,-186,2247,-797,-2246,2022-10-15 13:29:28.641184 +145,-145,814,15685,859,-165,-584,13,2306,-875,-2265,2022-10-15 13:29:28.821611 +146,-143,861,15992,1008,-169,-26,-86,2297,-856,-2338,2022-10-15 13:29:29.001964 +147,-143,831,15778,893,-31,168,-69,2310,-893,-2355,2022-10-15 13:29:29.183691 +148,-142,1048,16294,852,81,701,0,2462,-1001,-2348,2022-10-15 13:29:29.364501 +149,-144,1395,15972,1658,-53,35,-10,2364,-853,-2310,2022-10-15 13:29:29.549267 +150,-143,1088,16006,1221,43,94,-36,2373,-867,-2345,2022-10-15 13:29:29.730043 +151,-144,1203,16098,894,-20,107,-41,2378,-901,-2347,2022-10-15 13:29:29.911975 +152,-142,1224,16051,1019,-115,123,-39,2388,-892,-2334,2022-10-15 13:29:30.095747 +153,-143,1342,15969,1333,-85,113,-36,2341,-847,-2295,2022-10-15 13:29:30.274149 +154,-143,1192,15906,1294,-36,102,-33,2348,-858,-2254,2022-10-15 13:29:30.454245 +155,-144,-26,15912,1215,-16,174,-41,2380,-877,-2308,2022-10-15 13:29:30.633586 +156,-142,634,16296,1743,134,128,-83,2249,-839,-2278,2022-10-15 13:29:30.812414 +157,-143,20,16339,-1238,68,-80,-76,2344,-802,-2318,2022-10-15 13:29:30.991291 +158,-142,1432,17073,189,1642,-30,3,2295,-800,-2165,2022-10-15 13:29:31.171216 +159,-145,2073,15547,394,1297,106,-239,2320,-767,-1980,2022-10-15 13:29:31.349976 +160,-142,1200,16861,-4435,1803,139,-179,2327,-803,-1830,2022-10-15 13:29:31.530070 +161,-141,716,16905,-4186,3421,354,59,2341,-571,-1485,2022-10-15 13:29:31.708482 +162,-140,1893,14754,-7728,4249,-112,-97,2416,-280,-1059,2022-10-15 13:29:31.888955 +163,-142,798,11347,-9121,3040,43,-119,2526,231,-680,2022-10-15 13:29:32.068246 +164,-144,155,10028,-12346,2189,-14,-6,2618,532,-442,2022-10-15 13:29:32.247089 +165,-147,915,9543,-14061,2177,-33,-220,2762,877,-268,2022-10-15 13:29:32.426423 +166,-143,251,6247,-14408,1863,61,-45,2853,1214,-118,2022-10-15 13:29:32.604913 +167,-144,639,5370,-13652,-54,207,-129,2931,1336,-53,2022-10-15 13:29:32.783605 +168,-142,566,6116,-14803,-210,82,-56,2939,1286,-26,2022-10-15 13:29:32.962205 +169,-144,758,6132,-15139,-257,101,-49,2921,1249,-78,2022-10-15 13:29:33.145231 +170,-142,75,5640,-14247,-811,119,-81,2932,1228,-70,2022-10-15 13:29:33.324793 +171,-142,732,7039,-14174,-320,226,-121,2890,1036,-120,2022-10-15 13:29:33.511904 +172,-144,261,7874,-14389,-417,163,57,2846,1001,-130,2022-10-15 13:29:33.691871 +173,-144,122,6672,-12210,-1572,56,231,2844,834,-181,2022-10-15 13:29:33.870306 +174,-145,777,11666,-10979,-3871,103,153,2817,258,-519,2022-10-15 13:29:34.051271 +175,-141,384,11846,-9115,-4473,367,130,2737,-372,-872,2022-10-15 13:29:34.230482 +176,-143,-33,16818,-5246,-4871,439,104,2584,-711,-1413,2022-10-15 13:29:34.410997 +177,-143,1492,14736,-1269,-4586,190,173,2627,-1137,-2083,2022-10-15 13:29:34.591034 +178,-141,1358,16405,3716,-4898,473,195,2796,-1419,-2532,2022-10-15 13:29:34.770766 +179,-144,1050,14048,7284,-4774,240,153,3132,-1477,-3043,2022-10-15 13:29:34.954092 +180,-143,2101,11814,12701,-5385,213,360,3572,-1555,-3390,2022-10-15 13:29:35.132609 +181,-144,1408,9014,14786,-5267,261,224,3823,-1178,-3742,2022-10-15 13:29:35.310660 +182,-140,1175,3656,16893,-3919,-161,510,3163,366,-3944,2022-10-15 13:29:35.489277 +183,-140,1069,162,18796,-5663,116,344,3571,1043,-3926,2022-10-15 13:29:35.668934 +184,-139,875,-4874,16077,-6184,257,456,3611,2268,-3700,2022-10-15 13:29:35.848091 +185,-142,1035,-9641,11610,-5115,348,400,4345,2561,-3309,2022-10-15 13:29:36.026795 +186,-140,-65,-11704,11222,-4489,364,364,4652,2936,-2918,2022-10-15 13:29:36.205075 +187,-140,897,-14288,8867,-3867,159,490,4855,3261,-2501,2022-10-15 13:29:36.383950 +188,-141,562,-15628,4677,-3697,217,496,5304,3174,-2149,2022-10-15 13:29:36.564012 +189,-141,331,-15698,3123,-3943,-585,683,5738,2942,-1765,2022-10-15 13:29:36.743212 +190,-139,670,-17368,1514,-4048,-270,414,6449,2493,-1442,2022-10-15 13:29:36.921370 +191,-140,-324,-15143,-3306,-3637,-66,463,7206,1762,-972,2022-10-15 13:29:37.100521 +192,-142,-279,-13665,-7286,-2260,6,264,5298,3857,-757,2022-10-15 13:29:37.279652 +193,-143,521,-13591,-9263,-1539,178,-1,3701,5517,-659,2022-10-15 13:29:37.462333 +194,-147,-29,-14880,-7918,122,47,-178,3860,5412,-666,2022-10-15 13:29:37.640811 +195,-146,-305,-14096,-7913,190,267,-43,3809,5391,-688,2022-10-15 13:29:37.819817 +196,-145,-568,-14103,-7978,167,340,24,3823,5438,-727,2022-10-15 13:29:38.005015 +197,-140,28,-14661,-7943,-14,163,-87,3777,5423,-665,2022-10-15 13:29:38.185191 +198,-143,27,-14821,-7437,104,113,-134,3810,5483,-645,2022-10-15 13:29:38.364955 +199,-143,-205,-14500,-7669,121,161,-108,3781,5458,-710,2022-10-15 13:29:38.545566 +200,-142,-258,-14528,-7582,36,192,-94,3749,5452,-693,2022-10-15 13:29:38.726278 +201,-144,-523,-14959,-6055,965,576,39,3715,5607,-722,2022-10-15 13:29:38.907837 +202,-143,49,-14923,-6687,-109,538,-86,3698,5551,-839,2022-10-15 13:29:39.087138 +203,-144,-25,-15927,-5887,119,-22,-276,3713,5581,-852,2022-10-15 13:29:39.267381 +204,-142,-285,-13193,-7650,403,42,-136,3657,5569,-835,2022-10-15 13:29:39.447508 +205,-144,-188,-15370,-4411,2469,-219,-408,3581,5715,-1060,2022-10-15 13:29:39.631356 +206,-143,-292,-15977,-2142,2860,238,-247,3618,5670,-1381,2022-10-15 13:29:39.810439 +207,-144,-84,-16237,238,3328,113,-280,3616,5514,-1787,2022-10-15 13:29:40.005093 +208,-144,480,-16390,5044,3915,-21,-259,3593,5225,-2236,2022-10-15 13:29:40.183792 +209,-144,994,-14837,8968,4134,-129,-250,3512,4819,-2591,2022-10-15 13:29:40.363333 +210,-142,576,-12624,12154,4410,94,-376,3421,4230,-3079,2022-10-15 13:29:40.541847 +211,-144,912,-9561,14573,4344,-137,-85,3406,3517,-3439,2022-10-15 13:29:40.719887 +212,-143,24,-5769,16209,3833,-108,-103,3297,2724,-3783,2022-10-15 13:29:40.899777 +213,-140,1366,-3040,17699,3969,-62,-258,3221,1935,-3941,2022-10-15 13:29:41.079129 +214,-144,831,1023,17283,4449,11,-349,3177,1069,-4051,2022-10-15 13:29:41.259491 +215,-143,1835,4476,16869,4291,-64,-266,3160,348,-3898,2022-10-15 13:29:41.437686 +216,-141,1381,8254,15159,3844,93,-398,3119,-362,-3790,2022-10-15 13:29:41.620848 +217,-142,1264,10369,13076,3486,-40,-310,3153,-877,-3562,2022-10-15 13:29:41.801020 +218,-143,1013,13350,9918,3239,-76,-125,3137,-1301,-3316,2022-10-15 13:29:41.980540 +219,-144,1567,14567,8204,3123,-250,-247,3125,-1535,-2977,2022-10-15 13:29:42.159035 +220,-141,884,16059,4828,2772,-244,-256,3135,-1665,-2678,2022-10-15 13:29:42.339497 +221,-144,1540,15912,3058,2704,40,-163,3167,-1718,-2419,2022-10-15 13:29:42.519166 +222,-144,1496,15610,-41,1920,-103,-151,3165,-1725,-2098,2022-10-15 13:29:42.703741 +223,-145,1036,14337,-296,-69,233,-204,3226,-1733,-1984,2022-10-15 13:29:42.885932 +224,-145,1711,16959,-1157,-445,204,-288,3183,-1690,-2129,2022-10-15 13:29:43.065361 +225,-142,603,15964,-35,-81,29,-72,3184,-1706,-2101,2022-10-15 13:29:43.246488 +226,-143,1737,16305,-363,-177,173,-152,3150,-1714,-2103,2022-10-15 13:29:43.427287 +227,-141,671,16376,-540,-185,29,-127,3161,-1709,-2099,2022-10-15 13:29:43.610130 +228,-141,1136,16023,-29,-179,106,-124,3160,-1687,-2094,2022-10-15 13:29:43.790796 +229,-138,1417,15830,270,-220,100,-152,3121,-1670,-2117,2022-10-15 13:29:43.972268 +230,-144,1595,16228,-152,-1,-133,-58,3167,-1715,-2188,2022-10-15 13:29:44.152302 +231,-141,2386,15846,179,34,-1337,-196,3141,-1746,-2104,2022-10-15 13:29:44.335938 +232,-143,1976,16177,275,-496,-3555,-75,3241,-1796,-2238,2022-10-15 13:29:44.515296 +233,-142,1535,16049,-54,-288,-4127,-19,3287,-1805,-2381,2022-10-15 13:29:44.694310 +234,-142,1338,16028,454,-294,-3392,-130,3214,-1776,-2526,2022-10-15 13:29:44.873506 +235,-142,147,15465,132,-133,-2889,7,3080,-1791,-2726,2022-10-15 13:29:45.052791 +236,-142,1311,16156,-447,-384,-2666,-87,2969,-1839,-2776,2022-10-15 13:29:45.231303 +237,-143,1234,15367,108,-62,-2519,-78,2885,-1814,-2826,2022-10-15 13:29:45.410598 +238,-143,507,16779,-939,-257,-1909,-220,2710,-1737,-2901,2022-10-15 13:29:45.593745 +239,-141,-41,16155,-287,-288,-1479,-12,2611,-1732,-2933,2022-10-15 13:29:45.772853 +240,-141,597,15812,-108,-171,-933,-77,2533,-1748,-2980,2022-10-15 13:29:45.952107 +241,-140,1389,16408,-279,-149,647,-156,2538,-1728,-2933,2022-10-15 13:29:46.131315 +242,-142,1194,15848,127,64,29,-122,2563,-1739,-2988,2022-10-15 13:29:46.311036 +243,-143,746,15998,-39,-148,324,-138,2509,-1713,-3035,2022-10-15 13:29:46.491115 +244,-143,1247,15970,-138,-66,124,-145,2526,-1753,-2989,2022-10-15 13:29:46.669271 +245,-142,-124,16486,-523,-68,899,-181,2533,-1730,-3032,2022-10-15 13:29:46.848190 +246,-141,-512,15985,184,-1,2618,-29,2647,-1753,-2996,2022-10-15 13:29:47.029468 +247,-143,1016,16060,563,-15,4048,-108,2877,-1754,-2893,2022-10-15 13:29:47.208649 +248,-142,1238,16226,813,-7,3753,-151,2951,-1713,-2818,2022-10-15 13:29:47.392941 +249,-143,438,15759,464,4,3614,-97,3074,-1727,-2687,2022-10-15 13:29:47.573616 +250,-143,838,16302,472,72,3745,-60,3177,-1698,-2556,2022-10-15 13:29:47.756128 +251,-141,1613,16580,712,124,4113,-114,3222,-1681,-2379,2022-10-15 13:29:47.936200 +252,-143,994,15843,1021,153,4134,-136,3181,-1698,-2267,2022-10-15 13:29:48.117112 +253,-144,-362,16711,761,140,4934,-175,3082,-1656,-2118,2022-10-15 13:29:48.296933 +254,-140,2911,15969,324,-118,3777,-89,2995,-1628,-2008,2022-10-15 13:29:48.477863 +255,-143,55,15530,1001,266,3535,-52,2953,-1610,-1904,2022-10-15 13:29:48.659564 +256,-141,879,16284,493,217,4271,-55,2819,-1576,-1815,2022-10-15 13:29:48.840739 +257,-141,671,15802,256,138,3759,72,2781,-1579,-1806,2022-10-15 13:29:49.023559 +258,-144,1090,16286,1150,186,4155,-153,2648,-1524,-1703,2022-10-15 13:29:49.202052 +259,-142,1587,15874,780,-36,3575,-155,2492,-1518,-1597,2022-10-15 13:29:49.380835 +260,-141,1547,15703,924,137,3370,7,2287,-1459,-1432,2022-10-15 13:29:49.563888 +261,-144,1639,15252,1289,168,3691,-68,1231,-596,-1393,2022-10-15 13:29:49.741610 +262,-141,549,16133,981,51,4085,-360,771,-383,-1397,2022-10-15 13:29:49.919792 +263,-142,274,15971,706,181,4342,-182,467,-452,-1495,2022-10-15 13:29:50.099539 +264,-142,1296,15269,1035,239,4511,-244,-33,-263,-1601,2022-10-15 13:29:50.278406 +265,-142,697,15765,1190,92,4709,-353,-353,-175,-1857,2022-10-15 13:29:50.456383 +266,-139,1453,16144,493,75,4332,-206,-701,180,-2138,2022-10-15 13:29:50.635425 +267,-142,610,15607,880,-39,3409,-277,-1046,539,-2386,2022-10-15 13:29:50.813386 +268,-140,564,15398,1309,246,2897,-345,-245,-233,-2554,2022-10-15 13:29:50.991835 +269,-141,852,16035,900,11,3243,-13,793,-1177,-2722,2022-10-15 13:29:51.171100 +270,-140,838,15975,1120,174,3608,-100,948,-1209,-2875,2022-10-15 13:29:51.349279 +271,-142,301,15949,1103,127,3884,-144,1168,-1262,-2913,2022-10-15 13:29:51.528908 +272,-139,1863,15688,1228,263,4428,-244,1361,-1295,-3060,2022-10-15 13:29:51.707488 +273,-141,919,15432,960,175,4119,1,1577,-1263,-3160,2022-10-15 13:29:51.885251 +274,-141,1790,15857,573,190,3709,-186,1815,-1233,-3125,2022-10-15 13:29:52.069537 +275,-140,455,15751,761,38,3464,-191,1961,-1236,-3074,2022-10-15 13:29:52.250660 +276,-140,966,16147,313,147,3720,-100,2189,-1236,-3077,2022-10-15 13:29:52.431391 +277,-137,372,15967,1089,76,3664,-213,2325,-1206,-2988,2022-10-15 13:29:52.612651 +278,-141,508,15742,848,43,3736,-139,2473,-1158,-2809,2022-10-15 13:29:52.792196 +279,-136,-107,16412,643,291,4452,-10,2559,-1087,-2733,2022-10-15 13:29:52.972388 +280,-140,1377,16305,637,267,4510,-206,2260,-729,-2551,2022-10-15 13:29:53.152775 +281,-137,1389,16294,263,106,3465,-187,2325,-773,-2435,2022-10-15 13:29:53.332660 +282,-138,1018,16158,519,72,3338,-205,2328,-734,-2346,2022-10-15 13:29:53.519891 +283,-140,-254,16123,1002,107,3894,-80,2337,-861,-2234,2022-10-15 13:29:53.703992 +284,-138,2165,15545,1243,192,3936,-187,2302,-912,-2150,2022-10-15 13:29:53.883265 +285,-140,712,15711,844,40,3684,-192,2254,-936,-2042,2022-10-15 13:29:54.069428 +286,-140,638,15782,733,-57,4435,-203,2226,-927,-1963,2022-10-15 13:29:54.247221 +287,-138,1325,15716,1424,204,4608,162,2109,-972,-1833,2022-10-15 13:29:54.427410 +288,-139,559,15822,444,319,3787,-173,2042,-960,-1664,2022-10-15 13:29:54.606246 +289,-138,1040,16064,274,69,3400,-116,1951,-963,-1566,2022-10-15 13:29:54.784961 +290,-140,1334,15632,1415,125,3775,-40,1738,-881,-1529,2022-10-15 13:29:54.962856 +291,-138,214,15879,805,135,3976,-164,1135,-514,-1423,2022-10-15 13:29:55.141285 +292,-138,580,15382,757,230,4028,-126,790,-434,-1388,2022-10-15 13:29:55.320405 +293,-138,500,15644,1224,201,4604,-248,400,-420,-1479,2022-10-15 13:29:55.499758 +294,-138,690,15590,1030,28,4271,-148,-373,62,-1661,2022-10-15 13:29:55.677454 +295,-137,958,15341,1480,213,4203,-449,-646,204,-1959,2022-10-15 13:29:55.855810 +296,-140,-49,15961,1382,209,3745,-265,-1041,502,-2218,2022-10-15 13:29:56.035248 +297,-137,2615,16014,-565,214,3639,-453,-737,183,-2450,2022-10-15 13:29:56.214193 +298,-139,1542,15321,794,-35,1288,-277,-952,500,-2527,2022-10-15 13:29:56.392635 +299,-139,814,15947,47,-4,618,-368,-754,318,-2551,2022-10-15 13:29:56.572002 +300,-142,1445,15886,422,-62,82,-328,-672,214,-2540,2022-10-15 13:29:56.755809 +301,-138,878,15930,170,49,-134,-338,-776,329,-2561,2022-10-15 13:29:56.935995 +302,-138,1053,15816,30,5,-85,-304,-705,195,-2536,2022-10-15 13:29:57.115334 +303,-140,902,15905,221,-28,-39,-353,-614,128,-2564,2022-10-15 13:29:57.295280 +304,-138,814,15898,151,-101,-811,-356,-501,7,-2514,2022-10-15 13:29:57.481152 +305,-141,1085,15728,583,35,-672,-346,-412,-130,-2464,2022-10-15 13:29:57.660992 +306,-138,1319,15707,468,-28,-482,-287,-334,-220,-2396,2022-10-15 13:29:57.841320 +307,-139,834,15612,198,143,93,-305,-226,-251,-2365,2022-10-15 13:29:58.020582 +308,-138,988,16154,-71,-113,92,-283,-290,-287,-2384,2022-10-15 13:29:58.200892 +309,-137,715,15330,128,266,77,-305,-253,-279,-2325,2022-10-15 13:29:58.384995 +310,-137,607,16238,-445,54,100,-283,-276,-284,-2350,2022-10-15 13:29:58.565153 +311,-136,648,14994,-1208,2229,-40,-588,-336,-198,-2268,2022-10-15 13:29:58.743725 +312,-135,-218,15370,-1816,548,-171,-277,-464,-76,-2107,2022-10-15 13:29:58.923005 +313,-137,295,17309,-2769,1186,-725,-295,-632,132,-1995,2022-10-15 13:29:59.101717 +314,-136,95,15731,-5095,3027,395,-526,-544,187,-1797,2022-10-15 13:29:59.281312 +315,-137,656,13752,-6804,3061,136,-536,-656,572,-1427,2022-10-15 13:29:59.460611 +316,-137,8,13780,-9129,2799,19,-337,-751,1028,-1095,2022-10-15 13:29:59.639710 +317,-138,101,11440,-11542,3198,425,-851,-867,1547,-797,2022-10-15 13:29:59.819275 +318,-136,-1,8621,-12887,2524,121,-439,-909,2036,-540,2022-10-15 13:29:59.998356 +319,-136,-934,5520,-13283,-34,321,-663,-981,2230,-485,2022-10-15 13:30:00.176628 +320,-138,308,7493,-13448,150,113,-268,-985,2150,-439,2022-10-15 13:30:00.356214 +321,-134,322,7688,-13221,-500,-5,-35,-733,1891,-506,2022-10-15 13:30:00.535939 +322,-136,238,8527,-13585,-274,-81,-33,-716,1804,-511,2022-10-15 13:30:00.715462 +323,-138,-149,7556,-12939,-507,280,-657,-691,1724,-628,2022-10-15 13:30:00.893680 +324,-136,-306,9522,-11067,-3554,419,-523,-661,1343,-738,2022-10-15 13:30:01.072679 +325,-135,1473,14020,-8357,-4653,355,-210,-837,995,-1234,2022-10-15 13:30:01.252171 +326,-139,543,14697,-5143,-3808,173,-199,-662,403,-1780,2022-10-15 13:30:01.431460 +327,-137,831,17167,-1364,-4197,361,-84,-502,-16,-2226,2022-10-15 13:30:01.620378 +328,-136,1351,15853,3959,-4477,280,-122,-402,-128,-2690,2022-10-15 13:30:01.805572 +329,-137,1787,13376,6798,-4464,373,-389,-383,150,-3062,2022-10-15 13:30:01.985699 +330,-135,83,12599,10610,-4759,315,-162,-499,709,-3479,2022-10-15 13:30:02.165634 +331,-137,941,10639,13271,-3909,243,-202,-719,1704,-3777,2022-10-15 13:30:02.345878 +332,-136,986,6493,15760,-3807,171,-395,-510,2207,-3879,2022-10-15 13:30:02.529885 +333,-136,1242,3567,16613,-3354,-148,-892,-3,2341,-3879,2022-10-15 13:30:02.710470 +334,-137,-74,428,17224,-3133,157,-917,306,2686,-3880,2022-10-15 13:30:02.890861 +335,-136,288,-3112,17201,-2847,221,-1260,248,3338,-3665,2022-10-15 13:30:03.070425 +336,-136,-237,-4488,16743,-3070,233,-394,-124,4336,-3636,2022-10-15 13:30:03.252827 +337,-139,-31,-8283,15946,-4060,196,-209,-300,5264,-3393,2022-10-15 13:30:03.431676 +338,-137,788,-11135,13319,-4150,43,-197,-1990,7846,-3057,2022-10-15 13:30:03.613731 +339,-135,-2745,-13367,10670,-3837,212,-240,-769,7115,-2624,2022-10-15 13:30:03.792692 +340,-138,-7,-13264,7851,-2784,518,-515,481,6213,-2212,2022-10-15 13:30:03.971328 +341,-138,-727,-16983,6366,-2356,994,-386,599,6334,-1975,2022-10-15 13:30:04.149879 +342,-139,253,-16658,3733,-2818,611,-285,549,6486,-1612,2022-10-15 13:30:04.329302 +343,-134,18,-16263,-102,-2787,200,-117,557,6525,-1317,2022-10-15 13:30:04.508481 +344,-135,701,-16588,-1239,-2309,134,-98,596,6376,-1052,2022-10-15 13:30:04.687163 +345,-137,-580,-15603,-4303,-1984,167,-220,608,6265,-860,2022-10-15 13:30:04.866177 +346,-137,79,-15768,-4917,-1758,-2,-195,622,6166,-600,2022-10-15 13:30:05.045139 +347,-135,93,-14757,-6922,-833,139,-212,587,6168,-513,2022-10-15 13:30:05.224788 +348,-136,-503,-15105,-7560,-601,101,-97,583,6216,-475,2022-10-15 13:30:05.403427 +349,-135,-118,-14595,-8115,107,304,-138,592,6167,-476,2022-10-15 13:30:05.593729 +350,-137,68,-14593,-7758,298,139,-170,581,6165,-503,2022-10-15 13:30:05.773359 +351,-138,-100,-14761,-7525,192,-351,-377,708,6054,-449,2022-10-15 13:30:05.952263 +352,-136,-1163,-15717,-6557,2179,-647,-677,687,6090,-478,2022-10-15 13:30:06.131533 +353,-136,-15,-16791,-5436,415,158,-153,674,6105,-578,2022-10-15 13:30:06.315458 +354,-136,423,-13114,-8041,991,252,-126,630,6127,-621,2022-10-15 13:30:06.497697 +355,-139,-421,-15357,-2568,3761,99,-267,620,6292,-848,2022-10-15 13:30:06.677585 +356,-136,-168,-15962,-176,3784,79,-254,671,6369,-1300,2022-10-15 13:30:06.858727 +357,-135,324,-16121,4298,4092,335,-371,574,6286,-1775,2022-10-15 13:30:07.037679 +358,-139,762,-14180,6582,4508,68,-365,615,5905,-2317,2022-10-15 13:30:07.219419 +359,-140,864,-11812,11194,4293,86,-289,529,5388,-2829,2022-10-15 13:30:07.399868 +360,-136,1274,-10111,14978,3946,106,-524,589,4738,-3150,2022-10-15 13:30:07.580572 +361,-138,681,-7131,15931,3674,58,-369,578,4007,-3465,2022-10-15 13:30:07.760282 +362,-138,371,-3642,16567,3634,49,-386,464,3258,-3735,2022-10-15 13:30:07.944189 +363,-137,1017,-862,16792,3424,121,-283,398,2578,-3755,2022-10-15 13:30:08.123299 +364,-135,1318,2927,16811,3231,19,-272,261,2034,-3750,2022-10-15 13:30:08.302069 +365,-137,890,5217,15427,3245,101,-248,287,1361,-3699,2022-10-15 13:30:08.481099 +366,-139,713,8738,14971,3609,116,-401,313,712,-3668,2022-10-15 13:30:08.660177 +367,-137,1707,11650,12161,3668,21,-203,299,164,-3454,2022-10-15 13:30:08.840078 +368,-137,651,13475,9614,4505,575,-96,386,-453,-3160,2022-10-15 13:30:09.019807 +369,-140,410,15591,6484,3643,644,-8,342,-824,-2829,2022-10-15 13:30:09.197728 +370,-137,1397,15279,3114,2853,146,-306,335,-899,-2464,2022-10-15 13:30:09.376920 +371,-135,444,15591,730,2008,127,-304,300,-867,-2242,2022-10-15 13:30:09.560230 +372,-137,785,16497,-1378,1775,93,-254,301,-846,-1993,2022-10-15 13:30:09.739799 +373,-134,1539,12697,-871,119,30,147,319,-723,-1840,2022-10-15 13:30:09.919808 +374,-139,2753,16851,-3318,-268,-104,-173,343,-860,-1950,2022-10-15 13:30:10.098669 +375,-136,105,14865,-987,-359,286,-7,327,-853,-1896,2022-10-15 13:30:10.277623 +376,-137,569,16497,-1551,-239,35,-108,389,-921,-1963,2022-10-15 13:30:10.457158 +377,-133,1245,14316,530,-241,24,25,276,-809,-2001,2022-10-15 13:30:10.644171 +378,-136,939,16290,-1703,-8,430,-145,248,-822,-2014,2022-10-15 13:30:10.822177 +379,-137,466,16327,-1134,351,1612,-221,329,-863,-2092,2022-10-15 13:30:11.007341 +380,-136,737,15798,-833,-281,2447,-535,381,-938,-2232,2022-10-15 13:30:11.189430 +381,-136,348,15976,-1232,-92,3486,-338,414,-850,-2447,2022-10-15 13:30:11.369880 +382,-137,1022,15987,-308,203,3448,-451,496,-860,-2562,2022-10-15 13:30:11.552619 +383,-136,981,16321,-464,70,3376,-269,842,-1084,-2700,2022-10-15 13:30:11.732470 +384,-136,928,16390,-561,66,3120,-313,1068,-1153,-2832,2022-10-15 13:30:11.913043 +385,-138,638,16101,-80,90,3983,-234,1198,-1020,-2898,2022-10-15 13:30:12.094998 +386,-137,528,15817,-407,97,3737,-296,1308,-958,-2886,2022-10-15 13:30:12.275403 +387,-135,1382,15452,-371,158,3270,-371,1469,-916,-2970,2022-10-15 13:30:12.455990 +388,-136,501,15706,-270,290,3556,-313,1620,-857,-2864,2022-10-15 13:30:12.640339 +389,-136,383,15419,554,-52,3405,-261,1801,-915,-2792,2022-10-15 13:30:12.819838 +390,-138,964,16609,-693,-207,4024,-335,1989,-829,-2754,2022-10-15 13:30:12.999067 +391,-137,391,15778,-410,529,4339,-432,2185,-884,-2617,2022-10-15 13:30:13.177897 +392,-136,1169,16073,-623,123,3797,-436,2265,-847,-2419,2022-10-15 13:30:13.356860 +393,-137,1471,16908,-617,259,3542,-387,2244,-758,-2320,2022-10-15 13:30:13.542993 +394,-136,906,15527,-394,232,2893,-296,2295,-723,-2219,2022-10-15 13:30:13.722415 +395,-136,1737,16446,-1209,-5,2188,-246,2261,-725,-2062,2022-10-15 13:30:13.900666 +396,-136,705,15891,-848,118,1535,-295,2233,-738,-2039,2022-10-15 13:30:14.080812 +397,-135,1512,16007,-628,-75,-236,-177,2277,-712,-2040,2022-10-15 13:30:14.260251 +398,-135,711,16299,-1050,-13,236,-258,2215,-717,-2057,2022-10-15 13:30:14.440720 +399,-136,1193,15801,-890,-321,244,-146,2273,-767,-2025,2022-10-15 13:30:14.619508 +400,-138,-49,15850,482,-52,259,-376,2341,-813,-1995,2022-10-15 13:30:14.798404 +401,-137,856,15805,-572,19,-420,-199,2273,-755,-2065,2022-10-15 13:30:14.977793 +402,-134,916,15696,-338,-52,200,-237,2235,-681,-1974,2022-10-15 13:30:15.157285 +403,-136,1296,15743,-918,23,286,-235,2277,-748,-2059,2022-10-15 13:30:15.335900 +404,-137,813,15936,-976,253,61,-43,2247,-728,-2052,2022-10-15 13:30:15.516079 +405,-137,391,15893,-656,438,-149,-280,2223,-625,-1913,2022-10-15 13:30:15.701220 +406,-135,980,15499,-1598,449,110,-298,2233,-579,-1929,2022-10-15 13:30:15.881861 +407,-135,1034,14911,-3404,2348,179,-212,2204,-528,-1748,2022-10-15 13:30:16.063534 +408,-137,558,15218,-7249,5260,-63,-551,2002,171,-1244,2022-10-15 13:30:16.244355 +409,-134,232,12021,-10006,3953,-11,-343,1987,885,-868,2022-10-15 13:30:16.425371 +410,-136,271,9390,-12698,4932,83,-444,2017,1656,-527,2022-10-15 13:30:16.606021 +411,-138,-376,5668,-14935,4169,106,-281,2023,2529,-144,2022-10-15 13:30:16.786363 +412,-135,562,2259,-15649,2714,215,-623,2092,3249,-36,2022-10-15 13:30:16.967183 +413,-135,656,168,-17031,2259,129,-429,2191,3722,96,2022-10-15 13:30:17.148808 +414,-137,276,-3010,-15945,2557,141,-197,2162,4200,93,2022-10-15 13:30:17.332673 +415,-134,-291,-5075,-15739,2633,261,-442,2254,4675,101,2022-10-15 13:30:17.516603 +416,-135,407,-8237,-14964,2844,64,-372,2338,5154,-19,2022-10-15 13:30:17.695409 +417,-136,-661,-9572,-13133,2874,89,-331,2400,5558,-252,2022-10-15 13:30:17.874968 +418,-133,387,-12789,-11455,2839,106,-229,2444,5945,-379,2022-10-15 13:30:18.054978 +419,-135,487,-14808,-8825,2799,29,-335,2374,6346,-692,2022-10-15 13:30:18.235389 +420,-131,396,-15783,-6667,2593,57,-406,2040,6913,-914,2022-10-15 13:30:18.414335 +421,-133,421,-16145,-5000,966,84,-304,1766,7303,-1153,2022-10-15 13:30:18.593114 +422,-133,194,-16099,-4609,-190,139,-256,1857,7242,-1163,2022-10-15 13:30:18.772339 +423,-134,1398,-16109,-4773,-405,136,-208,2135,6912,-1102,2022-10-15 13:30:18.951906 +424,-135,-722,-15341,-5667,-1309,259,-362,1569,7528,-1130,2022-10-15 13:30:19.130533 +425,-135,286,-14198,-5632,-1456,37,-132,2589,6429,-1034,2022-10-15 13:30:19.310433 +426,-136,512,-15268,-8495,-1250,307,171,2565,6318,-854,2022-10-15 13:30:19.490013 +427,-135,-406,-14296,-7850,-2282,3,183,2553,6184,-698,2022-10-15 13:30:19.668903 +428,-135,543,-11841,-10821,-4179,299,261,2351,6048,-423,2022-10-15 13:30:19.846929 +429,-131,-426,-9608,-14316,-4655,264,15,2238,5444,-108,2022-10-15 13:30:20.025957 +430,-132,-130,-6655,-15655,-3734,57,-109,2184,4849,23,2022-10-15 13:30:20.205182 +431,-134,223,-2723,-15944,-3806,222,-58,2033,4290,32,2022-10-15 13:30:20.390265 +432,-134,112,870,-15698,-3570,307,-42,1933,3655,36,2022-10-15 13:30:20.571183 +433,-133,395,4297,-16029,-3728,174,-164,1850,3030,-92,2022-10-15 13:30:20.751222 +434,-134,483,7434,-13860,-3537,125,-36,1827,2296,-320,2022-10-15 13:30:20.932903 +435,-134,754,9541,-12515,-3428,468,-254,1831,1555,-618,2022-10-15 13:30:21.113254 +436,-132,593,12657,-10541,-3561,111,-97,1961,841,-893,2022-10-15 13:30:21.293178 +437,-134,978,13923,-7268,-4204,203,22,2471,-272,-1267,2022-10-15 13:30:21.476960 +438,-136,1024,15846,-4636,-3901,200,-45,2431,-655,-1740,2022-10-15 13:30:21.657432 +439,-133,1118,15974,-1207,-2695,84,-204,2077,-532,-2095,2022-10-15 13:30:21.839777 +440,-135,1366,15378,1072,-150,92,-261,1887,-397,-2246,2022-10-15 13:30:22.023993 +441,-133,1089,15926,967,-255,-87,-305,1873,-374,-2238,2022-10-15 13:30:22.203820 +442,-133,1069,16139,2050,-1812,133,56,1797,-338,-2297,2022-10-15 13:30:22.383819 +443,-134,496,15342,3021,-590,359,-373,1840,-364,-2433,2022-10-15 13:30:22.563979 +444,-132,737,15630,2604,-410,123,-284,1782,-300,-2466,2022-10-15 13:30:22.743117 +445,-134,1072,15606,2949,12,147,-238,1758,-258,-2502,2022-10-15 13:30:22.922689 +446,-134,1193,15533,3089,-209,27,-218,1796,-283,-2489,2022-10-15 13:30:23.103761 +447,-134,1079,15709,3882,-536,63,-307,1777,-284,-2531,2022-10-15 13:30:23.283964 +448,-135,2658,14871,2473,302,914,167,1820,-280,-2551,2022-10-15 13:30:23.467180 +449,-132,3314,17037,2628,509,-534,-557,1775,-251,-2486,2022-10-15 13:30:23.646263 +450,-134,2379,16309,1882,1048,-149,-204,1789,-297,-2274,2022-10-15 13:30:23.825098 +451,-134,-621,17010,-1958,3563,-60,-260,1854,-342,-2068,2022-10-15 13:30:24.004481 +452,-134,675,15453,-4952,5179,-427,-231,2108,-310,-1459,2022-10-15 13:30:24.184069 +453,-135,-83,11736,-7215,3447,58,-238,2489,-218,-963,2022-10-15 13:30:24.363969 +454,-135,209,10239,-9297,1179,194,-231,2381,284,-786,2022-10-15 13:30:24.543205 +455,-134,703,12242,-10550,-451,158,-200,2453,207,-702,2022-10-15 13:30:24.723208 +456,-133,318,11634,-9833,-379,48,-102,2428,203,-770,2022-10-15 13:30:24.902259 +457,-136,67,12472,-10034,-277,180,-142,2492,59,-852,2022-10-15 13:30:25.086226 +458,-133,2000,13421,-9049,-988,8,54,2480,-44,-946,2022-10-15 13:30:25.266384 +459,-136,893,12710,-7212,-2974,220,-101,2417,-235,-1121,2022-10-15 13:30:25.452321 +460,-136,746,16018,-4307,-4502,277,7,2198,-477,-1564,2022-10-15 13:30:25.632817 +461,-135,1690,16399,624,-5214,160,-39,2036,-492,-2159,2022-10-15 13:30:25.814868 +462,-134,1929,16087,5692,-5216,234,-123,1857,-322,-2729,2022-10-15 13:30:25.995191 +463,-133,945,13932,9788,-5832,220,-55,2495,-624,-3232,2022-10-15 13:30:26.175351 +464,-134,938,11043,13729,-5295,210,131,2552,2,-3622,2022-10-15 13:30:26.356028 +465,-133,1364,6792,15874,-4640,152,110,2504,779,-3891,2022-10-15 13:30:26.537288 +466,-133,1341,2739,17148,-4678,417,586,2407,1779,-3948,2022-10-15 13:30:26.722710 +467,-131,157,-1936,18216,-4330,187,182,2520,2604,-3947,2022-10-15 13:30:26.901326 +468,-133,244,-5345,16718,-4485,29,202,2540,3541,-3758,2022-10-15 13:30:27.080708 +469,-133,877,-9299,13974,-4782,258,52,2544,4462,-3397,2022-10-15 13:30:27.260524 +470,-136,1991,-12492,11568,-4552,281,-16,2601,5185,-2975,2022-10-15 13:30:27.439926 +471,-133,767,-14855,8410,-4827,168,30,2745,5713,-2451,2022-10-15 13:30:27.619296 +472,-135,198,-15589,3120,-4493,279,50,2845,6090,-1961,2022-10-15 13:30:27.798885 +473,-131,0,-15925,-105,-4172,-203,152,2940,6277,-1557,2022-10-15 13:30:27.978256 +474,-132,330,-15451,-3955,-3182,-20,38,2944,6276,-1208,2022-10-15 13:30:28.157205 +475,-133,-825,-15095,-5672,-2597,237,-45,2976,6294,-896,2022-10-15 13:30:28.335886 +476,-133,-567,-13862,-7752,-1678,230,-44,2935,6220,-707,2022-10-15 13:30:28.516735 +477,-133,372,-14252,-8363,-189,551,-38,2834,6292,-626,2022-10-15 13:30:28.696812 +478,-129,-99,-14460,-7971,108,141,-118,2908,6236,-615,2022-10-15 13:30:28.876885 +479,-133,-244,-14104,-8452,152,77,-203,2882,6259,-599,2022-10-15 13:30:29.055908 +480,-132,-645,-14227,-7444,1034,114,-267,2920,6252,-613,2022-10-15 13:30:29.235868 +481,-132,-368,-14467,-7349,1345,227,-187,2962,6261,-821,2022-10-15 13:30:29.420568 +482,-132,-45,-14823,-5624,2429,-176,-442,2932,6303,-944,2022-10-15 13:30:29.599754 +483,-132,-8,-15459,-3106,3448,-383,-354,3012,6268,-1368,2022-10-15 13:30:29.785338 +484,-133,139,-16729,2145,3819,-19,-379,2948,6118,-1726,2022-10-15 13:30:29.965771 +485,-132,-95,-15687,4892,3780,-5,-383,2820,5921,-2222,2022-10-15 13:30:30.146441 +486,-131,1071,-14621,8953,4358,-33,-393,2752,5500,-2639,2022-10-15 13:30:30.327806 +487,-130,1008,-12188,11374,4431,56,-318,2678,4953,-3043,2022-10-15 13:30:30.508846 +488,-133,1013,-9139,14477,4391,15,-382,2614,4124,-3488,2022-10-15 13:30:30.691218 +489,-133,1191,-5095,17611,4380,15,-394,2533,3291,-3763,2022-10-15 13:30:30.872601 +490,-134,1490,-388,16729,4251,77,-479,2469,2374,-3860,2022-10-15 13:30:31.053839 +491,-134,1261,2747,16942,4415,73,-879,2528,1424,-3931,2022-10-15 13:30:31.234690 +492,-131,2150,6897,15170,4385,224,227,2509,593,-3778,2022-10-15 13:30:31.415637 +493,-133,-59,9423,13650,3663,-19,-361,2572,-176,-3582,2022-10-15 13:30:31.599665 +494,-130,2565,12933,10880,3428,-16,-381,2511,-475,-3347,2022-10-15 13:30:31.780270 +495,-132,1562,13975,8922,3621,209,-235,2477,-753,-2986,2022-10-15 13:30:31.962039 +496,-132,1979,16284,4752,3202,66,-201,2382,-891,-2661,2022-10-15 13:30:32.141581 +497,-133,845,15509,3447,2853,-174,-280,2229,-763,-2351,2022-10-15 13:30:32.320713 +498,-133,1842,15936,465,1640,-54,-280,2135,-572,-2131,2022-10-15 13:30:32.500985 +499,-131,269,14563,244,-105,20,-158,2113,-619,-2024,2022-10-15 13:30:32.681525 +500,-134,1695,16688,-493,-674,77,-32,2172,-678,-2169,2022-10-15 13:30:32.861615 +501,-131,1593,15637,1022,-482,182,-136,2123,-657,-2125,2022-10-15 13:30:33.040724 +502,-134,2617,16384,-201,-422,-434,-146,2188,-725,-2179,2022-10-15 13:30:33.220639 +503,-132,1358,15013,1560,-51,161,-144,2125,-638,-2204,2022-10-15 13:30:33.407051 +504,-133,2285,16146,241,-268,-1478,-205,2261,-792,-2232,2022-10-15 13:30:33.587339 +505,-131,1464,15876,868,-242,-3143,-289,2256,-761,-2298,2022-10-15 13:30:33.765912 +506,-132,2120,16251,557,-450,-4214,-285,2168,-688,-2490,2022-10-15 13:30:33.946647 +507,-130,1646,16145,1446,-223,-4343,-342,2010,-588,-2626,2022-10-15 13:30:34.126100 +508,-131,909,16545,526,-226,-3817,-410,1752,-431,-2887,2022-10-15 13:30:34.306143 +509,-131,-1218,15496,1531,-351,-3948,-167,1548,-423,-2942,2022-10-15 13:30:34.485929 +510,-133,76,16152,960,-197,-3418,-326,1483,-545,-3013,2022-10-15 13:30:34.672739 +511,-134,-63,15256,1019,-39,-2518,-210,1345,-515,-3036,2022-10-15 13:30:34.855102 +512,-133,408,15587,1370,-222,-1570,-209,1218,-565,-3031,2022-10-15 13:30:35.037230 +513,-131,1112,15846,641,-118,-376,-270,1177,-588,-3133,2022-10-15 13:30:35.217316 +514,-131,831,16292,420,-47,197,-229,1122,-584,-3080,2022-10-15 13:30:35.399086 +515,-131,1371,16151,857,-191,63,-242,1156,-565,-3165,2022-10-15 13:30:35.579693 +516,-131,880,15867,630,-44,164,-208,1160,-537,-3095,2022-10-15 13:30:35.759773 +517,-133,102,15736,987,-72,1254,-188,1168,-607,-3085,2022-10-15 13:30:35.941433 +518,-132,-400,15966,882,-19,1398,-33,1270,-590,-3074,2022-10-15 13:30:36.121441 +519,-130,1886,16062,986,208,3339,-161,1337,-517,-3066,2022-10-15 13:30:36.304792 +520,-131,848,15794,1042,157,4012,-62,1517,-493,-3013,2022-10-15 13:30:36.484840 +521,-128,1489,15769,1657,407,3978,41,1688,-471,-2914,2022-10-15 13:30:36.664580 +522,-130,2115,15801,1444,59,4276,-14,1784,-451,-2791,2022-10-15 13:30:36.843091 +523,-131,1759,16681,646,190,4191,-195,1932,-498,-2635,2022-10-15 13:30:37.022798 +524,-130,1254,16803,1251,16,3477,-65,2092,-602,-2458,2022-10-15 13:30:37.202319 +525,-131,2151,15719,1378,-39,2545,-131,2075,-603,-2458,2022-10-15 13:30:37.385907 +526,-132,1652,15851,1423,73,1768,-129,2122,-585,-2317,2022-10-15 13:30:37.564512 +527,-130,1946,16108,1048,128,1277,-89,2090,-674,-2308,2022-10-15 13:30:37.743684 +528,-130,1414,16172,1543,-4,801,-226,2117,-665,-2222,2022-10-15 13:30:37.922926 +529,-130,737,16245,937,-8,570,-158,2163,-700,-2220,2022-10-15 13:30:38.102325 +530,-130,779,16052,1524,-140,381,-164,2118,-712,-2164,2022-10-15 13:30:38.281204 +531,-131,2019,15907,1443,28,122,-219,2104,-631,-2222,2022-10-15 13:30:38.461149 +532,-134,1193,15508,1706,-44,105,-207,2107,-688,-2164,2022-10-15 13:30:38.640659 +533,-134,1156,15895,1422,31,114,-224,2139,-667,-2202,2022-10-15 13:30:38.820252 +534,-133,1144,16038,1089,-8,93,-206,2161,-682,-2235,2022-10-15 13:30:39.000125 +535,-130,1144,15947,1139,-126,111,-195,2126,-657,-2245,2022-10-15 13:30:39.179147 +536,-131,1221,15858,1341,-97,122,-205,2141,-698,-2240,2022-10-15 13:30:39.365145 +537,-132,1184,15828,1516,-36,111,-197,2125,-729,-2239,2022-10-15 13:30:39.546838 +538,-130,1190,15852,1288,-20,121,-194,2140,-683,-2206,2022-10-15 13:30:39.728036 +539,-130,1180,15972,1239,-46,113,-197,2134,-690,-2229,2022-10-15 13:30:39.908240 +540,-130,1197,15958,1282,-62,114,-199,2142,-693,-2212,2022-10-15 13:30:40.089744 +541,-131,1163,15864,1296,-66,124,-202,2167,-672,-2146,2022-10-15 13:30:40.271694 +542,-128,1195,15862,1400,-70,118,-204,2146,-692,-2186,2022-10-15 13:30:40.452626 +543,-133,1179,15878,1362,-30,108,-205,2097,-683,-2191,2022-10-15 13:30:40.632922 +544,-131,1167,15886,1235,-53,111,-208,2126,-697,-2261,2022-10-15 13:30:40.813868 +545,-133,1190,15918,1273,-71,116,-204,2162,-690,-2223,2022-10-15 13:30:40.998073 +546,-132,1160,15919,1322,-69,116,-207,2161,-658,-2219,2022-10-15 13:30:41.185457 +547,-130,1195,15881,1347,-37,123,-193,2147,-683,-2322,2022-10-15 13:30:41.364901 +548,-133,1180,15842,1315,-52,118,-192,2172,-717,-2249,2022-10-15 13:30:41.548261 +549,-131,1192,15902,1332,-47,108,-197,2109,-680,-2278,2022-10-15 13:30:41.728460 +550,-131,1193,15911,1309,-46,126,-203,2116,-686,-2242,2022-10-15 13:30:41.908342 +551,-132,1182,15877,1258,-60,113,-204,2172,-705,-2211,2022-10-15 13:30:42.087425 +552,-131,1198,15907,1350,-38,112,-199,2179,-666,-2175,2022-10-15 13:30:42.266898 +553,-130,1176,15860,1270,-69,115,-206,2180,-691,-2259,2022-10-15 13:30:42.446750 +554,-131,1191,15908,1372,-51,124,-202,2188,-697,-2267,2022-10-15 13:30:42.626946 +555,-132,1208,15878,1289,-33,114,-191,2145,-699,-2235,2022-10-15 13:30:42.806068 +556,-129,1176,15907,1295,-70,102,-209,2161,-719,-2273,2022-10-15 13:30:42.984818 +557,-131,1196,15904,1339,-30,117,-204,2161,-674,-2289,2022-10-15 13:30:43.164826 +558,-130,1198,15877,1281,-68,120,-197,2147,-699,-2228,2022-10-15 13:30:43.343759 +559,-130,1167,15920,1382,-37,109,-197,2128,-640,-2229,2022-10-15 13:30:43.525819 +560,-129,1189,15861,1280,-49,113,-202,2169,-649,-2301,2022-10-15 13:30:43.704607 +561,-132,1189,15910,1358,-50,113,-203,2155,-678,-2232,2022-10-15 13:30:43.884046 +562,-132,1182,15923,1373,-35,115,-194,2139,-692,-2293,2022-10-15 13:30:44.068725 +563,-130,1172,15870,1277,-50,129,-195,2153,-700,-2293,2022-10-15 13:30:44.250658 +564,-129,1189,15922,1377,-32,119,-203,2106,-675,-2258,2022-10-15 13:30:44.431376 +565,-129,1186,15892,1302,-43,123,-197,2164,-654,-2283,2022-10-15 13:30:44.611197 +566,-130,1160,15842,1361,-53,109,-198,2150,-687,-2304,2022-10-15 13:30:44.791624 +567,-130,1082,15823,1641,-170,130,-180,2157,-682,-2316,2022-10-15 13:30:44.972335 +568,-131,1199,15713,1750,15,136,-207,2153,-684,-2292,2022-10-15 13:30:45.154184 +569,-129,1211,15841,1336,57,48,-213,2187,-667,-2263,2022-10-15 13:30:45.334747 +570,-129,1040,16058,1109,-39,25,-213,2162,-709,-2256,2022-10-15 13:30:45.519691 +571,-129,1276,15889,1429,-96,104,-195,2170,-667,-2301,2022-10-15 13:30:45.703712 +572,-130,1143,15764,1468,-68,101,-190,2185,-688,-2235,2022-10-15 13:30:45.889261 +573,-129,1160,15662,1517,-50,84,-192,2163,-698,-2307,2022-10-15 13:30:46.068814 +574,-130,1078,16006,1340,-22,98,-193,2168,-698,-2250,2022-10-15 13:30:46.247517 +575,-130,1256,15848,1191,-63,62,-196,2162,-682,-2257,2022-10-15 13:30:46.428362 +576,-128,1128,15938,1403,-62,61,-202,2129,-668,-2216,2022-10-15 13:30:46.608404 +577,-130,1193,15782,1392,-17,139,-200,2132,-663,-2180,2022-10-15 13:30:46.788175 +578,-128,1474,15914,1365,-30,110,-204,2180,-697,-2228,2022-10-15 13:30:46.966896 +579,-131,1161,16001,1399,-49,121,-187,2171,-673,-2258,2022-10-15 13:30:47.146939 +580,-130,1208,15819,1343,-18,118,-195,2210,-640,-2221,2022-10-15 13:30:47.327025 +581,-130,1068,15868,1540,-41,138,-194,2173,-653,-2214,2022-10-15 13:30:47.507150 +582,-129,1109,15907,1256,-29,160,-210,2195,-683,-2245,2022-10-15 13:30:47.686417 +583,-130,1158,16050,1238,-126,120,-193,2187,-703,-2192,2022-10-15 13:30:47.866430 +584,-130,1247,15874,1379,9,127,-214,2150,-692,-2216,2022-10-15 13:30:48.045958 +585,-129,1573,16076,1155,-56,-352,-204,2211,-639,-2268,2022-10-15 13:30:48.225616 +586,-128,751,16004,1165,65,-414,-140,2182,-674,-2299,2022-10-15 13:30:48.404724 +587,-129,1793,15864,1363,-258,-1942,-377,2198,-719,-2340,2022-10-15 13:30:48.584703 +588,-128,832,15872,1795,-92,-2690,-379,2170,-668,-2379,2022-10-15 13:30:48.769873 +589,-128,2100,16185,1434,-245,-3455,-618,2152,-629,-2535,2022-10-15 13:30:48.952083 +590,-130,1864,15678,1329,-160,-3441,-467,2058,-560,-2660,2022-10-15 13:30:49.132219 +591,-127,1176,16091,1251,-193,-3654,-382,1901,-504,-2870,2022-10-15 13:30:49.313049 +592,-133,1225,15870,1476,-275,-3392,-481,1687,-514,-2919,2022-10-15 13:30:49.498716 +593,-133,711,15723,1876,-143,-2734,-285,1599,-514,-2948,2022-10-15 13:30:49.678707 +594,-131,1236,15744,1624,-204,-2470,-327,1496,-569,-3066,2022-10-15 13:30:49.860272 +595,-130,1054,15962,1265,-247,-2119,-369,1422,-554,-3115,2022-10-15 13:30:50.040421 +596,-127,1033,16103,859,-160,-1472,-285,1303,-560,-3147,2022-10-15 13:30:50.221404 +597,-130,1008,15928,1072,-157,-556,-249,1312,-585,-3120,2022-10-15 13:30:50.405038 +598,-129,434,16005,1163,1,383,-321,1240,-582,-3174,2022-10-15 13:30:50.585237 +599,-130,1367,15915,1028,-97,409,-195,1265,-584,-3090,2022-10-15 13:30:50.764045 +600,-130,1402,15977,1244,-81,-209,-206,1249,-601,-3128,2022-10-15 13:30:50.943614 +601,-130,880,15932,924,-105,146,-241,1237,-560,-3089,2022-10-15 13:30:51.123177 +602,-127,248,16334,581,139,1438,-121,1262,-595,-3158,2022-10-15 13:30:51.302738 +603,-130,-196,15777,1635,195,2284,-122,1381,-590,-3127,2022-10-15 13:30:51.482982 +604,-127,1422,15967,1382,122,3634,-96,1520,-526,-3071,2022-10-15 13:30:51.662404 +605,-130,1198,16216,1297,205,3948,11,1637,-516,-3014,2022-10-15 13:30:51.842575 +606,-130,1074,15686,1330,134,3976,58,1805,-451,-2965,2022-10-15 13:30:52.022103 +607,-131,1351,15392,1646,180,4248,70,1852,-427,-2762,2022-10-15 13:30:52.201975 +608,-131,1078,15975,1798,279,3997,36,2024,-539,-2534,2022-10-15 13:30:52.381429 +609,-131,1293,15842,1907,31,3361,104,2150,-627,-2513,2022-10-15 13:30:52.562041 +610,-129,1186,16332,1469,79,2558,-59,2110,-623,-2437,2022-10-15 13:30:52.741690 +611,-130,1991,15758,1529,47,1618,-73,2116,-664,-2261,2022-10-15 13:30:52.920900 +612,-129,1666,15674,1356,-212,752,-130,2146,-697,-2284,2022-10-15 13:30:53.100445 +613,-130,881,15986,1410,-17,-84,-213,2156,-664,-2264,2022-10-15 13:30:53.280560 +614,-127,1081,15914,1223,-59,-154,-204,2104,-676,-2305,2022-10-15 13:30:53.471770 +615,-129,1402,15876,1290,-120,164,-191,2144,-631,-2272,2022-10-15 13:30:53.652971 +616,-129,1241,15731,1478,-77,101,-178,2163,-663,-2256,2022-10-15 13:30:53.833150 +617,-129,1084,15796,1459,-25,119,-200,2143,-646,-2241,2022-10-15 13:30:54.014181 +618,-130,1222,15931,1266,1,134,-207,2150,-646,-2279,2022-10-15 13:30:54.195151 +619,-129,1158,15965,1161,-78,112,-189,2148,-685,-2309,2022-10-15 13:30:54.376818 +620,-128,1206,15897,1302,-88,113,-195,2122,-676,-2318,2022-10-15 13:30:54.558159 +621,-131,1182,15845,1455,-36,109,-197,2147,-644,-2287,2022-10-15 13:30:54.740668 +622,-127,1183,15839,1348,-44,118,-200,2156,-659,-2336,2022-10-15 13:30:54.922008 +623,-128,1205,15905,1245,-42,117,-208,2157,-649,-2325,2022-10-15 13:30:55.106075 +624,-128,1157,15937,1315,-43,110,-205,2154,-650,-2355,2022-10-15 13:30:55.285195 +625,-127,1208,15875,1284,-76,117,-202,2153,-679,-2323,2022-10-15 13:30:55.465043 +626,-128,1174,15627,1368,-52,108,-196,2184,-629,-2308,2022-10-15 13:30:55.645963 +627,-128,1192,15889,1395,-27,117,-194,2156,-681,-2327,2022-10-15 13:30:55.825975 +628,-130,1176,15887,1253,-59,110,-199,2186,-719,-2300,2022-10-15 13:30:56.005986 +629,-126,1181,15930,1355,-56,117,-206,2176,-711,-2291,2022-10-15 13:30:56.185233 +630,-130,1200,15864,1287,-68,114,-197,2172,-667,-2280,2022-10-15 13:30:56.365164 +631,-128,1178,15903,1350,-58,119,-199,2158,-680,-2209,2022-10-15 13:30:56.545441 +632,-126,1147,15910,1354,-32,122,-202,2154,-668,-2337,2022-10-15 13:30:56.725440 +633,-129,1189,15861,1248,-65,117,-203,2163,-675,-2289,2022-10-15 13:30:56.905213 +634,-127,1180,15929,1366,-48,116,-206,2134,-711,-2273,2022-10-15 13:30:57.085178 +635,-128,1210,15878,1309,-42,131,-190,2111,-657,-2330,2022-10-15 13:30:57.265151 +636,-127,1211,15958,1302,-40,108,-210,2150,-710,-2319,2022-10-15 13:30:57.449878 +637,-127,1242,16165,1140,-31,115,-219,2150,-699,-2320,2022-10-15 13:30:57.628850 +638,-128,1299,16023,1116,-141,137,-184,2158,-631,-2305,2022-10-15 13:30:57.808768 +639,-131,1166,15695,1592,-81,116,-206,2118,-694,-2341,2022-10-15 13:30:57.988702 +640,-129,1229,15846,1492,18,117,-197,2186,-675,-2273,2022-10-15 13:30:58.174725 +641,-129,666,16044,1335,11,-45,-195,2168,-701,-2265,2022-10-15 13:30:58.356357 +642,-126,761,16018,1199,-66,266,-132,2156,-696,-2284,2022-10-15 13:30:58.537038 +643,-127,1272,15976,1247,9,268,-185,2187,-663,-2288,2022-10-15 13:30:58.719851 +644,-130,1479,15845,1290,-30,173,-177,2173,-724,-2250,2022-10-15 13:30:58.902390 +645,-127,1526,16040,1142,-43,157,-209,2194,-713,-2228,2022-10-15 13:30:59.083484 +646,-128,1316,15927,1280,-80,118,-181,2170,-689,-2285,2022-10-15 13:30:59.263720 +647,-128,1171,15895,1413,-35,142,-188,2156,-668,-2262,2022-10-15 13:30:59.447347 +648,-127,1231,15853,1362,-34,142,-198,2140,-690,-2273,2022-10-15 13:30:59.628825 +649,-127,1192,15820,1338,-46,232,-198,2143,-706,-2216,2022-10-15 13:30:59.813584 +650,-128,224,16024,1300,47,1801,-177,2103,-622,-2232,2022-10-15 13:30:59.992626 +651,-128,1187,16086,1286,68,2945,-111,2118,-642,-2121,2022-10-15 13:31:00.171881 +652,-128,1585,16026,1635,79,3702,52,2102,-722,-2079,2022-10-15 13:31:00.351559 +653,-132,797,15644,1723,230,4102,32,2011,-715,-1996,2022-10-15 13:31:00.532239 +654,-129,2376,15915,1335,99,3759,-52,1973,-775,-1948,2022-10-15 13:31:00.712357 +655,-129,959,16080,1624,184,3328,72,1857,-743,-1864,2022-10-15 13:31:00.892663 +656,-129,1128,15882,1613,181,3654,9,1733,-692,-1760,2022-10-15 13:31:01.072794 +657,-128,1739,15964,1523,70,2834,-106,1622,-682,-1662,2022-10-15 13:31:01.252402 +658,-128,1588,15917,1255,18,1424,-177,1502,-648,-1666,2022-10-15 13:31:01.436486 +659,-126,1255,15801,1299,-5,676,-174,1402,-585,-1578,2022-10-15 13:31:01.615601 +660,-128,1010,15749,1478,-19,147,-165,1417,-629,-1624,2022-10-15 13:31:01.796835 +661,-126,677,15805,1356,-30,62,-164,1422,-633,-1553,2022-10-15 13:31:01.977561 +662,-127,932,16029,1237,-101,-128,-238,1469,-637,-1560,2022-10-15 13:31:02.157058 +663,-129,1883,15880,1546,-101,-722,-298,1493,-673,-1564,2022-10-15 13:31:02.336365 +664,-128,1664,15730,1315,0,-49,-183,1490,-671,-1608,2022-10-15 13:31:02.517199 +665,-128,1919,15898,1081,-131,-884,-231,1561,-740,-1578,2022-10-15 13:31:02.696832 +666,-126,1983,15653,1345,-215,-2467,-397,1732,-771,-1587,2022-10-15 13:31:02.882070 +667,-129,1634,16363,1783,-214,-4105,-429,1940,-864,-1757,2022-10-15 13:31:03.062942 +668,-129,732,16201,1561,-342,-4617,-493,2124,-939,-1848,2022-10-15 13:31:03.244874 +669,-129,962,16304,1819,-391,-4124,-437,2169,-902,-2021,2022-10-15 13:31:03.429838 +670,-127,750,15935,1883,-198,-3545,-357,2181,-935,-2057,2022-10-15 13:31:03.611843 +671,-128,1367,15907,1138,-151,-2832,-328,2240,-901,-2147,2022-10-15 13:31:03.793314 +672,-126,1142,15841,821,-348,-2490,-193,2326,-906,-2186,2022-10-15 13:31:03.974967 +673,-129,370,15913,1345,-207,-1801,-310,2343,-837,-2284,2022-10-15 13:31:04.156060 +674,-127,686,15808,1619,-107,-733,-217,2302,-794,-2328,2022-10-15 13:31:04.339241 +675,-129,1035,15728,1512,22,295,-190,2273,-771,-2344,2022-10-15 13:31:04.524441 +676,-126,1267,15980,1265,-35,280,-150,2325,-825,-2297,2022-10-15 13:31:04.704092 +677,-127,1140,16074,1363,-73,-78,-214,2283,-802,-2293,2022-10-15 13:31:04.883922 +678,-129,1071,15840,1302,-36,128,-232,2286,-789,-2358,2022-10-15 13:31:05.065019 +679,-130,1290,15933,1395,-45,150,-212,2275,-845,-2274,2022-10-15 13:31:05.245068 +680,-129,963,16056,1336,-94,376,-212,2266,-810,-2295,2022-10-15 13:31:05.428812 +681,-128,1578,15752,1388,-70,189,-207,2274,-789,-2364,2022-10-15 13:31:05.608573 +682,-128,-690,15700,1471,-36,-659,281,2339,-780,-2376,2022-10-15 13:31:05.788753 +683,-128,1091,16043,1610,-23,-1135,-152,2260,-778,-2343,2022-10-15 13:31:05.968856 +684,-128,889,15826,1565,-249,-3263,-328,2397,-874,-2431,2022-10-15 13:31:06.149451 +685,-125,581,15811,1975,-254,-4505,-541,2290,-791,-2637,2022-10-15 13:31:06.328706 +686,-129,1067,16189,1928,-292,-4195,-524,2123,-689,-2808,2022-10-15 13:31:06.509087 +687,-127,678,16039,1636,-293,-4022,-426,1943,-593,-3007,2022-10-15 13:31:06.688818 +688,-127,1129,15904,1555,-199,-3681,-390,1619,-486,-3123,2022-10-15 13:31:06.868726 +689,-128,326,15748,1275,-288,-2698,-306,1398,-445,-3127,2022-10-15 13:31:07.047659 +690,-127,289,15787,1531,-122,-1939,-368,1364,-530,-3182,2022-10-15 13:31:07.228414 +691,-126,1321,15844,1222,-118,-1112,-355,1258,-548,-3170,2022-10-15 13:31:07.409011 +692,-128,861,15938,1173,-106,-141,-205,1253,-545,-3150,2022-10-15 13:31:07.594361 +693,-128,1452,15913,1338,-40,176,-208,1243,-535,-3126,2022-10-15 13:31:07.774827 +694,-127,1129,15855,1155,-53,179,-202,1235,-556,-3228,2022-10-15 13:31:07.955729 +695,-128,931,15957,1187,-124,180,-165,1187,-566,-3211,2022-10-15 13:31:08.137761 +696,-126,1303,15900,1422,-12,212,-192,1222,-533,-3201,2022-10-15 13:31:08.318841 +697,-127,950,15920,1155,-47,50,-211,1214,-521,-3234,2022-10-15 13:31:08.500624 +698,-128,549,15879,1172,-76,766,-155,1245,-546,-3178,2022-10-15 13:31:08.681492 +699,-126,203,16043,1566,-39,75,-110,1299,-592,-3152,2022-10-15 13:31:08.862805 +700,-126,-163,16048,1570,44,696,-234,1306,-568,-3197,2022-10-15 13:31:09.046046 +701,-127,937,15789,1413,98,2219,-65,1369,-512,-3222,2022-10-15 13:31:09.231165 +702,-127,908,15756,1250,87,2789,-51,1411,-515,-3132,2022-10-15 13:31:09.415671 +703,-125,1107,15959,1639,99,3413,-31,1598,-524,-3031,2022-10-15 13:31:09.595308 +704,-126,725,16040,1608,97,3255,-31,1724,-482,-2922,2022-10-15 13:31:09.775370 +705,-129,710,15838,1731,170,3328,25,1901,-545,-2880,2022-10-15 13:31:09.955983 +706,-126,544,15816,1598,207,3724,147,2055,-594,-2675,2022-10-15 13:31:10.136607 +707,-129,1323,15901,1242,226,3848,130,2117,-638,-2644,2022-10-15 13:31:10.316397 +708,-126,1727,16177,1402,109,3192,67,2191,-728,-2488,2022-10-15 13:31:10.497378 +709,-127,1808,16090,1404,12,2265,-105,2221,-753,-2360,2022-10-15 13:31:10.677082 +710,-130,1958,15932,1377,-26,759,-108,2207,-712,-2292,2022-10-15 13:31:10.857082 +711,-128,1947,15930,1259,-73,-306,-230,2223,-756,-2307,2022-10-15 13:31:11.036691 +712,-128,817,15980,1329,-76,91,-278,2217,-720,-2311,2022-10-15 13:31:11.218234 +713,-127,958,15768,1484,-113,97,-206,2220,-736,-2336,2022-10-15 13:31:11.399019 +714,-128,971,15797,1485,-42,104,-183,2187,-743,-2322,2022-10-15 13:31:11.579759 +715,-125,435,15973,1456,66,1065,29,2178,-755,-2270,2022-10-15 13:31:11.758974 +716,-127,605,15518,1660,-51,177,37,2195,-780,-2344,2022-10-15 13:31:11.938929 +717,-129,618,15915,1423,131,728,-107,2203,-723,-2284,2022-10-15 13:31:12.119024 +718,-125,596,16204,1213,231,2935,-38,2112,-714,-2275,2022-10-15 13:31:12.305183 +719,-126,933,16256,1540,95,4069,117,2143,-812,-2103,2022-10-15 13:31:12.487235 +720,-126,2210,15894,1938,161,3962,3,2030,-803,-2013,2022-10-15 13:31:12.668421 +721,-126,694,15892,1747,215,3982,152,1931,-732,-1892,2022-10-15 13:31:12.849924 +722,-128,1108,15790,1697,187,3669,60,1851,-761,-1807,2022-10-15 13:31:13.061757 +723,-126,938,15949,1620,166,3659,-52,1707,-712,-1710,2022-10-15 13:31:13.245927 +724,-126,2437,15762,1531,126,2937,-22,1532,-638,-1607,2022-10-15 13:31:13.475684 +725,-127,2302,15974,1494,52,1642,-157,1379,-556,-1526,2022-10-15 13:31:13.659322 +726,-126,1457,15839,1393,34,324,-205,1356,-599,-1535,2022-10-15 13:31:13.866037 +727,-127,1182,15917,1233,-35,-60,-238,1389,-617,-1553,2022-10-15 13:31:14.075011 +728,-125,925,16033,1235,-87,-58,-216,1419,-660,-1509,2022-10-15 13:31:14.280877 +729,-127,1131,15944,1313,-49,313,-187,1420,-632,-1578,2022-10-15 13:31:14.487057 +730,-127,1096,15923,1336,-57,118,-185,1401,-625,-1573,2022-10-15 13:31:14.694881 +731,-127,1913,15778,1421,-44,-788,-325,1483,-689,-1589,2022-10-15 13:31:14.901033 +732,-125,1775,16165,1178,-74,-811,-264,1557,-705,-1637,2022-10-15 13:31:15.106130 +733,-127,1904,15660,1743,-175,-2697,-413,1759,-838,-1642,2022-10-15 13:31:15.312241 +734,-126,1988,15976,1981,-216,-4312,-575,1953,-908,-1766,2022-10-15 13:31:15.495248 +735,-126,1214,15707,1436,-294,-4063,-467,2093,-964,-1898,2022-10-15 13:31:15.724812 +736,-126,1017,16074,1513,-329,-3635,-361,2171,-974,-2005,2022-10-15 13:31:15.907082 +737,-126,1025,15666,1726,-185,-3261,-396,2232,-980,-2076,2022-10-15 13:31:16.135863 +738,-127,780,16103,1256,-311,-2747,-437,2272,-936,-2176,2022-10-15 13:31:16.316639 +739,-124,1200,16064,1385,-219,-1910,-237,2270,-842,-2263,2022-10-15 13:31:16.523783 +740,-126,1238,16094,1065,-43,145,-225,2210,-833,-2264,2022-10-15 13:31:16.729999 +741,-125,979,15860,1268,-78,400,-116,2289,-877,-2192,2022-10-15 13:31:16.935814 +742,-124,1216,15822,1438,-69,115,-160,2278,-825,-2288,2022-10-15 13:31:17.148471 +743,-127,1150,15856,1513,-22,137,-204,2244,-822,-2337,2022-10-15 13:31:17.355988 +744,-126,1327,15837,1386,-26,-49,-219,2225,-788,-2339,2022-10-15 13:31:17.563822 +745,-124,-290,15878,1178,-61,-14,-240,2232,-844,-2267,2022-10-15 13:31:17.772919 +746,-126,906,15926,1276,-156,5,-209,2258,-796,-2291,2022-10-15 13:31:17.989170 +747,-125,1363,15768,1757,-172,-2134,-353,2270,-829,-2337,2022-10-15 13:31:18.172586 +748,-127,1933,15828,1816,-214,-3861,-378,2312,-824,-2375,2022-10-15 13:31:18.354758 +749,-128,551,15812,1629,-258,-4103,-364,2233,-780,-2587,2022-10-15 13:31:18.537185 +750,-125,1401,15539,1431,-319,-4080,-589,2071,-706,-2819,2022-10-15 13:31:18.721452 +751,-124,1325,15448,1604,-247,-4004,-504,1878,-636,-2964,2022-10-15 13:31:18.902246 +752,-128,1357,15395,1580,-277,-4137,-429,1522,-474,-2995,2022-10-15 13:31:19.082891 +753,-125,603,16453,1651,-220,-3177,-456,1333,-488,-3112,2022-10-15 13:31:19.262960 +754,-126,614,16211,1253,-173,-1807,-277,1251,-530,-3196,2022-10-15 13:31:19.451427 +755,-126,701,15993,1228,-59,-225,-254,1193,-549,-3163,2022-10-15 13:31:19.631646 +756,-125,1226,15935,1163,-90,114,-199,1229,-550,-3234,2022-10-15 13:31:19.812361 +757,-125,1301,15844,1416,-8,107,-211,1182,-586,-3141,2022-10-15 13:31:19.993037 +758,-124,1146,15822,1249,-36,162,-201,1188,-556,-3212,2022-10-15 13:31:20.173825 +759,-126,1447,15877,1276,-76,165,-195,1212,-562,-3178,2022-10-15 13:31:20.353752 +760,-125,1106,15841,1364,-15,90,-202,1208,-526,-3147,2022-10-15 13:31:20.534780 +761,-125,690,15921,1175,-39,615,-149,1230,-541,-3176,2022-10-15 13:31:20.715937 +762,-126,1986,15653,1420,-9,317,-141,1224,-554,-3109,2022-10-15 13:31:20.896631 +763,-129,25,16059,1355,75,644,-104,1290,-526,-3163,2022-10-15 13:31:21.076625 +764,-126,552,16042,1301,110,2459,-38,1364,-514,-3206,2022-10-15 13:31:21.257713 +765,-126,768,15906,1383,90,3517,-6,1482,-450,-3093,2022-10-15 13:31:21.438975 +766,-125,470,16077,1843,240,4095,106,1650,-470,-2987,2022-10-15 13:31:21.619804 +767,-124,1347,16161,1742,207,4041,-207,1819,-506,-2906,2022-10-15 13:31:21.805558 +768,-128,1266,16105,1516,151,3965,29,2100,-632,-2758,2022-10-15 13:31:21.986880 +769,-125,1089,16411,1484,87,3729,12,2169,-676,-2631,2022-10-15 13:31:22.170282 +770,-125,1156,15641,1777,103,3448,-45,2165,-609,-2468,2022-10-15 13:31:22.351816 +771,-129,1955,15784,1482,92,2537,-8,2182,-668,-2327,2022-10-15 13:31:22.533855 +772,-125,3340,16025,1357,48,446,-184,2237,-728,-2264,2022-10-15 13:31:22.715902 +773,-128,524,15985,991,-115,230,-207,2194,-724,-2317,2022-10-15 13:31:22.899122 +774,-126,1319,15692,1416,-103,145,-175,2206,-742,-2296,2022-10-15 13:31:23.081380 +775,-124,1309,15798,1501,-43,48,-210,2193,-716,-2348,2022-10-15 13:31:23.262902 +776,-127,820,16043,1215,-22,210,-245,2221,-785,-2256,2022-10-15 13:31:23.452045 +777,-126,1266,15776,1282,-71,-82,-211,2250,-757,-2317,2022-10-15 13:31:23.632045 +778,-125,1153,15885,1326,-58,168,-206,2271,-751,-2310,2022-10-15 13:31:23.813099 +779,-125,1527,15802,1349,-46,144,-143,2220,-760,-2296,2022-10-15 13:31:23.993788 +780,-126,540,15864,1195,-52,611,-201,2209,-750,-2348,2022-10-15 13:31:24.173897 +781,-125,1026,15783,1417,-18,38,-153,2206,-732,-2340,2022-10-15 13:31:24.354571 +782,-126,1059,15922,1236,-72,43,-198,2225,-755,-2316,2022-10-15 13:31:24.535388 +783,-125,1424,15908,1320,-61,93,-184,2234,-760,-2265,2022-10-15 13:31:24.716464 +784,-128,1195,15845,1415,-46,5,-186,2162,-739,-2375,2022-10-15 13:31:24.897684 +785,-126,808,15999,1193,-73,237,-185,2210,-740,-2256,2022-10-15 13:31:25.076902 +786,-125,575,15848,1764,-72,128,-88,2200,-725,-2345,2022-10-15 13:31:25.257519 +787,-129,-222,16210,1340,135,2445,-41,2140,-684,-2263,2022-10-15 13:31:25.438681 +788,-123,436,16215,1503,163,4419,50,2119,-732,-2117,2022-10-15 13:31:25.619718 +789,-126,784,15769,1956,53,4586,113,2125,-813,-2041,2022-10-15 13:31:25.800964 +790,-123,1214,15805,1976,225,3912,158,1969,-785,-1989,2022-10-15 13:31:25.980772 +791,-126,1230,15859,1296,196,3507,57,1853,-760,-1870,2022-10-15 13:31:26.161405 +792,-124,1556,16113,1277,87,3352,-67,1767,-751,-1779,2022-10-15 13:31:26.341944 +793,-126,1309,15819,1746,58,3643,121,1639,-659,-1699,2022-10-15 13:31:26.528580 +794,-128,220,15914,1986,211,4034,114,1417,-535,-1592,2022-10-15 13:31:26.710894 +795,-126,1551,16047,1715,245,3949,-49,1092,-454,-1436,2022-10-15 13:31:26.907378 +796,-125,1603,15904,1699,262,4539,5,664,-328,-1502,2022-10-15 13:31:27.089167 +797,-123,1318,15664,1762,191,4285,154,211,-204,-1502,2022-10-15 13:31:27.271161 +798,-124,961,16263,1885,133,3992,-80,-227,-99,-1707,2022-10-15 13:31:27.457542 +799,-125,1324,16026,1576,160,3881,-66,-500,33,-1960,2022-10-15 13:31:27.640638 +800,-127,931,15750,1620,73,3479,-163,-664,89,-2189,2022-10-15 13:31:27.822242 +801,-124,1237,15963,1426,148,3070,-12,-735,149,-2403,2022-10-15 13:31:28.005042 +802,-125,1759,15676,1126,-31,1643,-119,-716,181,-2488,2022-10-15 13:31:28.190196 +803,-125,1726,15705,1393,-98,-262,-326,-667,165,-2533,2022-10-15 13:31:28.371831 +804,-125,-278,15880,1244,-95,85,-65,-608,91,-2467,2022-10-15 13:31:28.552894 +805,-125,780,15861,1221,-32,130,-287,-584,41,-2481,2022-10-15 13:31:28.733093 +806,-127,747,15848,1157,-37,150,-262,-579,92,-2415,2022-10-15 13:31:28.915303 +807,-125,798,15911,1285,-78,69,-241,-564,22,-2354,2022-10-15 13:31:29.096211 +808,-127,887,15823,1204,-16,90,-283,-580,20,-2407,2022-10-15 13:31:29.276129 +809,-123,1054,15874,1158,-70,85,-263,-591,38,-2447,2022-10-15 13:31:29.460436 +810,-126,983,15806,1365,-35,96,-281,-555,-3,-2452,2022-10-15 13:31:29.641459 +811,-126,1121,15755,1266,-39,102,-275,-557,16,-2496,2022-10-15 13:31:29.821994 +812,-127,1103,15932,1085,-10,83,-281,-545,52,-2472,2022-10-15 13:31:30.003532 +813,-125,2284,15626,1372,-59,-1251,-348,-499,-36,-2351,2022-10-15 13:31:30.183634 +814,-124,1474,15710,1091,-305,-3182,-454,-366,-188,-2257,2022-10-15 13:31:30.364621 +815,-126,1212,15847,1610,-343,-4250,-377,-179,-389,-2011,2022-10-15 13:31:30.546610 +816,-125,643,15698,1737,-264,-4551,-529,205,-590,-1764,2022-10-15 13:31:30.727163 +817,-127,754,16003,1436,-293,-4063,-401,627,-711,-1527,2022-10-15 13:31:30.907627 +818,-125,1417,15836,1748,-330,-4519,-394,1084,-811,-1448,2022-10-15 13:31:31.088718 +819,-127,1595,15784,1825,-347,-4897,-431,1569,-965,-1476,2022-10-15 13:31:31.275189 +820,-124,-199,16028,1932,-366,-4745,-379,1968,-1005,-1599,2022-10-15 13:31:31.462907 +821,-125,1543,15786,2082,-347,-4652,-530,2106,-1070,-1680,2022-10-15 13:31:31.644682 +822,-124,1187,15860,1691,-280,-3888,-406,2241,-1070,-1817,2022-10-15 13:31:31.825958 +823,-127,1177,15858,1496,-280,-4183,-466,2309,-1043,-1971,2022-10-15 13:31:32.007253 +824,-125,1357,15808,1895,-362,-4114,-430,2331,-993,-2035,2022-10-15 13:31:32.191403 +825,-126,743,16028,1846,-91,-3799,-461,2373,-950,-2103,2022-10-15 13:31:32.372941 +826,-126,1054,16288,1156,-295,-2639,-378,2391,-895,-2236,2022-10-15 13:31:32.555596 +827,-126,442,16160,1184,-275,-554,-211,2326,-824,-2299,2022-10-15 13:31:32.736868 +828,-125,1324,15615,1805,-67,142,-197,2341,-860,-2343,2022-10-15 13:31:32.921742 +829,-127,1204,15887,1503,39,133,-176,2367,-860,-2337,2022-10-15 13:31:33.102938 +830,-126,1079,16043,1052,226,106,-169,2353,-879,-2342,2022-10-15 13:31:33.284009 +831,-128,1254,15936,1281,-137,136,-176,2368,-888,-2355,2022-10-15 13:31:33.464886 +832,-123,1283,15902,1520,-45,138,-167,2278,-797,-2397,2022-10-15 13:31:33.645872 +833,-125,1165,15846,1347,-12,114,-172,2322,-850,-2375,2022-10-15 13:31:33.827059 +834,-125,1291,16035,1173,-63,5,-168,2368,-868,-2353,2022-10-15 13:31:34.007832 +835,-126,1054,15968,1324,-87,-186,-121,2363,-832,-2366,2022-10-15 13:31:34.188690 +836,-125,1310,15731,1413,-41,-163,-177,2317,-798,-2350,2022-10-15 13:31:34.369292 +837,-127,1306,15926,1313,-54,-180,-218,2341,-816,-2356,2022-10-15 13:31:34.550278 +838,-125,1920,16128,1617,-129,-2319,-283,2401,-866,-2323,2022-10-15 13:31:34.731701 +839,-123,775,16213,1718,-299,-3541,-354,2450,-864,-2581,2022-10-15 13:31:34.912330 +840,-124,1856,15836,1488,-235,-3751,-441,2398,-918,-2717,2022-10-15 13:31:35.092891 +841,-126,2158,16018,1682,-242,-3864,-426,2325,-936,-2846,2022-10-15 13:31:35.274165 +842,-123,682,15795,1742,-235,-3924,-390,2075,-798,-2996,2022-10-15 13:31:35.459226 +843,-126,769,15795,1548,-231,-3466,-374,1989,-930,-3087,2022-10-15 13:31:35.640429 +844,-126,1232,16239,1400,-244,-2838,-432,1676,-780,-3188,2022-10-15 13:31:35.820539 +845,-125,1171,16091,1353,-239,-1894,-326,1594,-763,-3225,2022-10-15 13:31:36.008850 +846,-125,499,15670,1207,-108,-697,-280,1155,-480,-3195,2022-10-15 13:31:36.191951 +847,-125,1072,15803,1292,-16,446,-147,1180,-539,-3141,2022-10-15 13:31:36.374310 +848,-126,1380,15966,1300,-50,188,-224,1236,-550,-3184,2022-10-15 13:31:36.556755 +849,-126,1234,15815,1333,-75,-225,-215,1238,-549,-3208,2022-10-15 13:31:36.738917 +850,-123,1387,15973,1133,-54,191,-184,1218,-538,-3223,2022-10-15 13:31:36.921908 +851,-126,910,15892,1196,-25,768,-155,1220,-583,-3189,2022-10-15 13:31:37.103686 +852,-126,887,15922,1284,-31,172,-192,1275,-580,-3134,2022-10-15 13:31:37.286529 +853,-125,779,15657,1426,-106,100,-181,1289,-553,-3160,2022-10-15 13:31:37.468143 +854,-126,1638,15815,1361,42,622,-186,1247,-579,-3130,2022-10-15 13:31:37.653688 +855,-125,345,16071,1411,158,2618,-4,1392,-572,-3136,2022-10-15 13:31:37.834594 +856,-124,435,16102,1623,157,3962,36,1495,-512,-3058,2022-10-15 13:31:38.015674 +857,-127,1459,15897,1704,196,4623,52,1677,-490,-2979,2022-10-15 13:31:38.196596 +858,-125,644,15813,1566,186,4418,207,1893,-539,-2828,2022-10-15 13:31:38.376984 +859,-127,1088,16007,1874,151,4058,62,2044,-570,-2734,2022-10-15 13:31:38.558319 +860,-126,1277,15419,1867,224,3654,-54,2092,-546,-2551,2022-10-15 13:31:38.739543 +861,-125,2142,15785,1352,176,3213,-6,2044,-542,-2397,2022-10-15 13:31:38.920973 +862,-123,1252,16199,1094,34,1959,-49,2156,-648,-2313,2022-10-15 13:31:39.100676 +863,-124,1583,16060,1119,-85,1069,-140,2162,-710,-2269,2022-10-15 13:31:39.281761 +864,-125,1225,16255,1075,-86,81,-200,2247,-788,-2238,2022-10-15 13:31:39.469582 +865,-122,1437,15903,1207,-60,165,-186,2234,-729,-2269,2022-10-15 13:31:39.650982 +866,-124,1416,15964,1221,-101,149,-167,2199,-752,-2307,2022-10-15 13:31:39.831472 +867,-123,1083,15949,1377,-25,94,-181,2215,-738,-2254,2022-10-15 13:31:40.011739 +868,-124,1213,15874,1263,-71,141,-205,2194,-714,-2340,2022-10-15 13:31:40.192716 +869,-124,1223,15909,1227,-63,107,-168,2168,-710,-2278,2022-10-15 13:31:40.375445 +870,-125,1083,15887,1370,-57,107,-187,2188,-730,-2284,2022-10-15 13:31:40.556813 +871,-124,1263,15975,1330,-54,111,-193,2173,-704,-2253,2022-10-15 13:31:40.743578 +872,-125,1113,15851,1294,-31,115,-187,2218,-723,-2253,2022-10-15 13:31:40.925938 +873,-123,1202,15910,1248,-74,142,-198,2191,-752,-2320,2022-10-15 13:31:41.108445 +874,-124,1226,15883,1269,-61,109,-181,2226,-701,-2265,2022-10-15 13:31:41.291954 +875,-124,1149,15919,1316,-57,115,-198,2205,-704,-2313,2022-10-15 13:31:41.476197 +876,-127,1211,15931,1333,-34,128,-184,2192,-766,-2344,2022-10-15 13:31:41.658112 +877,-128,1146,15898,1275,-55,120,-185,2248,-762,-2285,2022-10-15 13:31:41.840528 +878,-126,1209,15928,1290,-62,119,-199,2181,-758,-2328,2022-10-15 13:31:42.022731 +879,-122,1156,15917,1353,-63,114,-184,2166,-721,-2242,2022-10-15 13:31:42.205140 +880,-124,1209,15923,1329,-39,120,-178,2173,-754,-2299,2022-10-15 13:31:42.391008 +881,-126,1178,15887,1243,-60,132,-186,2206,-715,-2276,2022-10-15 13:31:42.572077 +882,-124,1171,15893,1262,-69,124,-186,2167,-690,-2293,2022-10-15 13:31:42.753248 +883,-128,1190,15939,1349,-39,115,-187,2202,-719,-2305,2022-10-15 13:31:42.934903 +884,-126,1182,15875,1515,-39,128,-179,2221,-714,-2317,2022-10-15 13:31:43.116488 +885,-126,1171,15865,1254,-63,128,-178,2188,-730,-2291,2022-10-15 13:31:43.298696 +886,-125,1179,15918,1288,-55,122,-198,2195,-743,-2319,2022-10-15 13:31:43.484408 +887,-122,1185,15934,1355,-36,109,-181,2199,-750,-2243,2022-10-15 13:31:43.665704 +888,-126,1194,15900,1291,-44,125,-183,2198,-744,-2284,2022-10-15 13:31:43.846860 +889,-126,1168,15902,1279,-74,120,-185,2172,-716,-2260,2022-10-15 13:31:44.028313 +890,-125,1162,15919,1353,-41,113,-186,2209,-708,-2256,2022-10-15 13:31:44.208795 +891,-122,1189,15905,1311,-53,118,-182,2195,-729,-2327,2022-10-15 13:31:44.390484 +892,-126,1166,15895,1252,-60,121,-188,2211,-716,-2344,2022-10-15 13:31:44.572701 +893,-125,1172,15917,1321,-45,121,-192,2161,-715,-2319,2022-10-15 13:31:44.754551 +894,-124,1163,15908,1323,-45,114,-189,2235,-726,-2262,2022-10-15 13:31:44.934876 +895,-126,1184,15900,1250,-63,122,-188,2190,-723,-2318,2022-10-15 13:31:45.115873 +896,-125,1182,15919,1044,-57,120,-192,2198,-707,-2310,2022-10-15 13:31:45.302553 +897,-125,1178,15929,1344,-48,118,-186,2170,-722,-2296,2022-10-15 13:31:45.485587 +898,-125,1193,15908,1331,-39,127,-183,2186,-745,-2314,2022-10-15 13:31:45.667691 +899,-125,1183,15889,1242,-57,117,-172,2166,-755,-2317,2022-10-15 13:31:45.849906 +900,-125,1181,15910,1305,-55,116,-180,2176,-732,-2312,2022-10-15 13:31:46.032496 +901,-124,1175,15936,1355,-44,116,-184,2138,-710,-2321,2022-10-15 13:31:46.216614 +902,-126,1195,15904,1297,-45,121,-188,2204,-721,-2309,2022-10-15 13:31:46.399230 +903,-127,1182,15893,1254,-69,120,-190,2166,-714,-2305,2022-10-15 13:31:46.581384 +904,-124,1183,15920,1337,-59,111,-192,2226,-733,-2260,2022-10-15 13:31:46.763807 +905,-124,1176,15940,1350,-46,121,-185,2223,-774,-2315,2022-10-15 13:31:46.951006 +906,-126,1208,15937,1305,-46,114,-183,2180,-688,-2277,2022-10-15 13:31:47.132167 +907,-124,1180,15857,1254,-75,114,-182,2183,-725,-2287,2022-10-15 13:31:47.313933 +908,-125,1163,15891,1295,-66,119,-191,2209,-704,-2296,2022-10-15 13:31:47.499036 +909,-124,1184,15945,1361,-43,112,-169,2235,-672,-2342,2022-10-15 13:31:47.681111 +910,-124,1178,15906,1298,-42,120,-177,2195,-736,-2321,2022-10-15 13:31:47.864932 +911,-124,1221,15882,1244,-57,121,-185,2176,-722,-2317,2022-10-15 13:31:48.046910 +912,-124,1172,15910,1357,-42,117,-191,2218,-696,-2311,2022-10-15 13:31:48.227152 +913,-125,1185,15958,1307,-40,106,-176,2211,-743,-2259,2022-10-15 13:31:48.407782 +914,-124,1149,15901,1273,-60,113,-194,2241,-692,-2303,2022-10-15 13:31:48.589193 +915,-125,1209,15923,1335,-53,115,-185,2204,-711,-2267,2022-10-15 13:31:48.772787 +916,-123,1182,15914,1313,-44,123,-181,2182,-708,-2254,2022-10-15 13:31:48.954872 +917,-122,1192,15879,1256,-69,113,-193,2220,-712,-2261,2022-10-15 13:31:49.135402 +918,-125,1212,15920,1351,-49,118,-170,2213,-699,-2251,2022-10-15 13:31:49.316398 +919,-125,1177,15942,1375,-42,126,-194,2213,-723,-2279,2022-10-15 13:31:49.500864 +920,-126,1310,15860,1240,-66,26,-204,2223,-761,-2330,2022-10-15 13:31:49.682411 +921,-123,1294,15939,1328,-35,121,-188,2214,-729,-2284,2022-10-15 13:31:49.863515 +922,-122,1328,15962,1289,-46,131,-180,2202,-728,-2289,2022-10-15 13:31:50.049811 +923,-123,1146,15914,1218,-63,116,-172,2222,-690,-2297,2022-10-15 13:31:50.232247 +924,-123,1193,15879,1284,-79,114,-182,2201,-730,-2255,2022-10-15 13:31:50.415612 +925,-124,1169,15900,1405,-64,99,-181,2204,-738,-2271,2022-10-15 13:31:50.597854 +926,-125,1170,15864,1352,-31,118,-186,2198,-730,-2260,2022-10-15 13:31:50.781348 +927,-125,1161,15911,1208,-57,119,-183,2220,-751,-2314,2022-10-15 13:31:50.964389 +928,-121,1165,15953,1237,-88,122,-180,2221,-734,-2309,2022-10-15 13:31:51.147626 +929,-123,1253,15925,1328,-45,113,-183,2251,-715,-2235,2022-10-15 13:31:51.330243 +930,-121,1154,15919,1394,-45,113,-177,2224,-728,-2274,2022-10-15 13:31:51.518274 +931,-123,1217,15934,1349,-29,107,-175,2232,-729,-2215,2022-10-15 13:31:51.703513 +932,-126,1115,15913,1238,-56,115,-191,2163,-732,-2265,2022-10-15 13:31:51.885910 +933,-125,1158,15925,1249,-59,124,-170,2201,-703,-2245,2022-10-15 13:31:52.067601 +934,-124,1166,15903,1365,-57,115,-182,2224,-743,-2262,2022-10-15 13:31:52.248940 +935,-123,1196,15853,1296,-65,117,-186,2178,-687,-2257,2022-10-15 13:31:52.431226 +936,-123,1174,15891,1300,-54,107,-185,2193,-693,-2268,2022-10-15 13:31:52.611969 +937,-124,1103,15919,1378,-25,108,-177,2230,-702,-2255,2022-10-15 13:31:52.793681 +938,-127,1161,16106,1288,-50,119,-189,2238,-685,-2202,2022-10-15 13:31:52.976018 +939,-125,1255,15925,1261,-79,124,-188,2216,-710,-2275,2022-10-15 13:31:53.157444 +940,-124,1154,15941,1350,-46,112,-176,2210,-689,-2246,2022-10-15 13:31:53.338173 +941,-124,1170,15905,1262,-59,111,-174,2194,-718,-2302,2022-10-15 13:31:53.519940 +942,-124,1200,15847,1292,-52,80,-173,2225,-714,-2307,2022-10-15 13:31:53.701389 +943,-122,1201,15939,1386,-54,116,-177,2181,-750,-2241,2022-10-15 13:31:53.883879 +944,-124,1145,15939,1334,-32,106,-174,2196,-739,-2293,2022-10-15 13:31:54.065517 +945,-126,1155,15893,1227,-63,135,-192,2205,-724,-2294,2022-10-15 13:31:54.245986 +946,-123,1295,15916,1335,-54,111,-180,2225,-752,-2244,2022-10-15 13:31:54.428548 +947,-124,1342,15908,1382,-36,23,-213,2221,-745,-2322,2022-10-15 13:31:54.609958 +948,-124,495,15763,1426,-101,-775,-163,2242,-767,-2339,2022-10-15 13:31:54.796500 +949,-124,1449,15723,1573,-68,-1268,-116,2289,-803,-2337,2022-10-15 13:31:54.978873 +950,-124,958,15586,1274,-136,-2973,-419,2344,-841,-2448,2022-10-15 13:31:55.161048 +951,-125,122,15825,1608,-301,-3427,-476,2432,-893,-2517,2022-10-15 13:31:55.345011 +952,-122,1369,15781,1722,-222,-3220,-405,2457,-995,-2649,2022-10-15 13:31:55.532143 +953,-123,1785,16162,1809,-164,-3144,-326,2431,-1036,-2806,2022-10-15 13:31:55.714750 +954,-124,1565,16000,1537,-204,-3227,-331,2259,-974,-2863,2022-10-15 13:31:55.896804 +955,-121,1526,16051,1331,-371,-3324,-466,1717,-517,-3083,2022-10-15 13:31:56.081022 +956,-126,591,15953,1701,-234,-2869,-399,1579,-605,-3094,2022-10-15 13:31:56.263596 +957,-121,1697,15850,1491,-227,-2028,-329,1448,-566,-3077,2022-10-15 13:31:56.450210 +958,-123,1094,15853,1289,-141,-1418,-295,1320,-614,-3141,2022-10-15 13:31:56.631185 +959,-122,764,15854,1092,-44,23,-205,1306,-638,-3173,2022-10-15 13:31:56.811820 +960,-124,1208,15877,1279,-77,268,-178,1327,-617,-3132,2022-10-15 13:31:56.993765 +961,-124,1126,15932,1372,-41,29,-186,1350,-625,-3124,2022-10-15 13:31:57.175327 +962,-122,1165,15851,1217,-24,200,-175,1324,-598,-3137,2022-10-15 13:31:57.356733 +963,-122,1204,15946,1178,-74,121,-184,1355,-612,-3158,2022-10-15 13:31:57.538053 +964,-125,1169,15905,1327,-49,121,-190,1341,-610,-3111,2022-10-15 13:31:57.718825 +965,-124,1082,15867,1253,-48,157,-179,1363,-570,-3193,2022-10-15 13:31:57.900329 +966,-124,1248,16028,976,-36,1337,-236,1371,-635,-3216,2022-10-15 13:31:58.082907 +967,-123,773,15992,1321,-110,485,-290,1380,-579,-3145,2022-10-15 13:31:58.264507 +968,-124,848,15982,1391,98,1988,-88,1407,-571,-3183,2022-10-15 13:31:58.445817 +969,-125,1156,16139,1313,116,2188,-75,1518,-570,-3042,2022-10-15 13:31:58.628201 +970,-124,971,16115,1243,24,2392,-50,1574,-521,-3035,2022-10-15 13:31:58.809896 +971,-123,1071,15951,1466,90,2736,-19,1668,-452,-2965,2022-10-15 13:31:58.991855 +972,-124,1432,15802,1425,135,2712,-136,1755,-432,-2840,2022-10-15 13:31:59.173573 +973,-121,1222,15812,1181,115,2897,-14,1937,-536,-2765,2022-10-15 13:31:59.355353 +974,-123,1694,15963,1269,139,2995,50,2059,-558,-2710,2022-10-15 13:31:59.548957 +975,-121,1226,16019,1276,39,2455,-69,2040,-574,-2608,2022-10-15 13:31:59.731874 +976,-122,1324,15986,1559,81,2389,-105,2127,-624,-2506,2022-10-15 13:31:59.916009 +977,-122,1500,15859,1560,113,2589,-46,2046,-566,-2491,2022-10-15 13:32:00.098732 +978,-123,2344,15945,1225,72,1917,-174,2115,-621,-2348,2022-10-15 13:32:00.281691 +979,-122,1743,15968,1118,-36,718,-183,2084,-618,-2251,2022-10-15 13:32:00.464941 +980,-124,865,15912,1392,-109,149,-189,2107,-615,-2271,2022-10-15 13:32:00.647609 +981,-123,1201,15768,1398,-44,161,-226,2032,-610,-2254,2022-10-15 13:32:00.831460 +982,-123,923,15896,1011,-24,843,-257,2106,-590,-2229,2022-10-15 13:32:01.013134 +983,-125,1926,15910,1237,-122,364,-188,2191,-757,-2267,2022-10-15 13:32:01.200382 +984,-122,1383,15922,1399,-73,-4,-194,2214,-792,-2304,2022-10-15 13:32:01.382442 +985,-125,891,15928,1346,-47,-28,-199,2261,-850,-2269,2022-10-15 13:32:01.564441 +986,-125,1120,15844,1275,-45,89,-165,2225,-810,-2296,2022-10-15 13:32:01.746110 +987,-125,1228,15874,1320,-44,125,-182,2221,-794,-2262,2022-10-15 13:32:01.932988 +988,-123,1137,15986,1309,-47,105,-159,2263,-785,-2199,2022-10-15 13:32:02.115007 +989,-123,1130,15941,1335,-49,116,-173,2287,-784,-2259,2022-10-15 13:32:02.296905 +990,-123,1209,15852,1269,-73,119,-168,2205,-771,-2292,2022-10-15 13:32:02.478911 +991,-123,1134,15853,1301,-75,120,-189,2240,-799,-2283,2022-10-15 13:32:02.660144 +992,-123,1392,15877,1458,-28,94,-187,2295,-753,-2246,2022-10-15 13:32:02.841331 +993,-122,1190,15916,1346,-25,122,-165,2261,-759,-2208,2022-10-15 13:32:03.022878 +994,-124,1006,15940,1283,-27,203,-187,2268,-807,-2223,2022-10-15 13:32:03.204775 +995,-124,2379,16217,1167,18,291,-282,2194,-702,-2198,2022-10-15 13:32:03.391156 +996,-125,1077,16056,1045,-58,613,-9,2179,-770,-2260,2022-10-15 13:32:03.571938 +997,-123,256,15646,1419,2,2241,8,2155,-686,-2165,2022-10-15 13:32:03.753691 +998,-120,608,15679,1772,120,2953,21,2247,-857,-2119,2022-10-15 13:32:03.934948 +999,-122,662,15530,1653,142,2968,103,2179,-875,-2029,2022-10-15 13:32:04.116121 diff --git a/code/rpi/src/lights.py b/code/rpi/src/lights.py new file mode 100644 index 0000000..e15f109 --- /dev/null +++ b/code/rpi/src/lights.py @@ -0,0 +1,20 @@ +import serial +import time +import sys + +if __name__ == '__main__': + try: + try: + s = serial.Serial('/dev/ttyUSB0', 9600) + time.sleep(2) + if sys.argv[1] == "--on": + s.write(b'1') + elif sys.argv[1] == "--off": + s.write(b'0') + except IndexError: + print("missing arg '--on' or --off") + except Exception: + print("Check arduino connection!") + except KeyboardInterrupt: + s.close() + diff --git a/code/rpi/src/move.py b/code/rpi/src/move.py new file mode 100644 index 0000000..8bb292e --- /dev/null +++ b/code/rpi/src/move.py @@ -0,0 +1,172 @@ +from multiprocessing import Process +from picamera import PiCamera +import RPi.GPIO as GPIO +import time +import pigpio +import sys +import serial + +#pins +base = 21 +sholder = 16 +elbow = 12 +wrist = 20 +wrist_2 = 25 +gripper = 24 +buzzer = 23 +pi = pigpio.pi() +camera = PiCamera(resolution=(640, 480), framerate=24) + +def lights(option): + try: + if option == "on": + s = serial.Serial('/dev/ttyUSB0', 9600) + time.sleep(2) + s.write(b'1') + elif option == "off": + s = serial.Serial('/dev/ttyUSB0', 9600) + time.sleep(2) + s.write(b"0") + s.close() + except Exception: + print("Check arduino connection!") + +def start_camera(): + camera.rotation = 180 +# camera.start_recording('marker2.h264') + camera.start_preview() + +def stop_camera(): +# camera.stop_recording() + camera.stop_preview() + +def init(): + GPIO.setmode(GPIO.BCM) + GPIO.setup(sholder, GPIO.OUT) + GPIO.setup(elbow, GPIO.OUT) + GPIO.setup(wrist, GPIO.OUT) + GPIO.setup(buzzer, GPIO.OUT) + +def make_buzzer_sound(): + GPIO.output(buzzer, 1) + time.sleep(0.2) + GPIO.output(buzzer, 0) + +def move_base(base, direction): + #cw = 1550 + #ccw = 1430 + pi.set_servo_pulsewidth(base, direction) + prt = "sent pulse to {0}: value {1}".format(base, direction) +# print(prt) + +def move_joint(joint, from_pwm, to_pwm, reverse): + + if reverse == True: + step = 5 + else: + step = -5 + + for pulse in range(from_pwm, to_pwm, step): + pi.set_servo_pulsewidth(joint, pulse) + time.sleep(0.01) + prt = "sent pulse to {0}: {1}".format(joint, pulse) +# print(prt) + + pi.set_servo_pulsewidth(joint, 0) + prt = "sent pulse to {0}: {1}".format(joint, 0) +# print(prt) + +if __name__ == '__main__': + + #init + init() + lights("on") + start_camera() + counter = 0 + time.sleep(1) + + if len(sys.argv) > 1: + reps = int(sys.argv[1]) + else: + reps = 1 + + while counter < reps: + #buzzer + make_buzzer_sound() + + #sholder + s = Process(target=move_joint, args=(sholder, 800, 900, False)) + s.start() + + #elbow + e = Process(target=move_joint, args=(elbow, 2400, 2300, False)) + e.start() + + #wrist + w = Process(target=move_joint, args=(wrist, 900, 1000, False)) + w.start() + + #base + if counter%2 == 0: + direction=1420 + else: + direction=1560 + + b = Process(target=move_base, args=(base, direction)) + b.start() + b.join() + + time.sleep(2.5) + + b = Process(target=move_base, args=(base, 0)) + b.start() + b.join() + + s.join() + e.join() + w.join() + + #buzzer + make_buzzer_sound() + + #sholder + s = Process(target=move_joint, args=(sholder, 900, 800, True)) + s.start() + + #elbow + e = Process(target=move_joint, args=(elbow, 2400, 2300, True)) + e.start() + + #wrist + w = Process(target=move_joint, args=(wrist, 1000, 900, True)) + w.start() + + #base + if counter%2 == 0: + direction=1560 + else: + direction=1420 + + b = Process(target=move_base, args=(base, direction)) + b.start() + b.join() + + time.sleep(2.5) + + b = Process(target=move_base, args=(base, 0)) + b.start() + b.join() + + s.join() + e.join() + w.join() + + counter+=1 + +#end program with double buzzer +time.sleep(1) +lights("off") +stop_camera() +make_buzzer_sound() +time.sleep(0.1) +make_buzzer_sound()