From 67e16548aed719659a0c14c645ebcf99843c097e Mon Sep 17 00:00:00 2001 From: Tony White Date: Tue, 19 Dec 2023 21:27:48 -1000 Subject: [PATCH] testing backend side-script, first field testing succesful, now drawing too-scale circles based on measured depth, beam angle for ping2. Coloring according to depth, static mapping --- app/main.py | 91 +- app/sensordata.csv | 3459 ------------------------ app/static/.DS_Store | Bin 6148 -> 6148 bytes app/static/index.html | 125 +- app/static/js/.DS_Store | Bin 0 -> 6148 bytes app/static/js/leaflet-heat.js | 223 +- app/static/js/leaflet-heat_bug.js | 11 + app/static/js/leaflet.rotatedMarker.js | 57 + app/testing.py | 31 + 9 files changed, 249 insertions(+), 3748 deletions(-) delete mode 100644 app/sensordata.csv create mode 100644 app/static/js/.DS_Store create mode 100644 app/static/js/leaflet-heat_bug.js create mode 100644 app/static/js/leaflet.rotatedMarker.js create mode 100644 app/testing.py diff --git a/app/main.py b/app/main.py index 87ddfd4..fbf1220 100644 --- a/app/main.py +++ b/app/main.py @@ -1,80 +1,65 @@ -from flask import Flask, render_template, send_file, jsonify -import requests -import csv -import time -import threading - -from datetime import datetime - -app = Flask(__name__, static_url_path="/static", static_folder="static") - -# Global variable to control the logging -logging_active = False -distance_url = 'http://192.168.1.59:6040/mavlink/vehicles/1/components/194/messages/DISTANCE_SENSOR' -gps_url = 'http://192.168.1.59:6040/mavlink/vehicles/1/components/1/messages/GLOBAL_POSITION_INT' +from flask import Flask, render_template, send_file, jsonify #used as back-end service for Vue2 WebApp +import requests #used to communicate with Vue2 app +import csv #used to work with output data file +import time #used for getting current OS time +import threading #used to run main app within a thread +import math #used for yaw radian to degree calc +from datetime import datetime #used for timestamps + +app = Flask(__name__, static_url_path="/static", static_folder="static") #setup flask app + +logging_active = False# Global variable to control the logging +distance_url = 'http://10.144.19.16:6040/mavlink/vehicles/1/components/194/messages/DISTANCE_SENSOR' #10.144.19.16 +gps_url = 'http://10.144.19.16:6040/mavlink/vehicles/1/components/1/messages/GLOBAL_POSITION_INT' +yaw_url= 'http://10.144.19.16/mavlink2rest/mavlink/vehicles/1/components/1/messages/ATTITUDE' log_file = 'sensordata.csv' -log_rate = 2 +log_rate = 2 #Desired rate in Hz data = [] row_counter = 0 -# Define the feedback interval (in seconds) -feedback_interval = 5 - -# Initialize a counter for the number of rows added +feedback_interval = 5 # Define the feedback interval (in seconds) def main(): global row_counter global data - # Main loop for logging data - while (logging_active == True): - try: - # Send GET requests to the REST APIs + while (logging_active == True): # Main loop for logging data + try: # Send GET requests to the REST APIs distance_response = requests.get(distance_url) gps_response = requests.get(gps_url) - - # Check if the requests were successful - if distance_response.status_code == 200 and gps_response.status_code == 200: - # Extract the data from the responses - distance_data = distance_response.json()['message'] + yaw_response = requests.get(yaw_url) + if distance_response.status_code == 200 and gps_response.status_code == 200 and yaw_response.status_code == 200: # Check if the requests were successful + distance_data = distance_response.json()['message'] # Extract the data from the responses gps_data = gps_response.json()['message'] - - # Define the column labels for the log file - column_labels = ['Unix Timestamp', 'Year', 'Month', 'Day', 'Hour', 'Minute', 'Second', 'Distance (cm)', 'Latitude', 'Longitude', "Confidence (%)"] - - # Extract the values for each column + yaw_data = yaw_response.json()['message'] + column_labels = ['Unix Timestamp', 'Date', 'Time','Distance (cm)', 'Confidence (%)', 'Yaw (deg)','Latitude', 'Longitude'] timestamp = int(time.time() * 1000) # Convert current time to milliseconds dt = datetime.fromtimestamp(timestamp / 1000) # Convert timestamp to datetime object unix_timestamp = timestamp - year, month, day, hour, minute, second = dt.year, dt.month, dt.day, dt.hour, dt.minute, dt.second + timenow = dt.strftime('%H:%M:%S') + date = dt.strftime('%m/%d/%y') distance = distance_data['current_distance'] confidence = distance_data['signal_quality'] + yawRad = yaw_data['yaw'] + yawDeg = math.degrees(yawRad) + yaw = round(((yawDeg + 360) % 360),2) latitude = gps_data['lat'] / 1e7 longitude = gps_data['lon'] / 1e7 - column_values = [unix_timestamp, year, month, day, hour, minute, second, distance, latitude, longitude, confidence] + column_values = [unix_timestamp, date, timenow, distance, confidence, yaw, latitude, longitude] data = column_values - # Create or append to the log file and write the data - with open(log_file, 'a', newline='') as csvfile: + with open(log_file, 'a', newline='') as csvfile: # Create or append to the log file and write the data writer = csv.writer(csvfile) - - # Write the column labels as the header row (only for the first write) - if csvfile.tell() == 0: + if csvfile.tell() == 0: # Write the column labels as the header row (only for the first write) writer.writerow(column_labels) - - # Write the data as a new row - writer.writerow(column_values) - - # Increment the row counter - row_counter += 1 + writer.writerow(column_values) # Write the data as a new row + row_counter += 1 # Increment the row counter else: # Print an error message if any of the requests were unsuccessful - print(f"Error: Distance - {distance_response.status_code} - {distance_response.reason}") - print(f"Error: GPS - {gps_response.status_code} - {gps_response.reason}") + print(f"Error: Ping2 Data - {distance_response.status_code} - {distance_response.reason}") + print(f"Error: GPS Data - {gps_response.status_code} - {gps_response.reason}") + print(f"Error: Attitude Data - {yaw_response.status_code} - {yaw_response.reason}") - # Provide feedback every 5 seconds if row_counter % (log_rate * feedback_interval) == 0: print(f"Rows added to CSV: {row_counter}") - - # Wait for the specified log rate time.sleep(1 / log_rate) except Exception as e: @@ -111,5 +96,9 @@ def get_data(): global data return jsonify(data) +@app.route('/status', methods=['GET']) +def status(): + return {"logging_active": logging_active} + if __name__ == '__main__': app.run(host='0.0.0.0', port=8000) \ No newline at end of file diff --git a/app/sensordata.csv b/app/sensordata.csv deleted file mode 100644 index 30d4671..0000000 --- a/app/sensordata.csv +++ /dev/null @@ -1,3459 +0,0 @@ -Unix Timestamp,Year,Month,Day,Hour,Minute,Second,Distance (cm),Latitude,Longitude,Confidence -1701739314229,2023,12,4,15,21,54,508,19.72834,-155.9893253,40 -1701739315050,2023,12,4,15,21,55,534,19.7283402,-155.9893253,45 -1701739315861,2023,12,4,15,21,55,631,19.7283404,-155.9893256,51 -1701739316787,2023,12,4,15,21,56,673,19.7283406,-155.9893259,41 -1701739317721,2023,12,4,15,21,57,730,19.7283409,-155.989326,19 -1701739318529,2023,12,4,15,21,58,773,19.728341,-155.989326,31 -1701739319420,2023,12,4,15,21,59,943,19.7283413,-155.9893261,8 -1701739320365,2023,12,4,15,22,0,863,19.7283413,-155.9893264,1 -1701739321295,2023,12,4,15,22,1,786,19.7283414,-155.9893265,1 -1701739322010,2023,12,4,15,22,2,725,19.7283414,-155.9893268,1 -1701739322931,2023,12,4,15,22,2,764,19.7283412,-155.989327,9 -1701739323955,2023,12,4,15,22,3,817,19.7283412,-155.9893271,1 -1701739324776,2023,12,4,15,22,4,859,19.7283409,-155.9893271,1 -1701739325494,2023,12,4,15,22,5,976,19.7283408,-155.989327,1 -1701739326517,2023,12,4,15,22,6,1036,19.7283404,-155.9893266,21 -1701739327436,2023,12,4,15,22,7,1023,19.7283402,-155.9893264,1 -1701739328358,2023,12,4,15,22,8,1121,19.72834,-155.9893265,10 -1701739329281,2023,12,4,15,22,9,1035,19.7283399,-155.9893265,1 -1701739330101,2023,12,4,15,22,10,1199,19.7283397,-155.9893265,38 -1701739330842,2023,12,4,15,22,10,1260,19.7283397,-155.9893263,28 -1701739331840,2023,12,4,15,22,11,1254,19.7283397,-155.9893262,1 -1701739332660,2023,12,4,15,22,12,1017,19.7283397,-155.9893261,1 -1701739333653,2023,12,4,15,22,13,1103,19.7283396,-155.9893256,14 -1701739334710,2023,12,4,15,22,14,1083,19.7283396,-155.9893251,11 -1701739335529,2023,12,4,15,22,15,1342,19.7283396,-155.9893249,10 -1701739336346,2023,12,4,15,22,16,1396,19.7283395,-155.9893245,27 -1701739337267,2023,12,4,15,22,17,1560,19.7283395,-155.9893242,1 -1701739338189,2023,12,4,15,22,18,1453,19.7283394,-155.9893238,1 -1701739339113,2023,12,4,15,22,19,1413,19.7283394,-155.9893235,12 -1701739340032,2023,12,4,15,22,20,1370,19.7283392,-155.9893231,1 -1701739340901,2023,12,4,15,22,20,1412,19.7283391,-155.9893229,1 -1701739341772,2023,12,4,15,22,21,272,19.7283391,-155.989323,58 -1701739342490,2023,12,4,15,22,22,301,19.7283393,-155.9893231,54 -1701739343466,2023,12,4,15,22,23,360,19.7283393,-155.9893232,45 -1701739344435,2023,12,4,15,22,24,422,19.7283393,-155.9893233,56 -1701739345510,2023,12,4,15,22,25,454,19.7283392,-155.9893235,22 -1701739346239,2023,12,4,15,22,26,499,19.7283391,-155.9893234,36 -1701739346918,2023,12,4,15,22,26,542,19.7283391,-155.9893233,26 -1701739347539,2023,12,4,15,22,27,601,19.7283391,-155.9893233,11 -1701739348343,2023,12,4,15,22,28,612,19.728339,-155.9893233,33 -1701739349033,2023,12,4,15,22,29,605,19.7283391,-155.9893232,1 -1701739349722,2023,12,4,15,22,29,582,19.7283392,-155.9893232,13 -1701739350274,2023,12,4,15,22,30,609,19.7283394,-155.9893231,11 -1701739350846,2023,12,4,15,22,30,651,19.7283394,-155.9893232,32 -1701739351420,2023,12,4,15,22,31,693,19.7283395,-155.9893233,41 -1701739351979,2023,12,4,15,22,31,714,19.7283396,-155.9893233,23 -1701739352770,2023,12,4,15,22,32,717,19.7283399,-155.9893231,26 -1701739353549,2023,12,4,15,22,33,943,19.7283401,-155.9893232,11 -1701739354267,2023,12,4,15,22,34,1069,19.7283403,-155.9893232,52 -1701739355087,2023,12,4,15,22,35,1126,19.7283405,-155.9893232,51 -1701739356110,2023,12,4,15,22,36,304,19.7283405,-155.989323,56 -1701739357136,2023,12,4,15,22,37,394,19.7283404,-155.989323,8 -1701740291858,2023,12,4,15,38,11,1559,19.7283865,-155.9893384,1 -1701740292790,2023,12,4,15,38,12,1757,19.7283861,-155.9893382,22 -1701740293710,2023,12,4,15,38,13,1789,19.7283854,-155.9893382,22 -1701740294530,2023,12,4,15,38,14,2031,19.728385,-155.9893383,1 -1701740295556,2023,12,4,15,38,15,2187,19.7283845,-155.989338,25 -1701740296476,2023,12,4,15,38,16,2391,19.7283841,-155.9893376,12 -1701740297296,2023,12,4,15,38,17,408,19.7283835,-155.9893372,57 -1701740298114,2023,12,4,15,38,18,441,19.7283831,-155.9893371,24 -1701740298935,2023,12,4,15,38,18,479,19.7283825,-155.989337,28 -1701740299885,2023,12,4,15,38,19,610,19.7283822,-155.989337,63 -1701740300778,2023,12,4,15,38,20,677,19.7283819,-155.9893375,61 -1701740301595,2023,12,4,15,38,21,795,19.7283817,-155.9893378,23 -1701740302516,2023,12,4,15,38,22,795,19.7283814,-155.989338,1 -1701740303401,2023,12,4,15,38,23,825,19.7283816,-155.9893373,10 -1701740597740,2023,12,4,15,43,17,8138,19.7283376,-155.9893323,1 -1701740598654,2023,12,4,15,43,18,7038,19.7283375,-155.9893323,1 -1701740599574,2023,12,4,15,43,19,6965,19.7283373,-155.989332,1 -1701740600587,2023,12,4,15,43,20,7146,19.7283371,-155.9893319,1 -1701740601519,2023,12,4,15,43,21,466,19.7283368,-155.989332,42 -1701740602339,2023,12,4,15,43,22,520,19.7283368,-155.9893324,10 -1701740603156,2023,12,4,15,43,23,624,19.7283368,-155.9893324,12 -1701740603767,2023,12,4,15,43,23,552,19.7283368,-155.9893323,1 -1701740604489,2023,12,4,15,43,24,660,19.7283368,-155.9893322,1 -1701740605263,2023,12,4,15,43,25,683,19.7283366,-155.9893319,28 -1701740606073,2023,12,4,15,43,26,799,19.7283364,-155.9893316,50 -1701740606761,2023,12,4,15,43,26,881,19.7283364,-155.9893316,44 -1701740607484,2023,12,4,15,43,27,1027,19.7283365,-155.9893316,50 -1701740608181,2023,12,4,15,43,28,1175,19.7283366,-155.9893315,26 -1701740608859,2023,12,4,15,43,28,1190,19.7283367,-155.9893314,23 -1701740609543,2023,12,4,15,43,29,1256,19.7283368,-155.9893314,1 -1701740610098,2023,12,4,15,43,30,1272,19.7283368,-155.9893315,1 -1701740610658,2023,12,4,15,43,30,1337,19.7283367,-155.9893315,1 -1701740611246,2023,12,4,15,43,31,1247,19.7283367,-155.9893315,1 -1701740611811,2023,12,4,15,43,31,1437,19.7283368,-155.9893314,9 -1701740858672,2023,12,4,15,47,38,316,19.7283362,-155.989331,50 -1701740859509,2023,12,4,15,47,39,354,19.7283362,-155.9893313,29 -1701740860199,2023,12,4,15,47,40,397,19.7283359,-155.9893316,35 -1701740861013,2023,12,4,15,47,41,394,19.7283355,-155.9893319,1 -1701740861703,2023,12,4,15,47,41,465,19.7283351,-155.9893323,18 -1701740865303,2023,12,4,15,47,45,720,19.7283342,-155.9893328,32 -1701740866329,2023,12,4,15,47,46,877,19.7283341,-155.9893331,36 -1701740867350,2023,12,4,15,47,47,955,19.7283341,-155.9893336,37 -1701740868382,2023,12,4,15,47,48,912,19.728334,-155.9893341,1 -1701740869194,2023,12,4,15,47,49,300,19.7283338,-155.9893344,56 -1701740870015,2023,12,4,15,47,50,351,19.7283337,-155.9893346,32 -1701740870937,2023,12,4,15,47,50,384,19.7283336,-155.9893349,53 -1701740871818,2023,12,4,15,47,51,452,19.7283331,-155.9893357,23 -1701740872763,2023,12,4,15,47,52,601,19.7283327,-155.9893362,11 -1701740873598,2023,12,4,15,47,53,648,19.7283327,-155.9893362,1 -1701740874521,2023,12,4,15,47,54,639,19.7283328,-155.9893362,19 -1701740875340,2023,12,4,15,47,55,816,19.7283328,-155.9893364,9 -1701740876231,2023,12,4,15,47,56,1064,19.7283328,-155.9893366,14 -1701740876979,2023,12,4,15,47,56,290,19.7283327,-155.9893367,61 -1701740877796,2023,12,4,15,47,57,348,19.7283327,-155.9893371,21 -1701741238572,2023,12,4,15,53,58,920,19.7283508,-155.9893671,28 -1701741239370,2023,12,4,15,53,59,1024,19.7283505,-155.989367,23 -1701741240015,2023,12,4,15,54,0,1116,19.7283504,-155.989367,22 -1701741240911,2023,12,4,15,54,0,1203,19.7283504,-155.9893666,1 -1701741241730,2023,12,4,15,54,1,1219,19.7283508,-155.9893657,1 -1701741242650,2023,12,4,15,54,2,965,19.728351,-155.9893651,1 -1701741243674,2023,12,4,15,54,3,986,19.7283514,-155.9893645,1 -1701741244699,2023,12,4,15,54,4,1214,19.7283518,-155.9893639,1 -1701741245722,2023,12,4,15,54,5,1484,19.728352,-155.9893634,9 -1701741246644,2023,12,4,15,54,6,1730,19.7283521,-155.9893631,25 -1701741247565,2023,12,4,15,54,7,1866,19.7283524,-155.9893627,1 -1701741248795,2023,12,4,15,54,8,1889,19.7283524,-155.9893622,1 -1701741249717,2023,12,4,15,54,9,2138,19.7283525,-155.989362,1 -1701741250741,2023,12,4,15,54,10,2204,19.7283527,-155.9893616,37 -1701741251560,2023,12,4,15,54,11,2435,19.7283528,-155.9893611,11 -1701741488696,2023,12,4,15,58,8,492,19.7283556,-155.9893343,1 -1701741489373,2023,12,4,15,58,9,549,19.7283556,-155.9893342,23 -1701741490069,2023,12,4,15,58,10,612,19.7283556,-155.989334,69 -1701741490740,2023,12,4,15,58,10,650,19.7283556,-155.9893339,39 -1701741491546,2023,12,4,15,58,11,678,19.7283556,-155.9893339,54 -1701741492116,2023,12,4,15,58,12,749,19.7283556,-155.9893341,68 -1701741493015,2023,12,4,15,58,13,862,19.7283555,-155.9893339,40 -1701741494062,2023,12,4,15,58,14,914,19.7283552,-155.9893336,12 -1701741494984,2023,12,4,15,58,14,1034,19.7283549,-155.9893335,1 -1701741496020,2023,12,4,15,58,16,1090,19.7283546,-155.9893337,1 -1701741496929,2023,12,4,15,58,16,1330,19.7283545,-155.9893347,26 -1701741722213,2023,12,4,16,2,2,991,19.7283468,-155.9893612,20 -1701741722961,2023,12,4,16,2,2,1090,19.7283467,-155.989362,30 -1701741723953,2023,12,4,16,2,3,291,19.7283468,-155.9893628,39 -1701741724670,2023,12,4,16,2,4,391,19.7283468,-155.9893631,22 -1701741725695,2023,12,4,16,2,5,444,19.7283468,-155.9893639,23 -1701741961425,2023,12,4,16,6,1,862,19.7283431,-155.9893193,39 -1701741962283,2023,12,4,16,6,2,912,19.7283429,-155.989319,44 -1701741963264,2023,12,4,16,6,3,887,19.7283424,-155.9893179,1 -1701741964082,2023,12,4,16,6,4,842,19.728342,-155.9893167,12 -1701741964936,2023,12,4,16,6,4,997,19.7283413,-155.9893158,1 -1701741965823,2023,12,4,16,6,5,1007,19.7283408,-155.9893152,1 -1701741966642,2023,12,4,16,6,6,1183,19.7283404,-155.9893145,62 -1701741967566,2023,12,4,16,6,7,280,19.7283402,-155.9893139,52 -1701741968486,2023,12,4,16,6,8,1188,19.7283399,-155.9893132,65 -1701742273142,2023,12,4,16,11,13,665,19.7283415,-155.9893302,13 -1701742274057,2023,12,4,16,11,14,628,19.7283415,-155.9893305,1 -1701742274973,2023,12,4,16,11,14,607,19.7283416,-155.9893304,1 -1701742275895,2023,12,4,16,11,15,644,19.7283416,-155.9893302,1 -1701742276917,2023,12,4,16,11,16,709,19.7283415,-155.9893302,9 -1701742277943,2023,12,4,16,11,17,801,19.7283412,-155.9893301,1 -1701742278863,2023,12,4,16,11,18,800,19.728341,-155.9893299,20 -1701742279888,2023,12,4,16,11,19,822,19.7283408,-155.9893296,1 -1701742280541,2023,12,4,16,11,20,939,19.7283407,-155.9893295,1 -1701742311941,2023,12,4,16,11,51,5457,19.728336,-155.9893193,1 -1701742312860,2023,12,4,16,11,52,5919,19.7283359,-155.9893189,11 -1701742313782,2023,12,4,16,11,53,6518,19.7283358,-155.9893184,1 -1701742314704,2023,12,4,16,11,54,5999,19.7283357,-155.9893182,8 -1701742315527,2023,12,4,16,11,55,6087,19.7283357,-155.9893181,1 -1701742316343,2023,12,4,16,11,56,6285,19.7283356,-155.9893177,10 -1701742317262,2023,12,4,16,11,57,6527,19.7283355,-155.9893172,1 -1701742318084,2023,12,4,16,11,58,7158,19.7283353,-155.9893167,23 -1701742449769,2023,12,4,16,14,9,4850,19.7283432,-155.9893273,48 -1701742450459,2023,12,4,16,14,10,5053,19.7283432,-155.9893274,11 -1701742451146,2023,12,4,16,14,11,5177,19.728343,-155.9893273,20 -1701742451796,2023,12,4,16,14,11,431,19.7283429,-155.9893274,21 -1701742452532,2023,12,4,16,14,12,470,19.7283428,-155.9893275,31 -1701742453453,2023,12,4,16,14,13,466,19.7283429,-155.9893277,1 -1701742454274,2023,12,4,16,14,14,4632,19.7283429,-155.9893284,58 -1701742455193,2023,12,4,16,14,15,4718,19.7283431,-155.9893289,66 -1701742456218,2023,12,4,16,14,16,4795,19.7283432,-155.9893292,70 -1701742457001,2023,12,4,16,14,17,5341,19.7283432,-155.9893294,21 -1701742457600,2023,12,4,16,14,17,329,19.7283433,-155.9893295,52 -1701742458246,2023,12,4,16,14,18,350,19.7283435,-155.9893295,38 -1701742564886,2023,12,4,16,16,4,476,19.7283384,-155.98933,47 -1701742565685,2023,12,4,16,16,5,522,19.7283384,-155.9893307,9 -1701742566711,2023,12,4,16,16,6,539,19.7283386,-155.9893315,29 -1701742567630,2023,12,4,16,16,7,601,19.7283386,-155.9893321,18 -1701742568554,2023,12,4,16,16,8,756,19.7283389,-155.9893326,10 -1701742569473,2023,12,4,16,16,9,719,19.7283392,-155.9893328,1 -1701742570245,2023,12,4,16,16,10,853,19.7283395,-155.989333,11 -1701742702007,2023,12,4,16,18,22,633,19.7283425,-155.9893142,13 -1701742702682,2023,12,4,16,18,22,713,19.7283425,-155.9893146,24 -1701742703367,2023,12,4,16,18,23,788,19.7283425,-155.9893148,10 -1701742703969,2023,12,4,16,18,23,861,19.7283425,-155.989315,18 -1701742704950,2023,12,4,16,18,24,938,19.7283426,-155.9893153,17 -1701742705770,2023,12,4,16,18,25,908,19.7283427,-155.9893157,1 -1701742706693,2023,12,4,16,18,26,922,19.7283427,-155.9893162,13 -1701742707547,2023,12,4,16,18,27,664,19.7283428,-155.9893163,1 -1701742708700,2023,12,4,16,18,28,574,19.728343,-155.9893164,1 -1701742709660,2023,12,4,16,18,29,605,19.7283432,-155.9893166,1 -1701742710378,2023,12,4,16,18,30,549,19.7283433,-155.989317,1 -1701742711196,2023,12,4,16,18,31,585,19.7283431,-155.9893177,13 -1701742712109,2023,12,4,16,18,32,643,19.7283427,-155.9893189,69 -1701742712915,2023,12,4,16,18,32,794,19.7283425,-155.9893198,1 -1701742713756,2023,12,4,16,18,33,844,19.7283424,-155.9893203,22 -1701742714678,2023,12,4,16,18,34,899,19.7283424,-155.9893207,11 -1701742715598,2023,12,4,16,18,35,1040,19.7283424,-155.9893214,36 -1701742716624,2023,12,4,16,18,36,928,19.7283423,-155.9893223,1 -1701742717443,2023,12,4,16,18,37,919,19.7283423,-155.989323,1 -1701742718263,2023,12,4,16,18,38,969,19.7283425,-155.9893238,12 -1701742719184,2023,12,4,16,18,39,1090,19.7283425,-155.9893244,14 -1701742720207,2023,12,4,16,18,40,285,19.7283425,-155.9893254,1 -1701742721028,2023,12,4,16,18,41,350,19.7283425,-155.9893265,21 -1701742721947,2023,12,4,16,18,41,441,19.7283425,-155.9893274,50 -1701742722684,2023,12,4,16,18,42,540,19.7283423,-155.9893279,14 -1701742723700,2023,12,4,16,18,43,569,19.7283421,-155.9893286,8 -1701742724612,2023,12,4,16,18,44,527,19.7283419,-155.9893293,1 -1701742725532,2023,12,4,16,18,45,502,19.7283417,-155.9893304,1 -1701742726427,2023,12,4,16,18,46,578,19.7283416,-155.9893314,1 -1701742727070,2023,12,4,16,18,47,630,19.7283416,-155.9893319,1 -1701742727986,2023,12,4,16,18,47,633,19.7283412,-155.9893325,12 -1701742728885,2023,12,4,16,18,48,663,19.7283409,-155.9893333,1 -1701742729834,2023,12,4,16,18,49,686,19.7283409,-155.9893338,1 -1701742730613,2023,12,4,16,18,50,819,19.7283409,-155.9893346,11 -1701742731359,2023,12,4,16,18,51,624,19.7283408,-155.9893349,1 -1701742732093,2023,12,4,16,18,52,583,19.7283408,-155.9893353,1 -1701742733032,2023,12,4,16,18,53,692,19.7283408,-155.9893358,34 -1701742733828,2023,12,4,16,18,53,702,19.7283406,-155.989336,23 -1701742734850,2023,12,4,16,18,54,744,19.7283404,-155.9893365,1 -1701742735619,2023,12,4,16,18,55,747,19.7283402,-155.9893371,55 -1701742736474,2023,12,4,16,18,56,946,19.7283402,-155.9893373,23 -1701742737205,2023,12,4,16,18,57,1083,19.7283402,-155.9893376,19 -1701742738031,2023,12,4,16,18,58,1263,19.7283401,-155.9893375,22 -1701742738950,2023,12,4,16,18,58,858,19.7283398,-155.9893378,1 -1701742739773,2023,12,4,16,18,59,885,19.7283397,-155.9893382,1 -1701742740689,2023,12,4,16,19,0,501,19.7283397,-155.9893385,1 -1701742741713,2023,12,4,16,19,1,541,19.7283399,-155.9893383,1 -1701742742411,2023,12,4,16,19,2,659,19.7283399,-155.9893381,47 -1701742743045,2023,12,4,16,19,3,643,19.7283399,-155.989338,11 -1701742743735,2023,12,4,16,19,3,727,19.7283399,-155.9893378,22 -1701742744419,2023,12,4,16,19,4,764,19.7283399,-155.9893375,10 -1701742745108,2023,12,4,16,19,5,788,19.7283398,-155.9893371,10 -1701742745878,2023,12,4,16,19,5,927,19.7283398,-155.9893367,1 -1701742746469,2023,12,4,16,19,6,998,19.7283398,-155.9893362,1 -1701742747036,2023,12,4,16,19,7,896,19.7283398,-155.9893359,1 -1701742747590,2023,12,4,16,19,7,866,19.7283399,-155.9893357,1 -1701742748428,2023,12,4,16,19,8,668,19.7283399,-155.9893354,1 -1701742749290,2023,12,4,16,19,9,739,19.72834,-155.989335,1 -1701742750174,2023,12,4,16,19,10,679,19.7283401,-155.9893347,11 -1701742750927,2023,12,4,16,19,10,793,19.7283401,-155.9893348,30 -1701742751850,2023,12,4,16,19,11,756,19.7283402,-155.9893349,1 -1701742752670,2023,12,4,16,19,12,676,19.7283404,-155.9893353,13 -1701742753591,2023,12,4,16,19,13,808,19.7283409,-155.9893356,37 -1701742754626,2023,12,4,16,19,14,844,19.7283413,-155.9893358,9 -1701742755636,2023,12,4,16,19,15,797,19.7283417,-155.9893357,1 -1701742756754,2023,12,4,16,19,16,823,19.728342,-155.9893359,1 -1701742757530,2023,12,4,16,19,17,891,19.7283422,-155.9893361,23 -1701742758402,2023,12,4,16,19,18,992,19.7283424,-155.9893361,10 -1701742759266,2023,12,4,16,19,19,1218,19.7283426,-155.9893363,22 -1701742760249,2023,12,4,16,19,20,1413,19.7283429,-155.9893365,1 -1701742760964,2023,12,4,16,19,20,1215,19.7283432,-155.9893367,1 -1701742761914,2023,12,4,16,19,21,1368,19.7283436,-155.9893368,1 -1701742762704,2023,12,4,16,19,22,309,19.728344,-155.9893369,60 -1701742763625,2023,12,4,16,19,23,350,19.7283447,-155.9893369,49 -1701742764546,2023,12,4,16,19,24,444,19.7283451,-155.9893369,23 -1701742765469,2023,12,4,16,19,25,522,19.7283455,-155.9893369,48 -1701742766490,2023,12,4,16,19,26,567,19.7283461,-155.989337,40 -1701742767314,2023,12,4,16,19,27,594,19.7283464,-155.9893371,22 -1701742768252,2023,12,4,16,19,28,668,19.7283465,-155.9893374,21 -1701742769155,2023,12,4,16,19,29,700,19.7283467,-155.9893375,14 -1701742770008,2023,12,4,16,19,30,656,19.728347,-155.9893375,1 -1701742770887,2023,12,4,16,19,30,783,19.728347,-155.9893371,11 -1701742771716,2023,12,4,16,19,31,814,19.728347,-155.9893372,11 -1701742772535,2023,12,4,16,19,32,1128,19.728347,-155.9893376,34 -1701742773560,2023,12,4,16,19,33,1208,19.7283471,-155.9893374,11 -1701742774480,2023,12,4,16,19,34,1372,19.7283473,-155.9893374,1 -1701742775401,2023,12,4,16,19,35,1707,19.7283475,-155.9893369,1 -1701742776323,2023,12,4,16,19,36,1743,19.7283477,-155.9893365,1 -1701742777169,2023,12,4,16,19,37,2185,19.7283476,-155.9893362,1 -1701742777948,2023,12,4,16,19,37,2390,19.7283477,-155.9893363,1 -1701742778782,2023,12,4,16,19,38,1966,19.7283477,-155.9893364,1 -1701742779600,2023,12,4,16,19,39,2192,19.7283477,-155.9893367,1 -1701742780426,2023,12,4,16,19,40,2468,19.7283477,-155.989337,1 -1701742781340,2023,12,4,16,19,41,2488,19.7283476,-155.9893378,1 -1701742782058,2023,12,4,16,19,42,2644,19.7283478,-155.9893381,1 -1701742782951,2023,12,4,16,19,42,2851,19.728348,-155.9893386,12 -1701742783798,2023,12,4,16,19,43,2976,19.7283482,-155.9893387,12 -1701742784453,2023,12,4,16,19,44,3124,19.7283482,-155.9893393,1 -1701742785140,2023,12,4,16,19,45,2264,19.7283482,-155.9893399,1 -1701742785955,2023,12,4,16,19,45,2132,19.7283482,-155.9893404,1 -1701742786659,2023,12,4,16,19,46,2170,19.7283482,-155.989341,1 -1701742787461,2023,12,4,16,19,47,2438,19.7283483,-155.9893416,20 -1701742788051,2023,12,4,16,19,48,2522,19.7283483,-155.9893422,26 -1701742788670,2023,12,4,16,19,48,2648,19.7283482,-155.989343,26 -1701742789841,2023,12,4,16,19,49,2859,19.728348,-155.9893441,37 -1701742790521,2023,12,4,16,19,50,3177,19.7283478,-155.9893452,36 -1701742791179,2023,12,4,16,19,51,3519,19.7283478,-155.9893457,1 -1701742791789,2023,12,4,16,19,51,3533,19.7283478,-155.9893462,1 -1701742792547,2023,12,4,16,19,52,2853,19.7283479,-155.9893464,1 -1701742793429,2023,12,4,16,19,53,3029,19.728348,-155.9893467,1 -1701742794448,2023,12,4,16,19,54,3388,19.728348,-155.9893475,1 -1701742795371,2023,12,4,16,19,55,3782,19.7283479,-155.9893483,33 -1701742796501,2023,12,4,16,19,56,4219,19.7283478,-155.9893491,12 -1701742797626,2023,12,4,16,19,57,4712,19.7283476,-155.9893496,1 -1701742798547,2023,12,4,16,19,58,5083,19.7283475,-155.9893498,1 -1701742799568,2023,12,4,16,19,59,4879,19.7283475,-155.9893502,1 -1701742800491,2023,12,4,16,20,0,5099,19.7283471,-155.9893511,1 -1701742801412,2023,12,4,16,20,1,5528,19.728347,-155.9893518,1 -1701742802310,2023,12,4,16,20,2,5875,19.7283467,-155.9893526,1 -1701742803154,2023,12,4,16,20,3,6478,19.7283465,-155.9893524,10 -1701742804075,2023,12,4,16,20,4,6830,19.7283464,-155.9893523,32 -1701742804986,2023,12,4,16,20,4,7354,19.7283458,-155.9893519,48 -1701742805714,2023,12,4,16,20,5,7742,19.7283455,-155.9893515,27 -1701742806738,2023,12,4,16,20,6,7851,19.7283453,-155.9893512,13 -1701742807660,2023,12,4,16,20,7,8396,19.7283451,-155.9893507,21 -1701742808273,2023,12,4,16,20,8,8442,19.7283449,-155.9893505,10 -1701742809094,2023,12,4,16,20,9,8834,19.7283447,-155.9893498,10 -1701742809912,2023,12,4,16,20,9,9288,19.7283447,-155.9893493,10 -1701742810732,2023,12,4,16,20,10,6515,19.7283446,-155.9893488,1 -1701742811537,2023,12,4,16,20,11,7240,19.7283444,-155.9893482,1 -1701742812267,2023,12,4,16,20,12,1144,19.7283442,-155.9893479,60 -1701742813028,2023,12,4,16,20,13,1146,19.7283441,-155.9893477,62 -1701742813989,2023,12,4,16,20,13,1290,19.7283438,-155.9893472,58 -1701742814827,2023,12,4,16,20,14,1405,19.7283436,-155.9893467,1 -1701742815566,2023,12,4,16,20,15,1539,19.7283433,-155.9893463,1 -1701742816465,2023,12,4,16,20,16,1575,19.728343,-155.9893456,1 -1701742817285,2023,12,4,16,20,17,1496,19.728343,-155.9893452,1 -1701742818206,2023,12,4,16,20,18,1692,19.7283428,-155.9893444,1 -1701742819196,2023,12,4,16,20,19,1827,19.7283426,-155.989344,13 -1701742820048,2023,12,4,16,20,20,308,19.7283423,-155.9893438,49 -1701742820836,2023,12,4,16,20,20,416,19.7283417,-155.9893432,59 -1701742821708,2023,12,4,16,20,21,435,19.7283415,-155.9893428,45 -1701742822491,2023,12,4,16,20,22,539,19.7283411,-155.9893426,20 -1701742823156,2023,12,4,16,20,23,607,19.728341,-155.9893426,29 -1701742824048,2023,12,4,16,20,24,656,19.728341,-155.9893426,32 -1701742824863,2023,12,4,16,20,24,692,19.7283409,-155.9893426,1 -1701742825886,2023,12,4,16,20,25,614,19.7283408,-155.9893424,1 -1701742826547,2023,12,4,16,20,26,670,19.7283407,-155.9893422,19 -1701742827110,2023,12,4,16,20,27,715,19.7283406,-155.9893421,33 -1701742827933,2023,12,4,16,20,27,819,19.7283405,-155.989342,40 -1701742828599,2023,12,4,16,20,28,946,19.7283404,-155.9893417,28 -1701742829294,2023,12,4,16,20,29,1070,19.7283403,-155.9893414,8 -1701742829951,2023,12,4,16,20,29,1191,19.7283401,-155.9893413,22 -1701742830517,2023,12,4,16,20,30,1315,19.7283398,-155.9893417,12 -1701742831927,2023,12,4,16,20,31,1434,19.7283391,-155.9893427,1 -1701742832850,2023,12,4,16,20,32,1425,19.7283388,-155.9893432,1 -1701742833771,2023,12,4,16,20,33,286,19.7283387,-155.9893436,50 -1701742834589,2023,12,4,16,20,34,282,19.7283386,-155.9893439,42 -1701742835614,2023,12,4,16,20,35,390,19.7283384,-155.9893442,59 -1701742836535,2023,12,4,16,20,36,441,19.7283385,-155.9893442,70 -1701742837356,2023,12,4,16,20,37,533,19.7283385,-155.9893442,40 -1701742838173,2023,12,4,16,20,38,577,19.7283382,-155.9893444,30 -1701742839095,2023,12,4,16,20,39,613,19.7283379,-155.9893447,1 -1701742840119,2023,12,4,16,20,40,622,19.7283377,-155.9893453,1 -1701742840887,2023,12,4,16,20,40,768,19.7283374,-155.9893456,30 -1701742841648,2023,12,4,16,20,41,817,19.7283371,-155.9893459,18 -1701742842477,2023,12,4,16,20,42,938,19.7283369,-155.9893462,21 -1701742843279,2023,12,4,16,20,43,1035,19.7283366,-155.9893464,44 -1701742844114,2023,12,4,16,20,44,1083,19.7283361,-155.9893465,58 -1701742844886,2023,12,4,16,20,44,290,19.7283357,-155.9893469,60 -1701742845917,2023,12,4,16,20,45,4827,19.7283356,-155.9893476,61 -1701742846776,2023,12,4,16,20,46,4904,19.7283355,-155.9893481,56 -1701742847799,2023,12,4,16,20,47,4972,19.7283354,-155.9893488,11 -1701742848721,2023,12,4,16,20,48,5033,19.7283354,-155.9893493,10 -1701742849643,2023,12,4,16,20,49,4902,19.7283352,-155.9893498,1 -1701742850552,2023,12,4,16,20,50,5160,19.728335,-155.9893506,9 -1701742851384,2023,12,4,16,20,51,278,19.7283349,-155.9893511,57 -1701742852202,2023,12,4,16,20,52,309,19.7283348,-155.9893517,33 -1701742852888,2023,12,4,16,20,52,388,19.7283343,-155.9893519,22 -1701742853703,2023,12,4,16,20,53,422,19.7283342,-155.9893521,56 -1701742854456,2023,12,4,16,20,54,490,19.7283339,-155.9893525,54 -1701742855378,2023,12,4,16,20,55,576,19.7283337,-155.9893528,42 -1701742856503,2023,12,4,16,20,56,637,19.7283336,-155.9893538,26 -1701742857428,2023,12,4,16,20,57,1283,19.7283334,-155.9893544,52 -1701742858247,2023,12,4,16,20,58,276,19.7283334,-155.9893549,57 -1701742859166,2023,12,4,16,20,59,345,19.7283331,-155.9893557,18 -1701742860087,2023,12,4,16,21,0,393,19.7283329,-155.9893564,1 -1701742860845,2023,12,4,16,21,0,447,19.7283329,-155.989357,1 -1701742861718,2023,12,4,16,21,1,528,19.7283327,-155.9893573,34 -1701742862649,2023,12,4,16,21,2,571,19.7283326,-155.9893583,57 -1701742863570,2023,12,4,16,21,3,677,19.7283327,-155.9893597,22 -1701742864490,2023,12,4,16,21,4,758,19.728333,-155.9893605,35 -1701742865411,2023,12,4,16,21,5,810,19.7283331,-155.9893612,1 -1701742866539,2023,12,4,16,21,6,853,19.7283331,-155.9893619,38 -1701742867358,2023,12,4,16,21,7,993,19.7283331,-155.9893624,39 -1701742868137,2023,12,4,16,21,8,1195,19.7283331,-155.9893632,30 -1701742868723,2023,12,4,16,21,8,1303,19.7283333,-155.9893638,24 -1701742869286,2023,12,4,16,21,9,1445,19.7283335,-155.9893642,20 -1701742870086,2023,12,4,16,21,10,1590,19.7283337,-155.9893652,20 -1701742870769,2023,12,4,16,21,10,1674,19.7283337,-155.9893656,1 -1701742871461,2023,12,4,16,21,11,1797,19.7283337,-155.9893662,35 -1701742872021,2023,12,4,16,21,12,1997,19.7283336,-155.9893673,13 -1701742872589,2023,12,4,16,21,12,1991,19.7283336,-155.989368,13 -1701742873399,2023,12,4,16,21,13,1940,19.7283335,-155.9893696,24 -1701742874322,2023,12,4,16,21,14,1949,19.7283333,-155.9893702,13 -1701742875346,2023,12,4,16,21,15,2112,19.7283332,-155.9893708,11 -1701742876127,2023,12,4,16,21,16,2251,19.7283332,-155.9893711,11 -1701742876984,2023,12,4,16,21,16,2318,19.7283333,-155.9893712,20 -1701742877748,2023,12,4,16,21,17,2645,19.7283335,-155.9893712,16 -1701742878520,2023,12,4,16,21,18,2503,19.7283334,-155.9893711,9 -1701742879442,2023,12,4,16,21,19,2695,19.7283334,-155.989371,1 -1701742880363,2023,12,4,16,21,20,2722,19.7283334,-155.9893709,1 -1701742881184,2023,12,4,16,21,21,2860,19.7283336,-155.9893705,36 -1701742881893,2023,12,4,16,21,21,2632,19.7283338,-155.9893699,34 -1701742882751,2023,12,4,16,21,22,2814,19.7283342,-155.9893688,1 -1701742883640,2023,12,4,16,21,23,2884,19.7283345,-155.989368,36 -1701742884663,2023,12,4,16,21,24,3185,19.7283347,-155.9893667,12 -1701742885686,2023,12,4,16,21,25,3070,19.7283348,-155.9893654,1 -1701742886570,2023,12,4,16,21,26,3362,19.7283349,-155.9893639,1 -1701742887428,2023,12,4,16,21,27,3756,19.7283349,-155.9893625,1 -1701742888351,2023,12,4,16,21,28,3953,19.728335,-155.9893613,1 -1701742889170,2023,12,4,16,21,29,4287,19.7283351,-155.9893595,1 -1701742890091,2023,12,4,16,21,30,4614,19.7283351,-155.9893581,11 -1701742891013,2023,12,4,16,21,31,4091,19.7283351,-155.9893569,1 -1701742891834,2023,12,4,16,21,31,271,19.7283351,-155.9893548,54 -1701742892653,2023,12,4,16,21,32,298,19.728335,-155.9893533,51 -1701742893471,2023,12,4,16,21,33,383,19.7283349,-155.9893524,39 -1701742894347,2023,12,4,16,21,34,434,19.728335,-155.9893509,35 -1701742895180,2023,12,4,16,21,35,510,19.728335,-155.9893501,43 -1701742895928,2023,12,4,16,21,35,560,19.7283352,-155.9893491,35 -1701742896750,2023,12,4,16,21,36,641,19.7283353,-155.9893474,12 -1701742897615,2023,12,4,16,21,37,605,19.7283354,-155.9893463,12 -1701742898489,2023,12,4,16,21,38,800,19.7283356,-155.9893445,23 -1701742899409,2023,12,4,16,21,39,822,19.7283358,-155.9893428,1 -1701742900229,2023,12,4,16,21,40,745,19.7283359,-155.9893418,1 -1701742900949,2023,12,4,16,21,40,815,19.7283361,-155.9893407,1 -1701742901664,2023,12,4,16,21,41,803,19.7283362,-155.9893391,19 -1701742902616,2023,12,4,16,21,42,545,19.7283362,-155.9893381,1 -1701742903506,2023,12,4,16,21,43,497,19.728336,-155.9893365,1 -1701742904530,2023,12,4,16,21,44,588,19.7283358,-155.989335,1 -1701742905451,2023,12,4,16,21,45,693,19.7283357,-155.9893335,27 -1701742906382,2023,12,4,16,21,46,770,19.7283354,-155.9893321,19 -1701742907134,2023,12,4,16,21,47,694,19.7283356,-155.9893311,1 -1701742908012,2023,12,4,16,21,48,680,19.7283356,-155.9893303,1 -1701742908936,2023,12,4,16,21,48,818,19.7283356,-155.9893292,1 -1701742909957,2023,12,4,16,21,49,1040,19.7283358,-155.9893283,23 -1701742910524,2023,12,4,16,21,50,609,19.7283358,-155.9893278,1 -1701742911334,2023,12,4,16,21,51,595,19.7283359,-155.9893269,1 -1701742912022,2023,12,4,16,21,52,642,19.728336,-155.9893262,13 -1701742912692,2023,12,4,16,21,52,689,19.728336,-155.9893256,39 -1701742913380,2023,12,4,16,21,53,756,19.728336,-155.9893251,12 -1701742913984,2023,12,4,16,21,53,799,19.728336,-155.9893243,11 -1701742914544,2023,12,4,16,21,54,923,19.7283362,-155.989324,9 -1701742915098,2023,12,4,16,21,55,1048,19.7283363,-155.9893235,32 -1701742915664,2023,12,4,16,21,55,1171,19.7283362,-155.9893232,9 -1701742916409,2023,12,4,16,21,56,1370,19.7283359,-155.989323,61 -1701742917617,2023,12,4,16,21,57,1525,19.7283358,-155.9893224,45 -1701742918457,2023,12,4,16,21,58,1576,19.7283357,-155.9893218,58 -1701742919377,2023,12,4,16,21,59,1579,19.7283356,-155.9893217,37 -1701742920113,2023,12,4,16,22,0,1735,19.7283354,-155.9893221,1 -1701742920813,2023,12,4,16,22,0,1844,19.7283355,-155.9893228,1 -1701742921680,2023,12,4,16,22,1,1867,19.7283356,-155.9893234,1 -1701742922590,2023,12,4,16,22,2,419,19.7283359,-155.9893246,61 -1701742923575,2023,12,4,16,22,3,434,19.7283359,-155.9893263,65 -1701742924324,2023,12,4,16,22,4,504,19.7283361,-155.9893278,67 -1701742925214,2023,12,4,16,22,5,555,19.7283362,-155.9893284,12 -1701742925910,2023,12,4,16,22,5,528,19.7283364,-155.9893288,1 -1701742926747,2023,12,4,16,22,6,493,19.7283366,-155.9893294,1 -1701742927633,2023,12,4,16,22,7,518,19.728337,-155.9893297,1 -1701742928477,2023,12,4,16,22,8,469,19.7283372,-155.9893301,1 -1701742929515,2023,12,4,16,22,9,580,19.7283373,-155.989331,32 -1701742930336,2023,12,4,16,22,10,654,19.7283373,-155.9893321,27 -1701742931053,2023,12,4,16,22,11,684,19.7283372,-155.9893328,13 -1701742931978,2023,12,4,16,22,11,685,19.7283372,-155.9893335,12 -1701742932715,2023,12,4,16,22,12,734,19.7283369,-155.9893343,1 -1701742933611,2023,12,4,16,22,13,750,19.7283365,-155.9893346,1 -1701742934431,2023,12,4,16,22,14,983,19.7283361,-155.9893352,18 -1701742935353,2023,12,4,16,22,15,958,19.7283361,-155.9893357,1 -1701742936172,2023,12,4,16,22,16,1245,19.7283357,-155.9893368,47 -1701742936990,2023,12,4,16,22,16,1285,19.7283351,-155.9893378,46 -1701742937708,2023,12,4,16,22,17,1325,19.7283349,-155.9893382,1 -1701742938527,2023,12,4,16,22,18,1381,19.7283346,-155.9893386,28 -1701742939756,2023,12,4,16,22,19,1668,19.7283338,-155.9893395,1 -1701742940576,2023,12,4,16,22,20,1829,19.7283333,-155.9893403,1 -1701742941426,2023,12,4,16,22,21,1082,19.7283333,-155.9893413,1 -1701742942175,2023,12,4,16,22,22,1235,19.7283331,-155.9893419,1 -1701742942931,2023,12,4,16,22,22,1045,19.728333,-155.9893424,1 -1701742943769,2023,12,4,16,22,23,1267,19.728333,-155.9893427,1 -1701742944737,2023,12,4,16,22,24,1260,19.7283332,-155.9893426,1 -1701742945592,2023,12,4,16,22,25,1348,19.7283332,-155.9893428,13 -1701742946514,2023,12,4,16,22,26,1529,19.7283328,-155.9893433,10 -1701742947522,2023,12,4,16,22,27,1658,19.7283328,-155.9893438,25 -1701742948358,2023,12,4,16,22,28,473,19.7283326,-155.9893441,46 -1701742949279,2023,12,4,16,22,29,520,19.7283327,-155.9893445,54 -1701742950101,2023,12,4,16,22,30,622,19.7283327,-155.9893453,55 -1701742951021,2023,12,4,16,22,31,700,19.7283328,-155.9893462,58 -1701742952015,2023,12,4,16,22,32,769,19.7283329,-155.9893466,1 -1701742952616,2023,12,4,16,22,32,650,19.7283329,-155.9893469,1 -1701742953300,2023,12,4,16,22,33,776,19.728333,-155.9893474,28 -1701742953981,2023,12,4,16,22,33,692,19.7283331,-155.9893479,28 -1701742954786,2023,12,4,16,22,34,634,19.7283332,-155.9893484,1 -1701742955465,2023,12,4,16,22,35,840,19.7283331,-155.9893487,1 -1701742956025,2023,12,4,16,22,36,862,19.7283334,-155.9893491,21 -1701742956592,2023,12,4,16,22,36,1020,19.7283334,-155.9893495,1 -1701742957138,2023,12,4,16,22,37,275,19.7283336,-155.9893496,61 -1701742957692,2023,12,4,16,22,37,296,19.7283338,-155.9893498,62 -1701742958497,2023,12,4,16,22,38,319,19.7283339,-155.9893501,54 -1701742959425,2023,12,4,16,22,39,411,19.7283338,-155.9893506,30 -1701742960339,2023,12,4,16,22,40,396,19.7283338,-155.9893513,1 -1701742961157,2023,12,4,16,22,41,409,19.7283339,-155.9893517,1 -1701742961917,2023,12,4,16,22,41,457,19.7283339,-155.9893525,12 -1701742962675,2023,12,4,16,22,42,502,19.7283339,-155.989353,11 -1701742963410,2023,12,4,16,22,43,638,19.7283336,-155.9893533,9 -1701742964538,2023,12,4,16,22,44,639,19.7283333,-155.9893536,17 -1701742965356,2023,12,4,16,22,45,698,19.7283329,-155.9893541,26 -1701742966290,2023,12,4,16,22,46,668,19.7283326,-155.9893546,1 -1701742967098,2023,12,4,16,22,47,697,19.7283322,-155.9893549,18 -1701742967917,2023,12,4,16,22,47,756,19.7283319,-155.989355,33 -1701742968839,2023,12,4,16,22,48,931,19.7283315,-155.9893549,22 -1701742969758,2023,12,4,16,22,49,1021,19.7283311,-155.9893551,37 -1701742970577,2023,12,4,16,22,50,909,19.7283309,-155.9893551,1 -1701742971602,2023,12,4,16,22,51,1042,19.7283305,-155.9893547,1 -1701742972421,2023,12,4,16,22,52,1188,19.7283299,-155.9893546,29 -1701742973230,2023,12,4,16,22,53,1404,19.7283296,-155.9893543,42 -1701742973957,2023,12,4,16,22,53,1587,19.7283291,-155.9893538,24 -1701742975083,2023,12,4,16,22,55,282,19.7283285,-155.989353,54 -1701742975905,2023,12,4,16,22,55,318,19.728328,-155.9893526,29 -1701742976726,2023,12,4,16,22,56,399,19.7283274,-155.9893521,20 -1701742977683,2023,12,4,16,22,57,403,19.7283266,-155.9893518,11 -1701742978566,2023,12,4,16,22,58,437,19.7283262,-155.9893515,45 -1701742979385,2023,12,4,16,22,59,528,19.7283256,-155.989351,46 -1701742980308,2023,12,4,16,23,0,632,19.728325,-155.9893505,7 -1701742981023,2023,12,4,16,23,1,618,19.7283246,-155.9893503,17 -1701742981944,2023,12,4,16,23,1,775,19.7283242,-155.9893501,45 -1701742982868,2023,12,4,16,23,2,979,19.7283236,-155.9893497,33 -1701742984402,2023,12,4,16,23,4,1078,19.7283229,-155.9893495,21 -1701742985325,2023,12,4,16,23,5,1313,19.7283223,-155.9893489,8 -1701742986143,2023,12,4,16,23,6,1387,19.7283219,-155.9893484,10 -1701742987168,2023,12,4,16,23,7,1475,19.7283213,-155.9893477,1 -1701742987932,2023,12,4,16,23,7,1553,19.7283209,-155.989347,1 -1701742988809,2023,12,4,16,23,8,1773,19.7283206,-155.9893466,1 -1701742989726,2023,12,4,16,23,9,1316,19.7283202,-155.9893462,1 -1701742990664,2023,12,4,16,23,10,1178,19.7283197,-155.9893458,1 -1701742991470,2023,12,4,16,23,11,1316,19.7283194,-155.9893456,1 -1701742992289,2023,12,4,16,23,12,1291,19.7283188,-155.9893453,24 -1701742993208,2023,12,4,16,23,13,1441,19.7283184,-155.9893452,10 -1701742994047,2023,12,4,16,23,14,17406,19.7283176,-155.9893453,51 -1701742994735,2023,12,4,16,23,14,17545,19.7283173,-155.9893453,49 -1701742995338,2023,12,4,16,23,15,17500,19.7283172,-155.9893453,48 -1701742996014,2023,12,4,16,23,16,16904,19.7283171,-155.9893453,56 -1701742996815,2023,12,4,16,23,16,16831,19.728317,-155.9893454,57 -1701742997526,2023,12,4,16,23,17,16656,19.7283169,-155.9893457,38 -1701742998083,2023,12,4,16,23,18,18022,19.7283169,-155.9893458,15 -1701742998644,2023,12,4,16,23,18,18189,19.7283166,-155.989346,14 -1701742999213,2023,12,4,16,23,19,18367,19.7283166,-155.9893462,1 -1701743000275,2023,12,4,16,23,20,18322,19.7283164,-155.9893461,1 -1701743001226,2023,12,4,16,23,21,17955,19.728316,-155.9893461,7 -1701743002016,2023,12,4,16,23,22,18178,19.7283159,-155.9893463,14 -1701743002936,2023,12,4,16,23,22,18297,19.7283158,-155.9893466,7 -1701743004479,2023,12,4,16,23,24,459,19.7283159,-155.9893473,19 -1701743005600,2023,12,4,16,23,25,534,19.7283159,-155.9893474,1 -1701743006643,2023,12,4,16,23,26,580,19.7283158,-155.9893476,1 -1701743007648,2023,12,4,16,23,27,562,19.7283158,-155.9893478,1 -1701743008775,2023,12,4,16,23,28,616,19.7283158,-155.9893484,20 -1701743009694,2023,12,4,16,23,29,610,19.7283157,-155.989349,28 -1701743010720,2023,12,4,16,23,30,576,19.7283153,-155.9893489,1 -1701743011629,2023,12,4,16,23,31,579,19.7283154,-155.9893488,12 -1701743012562,2023,12,4,16,23,32,731,19.7283154,-155.9893489,25 -1701743013588,2023,12,4,16,23,33,779,19.7283155,-155.9893501,11 -1701743014610,2023,12,4,16,23,34,815,19.7283154,-155.9893516,1 -1701743015431,2023,12,4,16,23,35,924,19.7283152,-155.9893517,1 -1701743016250,2023,12,4,16,23,36,757,19.7283151,-155.9893515,1 -1701743017170,2023,12,4,16,23,37,850,19.7283151,-155.9893514,1 -1701743017889,2023,12,4,16,23,37,1055,19.7283151,-155.9893513,14 -1701743018605,2023,12,4,16,23,38,1160,19.7283153,-155.9893514,11 -1701743019628,2023,12,4,16,23,39,349,19.7283155,-155.9893516,39 -1701743020755,2023,12,4,16,23,40,408,19.7283156,-155.9893518,9 -1701743021675,2023,12,4,16,23,41,443,19.7283155,-155.9893519,23 -1701743022600,2023,12,4,16,23,42,468,19.7283156,-155.989352,20 -1701743023520,2023,12,4,16,23,43,595,19.7283157,-155.989352,36 -1701743024236,2023,12,4,16,23,44,610,19.7283157,-155.989352,74 -1701743025136,2023,12,4,16,23,45,742,19.7283157,-155.989352,48 -1701743025979,2023,12,4,16,23,45,834,19.7283156,-155.9893523,55 -1701743026898,2023,12,4,16,23,46,1045,19.7283155,-155.9893524,39 -1701743027618,2023,12,4,16,23,47,1158,19.7283154,-155.9893525,1 -1701743028505,2023,12,4,16,23,48,1320,19.7283156,-155.9893525,22 -1701743029459,2023,12,4,16,23,49,1411,19.728316,-155.9893525,25 -1701743030484,2023,12,4,16,23,50,977,19.7283164,-155.9893526,1 -1701743031404,2023,12,4,16,23,51,1333,19.7283167,-155.9893525,1 -1701743032326,2023,12,4,16,23,52,1377,19.7283172,-155.9893521,1 -1701743033066,2023,12,4,16,23,53,1346,19.7283174,-155.9893519,1 -1701743033861,2023,12,4,16,23,53,1301,19.7283177,-155.9893518,1 -1701743034684,2023,12,4,16,23,54,1248,19.7283178,-155.9893519,1 -1701743035704,2023,12,4,16,23,55,1111,19.7283179,-155.9893523,1 -1701743036451,2023,12,4,16,23,56,1114,19.728318,-155.9893525,1 -1701743037125,2023,12,4,16,23,57,1103,19.7283183,-155.9893525,1 -1701743037817,2023,12,4,16,23,57,1140,19.7283188,-155.9893526,50 -1701743038624,2023,12,4,16,23,58,1070,19.7283192,-155.9893525,1 -1701743039320,2023,12,4,16,23,59,1072,19.7283195,-155.9893526,1 -1701743039988,2023,12,4,16,23,59,1110,19.7283196,-155.9893526,22 -1701743040545,2023,12,4,16,24,0,1285,19.7283199,-155.9893524,10 -1701743041336,2023,12,4,16,24,1,1334,19.7283203,-155.9893519,13 -1701743042053,2023,12,4,16,24,2,1381,19.7283206,-155.9893516,1 -1701743042887,2023,12,4,16,24,2,1529,19.7283209,-155.9893519,1 -1701743043753,2023,12,4,16,24,3,1445,19.7283208,-155.9893523,1 -1701743044613,2023,12,4,16,24,4,412,19.7283206,-155.9893528,71 -1701743045638,2023,12,4,16,24,5,452,19.7283207,-155.989353,66 -1701743046354,2023,12,4,16,24,6,532,19.7283207,-155.9893529,32 -1701743047072,2023,12,4,16,24,7,605,19.728321,-155.9893527,31 -1701743047930,2023,12,4,16,24,7,4891,19.7283215,-155.9893524,72 -1701743049016,2023,12,4,16,24,9,5087,19.7283222,-155.9893523,74 -1701743049921,2023,12,4,16,24,9,5483,19.7283224,-155.9893521,51 -1701743050655,2023,12,4,16,24,10,439,19.7283227,-155.989352,67 -1701743051678,2023,12,4,16,24,11,4965,19.7283229,-155.9893521,72 -1701743052499,2023,12,4,16,24,12,5314,19.7283229,-155.9893522,58 -1701743053421,2023,12,4,16,24,13,5187,19.7283229,-155.9893523,36 -1701743054345,2023,12,4,16,24,14,5561,19.7283221,-155.9893526,12 -1701743055263,2023,12,4,16,24,15,5216,19.7283219,-155.9893531,13 -1701743056084,2023,12,4,16,24,16,5366,19.7283217,-155.9893535,1 -1701743057004,2023,12,4,16,24,17,4809,19.7283216,-155.9893539,75 -1701743057826,2023,12,4,16,24,17,4873,19.7283217,-155.989354,68 -1701743058848,2023,12,4,16,24,18,4811,19.7283216,-155.9893542,45 -1701743059769,2023,12,4,16,24,19,444,19.7283217,-155.9893543,72 -1701743060793,2023,12,4,16,24,20,580,19.7283217,-155.9893542,8 -1701743061715,2023,12,4,16,24,21,4883,19.728322,-155.9893538,59 -1701743062534,2023,12,4,16,24,22,5026,19.728322,-155.9893535,54 -1701743063353,2023,12,4,16,24,23,412,19.7283222,-155.9893535,62 -1701743064108,2023,12,4,16,24,24,425,19.7283223,-155.9893537,66 -1701743064992,2023,12,4,16,24,24,422,19.7283222,-155.9893537,68 -1701743065707,2023,12,4,16,24,25,467,19.7283223,-155.9893538,52 -1701743066630,2023,12,4,16,24,26,513,19.7283224,-155.9893539,48 -1701743067450,2023,12,4,16,24,27,643,19.7283223,-155.9893542,30 -1701743068342,2023,12,4,16,24,28,572,19.7283221,-155.9893546,1 -1701743069395,2023,12,4,16,24,29,570,19.7283222,-155.9893549,1 -1701743070216,2023,12,4,16,24,30,683,19.7283228,-155.9893549,25 -1701743070929,2023,12,4,16,24,30,730,19.7283227,-155.9893545,40 -1701743072159,2023,12,4,16,24,32,747,19.7283226,-155.9893543,1 -1701743072889,2023,12,4,16,24,32,757,19.7283223,-155.9893547,1 -1701743073695,2023,12,4,16,24,33,854,19.7283219,-155.9893553,22 -1701743074617,2023,12,4,16,24,34,1050,19.7283215,-155.9893562,12 -1701743075539,2023,12,4,16,24,35,1172,19.7283214,-155.9893565,38 -1701743076461,2023,12,4,16,24,36,1287,19.7283213,-155.9893566,50 -1701743077383,2023,12,4,16,24,37,17765,19.7283215,-155.9893565,63 -1701743078043,2023,12,4,16,24,38,17850,19.7283216,-155.9893564,63 -1701743078604,2023,12,4,16,24,38,17803,19.7283219,-155.9893562,62 -1701743079278,2023,12,4,16,24,39,17863,19.728322,-155.9893561,65 -1701743079963,2023,12,4,16,24,39,17888,19.7283221,-155.9893561,66 -1701743080846,2023,12,4,16,24,40,17959,19.728322,-155.989356,73 -1701743081489,2023,12,4,16,24,41,17982,19.7283222,-155.9893558,73 -1701743082059,2023,12,4,16,24,42,17913,19.7283224,-155.9893557,72 -1701743082617,2023,12,4,16,24,42,17908,19.7283227,-155.9893553,60 -1701743083177,2023,12,4,16,24,43,17876,19.728323,-155.9893549,74 -1701743084348,2023,12,4,16,24,44,17884,19.7283233,-155.9893544,74 -1701743085160,2023,12,4,16,24,45,18029,19.7283235,-155.9893542,79 -1701743085987,2023,12,4,16,24,45,17666,19.7283236,-155.989354,38 -1701743086907,2023,12,4,16,24,46,17958,19.728324,-155.9893538,74 -1701743087828,2023,12,4,16,24,47,17491,19.7283241,-155.9893538,71 -1701743088749,2023,12,4,16,24,48,17146,19.7283238,-155.9893536,70 -1701743089571,2023,12,4,16,24,49,16508,19.7283235,-155.9893536,56 -1701743090437,2023,12,4,16,24,50,17026,19.7283233,-155.9893536,35 -1701743091310,2023,12,4,16,24,51,17959,19.7283233,-155.9893537,64 -1701743366975,2023,12,4,16,29,26,1285,19.7283114,-155.9893447,12 -1701743367997,2023,12,4,16,29,27,1431,19.7283114,-155.9893442,10 -1701743368917,2023,12,4,16,29,28,1281,19.7283112,-155.9893435,1 -1701743369839,2023,12,4,16,29,29,1633,19.728311,-155.9893428,9 -1701743370763,2023,12,4,16,29,30,1836,19.728311,-155.9893417,1 -1701743371633,2023,12,4,16,29,31,2059,19.7283105,-155.9893406,9 -1701743372502,2023,12,4,16,29,32,1800,19.7283104,-155.98934,1 -1701743563604,2023,12,4,16,32,43,5571,19.7283035,-155.9893457,46 -1701743564521,2023,12,4,16,32,44,6239,19.7283035,-155.9893454,38 -1701743565440,2023,12,4,16,32,45,397,19.7283036,-155.9893456,57 -1701743566300,2023,12,4,16,32,46,432,19.7283036,-155.9893457,54 -1701743567181,2023,12,4,16,32,47,505,19.7283037,-155.9893461,68 -1701743568001,2023,12,4,16,32,48,524,19.7283039,-155.9893464,74 -1701743568895,2023,12,4,16,32,48,505,19.7283038,-155.9893464,52 -1701743569742,2023,12,4,16,32,49,574,19.7283039,-155.9893467,34 -1701743570561,2023,12,4,16,32,50,611,19.7283041,-155.9893473,35 -1701743608961,2023,12,4,16,33,28,13677,19.728313,-155.9893593,27 -1701743609882,2023,12,4,16,33,29,14017,19.7283132,-155.9893591,25 -1701743610907,2023,12,4,16,33,30,10994,19.7283135,-155.9893588,1 -1701743611829,2023,12,4,16,33,31,14150,19.728314,-155.9893584,40 -1701743612749,2023,12,4,16,33,32,14449,19.7283141,-155.9893577,47 -1701743613672,2023,12,4,16,33,33,14569,19.7283142,-155.989357,37 -1701743614388,2023,12,4,16,33,34,14921,19.7283142,-155.9893564,36 -1701743615437,2023,12,4,16,33,35,14993,19.7283142,-155.9893554,36 -1701743616334,2023,12,4,16,33,36,15199,19.7283143,-155.9893545,11 -1701743617208,2023,12,4,16,33,37,12926,19.7283143,-155.989354,1 -1701743617974,2023,12,4,16,33,37,15563,19.7283144,-155.9893532,12 -1701743618677,2023,12,4,16,33,38,331,19.7283145,-155.9893525,43 -1701743619508,2023,12,4,16,33,39,356,19.7283144,-155.9893518,44 -1701743620226,2023,12,4,16,33,40,424,19.7283144,-155.9893508,66 -1701743621146,2023,12,4,16,33,41,467,19.7283143,-155.9893498,13 -1701743621967,2023,12,4,16,33,41,492,19.7283143,-155.9893496,26 -1701743622888,2023,12,4,16,33,42,628,19.7283144,-155.9893496,24 -1701743623708,2023,12,4,16,33,43,792,19.7283145,-155.9893489,36 -1701743624630,2023,12,4,16,33,44,758,19.7283145,-155.9893474,1 -1701743625549,2023,12,4,16,33,45,740,19.7283145,-155.9893464,29 -1701743626371,2023,12,4,16,33,46,821,19.7283144,-155.9893449,51 -1701743627086,2023,12,4,16,33,47,989,19.7283143,-155.9893439,19 -1701743628036,2023,12,4,16,33,48,948,19.7283143,-155.9893425,1 -1701743628893,2023,12,4,16,33,48,1046,19.7283143,-155.9893416,1 -1701743629647,2023,12,4,16,33,49,1072,19.7283142,-155.9893404,1 -1701743630335,2023,12,4,16,33,50,1197,19.7283141,-155.9893395,1 -1701743631139,2023,12,4,16,33,51,1206,19.728314,-155.9893389,39 -1701743631813,2023,12,4,16,33,51,1354,19.728314,-155.9893384,25 -1701743632502,2023,12,4,16,33,52,1519,19.7283141,-155.989338,32 -1701743633186,2023,12,4,16,33,53,1620,19.728314,-155.9893377,20 -1701743633836,2023,12,4,16,33,53,1866,19.7283139,-155.9893371,9 -1701743634397,2023,12,4,16,33,54,1851,19.7283139,-155.9893364,1 -1701743634953,2023,12,4,16,33,54,1985,19.728314,-155.9893358,20 -1701743635517,2023,12,4,16,33,55,2257,19.728314,-155.9893356,1 -1701743636073,2023,12,4,16,33,56,2358,19.7283141,-155.9893354,23 -1701743636651,2023,12,4,16,33,56,419,19.7283143,-155.9893352,53 -1701743637210,2023,12,4,16,33,57,416,19.7283145,-155.989335,55 -1701744171780,2023,12,4,16,42,51,1679,19.7283263,-155.9893271,33 -1701744172495,2023,12,4,16,42,52,1797,19.7283267,-155.9893272,10 -1701744173211,2023,12,4,16,42,53,1692,19.7283271,-155.9893272,1 -1701744173880,2023,12,4,16,42,53,1559,19.7283275,-155.9893272,1 -1701744174951,2023,12,4,16,42,54,1865,19.7283281,-155.9893273,1 -1701744175873,2023,12,4,16,42,55,274,19.7283285,-155.9893277,50 -1701744176688,2023,12,4,16,42,56,314,19.7283286,-155.989328,50 -1701744177612,2023,12,4,16,42,57,406,19.728329,-155.9893283,8 -1701744178538,2023,12,4,16,42,58,453,19.7283295,-155.9893288,41 -1701744179558,2023,12,4,16,42,59,498,19.7283299,-155.9893294,51 -1701744180379,2023,12,4,16,43,0,4820,19.7283305,-155.9893305,65 -1701744181199,2023,12,4,16,43,1,4610,19.7283308,-155.989331,58 -1701744181923,2023,12,4,16,43,1,280,19.7283311,-155.9893317,60 -1701744182739,2023,12,4,16,43,2,335,19.7283315,-155.9893323,24 -1701744183614,2023,12,4,16,43,3,397,19.7283321,-155.9893334,48 -1701744184372,2023,12,4,16,43,4,458,19.7283324,-155.989334,1 -1701744185191,2023,12,4,16,43,5,476,19.7283328,-155.9893349,9 -1701744186010,2023,12,4,16,43,6,548,19.7283329,-155.9893357,22 -1701744186829,2023,12,4,16,43,6,540,19.7283329,-155.989337,40 -1701744484717,2023,12,4,16,48,4,1330,19.7283304,-155.9893495,57 -1701744485434,2023,12,4,16,48,5,1501,19.7283308,-155.9893495,14 -1701744486395,2023,12,4,16,48,6,1499,19.7283309,-155.9893496,26 -1701744487174,2023,12,4,16,48,7,1699,19.7283309,-155.9893496,34 -1701744488030,2023,12,4,16,48,8,1329,19.7283308,-155.9893497,1 -1701744488685,2023,12,4,16,48,8,1327,19.7283309,-155.9893498,48 -1701744489350,2023,12,4,16,48,9,1327,19.7283309,-155.98935,48 -1701744490035,2023,12,4,16,48,10,1662,19.7283311,-155.9893502,9 -1701744490839,2023,12,4,16,48,10,1841,19.7283312,-155.9893502,1 -1701744491520,2023,12,4,16,48,11,1997,19.7283313,-155.9893502,1 -1701744492173,2023,12,4,16,48,12,2048,19.7283314,-155.9893502,1 -1701744492742,2023,12,4,16,48,12,2025,19.7283315,-155.9893502,1 -1701744493625,2023,12,4,16,48,13,2369,19.7283316,-155.9893504,12 -1701744494444,2023,12,4,16,48,14,2495,19.7283317,-155.9893505,37 -1701744495469,2023,12,4,16,48,15,2652,19.7283318,-155.9893507,1 -1701744496492,2023,12,4,16,48,16,276,19.7283318,-155.9893507,47 -1701744497374,2023,12,4,16,48,17,293,19.7283317,-155.9893507,49 -1701744498234,2023,12,4,16,48,18,1449,19.7283319,-155.9893503,38 -1701744498999,2023,12,4,16,48,18,274,19.728332,-155.9893501,57 -1701744499871,2023,12,4,16,48,19,325,19.7283321,-155.9893498,41 -1701744500737,2023,12,4,16,48,20,374,19.7283323,-155.9893496,56 -1701744501612,2023,12,4,16,48,21,1206,19.7283323,-155.9893495,64 -1701744502432,2023,12,4,16,48,22,275,19.7283324,-155.9893492,54 -1701744503251,2023,12,4,16,48,23,333,19.7283325,-155.9893489,38 -1701744504353,2023,12,4,16,48,24,393,19.7283325,-155.9893484,33 -1701744505195,2023,12,4,16,48,25,433,19.7283326,-155.9893478,44 -1701744506017,2023,12,4,16,48,26,430,19.7283327,-155.9893472,1 -1701744506985,2023,12,4,16,48,26,447,19.7283328,-155.989347,9 -1701744507859,2023,12,4,16,48,27,425,19.7283329,-155.9893467,57 -1701744508780,2023,12,4,16,48,28,434,19.7283329,-155.9893467,64 -1701744509601,2023,12,4,16,48,29,490,19.7283329,-155.9893468,58 -1701744510522,2023,12,4,16,48,30,17539,19.7283329,-155.989347,59 -1701744511441,2023,12,4,16,48,31,17599,19.7283328,-155.9893474,59 -1701744512262,2023,12,4,16,48,32,17591,19.7283329,-155.9893474,59 -1701744513186,2023,12,4,16,48,33,17533,19.7283329,-155.9893474,57 -1701744514209,2023,12,4,16,48,34,17082,19.7283329,-155.9893474,65 -1701744515128,2023,12,4,16,48,35,16768,19.7283329,-155.9893474,60 -1701744515972,2023,12,4,16,48,35,17867,19.7283329,-155.9893473,57 -1701744516870,2023,12,4,16,48,36,17822,19.7283329,-155.9893472,61 -1701744517672,2023,12,4,16,48,37,17779,19.728333,-155.9893471,66 -1701744518405,2023,12,4,16,48,38,17822,19.7283331,-155.9893472,67 -1701744519120,2023,12,4,16,48,39,17817,19.7283332,-155.9893471,68 -1701744519902,2023,12,4,16,48,39,17977,19.7283334,-155.9893471,47 -1701744521069,2023,12,4,16,48,41,17885,19.7283335,-155.9893469,59 -1701744521914,2023,12,4,16,48,41,17819,19.7283336,-155.9893468,71 -1701744522810,2023,12,4,16,48,42,18022,19.7283337,-155.9893467,68 -1701744523735,2023,12,4,16,48,43,17951,19.7283337,-155.9893467,69 -1701744524857,2023,12,4,16,48,44,17814,19.7283338,-155.9893467,69 -1701744525746,2023,12,4,16,48,45,17916,19.7283338,-155.9893467,77 -1701744527010,2023,12,4,16,48,47,17989,19.7283338,-155.989347,78 -1701744527971,2023,12,4,16,48,47,18286,19.7283338,-155.989347,81 -1701744528750,2023,12,4,16,48,48,18404,19.7283338,-155.9893471,76 -1701744529669,2023,12,4,16,48,49,17997,19.7283337,-155.9893471,79 -1701744530541,2023,12,4,16,48,50,17850,19.7283334,-155.9893471,80 -1701744531111,2023,12,4,16,48,51,17660,19.7283333,-155.9893472,79 -1701744531794,2023,12,4,16,48,51,17669,19.7283332,-155.9893472,78 -1701744532485,2023,12,4,16,48,52,17950,19.7283331,-155.9893471,62 -1701744533304,2023,12,4,16,48,53,17993,19.7283331,-155.9893471,79 -1701744533979,2023,12,4,16,48,53,17934,19.7283331,-155.989347,79 -1701744534541,2023,12,4,16,48,54,17997,19.7283331,-155.989347,80 -1701744535712,2023,12,4,16,48,55,17981,19.7283329,-155.989347,82 -1701744536638,2023,12,4,16,48,56,17955,19.7283329,-155.989347,75 -1701744537453,2023,12,4,16,48,57,18007,19.7283328,-155.989347,77 -1701744538338,2023,12,4,16,48,58,18001,19.7283328,-155.989347,77 -1701744539092,2023,12,4,16,48,59,16882,19.7283327,-155.9893469,63 -1701744540013,2023,12,4,16,49,0,18083,19.7283326,-155.9893467,63 -1701744540833,2023,12,4,16,49,0,18160,19.7283325,-155.9893466,62 -1701744541754,2023,12,4,16,49,1,18219,19.7283322,-155.9893466,64 -1701744542940,2023,12,4,16,49,2,18291,19.7283321,-155.9893464,43 -1701744543803,2023,12,4,16,49,3,18310,19.7283319,-155.9893463,31 -1701744544725,2023,12,4,16,49,4,1110,19.7283319,-155.9893462,50 -1701744545849,2023,12,4,16,49,5,1250,19.7283318,-155.9893462,49 -1701744546668,2023,12,4,16,49,6,1379,19.7283317,-155.9893462,12 -1701744547489,2023,12,4,16,49,7,313,19.7283317,-155.9893461,54 -1701744548704,2023,12,4,16,49,8,301,19.7283316,-155.9893459,1 -1701744549537,2023,12,4,16,49,9,312,19.7283316,-155.9893457,1 -1701744550458,2023,12,4,16,49,10,425,19.7283315,-155.9893455,1 -1701744551379,2023,12,4,16,49,11,406,19.7283315,-155.9893454,8 -1701744552098,2023,12,4,16,49,12,482,19.7283315,-155.9893453,26 -1701744553018,2023,12,4,16,49,13,508,19.7283315,-155.9893452,20 -1701744553736,2023,12,4,16,49,13,522,19.7283315,-155.989345,32 -1701744554863,2023,12,4,16,49,14,585,19.7283315,-155.9893449,25 -1701744555782,2023,12,4,16,49,15,636,19.7283314,-155.9893448,52 -1701744556602,2023,12,4,16,49,16,769,19.7283315,-155.9893449,60 -1701744557496,2023,12,4,16,49,17,913,19.7283315,-155.9893447,32 -1701744558534,2023,12,4,16,49,18,906,19.7283316,-155.9893445,1 -1701744559366,2023,12,4,16,49,19,950,19.7283316,-155.9893445,13 -1701744560288,2023,12,4,16,49,20,1145,19.7283316,-155.9893445,1 -1701744561005,2023,12,4,16,49,21,1150,19.7283316,-155.9893445,1 -1701744561762,2023,12,4,16,49,21,1082,19.7283315,-155.9893445,1 -1701744562541,2023,12,4,16,49,22,983,19.7283315,-155.9893445,1 -1701744563461,2023,12,4,16,49,23,1071,19.7283315,-155.9893445,25 -1701744564184,2023,12,4,16,49,24,321,19.7283316,-155.9893443,57 -1701744564998,2023,12,4,16,49,24,1251,19.7283316,-155.9893441,53 -1701744565919,2023,12,4,16,49,25,1406,19.7283318,-155.9893438,52 -1701744566816,2023,12,4,16,49,26,1566,19.7283319,-155.9893436,23 -1701744567588,2023,12,4,16,49,27,1584,19.7283319,-155.9893434,1 -1701744568584,2023,12,4,16,49,28,1368,19.728332,-155.9893433,1 -1701744569505,2023,12,4,16,49,29,1390,19.7283321,-155.9893432,22 -1701744570426,2023,12,4,16,49,30,1313,19.7283323,-155.989343,1 -1701744571244,2023,12,4,16,49,31,1334,19.7283322,-155.989343,66 -1701744572167,2023,12,4,16,49,32,1370,19.7283324,-155.9893428,40 -1701744572829,2023,12,4,16,49,32,1448,19.7283323,-155.9893428,51 -1701744573520,2023,12,4,16,49,33,1588,19.7283323,-155.9893428,20 -1701744574210,2023,12,4,16,49,34,1790,19.7283323,-155.9893429,39 -1701744574892,2023,12,4,16,49,34,1926,19.7283323,-155.9893429,53 -1701744575576,2023,12,4,16,49,35,1989,19.7283323,-155.9893428,13 -1701744576182,2023,12,4,16,49,36,2291,19.7283323,-155.9893428,1 -1701744576748,2023,12,4,16,49,36,1702,19.7283323,-155.9893427,1 -1701744577597,2023,12,4,16,49,37,1807,19.7283323,-155.9893426,1 -1701744578516,2023,12,4,16,49,38,1864,19.7283324,-155.9893425,1 -1701744579335,2023,12,4,16,49,39,1810,19.7283324,-155.9893425,1 -1701744580184,2023,12,4,16,49,40,2123,19.7283325,-155.9893424,1 -1701744581077,2023,12,4,16,49,41,1848,19.7283326,-155.9893422,1 -1701744581944,2023,12,4,16,49,41,2166,19.7283327,-155.989342,11 -1701744582715,2023,12,4,16,49,42,2433,19.7283326,-155.9893419,1 -1701744583588,2023,12,4,16,49,43,2088,19.7283326,-155.9893418,1 -1701744584352,2023,12,4,16,49,44,315,19.7283326,-155.9893416,51 -1701744585173,2023,12,4,16,49,45,366,19.7283326,-155.9893414,39 -1701744585890,2023,12,4,16,49,45,399,19.7283326,-155.9893412,35 -1701744586744,2023,12,4,16,49,46,508,19.7283326,-155.989341,1 -1701744587428,2023,12,4,16,49,47,573,19.7283326,-155.9893409,12 -1701744588142,2023,12,4,16,49,48,604,19.7283326,-155.9893408,32 -1701744588797,2023,12,4,16,49,48,668,19.7283326,-155.9893406,31 -1701744589576,2023,12,4,16,49,49,583,19.7283326,-155.9893404,1 -1701744590599,2023,12,4,16,49,50,607,19.7283326,-155.98934,1 -1701744591443,2023,12,4,16,49,51,664,19.7283325,-155.9893399,12 -1701744592342,2023,12,4,16,49,52,765,19.7283325,-155.9893397,1 -1701744593263,2023,12,4,16,49,53,844,19.7283324,-155.9893394,10 -1701744594056,2023,12,4,16,49,54,1061,19.7283325,-155.989339,1 -1701744595003,2023,12,4,16,49,55,915,19.7283326,-155.9893386,1 -1701744595719,2023,12,4,16,49,55,1173,19.7283325,-155.9893385,1 -1701744596541,2023,12,4,16,49,56,296,19.7283325,-155.9893385,55 -1701744597357,2023,12,4,16,49,57,335,19.7283324,-155.9893383,64 -1701744598385,2023,12,4,16,49,58,18027,19.7283323,-155.9893383,64 -1701744599099,2023,12,4,16,49,59,17937,19.7283322,-155.9893382,68 -1701744599970,2023,12,4,16,49,59,17700,19.7283322,-155.989338,72 -1701744600737,2023,12,4,16,50,0,17555,19.7283322,-155.989338,75 -1701744601604,2023,12,4,16,50,1,17227,19.7283322,-155.9893379,77 -1701744602375,2023,12,4,16,50,2,16803,19.7283321,-155.9893378,66 -1701744603175,2023,12,4,16,50,3,16125,19.7283321,-155.9893377,55 -1701744604059,2023,12,4,16,50,4,15557,19.728332,-155.9893377,28 -1701744604936,2023,12,4,16,50,4,14456,19.728332,-155.9893377,1 -1701744605833,2023,12,4,16,50,5,15790,19.728332,-155.9893377,1 -1701744606675,2023,12,4,16,50,6,316,19.7283321,-155.9893377,52 -1701744607496,2023,12,4,16,50,7,363,19.728332,-155.9893377,26 -1701744608417,2023,12,4,16,50,8,361,19.728332,-155.9893377,64 -1701744609179,2023,12,4,16,50,9,495,19.728332,-155.9893378,62 -1701744609972,2023,12,4,16,50,9,559,19.7283318,-155.989338,33 -1701744610772,2023,12,4,16,50,10,592,19.7283316,-155.9893381,19 -1701744611696,2023,12,4,16,50,11,601,19.7283314,-155.9893381,11 -1701744612514,2023,12,4,16,50,12,762,19.7283314,-155.9893382,23 -1701744613435,2023,12,4,16,50,13,853,19.7283313,-155.9893383,8 -1701744614258,2023,12,4,16,50,14,905,19.7283311,-155.9893383,43 -1701744614912,2023,12,4,16,50,14,920,19.7283309,-155.9893384,63 -1701744615638,2023,12,4,16,50,15,996,19.7283307,-155.9893386,44 -1701744616323,2023,12,4,16,50,16,972,19.7283306,-155.9893386,1 -1701744617004,2023,12,4,16,50,17,939,19.7283306,-155.9893385,12 -1701744617829,2023,12,4,16,50,17,1140,19.7283306,-155.9893382,24 -1701744618393,2023,12,4,16,50,18,1195,19.7283307,-155.989338,23 -1701744619171,2023,12,4,16,50,19,1213,19.7283308,-155.9893379,23 -1701744620182,2023,12,4,16,50,20,1446,19.7283308,-155.9893379,46 -1701744620942,2023,12,4,16,50,20,1553,19.7283305,-155.9893384,70 -1701744621772,2023,12,4,16,50,21,1539,19.7283302,-155.9893388,39 -1701744622549,2023,12,4,16,50,22,335,19.7283301,-155.9893389,43 -1701744623332,2023,12,4,16,50,23,401,19.7283299,-155.9893388,67 -1701744624085,2023,12,4,16,50,24,487,19.7283297,-155.9893388,60 -1701744624942,2023,12,4,16,50,24,540,19.7283296,-155.9893382,54 -1701744625723,2023,12,4,16,50,25,629,19.7283296,-155.9893377,47 -1701744626738,2023,12,4,16,50,26,654,19.7283293,-155.9893375,42 -1701744627566,2023,12,4,16,50,27,816,19.7283294,-155.9893374,84 -1701744628488,2023,12,4,16,50,28,691,19.7283293,-155.9893373,1 -1701744629408,2023,12,4,16,50,29,834,19.7283293,-155.9893374,35 -1701744630330,2023,12,4,16,50,30,914,19.7283292,-155.9893379,21 -1701744631355,2023,12,4,16,50,31,1119,19.7283292,-155.9893381,19 -1701744632271,2023,12,4,16,50,32,1028,19.7283291,-155.9893381,1 -1701744633201,2023,12,4,16,50,33,313,19.7283288,-155.9893382,42 -1701744633973,2023,12,4,16,50,33,434,19.7283285,-155.9893383,66 -1701744634940,2023,12,4,16,50,34,476,19.7283286,-155.9893381,49 -1701744635884,2023,12,4,16,50,35,496,19.7283288,-155.9893374,11 -1701744636784,2023,12,4,16,50,36,470,19.7283287,-155.9893373,1 -1701744637769,2023,12,4,16,50,37,438,19.7283287,-155.9893372,28 -1701744638626,2023,12,4,16,50,38,466,19.7283285,-155.9893373,13 -1701744639375,2023,12,4,16,50,39,500,19.7283283,-155.9893373,10 -1701744640433,2023,12,4,16,50,40,570,19.7283281,-155.9893373,17 -1701744641287,2023,12,4,16,50,41,641,19.728328,-155.9893372,43 -1701744642210,2023,12,4,16,50,42,714,19.728328,-155.9893371,1 -1701744643234,2023,12,4,16,50,43,770,19.7283281,-155.9893369,1 -1701744644258,2023,12,4,16,50,44,904,19.7283282,-155.9893367,13 -1701744645282,2023,12,4,16,50,45,994,19.7283284,-155.9893365,1 -1701744646158,2023,12,4,16,50,46,937,19.7283285,-155.9893364,1 -1701744647069,2023,12,4,16,50,47,750,19.7283287,-155.9893362,1 -1701744648037,2023,12,4,16,50,48,847,19.7283288,-155.989336,1 -1701744648968,2023,12,4,16,50,48,825,19.7283291,-155.9893358,1 -1701744649786,2023,12,4,16,50,49,848,19.7283292,-155.9893357,1 -1701744650710,2023,12,4,16,50,50,892,19.7283294,-155.9893356,9 -1701744651425,2023,12,4,16,50,51,976,19.7283295,-155.9893355,19 -1701744652144,2023,12,4,16,50,52,1141,19.7283293,-155.9893355,39 -1701744653138,2023,12,4,16,50,53,1319,19.7283292,-155.9893355,63 -1701744653882,2023,12,4,16,50,53,1413,19.7283291,-155.9893355,51 -1701744654806,2023,12,4,16,50,54,1440,19.7283291,-155.9893355,41 -1701744655577,2023,12,4,16,50,55,1451,19.7283292,-155.9893354,48 -1701744656326,2023,12,4,16,50,56,1713,19.7283292,-155.9893354,11 -1701744656998,2023,12,4,16,50,56,1244,19.7283293,-155.9893354,1 -1701744657740,2023,12,4,16,50,57,1702,19.7283295,-155.9893354,1 -1701744658434,2023,12,4,16,50,58,1587,19.7283296,-155.9893353,22 -1701744659238,2023,12,4,16,50,59,1753,19.7283297,-155.9893354,10 -1701744659925,2023,12,4,16,50,59,1866,19.7283298,-155.9893354,22 -1701744660482,2023,12,4,16,51,0,1496,19.7283299,-155.9893354,1 -1701744661456,2023,12,4,16,51,1,1655,19.72833,-155.9893352,1 -1701744662386,2023,12,4,16,51,2,1311,19.7283301,-155.989335,1 -1701744663407,2023,12,4,16,51,3,1364,19.7283302,-155.9893349,25 -1701744664226,2023,12,4,16,51,4,1333,19.7283304,-155.9893349,31 -1701744665149,2023,12,4,16,51,5,1425,19.7283307,-155.9893347,30 -1701744665967,2023,12,4,16,51,5,1476,19.7283311,-155.9893346,47 -1701744666684,2023,12,4,16,51,6,1768,19.7283312,-155.9893346,49 -1701744667606,2023,12,4,16,51,7,1972,19.7283314,-155.9893346,32 -1701744668527,2023,12,4,16,51,8,294,19.7283318,-155.9893345,51 -1701744669552,2023,12,4,16,51,9,1152,19.7283321,-155.9893345,66 -1701744670439,2023,12,4,16,51,10,1297,19.7283324,-155.9893345,44 -1701744671393,2023,12,4,16,51,11,302,19.7283329,-155.9893343,20 -1701744672214,2023,12,4,16,51,12,338,19.728333,-155.9893343,1 -1701744673035,2023,12,4,16,51,13,420,19.7283331,-155.9893343,49 -1701744673853,2023,12,4,16,51,13,421,19.7283331,-155.9893345,69 -1701744674877,2023,12,4,16,51,14,423,19.7283331,-155.9893345,58 -1701744675799,2023,12,4,16,51,15,438,19.7283333,-155.9893344,67 -1701744676719,2023,12,4,16,51,16,498,19.7283336,-155.9893341,13 -1701744677526,2023,12,4,16,51,17,568,19.7283338,-155.9893339,11 -1701744678314,2023,12,4,16,51,18,642,19.7283341,-155.9893338,32 -1701744679178,2023,12,4,16,51,19,816,19.7283342,-155.9893337,35 -1701744680099,2023,12,4,16,51,20,859,19.7283344,-155.9893336,24 -1701744680982,2023,12,4,16,51,20,1006,19.7283346,-155.9893333,10 -1701744681839,2023,12,4,16,51,21,1073,19.7283347,-155.9893333,39 -1701744682557,2023,12,4,16,51,22,426,19.7283348,-155.9893332,60 -1701744683377,2023,12,4,16,51,23,439,19.728335,-155.989333,63 -1701744684713,2023,12,4,16,51,24,510,19.7283352,-155.9893329,1 -1701744685695,2023,12,4,16,51,25,639,19.7283353,-155.9893326,21 -1701744686550,2023,12,4,16,51,26,805,19.7283355,-155.9893324,31 -1701744687369,2023,12,4,16,51,27,710,19.7283357,-155.9893322,1 -1701744688291,2023,12,4,16,51,28,656,19.7283359,-155.9893319,1 -1701744689008,2023,12,4,16,51,29,565,19.728336,-155.9893318,24 -1701744689828,2023,12,4,16,51,29,613,19.7283361,-155.9893318,1 -1701744690852,2023,12,4,16,51,30,669,19.7283363,-155.9893316,35 -1701744691670,2023,12,4,16,51,31,795,19.7283364,-155.9893315,22 -1701744692491,2023,12,4,16,51,32,886,19.7283366,-155.9893313,58 -1701744693311,2023,12,4,16,51,33,943,19.7283367,-155.9893311,14 -1701744694106,2023,12,4,16,51,34,706,19.7283369,-155.989331,1 -1701744694943,2023,12,4,16,51,34,479,19.728337,-155.9893307,1 -1701744695933,2023,12,4,16,51,35,739,19.7283372,-155.9893306,1 -1701744696792,2023,12,4,16,51,36,842,19.7283374,-155.9893303,10 -1701744697610,2023,12,4,16,51,37,839,19.7283376,-155.98933,24 -1701744698435,2023,12,4,16,51,38,1103,19.7283377,-155.9893299,31 -1701744699088,2023,12,4,16,51,39,283,19.7283378,-155.9893299,57 -1701744699827,2023,12,4,16,51,39,319,19.7283379,-155.9893298,47 -1701744700501,2023,12,4,16,51,40,410,19.728338,-155.9893297,32 -1701744701187,2023,12,4,16,51,41,451,19.7283381,-155.9893297,31 -1701744701871,2023,12,4,16,51,41,496,19.7283382,-155.9893296,33 -1701744702440,2023,12,4,16,51,42,550,19.7283382,-155.9893295,1 -1701744702995,2023,12,4,16,51,42,645,19.7283383,-155.9893295,1 -1701744703557,2023,12,4,16,51,43,665,19.7283384,-155.9893293,1 -1701744704160,2023,12,4,16,51,44,739,19.7283384,-155.9893292,12 -1701744704715,2023,12,4,16,51,44,767,19.7283384,-155.9893293,10 -1701744705538,2023,12,4,16,51,45,887,19.7283384,-155.9893293,58 -1701744706427,2023,12,4,16,51,46,990,19.7283384,-155.9893292,20 -1701744707241,2023,12,4,16,51,47,996,19.7283383,-155.989329,10 -1701744708156,2023,12,4,16,51,48,1192,19.7283382,-155.989329,22 -1701744708872,2023,12,4,16,51,48,1343,19.7283381,-155.9893289,49 -1701744710263,2023,12,4,16,51,50,1465,19.7283381,-155.9893289,36 -1701744711479,2023,12,4,16,51,51,427,19.7283382,-155.9893292,55 -1701744712616,2023,12,4,16,51,52,487,19.7283383,-155.9893295,35 -1701744713987,2023,12,4,16,51,53,660,19.7283383,-155.9893296,1 -1701744715189,2023,12,4,16,51,55,761,19.7283383,-155.9893296,27 -1701744715961,2023,12,4,16,51,55,846,19.7283383,-155.9893295,29 -1702779482396,2023,12,16,16,18,2,9153,19.7283635,-155.9894455,26 -1702779482959,2023,12,16,16,18,2,9794,19.7283638,-155.9894453,4 -1702779483516,2023,12,16,16,18,3,9449,19.728364,-155.9894452,6 -1702779484089,2023,12,16,16,18,4,9473,19.7283641,-155.9894452,21 -1702779484695,2023,12,16,16,18,4,9594,19.7283643,-155.9894451,7 -1702779485263,2023,12,16,16,18,5,9552,19.7283645,-155.989445,1 -1702779485821,2023,12,16,16,18,5,9617,19.7283648,-155.9894449,1 -1702779486384,2023,12,16,16,18,6,9344,19.7283649,-155.9894448,1 -1702779486951,2023,12,16,16,18,6,9141,19.7283649,-155.9894449,1 -1702779487515,2023,12,16,16,18,7,8420,19.7283649,-155.9894449,8 -1702779488070,2023,12,16,16,18,8,8183,19.728365,-155.9894449,8 -1702779488630,2023,12,16,16,18,8,8803,19.7283653,-155.9894448,24 -1702779489192,2023,12,16,16,18,9,8770,19.7283658,-155.9894447,15 -1702779489760,2023,12,16,16,18,9,8682,19.7283661,-155.9894446,18 -1702779490314,2023,12,16,16,18,10,8698,19.7283665,-155.9894445,30 -1702779490884,2023,12,16,16,18,10,8743,19.7283668,-155.9894444,33 -1702779491663,2023,12,16,16,18,11,8838,19.7283673,-155.9894442,11 -1702779492276,2023,12,16,16,18,12,9041,19.7283676,-155.989444,22 -1702779492865,2023,12,16,16,18,12,9270,19.7283677,-155.9894439,21 -1702779493421,2023,12,16,16,18,13,9494,19.7283678,-155.9894439,1 -1702779493991,2023,12,16,16,18,13,9449,19.7283679,-155.9894438,1 -1702779494557,2023,12,16,16,18,14,9563,19.7283681,-155.9894436,1 -1702779495108,2023,12,16,16,18,15,9313,19.7283682,-155.9894436,19 -1702779495658,2023,12,16,16,18,15,8935,19.7283685,-155.9894435,9 -1702779496221,2023,12,16,16,18,16,8523,19.728369,-155.9894433,19 -1702779496801,2023,12,16,16,18,16,7886,19.7283694,-155.9894431,19 -1702779497364,2023,12,16,16,18,17,9645,19.7283697,-155.9894431,1 -1702779497923,2023,12,16,16,18,17,8516,19.7283702,-155.989443,1 -1702779498511,2023,12,16,16,18,18,6530,19.7283705,-155.9894429,1 -1702779499075,2023,12,16,16,18,19,9378,19.7283707,-155.9894428,1 -1702779499646,2023,12,16,16,18,19,8211,19.7283712,-155.9894426,1 -1702779500219,2023,12,16,16,18,20,8506,19.7283716,-155.9894425,1 -1702779500773,2023,12,16,16,18,20,8103,19.7283718,-155.9894425,1 -1702779501425,2023,12,16,16,18,21,7947,19.7283721,-155.9894424,1 -1702779501991,2023,12,16,16,18,21,9391,19.7283724,-155.9894424,1 -1702779502574,2023,12,16,16,18,22,8012,19.7283728,-155.9894422,1 -1702779503123,2023,12,16,16,18,23,8531,19.728373,-155.9894421,1 -1702779503691,2023,12,16,16,18,23,9485,19.7283731,-155.989442,1 -1702779504259,2023,12,16,16,18,24,9426,19.7283731,-155.9894419,1 -1702779504819,2023,12,16,16,18,24,9235,19.7283734,-155.9894418,1 -1702779505384,2023,12,16,16,18,25,8616,19.7283736,-155.9894417,11 -1702779505951,2023,12,16,16,18,25,8480,19.7283739,-155.9894416,1 -1702779506512,2023,12,16,16,18,26,7529,19.7283743,-155.9894416,1 -1702779507081,2023,12,16,16,18,27,7101,19.7283745,-155.9894416,1 -1702779507659,2023,12,16,16,18,27,7862,19.7283749,-155.9894415,1 -1702779508224,2023,12,16,16,18,28,7555,19.7283751,-155.9894415,1 -1702779508783,2023,12,16,16,18,28,6239,19.7283753,-155.9894415,1 -1702779509339,2023,12,16,16,18,29,8140,19.7283755,-155.9894415,1 -1702779509902,2023,12,16,16,18,29,8159,19.7283757,-155.9894414,1 -1702779510484,2023,12,16,16,18,30,8159,19.7283758,-155.9894414,1 -1702779511042,2023,12,16,16,18,31,8558,19.7283758,-155.9894414,1 -1702779511624,2023,12,16,16,18,31,6378,19.7283758,-155.9894414,1 -1702779512194,2023,12,16,16,18,32,8325,19.7283758,-155.9894414,1 -1702779512752,2023,12,16,16,18,32,8258,19.7283758,-155.9894414,1 -1702779513307,2023,12,16,16,18,33,5724,19.7283759,-155.9894414,1 -1702779513865,2023,12,16,16,18,33,5882,19.728376,-155.9894415,1 -1702779514432,2023,12,16,16,18,34,7303,19.7283761,-155.9894415,1 -1702779515005,2023,12,16,16,18,35,6880,19.7283762,-155.9894415,1 -1702779515590,2023,12,16,16,18,35,5936,19.7283765,-155.9894415,1 -1702779516163,2023,12,16,16,18,36,5269,19.7283768,-155.9894414,1 -1702779516727,2023,12,16,16,18,36,6598,19.7283769,-155.9894414,1 -1702779517284,2023,12,16,16,18,37,4224,19.7283771,-155.9894414,1 -1702779517850,2023,12,16,16,18,37,3774,19.7283774,-155.9894414,1 -1702779518415,2023,12,16,16,18,38,3278,19.7283775,-155.9894414,1 -1702779518978,2023,12,16,16,18,38,4516,19.7283778,-155.9894414,1 -1702779519533,2023,12,16,16,18,39,4052,19.7283779,-155.9894414,1 -1702779520094,2023,12,16,16,18,40,4577,19.728378,-155.9894413,1 -1702779520666,2023,12,16,16,18,40,4052,19.7283781,-155.9894413,1 -1702779521211,2023,12,16,16,18,41,5119,19.7283782,-155.9894413,1 -1702779521778,2023,12,16,16,18,41,5751,19.7283783,-155.9894412,1 -1702779522345,2023,12,16,16,18,42,3535,19.7283784,-155.9894412,1 -1702779522913,2023,12,16,16,18,42,3946,19.7283784,-155.9894412,1 -1702779523505,2023,12,16,16,18,43,4408,19.7283785,-155.9894411,8 -1702779524082,2023,12,16,16,18,44,4552,19.7283784,-155.989441,1 -1702779524725,2023,12,16,16,18,44,4741,19.7283784,-155.9894411,1 -1702779525284,2023,12,16,16,18,45,4764,19.7283783,-155.9894411,1 -1702779525846,2023,12,16,16,18,45,4843,19.7283781,-155.9894411,1 -1702779526393,2023,12,16,16,18,46,4718,19.7283781,-155.989441,1 -1702779526952,2023,12,16,16,18,46,4282,19.7283778,-155.9894411,1 -1702779527799,2023,12,16,16,18,47,5767,19.7283775,-155.9894411,1 -1702779528455,2023,12,16,16,18,48,6158,19.7283776,-155.989441,1 -1702779529016,2023,12,16,16,18,49,6869,19.7283776,-155.989441,8 -1702779529602,2023,12,16,16,18,49,7577,19.7283777,-155.9894409,16 -1702779530167,2023,12,16,16,18,50,7754,19.7283776,-155.9894408,8 -1702779530753,2023,12,16,16,18,50,8044,19.7283774,-155.9894408,1 -1702779531319,2023,12,16,16,18,51,8653,19.7283772,-155.9894408,1 -1702779531896,2023,12,16,16,18,51,8937,19.7283773,-155.9894408,8 -1702779532473,2023,12,16,16,18,52,9021,19.7283773,-155.9894407,18 -1702779533018,2023,12,16,16,18,53,9096,19.7283773,-155.9894407,9 -1702779533584,2023,12,16,16,18,53,9156,19.728377,-155.9894406,9 -1702779534140,2023,12,16,16,18,54,8986,19.7283768,-155.9894406,8 -1702779534738,2023,12,16,16,18,54,9139,19.7283768,-155.9894405,17 -1702779535326,2023,12,16,16,18,55,9193,19.7283768,-155.9894404,6 -1702779535893,2023,12,16,16,18,55,9259,19.7283769,-155.9894404,6 -1702779536512,2023,12,16,16,18,56,9292,19.7283769,-155.9894404,1 -1702779537168,2023,12,16,16,18,57,9037,19.7283769,-155.9894404,1 -1702779537733,2023,12,16,16,18,57,8989,19.7283769,-155.9894404,1 -1702779538301,2023,12,16,16,18,58,7325,19.7283769,-155.9894403,1 -1702779538852,2023,12,16,16,18,58,7470,19.7283767,-155.9894403,1 -1702779539429,2023,12,16,16,18,59,8097,19.7283766,-155.9894404,1 -1702779540001,2023,12,16,16,19,0,7642,19.7283764,-155.9894404,1 -1702779540605,2023,12,16,16,19,0,7502,19.7283762,-155.9894404,1 -1702779541172,2023,12,16,16,19,1,7401,19.7283758,-155.9894404,1 -1702779541755,2023,12,16,16,19,1,8273,19.7283756,-155.9894404,1 -1702779542326,2023,12,16,16,19,2,7698,19.7283751,-155.9894405,1 -1702779542888,2023,12,16,16,19,2,8246,19.7283749,-155.9894405,1 -1702779543491,2023,12,16,16,19,3,8296,19.7283747,-155.9894406,1 -1702779544065,2023,12,16,16,19,4,8581,19.7283745,-155.9894407,1 -1702779544701,2023,12,16,16,19,4,9241,19.7283742,-155.9894407,12 -1702779545258,2023,12,16,16,19,5,9194,19.7283739,-155.9894408,34 -1702779545818,2023,12,16,16,19,5,9236,19.7283735,-155.9894409,46 -1702779546379,2023,12,16,16,19,6,9149,19.7283733,-155.989441,21 -1702779546931,2023,12,16,16,19,6,9050,19.7283729,-155.9894411,20 -1702779547483,2023,12,16,16,19,7,8795,19.7283722,-155.9894414,28 -1702779548060,2023,12,16,16,19,8,8962,19.7283718,-155.9894415,28 -1702779548615,2023,12,16,16,19,8,8788,19.7283711,-155.9894418,7 -1702779549201,2023,12,16,16,19,9,8550,19.7283707,-155.9894421,1 -1702779549763,2023,12,16,16,19,9,8666,19.7283703,-155.9894423,1 -1702779550308,2023,12,16,16,19,10,8615,19.7283702,-155.9894423,1 -1702779550864,2023,12,16,16,19,10,9068,19.72837,-155.9894425,1 -1702779551457,2023,12,16,16,19,11,9072,19.7283696,-155.9894426,1 -1702779552045,2023,12,16,16,19,12,4761,19.7283695,-155.9894427,1 -1702779552657,2023,12,16,16,19,12,7233,19.7283689,-155.9894429,1 -1702779553207,2023,12,16,16,19,13,8535,19.7283682,-155.9894431,1 -1702779553770,2023,12,16,16,19,13,8913,19.7283678,-155.9894433,1 -1702779554344,2023,12,16,16,19,14,6303,19.7283676,-155.9894434,1 -1702779554899,2023,12,16,16,19,14,7313,19.7283673,-155.9894436,10 -1702779555456,2023,12,16,16,19,15,8029,19.728367,-155.9894438,30 -1702779556013,2023,12,16,16,19,16,8996,19.7283669,-155.9894439,1 -1702779556626,2023,12,16,16,19,16,8115,19.7283669,-155.989444,1 -1702779557185,2023,12,16,16,19,17,8989,19.7283666,-155.9894441,9 -1702779557732,2023,12,16,16,19,17,8727,19.7283662,-155.9894443,1 -1702779558312,2023,12,16,16,19,18,8519,19.728366,-155.9894443,1 -1702779558879,2023,12,16,16,19,18,8724,19.7283659,-155.9894444,1 -1702779559446,2023,12,16,16,19,19,8810,19.7283657,-155.9894445,1 -1702779560010,2023,12,16,16,19,20,8902,19.7283655,-155.9894446,21 -1702779659717,2023,12,16,16,20,59,9547,19.7283746,-155.9894431,1 -1702779660304,2023,12,16,16,21,0,9605,19.7283748,-155.9894431,1 -1702779660865,2023,12,16,16,21,0,9536,19.728375,-155.989443,1 -1702779661422,2023,12,16,16,21,1,9453,19.7283753,-155.9894429,1 -1702779661983,2023,12,16,16,21,1,8389,19.7283755,-155.9894429,1 -1702779662571,2023,12,16,16,21,2,9349,19.7283755,-155.9894429,7 -1702779663125,2023,12,16,16,21,3,9148,19.7283755,-155.9894429,6 -1702779663683,2023,12,16,16,21,3,9061,19.7283756,-155.9894429,7 -1702779664256,2023,12,16,16,21,4,9121,19.7283756,-155.9894429,16 -1702779664807,2023,12,16,16,21,4,9140,19.7283756,-155.9894429,37 -1702779665366,2023,12,16,16,21,5,9121,19.7283756,-155.9894429,32 -1702779665926,2023,12,16,16,21,5,8782,19.7283756,-155.9894429,36 -1702779666482,2023,12,16,16,21,6,8781,19.7283754,-155.9894429,36 -1702779667042,2023,12,16,16,21,7,8793,19.7283753,-155.9894429,49 -1702779667644,2023,12,16,16,21,7,8772,19.7283751,-155.9894429,49 -1702779668204,2023,12,16,16,21,8,8864,19.7283748,-155.989443,36 -1702779668777,2023,12,16,16,21,8,8939,19.7283744,-155.9894431,10 -1702779669328,2023,12,16,16,21,9,8923,19.7283741,-155.9894432,1 -1702779669887,2023,12,16,16,21,9,9068,19.728374,-155.9894432,1 -1702779670453,2023,12,16,16,21,10,8991,19.7283738,-155.9894433,1 -1702779671033,2023,12,16,16,21,11,9171,19.7283737,-155.9894433,1 -1702779671694,2023,12,16,16,21,11,9130,19.7283735,-155.9894433,1 -1702779672273,2023,12,16,16,21,12,8921,19.7283734,-155.9894433,9 -1702779672829,2023,12,16,16,21,12,8751,19.7283732,-155.9894433,19 -1702779673412,2023,12,16,16,21,13,8305,19.728373,-155.9894433,21 -1702779673963,2023,12,16,16,21,13,8247,19.7283727,-155.9894433,15 -1702779674509,2023,12,16,16,21,14,6787,19.7283726,-155.9894433,22 -1702779675063,2023,12,16,16,21,15,7929,19.7283725,-155.9894432,1 -1702779675662,2023,12,16,16,21,15,8365,19.7283724,-155.9894431,7 -1702779784466,2023,12,16,16,23,4,8709,19.7283801,-155.9894508,9 -1702779785018,2023,12,16,16,23,5,8239,19.7283801,-155.9894507,10 -1702779785614,2023,12,16,16,23,5,8549,19.7283801,-155.9894507,10 -1702779786189,2023,12,16,16,23,6,7367,19.7283801,-155.9894507,1 -1702779786756,2023,12,16,16,23,6,8486,19.7283801,-155.9894507,11 -1702779787309,2023,12,16,16,23,7,6362,19.7283801,-155.9894507,1 -1702779787896,2023,12,16,16,23,7,8042,19.72838,-155.9894507,1 -1702779788449,2023,12,16,16,23,8,5501,19.72838,-155.9894507,1 -1702779789015,2023,12,16,16,23,9,6754,19.7283799,-155.9894507,1 -1702779817298,2023,12,16,16,23,37,8594,19.7283804,-155.9894478,1 -1702779817861,2023,12,16,16,23,37,8817,19.7283804,-155.9894477,1 -1702779818406,2023,12,16,16,23,38,8337,19.7283804,-155.9894476,1 -1702779818969,2023,12,16,16,23,38,7335,19.7283804,-155.9894475,1 -1702779819524,2023,12,16,16,23,39,9425,19.7283804,-155.9894473,1 -1702779820079,2023,12,16,16,23,40,8072,19.7283804,-155.9894473,11 -1702779820741,2023,12,16,16,23,40,9372,19.7283804,-155.9894471,1 -1702779821296,2023,12,16,16,23,41,9372,19.7283804,-155.989447,13 -1702779821874,2023,12,16,16,23,41,9310,19.7283804,-155.9894469,24 -1702779822431,2023,12,16,16,23,42,9228,19.7283804,-155.9894469,9 -1702779822987,2023,12,16,16,23,42,9040,19.7283804,-155.9894468,9 -1702779823649,2023,12,16,16,23,43,9130,19.7283803,-155.9894468,1 -1702779824213,2023,12,16,16,23,44,9201,19.7283803,-155.9894467,10 -1702779824780,2023,12,16,16,23,44,7366,19.7283802,-155.9894467,1 -1702779825340,2023,12,16,16,23,45,9568,19.7283802,-155.9894466,1 -1702779825902,2023,12,16,16,23,45,9624,19.7283801,-155.9894466,1 -1702779826460,2023,12,16,16,23,46,9671,19.7283801,-155.9894465,1 -1702779827018,2023,12,16,16,23,47,9660,19.7283801,-155.9894464,1 -1702779827674,2023,12,16,16,23,47,9596,19.72838,-155.9894463,1 -1702779828250,2023,12,16,16,23,48,9772,19.72838,-155.9894463,7 -1702779828804,2023,12,16,16,23,48,9503,19.72838,-155.9894462,8 -1702779829355,2023,12,16,16,23,49,9287,19.7283799,-155.9894462,1 -1702779829923,2023,12,16,16,23,49,9466,19.7283798,-155.9894461,1 -1702779830485,2023,12,16,16,23,50,9017,19.7283797,-155.9894461,18 -1702779831051,2023,12,16,16,23,51,9060,19.7283796,-155.9894461,1 -1702779831641,2023,12,16,16,23,51,8851,19.7283795,-155.9894461,9 -1702779832200,2023,12,16,16,23,52,9079,19.7283794,-155.9894461,26 -1702779832762,2023,12,16,16,23,52,9044,19.7283793,-155.9894461,7 -1702779833320,2023,12,16,16,23,53,9440,19.7283792,-155.9894461,14 -1702779833881,2023,12,16,16,23,53,9406,19.728379,-155.9894461,14 -1702779834442,2023,12,16,16,23,54,8423,19.728379,-155.9894461,18 -1702779835002,2023,12,16,16,23,55,9056,19.7283788,-155.9894461,21 -1702779835621,2023,12,16,16,23,55,9367,19.7283787,-155.9894461,7 -1702779836182,2023,12,16,16,23,56,8846,19.7283786,-155.9894461,1 -1702779836766,2023,12,16,16,23,56,9270,19.7283785,-155.9894461,7 -1702779837323,2023,12,16,16,23,57,8814,19.7283784,-155.9894461,1 -1702779837880,2023,12,16,16,23,57,9352,19.7283783,-155.9894461,1 -1702779838462,2023,12,16,16,23,58,9342,19.7283783,-155.989446,1 -1702779839022,2023,12,16,16,23,59,7481,19.7283781,-155.9894461,1 -1702779839669,2023,12,16,16,23,59,5830,19.7283782,-155.989446,1 -1702780001992,2023,12,16,16,26,41,5914,19.7283772,-155.9894383,1 -1702780002553,2023,12,16,16,26,42,8108,19.7283772,-155.9894383,1 -1702780003109,2023,12,16,16,26,43,6662,19.7283772,-155.9894383,1 -1702780003673,2023,12,16,16,26,43,7829,19.7283775,-155.9894382,10 -1702780004241,2023,12,16,16,26,44,8135,19.7283776,-155.9894381,19 -1702780004794,2023,12,16,16,26,44,8804,19.7283779,-155.989438,9 -1702780005409,2023,12,16,16,26,45,8790,19.7283781,-155.9894379,10 -1702780005989,2023,12,16,16,26,45,8903,19.7283782,-155.9894379,1 -1702780006587,2023,12,16,16,26,46,8294,19.7283782,-155.9894379,24 -1702780007143,2023,12,16,16,26,47,7693,19.7283783,-155.9894378,12 -1702780007811,2023,12,16,16,26,47,7214,19.7283785,-155.9894378,1 -1702780008367,2023,12,16,16,26,48,7675,19.7283787,-155.9894377,1 -1702780008918,2023,12,16,16,26,48,8296,19.7283788,-155.9894376,10 -1702780009472,2023,12,16,16,26,49,8541,19.728379,-155.9894375,1 -1702780010051,2023,12,16,16,26,50,9437,19.7283791,-155.9894374,9 -1702780011005,2023,12,16,16,26,51,9465,19.7283793,-155.9894372,9 -1702780011646,2023,12,16,16,26,51,9525,19.7283793,-155.9894372,1 -1702780012384,2023,12,16,16,26,52,9214,19.7283794,-155.989437,18 -1702780013183,2023,12,16,16,26,53,9238,19.7283795,-155.9894369,1 -1702780017084,2023,12,16,16,26,57,9266,19.7283798,-155.9894367,1 -1702780018027,2023,12,16,16,26,58,8753,19.7283805,-155.9894363,34 -1702780018622,2023,12,16,16,26,58,9043,19.7283806,-155.9894362,10 -1702780019174,2023,12,16,16,26,59,9156,19.7283808,-155.9894361,9 -1702780019732,2023,12,16,16,26,59,9068,19.728381,-155.989436,21 -1702780020290,2023,12,16,16,27,0,8842,19.7283811,-155.9894359,20 -1702780228230,2023,12,16,16,30,28,6062,19.728376,-155.9894312,1 -1702780228816,2023,12,16,16,30,28,7433,19.7283762,-155.9894311,1 -1702780229368,2023,12,16,16,30,29,7471,19.7283763,-155.9894311,1 -1702780229935,2023,12,16,16,30,29,8903,19.7283765,-155.9894311,1 -1702780230499,2023,12,16,16,30,30,8106,19.7283766,-155.989431,1 -1702780231073,2023,12,16,16,30,31,8697,19.7283767,-155.9894309,1 -1702780231659,2023,12,16,16,30,31,9295,19.7283767,-155.9894308,1 -1702780232223,2023,12,16,16,30,32,9045,19.7283769,-155.9894307,1 -1702780232787,2023,12,16,16,30,32,9008,19.7283772,-155.9894307,1 -1702780233347,2023,12,16,16,30,33,8275,19.7283774,-155.9894307,1 -1702780233906,2023,12,16,16,30,33,9496,19.7283776,-155.9894308,1 -1702780234477,2023,12,16,16,30,34,9413,19.7283777,-155.9894308,1 -1702780235029,2023,12,16,16,30,35,9543,19.7283777,-155.9894307,1 -1702780235608,2023,12,16,16,30,35,9416,19.7283779,-155.9894307,1 -1702780236189,2023,12,16,16,30,36,9428,19.7283783,-155.9894307,1 -1702780236883,2023,12,16,16,30,36,9260,19.7283785,-155.9894307,20 -1702780237451,2023,12,16,16,30,37,9081,19.7283785,-155.9894306,24 -1702780238013,2023,12,16,16,30,38,8954,19.7283786,-155.9894306,24 -1702780238597,2023,12,16,16,30,38,8784,19.7283787,-155.9894306,11 -1702780239145,2023,12,16,16,30,39,8703,19.7283787,-155.9894307,1 -1702780239697,2023,12,16,16,30,39,8745,19.7283786,-155.9894307,1 -1702780240267,2023,12,16,16,30,40,7092,19.7283787,-155.9894307,1 -1702780240816,2023,12,16,16,30,40,6122,19.7283789,-155.9894307,1 -1702780241382,2023,12,16,16,30,41,6373,19.728379,-155.9894307,1 -1702780241965,2023,12,16,16,30,41,7385,19.7283791,-155.9894308,1 -1702780242613,2023,12,16,16,30,42,6395,19.7283792,-155.9894309,1 -1702780243168,2023,12,16,16,30,43,6365,19.7283793,-155.989431,1 -1702780243733,2023,12,16,16,30,43,6258,19.7283793,-155.9894312,1 -1702780244311,2023,12,16,16,30,44,6705,19.7283792,-155.9894313,1 -1702780244885,2023,12,16,16,30,44,7297,19.728379,-155.9894314,1 -1702780245448,2023,12,16,16,30,45,7547,19.7283788,-155.9894317,9 -1702780245994,2023,12,16,16,30,45,7759,19.7283788,-155.989432,23 -1702780246559,2023,12,16,16,30,46,8520,19.7283788,-155.9894323,21 -1702780247123,2023,12,16,16,30,47,8054,19.7283785,-155.9894324,11 -1702780247695,2023,12,16,16,30,47,8990,19.7283784,-155.9894324,10 -1702780248281,2023,12,16,16,30,48,9455,19.7283784,-155.9894324,27 -1702780248861,2023,12,16,16,30,48,9374,19.7283781,-155.9894323,17 -1702780249420,2023,12,16,16,30,49,9387,19.728378,-155.9894323,9 -1702780249991,2023,12,16,16,30,49,9480,19.728378,-155.9894323,9 -1702780250540,2023,12,16,16,30,50,9461,19.7283779,-155.9894324,9 -1702780251096,2023,12,16,16,30,51,8092,19.728378,-155.9894324,1 -1702780251687,2023,12,16,16,30,51,8771,19.728378,-155.9894324,1 -1702780252287,2023,12,16,16,30,52,9457,19.728378,-155.9894325,1 -1702780252833,2023,12,16,16,30,52,9367,19.7283781,-155.9894325,10 -1702780253393,2023,12,16,16,30,53,7704,19.7283782,-155.9894325,1 -1702780253957,2023,12,16,16,30,53,9336,19.7283783,-155.9894325,1 -1702780254573,2023,12,16,16,30,54,8647,19.7283784,-155.9894325,11 -1702780255123,2023,12,16,16,30,55,8597,19.7283785,-155.9894325,23 -1702780255720,2023,12,16,16,30,55,7863,19.7283785,-155.9894325,1 -1702780256293,2023,12,16,16,30,56,7753,19.7283786,-155.9894325,1 -1702780256874,2023,12,16,16,30,56,8050,19.7283786,-155.9894325,1 -1702780257427,2023,12,16,16,30,57,8259,19.7283785,-155.9894325,1 -1702780257989,2023,12,16,16,30,57,8415,19.7283784,-155.9894325,1 -1702780258536,2023,12,16,16,30,58,8801,19.7283784,-155.9894325,1 -1702780259096,2023,12,16,16,30,59,9209,19.7283783,-155.9894325,1 -1702780259670,2023,12,16,16,30,59,9179,19.7283784,-155.9894325,1 -1702780260234,2023,12,16,16,31,0,9238,19.7283785,-155.9894325,1 -1702780260800,2023,12,16,16,31,0,8951,19.7283787,-155.9894325,1 -1702780261357,2023,12,16,16,31,1,9551,19.7283787,-155.9894325,1 -1702780261905,2023,12,16,16,31,1,8554,19.7283788,-155.9894325,1 -1702780262478,2023,12,16,16,31,2,9365,19.7283788,-155.9894325,1 -1702780263061,2023,12,16,16,31,3,6721,19.7283791,-155.9894325,1 -1702780263620,2023,12,16,16,31,3,7597,19.7283791,-155.9894324,1 -1702780264206,2023,12,16,16,31,4,8351,19.7283793,-155.9894323,1 -1702780264781,2023,12,16,16,31,4,8607,19.7283794,-155.9894322,1 -1702780265339,2023,12,16,16,31,5,8249,19.7283795,-155.9894322,1 -1702780265895,2023,12,16,16,31,5,8955,19.7283796,-155.9894322,19 -1702780266465,2023,12,16,16,31,6,8941,19.7283798,-155.9894322,14 -1702780267035,2023,12,16,16,31,7,9036,19.7283799,-155.9894321,18 -1702780267608,2023,12,16,16,31,7,9226,19.7283799,-155.9894321,8 -1702780268173,2023,12,16,16,31,8,8957,19.7283801,-155.989432,8 -1702780268737,2023,12,16,16,31,8,8769,19.72838,-155.989432,1 -1702780269286,2023,12,16,16,31,9,8923,19.7283798,-155.9894321,1 -1702780269865,2023,12,16,16,31,9,8250,19.7283794,-155.9894321,1 -1702780270417,2023,12,16,16,31,10,8401,19.7283792,-155.9894322,1 -1702780271077,2023,12,16,16,31,11,9222,19.7283787,-155.9894322,11 -1702780271631,2023,12,16,16,31,11,8591,19.7283784,-155.9894322,1 -1702780272191,2023,12,16,16,31,12,9374,19.7283778,-155.9894323,5 -1702780272757,2023,12,16,16,31,12,9351,19.7283773,-155.9894324,5 -1702780273313,2023,12,16,16,31,13,9317,19.728377,-155.9894325,13 -1702780273897,2023,12,16,16,31,13,9364,19.7283765,-155.9894326,16 -1702780274451,2023,12,16,16,31,14,9173,19.7283759,-155.9894328,17 -1702780275003,2023,12,16,16,31,15,8948,19.7283757,-155.9894329,8 -1702780275591,2023,12,16,16,31,15,8755,19.7283752,-155.989433,30 -1702780276150,2023,12,16,16,31,16,8523,19.7283747,-155.9894332,1 -1702780276707,2023,12,16,16,31,16,8438,19.7283744,-155.9894332,10 -1702780277275,2023,12,16,16,31,17,8647,19.7283742,-155.9894333,11 -1702780277829,2023,12,16,16,31,17,8775,19.7283738,-155.9894333,11 -1702780278437,2023,12,16,16,31,18,8927,19.7283735,-155.9894334,1 -1702780278993,2023,12,16,16,31,18,7811,19.7283733,-155.9894334,1 -1702780279591,2023,12,16,16,31,19,9408,19.728373,-155.9894334,1 -1702780280146,2023,12,16,16,31,20,9480,19.7283728,-155.9894334,1 -1702780280698,2023,12,16,16,31,20,9199,19.7283723,-155.9894334,1 -1702780281269,2023,12,16,16,31,21,9008,19.7283721,-155.9894334,17 -1702780281839,2023,12,16,16,31,21,8699,19.7283717,-155.9894335,1 -1702780282455,2023,12,16,16,31,22,8833,19.7283713,-155.9894336,8 -1702780283020,2023,12,16,16,31,23,8273,19.7283712,-155.9894337,16 -1702780283602,2023,12,16,16,31,23,8267,19.7283708,-155.9894338,1 -1702780284155,2023,12,16,16,31,24,8406,19.7283703,-155.9894339,35 -1702780284713,2023,12,16,16,31,24,8603,19.7283698,-155.9894341,16 -1702780285268,2023,12,16,16,31,25,8094,19.7283696,-155.9894341,18 -1702780285821,2023,12,16,16,31,25,7998,19.7283692,-155.9894342,10 -1702780286389,2023,12,16,16,31,26,8575,19.7283689,-155.9894343,1 -1702780286976,2023,12,16,16,31,26,8981,19.7283686,-155.9894344,1 -1702780287535,2023,12,16,16,31,27,9268,19.7283683,-155.9894344,1 -1702780288097,2023,12,16,16,31,28,7871,19.7283679,-155.9894344,1 -1702780288637,2023,12,16,16,31,28,7831,19.7283677,-155.9894344,1 -1702780289225,2023,12,16,16,31,29,8870,19.7283674,-155.9894344,1 -1702780289784,2023,12,16,16,31,29,8506,19.7283671,-155.9894343,1 -1702780290365,2023,12,16,16,31,30,8369,19.7283669,-155.9894342,1 -1702780290921,2023,12,16,16,31,30,7924,19.7283668,-155.9894342,1 -1702780291486,2023,12,16,16,31,31,8063,19.7283666,-155.9894342,1 -1702780293354,2023,12,16,16,31,33,9177,19.728366,-155.9894341,20 -1702780293925,2023,12,16,16,31,33,9059,19.7283658,-155.9894341,9 -1702780294488,2023,12,16,16,31,34,9240,19.7283655,-155.989434,9 -1702780295067,2023,12,16,16,31,35,9321,19.728365,-155.989434,1 -1702780295659,2023,12,16,16,31,35,7562,19.7283648,-155.989434,1 -1702780296221,2023,12,16,16,31,36,9283,19.7283645,-155.989434,1 -1702780296800,2023,12,16,16,31,36,7578,19.728364,-155.9894337,1 -1702780297366,2023,12,16,16,31,37,7100,19.7283637,-155.9894335,1 -1702780297930,2023,12,16,16,31,37,9067,19.7283635,-155.9894335,1 -1702780298488,2023,12,16,16,31,38,8109,19.7283632,-155.9894335,1 -1702780299058,2023,12,16,16,31,39,7622,19.7283628,-155.9894336,7 -1702780299632,2023,12,16,16,31,39,8965,19.7283627,-155.9894336,14 -1702780300253,2023,12,16,16,31,40,9338,19.7283625,-155.9894336,7 -1702780300819,2023,12,16,16,31,40,8437,19.7283623,-155.9894336,5 -1702780313332,2023,12,16,16,31,53,5864,19.7283611,-155.9894321,1 -1702780313921,2023,12,16,16,31,53,6789,19.7283613,-155.9894321,1 -1702780314507,2023,12,16,16,31,54,9326,19.7283615,-155.989432,1 -1702780315071,2023,12,16,16,31,55,8077,19.7283616,-155.9894319,1 -1702780315668,2023,12,16,16,31,55,8236,19.7283618,-155.9894318,1 -1702780316232,2023,12,16,16,31,56,9320,19.7283619,-155.9894318,1 -1702780316805,2023,12,16,16,31,56,9501,19.7283619,-155.9894317,8 -1702780317364,2023,12,16,16,31,57,9585,19.7283619,-155.9894317,8 -1702780317927,2023,12,16,16,31,57,7395,19.7283619,-155.9894316,1 -1702780318479,2023,12,16,16,31,58,9350,19.7283619,-155.9894312,1 -1702780319034,2023,12,16,16,31,59,8959,19.728362,-155.9894311,1 -1702780319627,2023,12,16,16,31,59,7449,19.7283621,-155.9894311,1 -1702780320268,2023,12,16,16,32,0,7612,19.7283622,-155.989431,1 -1702780839333,2023,12,16,16,40,39,3595,19.728365,-155.9894349,1 -1702780839884,2023,12,16,16,40,39,4695,19.7283652,-155.9894348,55 -1702780840464,2023,12,16,16,40,40,4731,19.7283652,-155.9894349,60 -1702780841030,2023,12,16,16,40,41,4817,19.7283652,-155.9894349,61 -1702780841639,2023,12,16,16,40,41,4887,19.7283651,-155.9894349,42 -1702780842223,2023,12,16,16,40,42,4118,19.7283651,-155.9894349,1 -1702780842791,2023,12,16,16,40,42,4905,19.7283651,-155.9894349,1 -1702780843340,2023,12,16,16,40,43,4576,19.7283651,-155.9894349,60 -1702780843894,2023,12,16,16,40,43,4586,19.7283649,-155.9894349,63 -1702780844459,2023,12,16,16,40,44,5597,19.7283647,-155.989435,13 -1702780845071,2023,12,16,16,40,45,5861,19.7283646,-155.9894351,13 -1702780845635,2023,12,16,16,40,45,5957,19.7283645,-155.9894351,8 -1702780846200,2023,12,16,16,40,46,6547,19.7283644,-155.9894351,1 -1702780846762,2023,12,16,16,40,46,7313,19.7283644,-155.9894351,1 -1702780847308,2023,12,16,16,40,47,6963,19.7283643,-155.9894351,1 -1702780847867,2023,12,16,16,40,47,7412,19.7283641,-155.9894351,9 -1702780848437,2023,12,16,16,40,48,7764,19.7283641,-155.9894351,22 -1702780849005,2023,12,16,16,40,49,8273,19.7283641,-155.9894351,12 -1702780849600,2023,12,16,16,40,49,8241,19.7283641,-155.9894351,1 -1702780850155,2023,12,16,16,40,50,8732,19.7283642,-155.989435,10 -1702780850738,2023,12,16,16,40,50,8975,19.7283642,-155.9894351,1 -1702780851304,2023,12,16,16,40,51,9194,19.7283642,-155.9894351,1 -1702780851854,2023,12,16,16,40,51,8951,19.7283642,-155.989435,1 -1702780852415,2023,12,16,16,40,52,8705,19.7283642,-155.989435,1 -1702780852970,2023,12,16,16,40,52,9571,19.7283641,-155.989435,1 -1702780853533,2023,12,16,16,40,53,8524,19.7283641,-155.989435,1 -1702780854103,2023,12,16,16,40,54,9524,19.7283639,-155.989435,1 -1702780854666,2023,12,16,16,40,54,9482,19.728364,-155.989435,1 -1702780855232,2023,12,16,16,40,55,9200,19.728364,-155.9894349,1 -1702780855787,2023,12,16,16,40,55,9746,19.7283642,-155.9894349,1 -1702780856339,2023,12,16,16,40,56,9504,19.7283642,-155.9894348,1 -1702780856895,2023,12,16,16,40,56,9012,19.7283644,-155.9894348,20 -1702780929752,2023,12,16,16,42,9,7709,19.7283758,-155.9894316,1 -1702780930304,2023,12,16,16,42,10,6398,19.7283758,-155.9894315,1 -1702780930874,2023,12,16,16,42,10,7021,19.7283758,-155.9894315,1 -1702780931425,2023,12,16,16,42,11,7443,19.728376,-155.9894315,1 -1702780932000,2023,12,16,16,42,12,6477,19.728376,-155.9894315,1 -1702780932594,2023,12,16,16,42,12,8103,19.7283761,-155.9894315,1 -1702780933174,2023,12,16,16,42,13,8039,19.7283761,-155.9894315,1 -1702780933741,2023,12,16,16,42,13,8327,19.7283763,-155.9894315,1 -1702780934309,2023,12,16,16,42,14,7364,19.7283762,-155.9894315,1 -1702780934988,2023,12,16,16,42,14,8592,19.7283763,-155.9894315,1 -1702780935541,2023,12,16,16,42,15,6934,19.7283763,-155.9894315,1 -1702780936110,2023,12,16,16,42,16,6705,19.7283763,-155.9894315,1 -1702780936706,2023,12,16,16,42,16,5561,19.7283763,-155.9894316,1 -1702781531321,2023,12,16,16,52,11,8428,19.7284171,-155.9894409,28 -1702781531879,2023,12,16,16,52,11,8056,19.7284171,-155.9894409,39 -1702781532434,2023,12,16,16,52,12,8118,19.7284171,-155.989441,31 -1702781532998,2023,12,16,16,52,12,7890,19.728417,-155.9894411,1 -1702781533585,2023,12,16,16,52,13,8817,19.7284169,-155.9894412,1 -1702781534144,2023,12,16,16,52,14,8515,19.7284168,-155.9894413,1 -1702781534719,2023,12,16,16,52,14,7761,19.7284168,-155.9894413,1 -1702781535543,2023,12,16,16,52,15,7806,19.7284167,-155.9894414,1 -1702781536103,2023,12,16,16,52,16,7001,19.7284168,-155.9894415,1 -1702781536667,2023,12,16,16,52,16,9187,19.7284169,-155.9894415,1 -1702781537227,2023,12,16,16,52,17,8949,19.7284172,-155.9894415,1 -1702781537789,2023,12,16,16,52,17,7481,19.7284171,-155.9894416,1 -1702781538343,2023,12,16,16,52,18,9397,19.728417,-155.9894416,1 -1702781538906,2023,12,16,16,52,18,7300,19.7284168,-155.9894418,1 -1702781539476,2023,12,16,16,52,19,7072,19.7284165,-155.9894419,1 -1702781540031,2023,12,16,16,52,20,7849,19.7284164,-155.989442,1 -1702781540605,2023,12,16,16,52,20,5439,19.7284164,-155.989442,1 -1702781541178,2023,12,16,16,52,21,7003,19.7284163,-155.9894421,1 -1702781541738,2023,12,16,16,52,21,6042,19.7284163,-155.9894422,1 -1702781542305,2023,12,16,16,52,22,8853,19.7284161,-155.9894423,1 -1702781542865,2023,12,16,16,52,22,9086,19.728416,-155.9894423,1 -1702781543409,2023,12,16,16,52,23,8145,19.728416,-155.9894423,1 -1702781543964,2023,12,16,16,52,23,8674,19.7284158,-155.9894424,1 -1702781544529,2023,12,16,16,52,24,7227,19.7284153,-155.9894425,1 -1702781545088,2023,12,16,16,52,25,7042,19.7284149,-155.9894426,1 -1702781545752,2023,12,16,16,52,25,7124,19.7284145,-155.9894427,1 -1702781546300,2023,12,16,16,52,26,6679,19.7284144,-155.9894427,1 -1702781546869,2023,12,16,16,52,26,6686,19.728414,-155.9894429,1 -1702781547430,2023,12,16,16,52,27,6721,19.7284136,-155.989443,1 -1702781547998,2023,12,16,16,52,27,7651,19.7284134,-155.9894431,1 -1702781548572,2023,12,16,16,52,28,6985,19.728413,-155.9894433,1 -1702781549133,2023,12,16,16,52,29,8031,19.7284128,-155.9894434,1 -1702781761299,2023,12,16,16,56,1,8265,19.7283629,-155.9894276,1 -1702781761848,2023,12,16,16,56,1,8586,19.728363,-155.9894276,1 -1702781762407,2023,12,16,16,56,2,7825,19.7283632,-155.9894277,1 -1702781762972,2023,12,16,16,56,2,7588,19.7283633,-155.9894277,1 -1702781763535,2023,12,16,16,56,3,8168,19.7283634,-155.9894278,1 -1702781764194,2023,12,16,16,56,4,7904,19.7283634,-155.9894279,1 -1702781764782,2023,12,16,16,56,4,6931,19.7283633,-155.989428,1 -1702781765335,2023,12,16,16,56,5,8663,19.7283632,-155.9894281,1 -1702782068222,2023,12,16,17,1,8,8535,19.7283715,-155.9894451,1 -1702782068803,2023,12,16,17,1,8,8734,19.7283713,-155.9894453,1 -1702782069411,2023,12,16,17,1,9,8706,19.728371,-155.9894456,8 -1702782069981,2023,12,16,17,1,9,8702,19.7283708,-155.9894459,1 -1702782070536,2023,12,16,17,1,10,7242,19.7283706,-155.9894461,1 -1702782071105,2023,12,16,17,1,11,7550,19.7283703,-155.9894464,1 -1702782071706,2023,12,16,17,1,11,7779,19.7283699,-155.9894467,1 -1702782072280,2023,12,16,17,1,12,7931,19.7283695,-155.989447,14 -1702782072852,2023,12,16,17,1,12,8728,19.7283694,-155.9894471,10 -1702782187931,2023,12,16,17,3,7,8723,19.7283635,-155.9894501,1 -1702782188492,2023,12,16,17,3,8,8844,19.7283635,-155.9894501,23 -1702782189035,2023,12,16,17,3,9,8835,19.7283635,-155.9894501,11 -1702782189645,2023,12,16,17,3,9,9292,19.7283635,-155.9894501,18 -1702782190257,2023,12,16,17,3,10,9352,19.7283635,-155.9894501,26 -1702782190836,2023,12,16,17,3,10,9427,19.7283635,-155.9894501,1 -1702782191406,2023,12,16,17,3,11,8266,19.7283636,-155.9894501,1 -1702782191983,2023,12,16,17,3,11,6772,19.7283639,-155.9894501,1 -1702782192541,2023,12,16,17,3,12,8400,19.728364,-155.9894501,1 -1702782604196,2023,12,16,17,10,4,7701,19.7283864,-155.9894382,1 -1702782604762,2023,12,16,17,10,4,7704,19.7283864,-155.9894383,9 -1702782605349,2023,12,16,17,10,5,8105,19.7283864,-155.9894383,1 -1702782605906,2023,12,16,17,10,5,8456,19.7283864,-155.9894385,1 -1702782606462,2023,12,16,17,10,6,8863,19.7283865,-155.9894386,1 -1702782607052,2023,12,16,17,10,7,8332,19.7283865,-155.9894387,1 -1702782607617,2023,12,16,17,10,7,8146,19.7283866,-155.9894388,1 -1702782608181,2023,12,16,17,10,8,9316,19.7283867,-155.9894389,1 -1702782608737,2023,12,16,17,10,8,9537,19.7283868,-155.9894389,1 -1702782609303,2023,12,16,17,10,9,8275,19.7283869,-155.9894389,9 -1702782609860,2023,12,16,17,10,9,8964,19.7283871,-155.989439,20 -1702782610405,2023,12,16,17,10,10,9150,19.728387,-155.9894391,9 -1702782611018,2023,12,16,17,10,11,9514,19.728387,-155.9894393,19 -1702782611653,2023,12,16,17,10,11,9069,19.728387,-155.9894393,18 -1702782612207,2023,12,16,17,10,12,9455,19.7283871,-155.9894394,1 -1702782612767,2023,12,16,17,10,12,9005,19.7283871,-155.9894394,1 -1702782613364,2023,12,16,17,10,13,9099,19.7283872,-155.9894394,1 -1702782613939,2023,12,16,17,10,13,9357,19.7283872,-155.9894394,9 -1702782614500,2023,12,16,17,10,14,8180,19.7283873,-155.9894395,1 -1702782615066,2023,12,16,17,10,15,7362,19.7283873,-155.9894394,1 -1702782615654,2023,12,16,17,10,15,9552,19.7283873,-155.9894394,1 -1702782616206,2023,12,16,17,10,16,8856,19.7283873,-155.9894394,1 -1702782616768,2023,12,16,17,10,16,8464,19.7283873,-155.9894394,1 -1702782617334,2023,12,16,17,10,17,7271,19.7283873,-155.9894395,1 -1702782617903,2023,12,16,17,10,17,6557,19.7283873,-155.9894395,1 -1702782618472,2023,12,16,17,10,18,6971,19.7283873,-155.9894395,1 -1702782619056,2023,12,16,17,10,19,6768,19.7283873,-155.9894395,1 -1702782619608,2023,12,16,17,10,19,6792,19.7283873,-155.9894395,1 -1702782620178,2023,12,16,17,10,20,6552,19.7283873,-155.9894395,1 -1702782620742,2023,12,16,17,10,20,7441,19.7283873,-155.9894396,1 -1702782621302,2023,12,16,17,10,21,7695,19.7283874,-155.9894396,1 -1702782621866,2023,12,16,17,10,21,8113,19.7283874,-155.9894396,1 -1702782622444,2023,12,16,17,10,22,8642,19.7283874,-155.9894397,1 -1702782623000,2023,12,16,17,10,23,8690,19.7283874,-155.9894398,11 -1702782623570,2023,12,16,17,10,23,9237,19.7283874,-155.9894398,1 -1702782624120,2023,12,16,17,10,24,7355,19.7283874,-155.9894399,1 -1702782624689,2023,12,16,17,10,24,6064,19.7283874,-155.9894399,1 -1702782625240,2023,12,16,17,10,25,9132,19.7283874,-155.9894399,1 -1702782625797,2023,12,16,17,10,25,8825,19.7283874,-155.98944,1 -1702782626352,2023,12,16,17,10,26,6652,19.7283874,-155.98944,1 -1702782626916,2023,12,16,17,10,26,6783,19.7283874,-155.98944,1 -1702782627479,2023,12,16,17,10,27,7642,19.7283874,-155.9894401,1 -1702782628035,2023,12,16,17,10,28,8799,19.7283871,-155.9894402,1 -1702782628597,2023,12,16,17,10,28,8684,19.728387,-155.9894403,9 -1702782629150,2023,12,16,17,10,29,7961,19.7283869,-155.9894403,1 -1702782629713,2023,12,16,17,10,29,8784,19.7283867,-155.9894404,1 -1702782630264,2023,12,16,17,10,30,7574,19.7283866,-155.9894405,1 -1702782630819,2023,12,16,17,10,30,7722,19.7283865,-155.9894405,1 -1702782631371,2023,12,16,17,10,31,7161,19.7283863,-155.9894406,1 -1702782631931,2023,12,16,17,10,31,9362,19.7283862,-155.9894407,1 -1702782632486,2023,12,16,17,10,32,9700,19.728386,-155.9894407,1 -1702782633045,2023,12,16,17,10,33,9668,19.7283858,-155.9894408,1 -1702782633628,2023,12,16,17,10,33,9648,19.7283857,-155.9894408,1 -1702782634188,2023,12,16,17,10,34,9227,19.7283856,-155.9894409,1 -1702782634747,2023,12,16,17,10,34,8814,19.7283854,-155.9894409,1 -1702782635333,2023,12,16,17,10,35,8858,19.7283852,-155.9894409,1 -1702782635887,2023,12,16,17,10,35,8134,19.7283851,-155.989441,1 -1702782636449,2023,12,16,17,10,36,7984,19.7283849,-155.989441,12 -1702782637010,2023,12,16,17,10,37,8239,19.7283849,-155.989441,1 -1702782637618,2023,12,16,17,10,37,8571,19.7283848,-155.989441,1 -1702782638192,2023,12,16,17,10,38,8716,19.7283847,-155.9894411,1 -1702782638744,2023,12,16,17,10,38,8889,19.7283846,-155.9894412,1 -1702782639300,2023,12,16,17,10,39,8426,19.7283845,-155.9894413,1 -1702782639870,2023,12,16,17,10,39,7818,19.7283843,-155.9894414,1 -1702782640442,2023,12,16,17,10,40,9469,19.7283841,-155.9894414,8 -1702782641016,2023,12,16,17,10,41,9023,19.728384,-155.9894414,1 -1702782641631,2023,12,16,17,10,41,9181,19.7283837,-155.9894416,1 -1702782642182,2023,12,16,17,10,42,9043,19.7283836,-155.9894416,33 -1702782642754,2023,12,16,17,10,42,8968,19.7283833,-155.9894418,32 -1702782643342,2023,12,16,17,10,43,8670,19.7283831,-155.9894419,22 -1702782643907,2023,12,16,17,10,43,8634,19.7283831,-155.989442,9 -1702782644487,2023,12,16,17,10,44,9590,19.728383,-155.989442,1 -1702782645050,2023,12,16,17,10,45,6740,19.7283829,-155.9894421,1 -1702782645621,2023,12,16,17,10,45,9442,19.7283829,-155.9894421,1 -1702782646193,2023,12,16,17,10,46,9290,19.7283828,-155.9894422,13 -1702782646762,2023,12,16,17,10,46,9105,19.7283828,-155.9894423,16 -1702782647320,2023,12,16,17,10,47,8360,19.7283827,-155.9894423,1 -1702782647891,2023,12,16,17,10,47,8741,19.7283827,-155.9894423,1 -1702782648443,2023,12,16,17,10,48,8695,19.7283827,-155.9894424,17 -1702782649008,2023,12,16,17,10,49,8629,19.7283826,-155.9894424,27 -1702782649589,2023,12,16,17,10,49,8016,19.7283826,-155.9894424,1 -1702782733841,2023,12,16,17,12,13,9040,19.728378,-155.9894416,34 -1702782734406,2023,12,16,17,12,14,8980,19.7283778,-155.9894417,21 -1702782734958,2023,12,16,17,12,14,9252,19.7283776,-155.9894418,1 -1702782735514,2023,12,16,17,12,15,8633,19.7283775,-155.9894418,19 -1702782736069,2023,12,16,17,12,16,8425,19.7283774,-155.9894419,19 -1702782736628,2023,12,16,17,12,16,8039,19.7283772,-155.989442,1 -1702782737186,2023,12,16,17,12,17,8017,19.7283771,-155.9894421,1 -1702782961853,2023,12,16,17,16,1,8747,19.7283845,-155.9894471,10 -1702782962415,2023,12,16,17,16,2,8644,19.7283847,-155.9894471,1 -1702782962962,2023,12,16,17,16,2,6887,19.7283848,-155.989447,1 -1702782963512,2023,12,16,17,16,3,6764,19.7283848,-155.989447,1 -1702782964077,2023,12,16,17,16,4,8134,19.7283848,-155.989447,1 -1702782964635,2023,12,16,17,16,4,5479,19.7283848,-155.9894469,1 -1702782965836,2023,12,16,17,16,5,6058,19.7283851,-155.9894469,1 -1702782966390,2023,12,16,17,16,6,6590,19.7283852,-155.9894469,1 -1702782966943,2023,12,16,17,16,6,6926,19.7283852,-155.9894468,1 -1702782967502,2023,12,16,17,16,7,7809,19.7283854,-155.9894468,1 -1702782968073,2023,12,16,17,16,8,8161,19.7283855,-155.9894469,1 -1702782968622,2023,12,16,17,16,8,8520,19.7283855,-155.9894469,19 -1702782969177,2023,12,16,17,16,9,9128,19.7283857,-155.9894469,10 -1702782969740,2023,12,16,17,16,9,9258,19.7283859,-155.9894469,22 -1702782970416,2023,12,16,17,16,10,9209,19.728386,-155.9894469,21 -1702782970972,2023,12,16,17,16,10,9137,19.728386,-155.9894469,19 -1702782971617,2023,12,16,17,16,11,9062,19.728386,-155.9894469,19 -1702782972174,2023,12,16,17,16,12,9348,19.7283861,-155.9894469,9 -1702782972738,2023,12,16,17,16,12,8736,19.7283862,-155.9894469,1 -1702782973290,2023,12,16,17,16,13,8694,19.7283862,-155.9894469,8 -1702782973849,2023,12,16,17,16,13,8969,19.7283863,-155.9894469,1 -1702782974400,2023,12,16,17,16,14,7886,19.7283864,-155.9894468,1 -1702782974960,2023,12,16,17,16,14,7677,19.7283864,-155.9894468,1 -1702782975513,2023,12,16,17,16,15,9434,19.7283864,-155.9894468,1 -1702782976088,2023,12,16,17,16,16,8965,19.7283865,-155.9894468,1 -1702782976660,2023,12,16,17,16,16,7774,19.7283865,-155.9894467,1 -1702782977211,2023,12,16,17,16,17,8385,19.7283865,-155.9894467,6 -1702782977770,2023,12,16,17,16,17,9158,19.7283865,-155.9894465,1 -1702782978339,2023,12,16,17,16,18,7445,19.7283866,-155.9894464,1 -1702782978893,2023,12,16,17,16,18,8964,19.7283866,-155.9894464,1 -1702782979473,2023,12,16,17,16,19,8527,19.7283867,-155.9894463,1 -1702782980052,2023,12,16,17,16,20,8490,19.7283867,-155.9894461,1 -1702782980636,2023,12,16,17,16,20,6442,19.7283868,-155.989446,1 -1702782981191,2023,12,16,17,16,21,8009,19.7283868,-155.989446,1 -1702782981751,2023,12,16,17,16,21,8044,19.7283869,-155.9894458,1 -1702782982310,2023,12,16,17,16,22,8455,19.7283868,-155.9894456,11 -1702782982864,2023,12,16,17,16,22,8537,19.7283868,-155.9894456,23 -1702782983437,2023,12,16,17,16,23,8886,19.7283868,-155.9894454,20 -1702782983988,2023,12,16,17,16,23,8229,19.7283869,-155.9894452,13 -1702782984527,2023,12,16,17,16,24,8326,19.7283869,-155.9894451,24 -1702782985079,2023,12,16,17,16,25,8122,19.728387,-155.9894449,25 -1702782985644,2023,12,16,17,16,25,8069,19.7283871,-155.9894447,26 -1702782986193,2023,12,16,17,16,26,8194,19.7283871,-155.9894446,1 -1702782986746,2023,12,16,17,16,26,8253,19.7283871,-155.9894444,1 -1702782987309,2023,12,16,17,16,27,8340,19.728387,-155.9894443,1 -1702782987865,2023,12,16,17,16,27,8321,19.728387,-155.9894443,1 -1702782988419,2023,12,16,17,16,28,8683,19.728387,-155.9894441,1 -1702782989018,2023,12,16,17,16,29,8736,19.728387,-155.9894439,1 -1702782989600,2023,12,16,17,16,29,7274,19.728387,-155.9894438,1 -1702782990169,2023,12,16,17,16,30,8461,19.7283868,-155.9894437,1 -1702782990718,2023,12,16,17,16,30,8427,19.7283867,-155.9894436,1 -1702782991298,2023,12,16,17,16,31,8842,19.7283865,-155.9894434,1 -1702782991848,2023,12,16,17,16,31,8886,19.7283865,-155.9894433,1 -1702782992400,2023,12,16,17,16,32,8411,19.7283863,-155.9894432,1 -1702782992957,2023,12,16,17,16,32,8066,19.7283863,-155.9894431,1 -1702782993504,2023,12,16,17,16,33,8787,19.7283862,-155.989443,8 -1702782994060,2023,12,16,17,16,34,8809,19.7283861,-155.9894429,1 -1702782994619,2023,12,16,17,16,34,8372,19.728386,-155.9894427,1 -1702782995176,2023,12,16,17,16,35,7824,19.728386,-155.9894426,1 -1702782995766,2023,12,16,17,16,35,8690,19.7283859,-155.9894425,1 -1702782996337,2023,12,16,17,16,36,7240,19.7283858,-155.9894424,1 -1702782996887,2023,12,16,17,16,36,7591,19.7283858,-155.9894423,1 -1702782997437,2023,12,16,17,16,37,9499,19.7283857,-155.9894421,1 -1702782997980,2023,12,16,17,16,37,9460,19.7283856,-155.989442,1 -1702782998570,2023,12,16,17,16,38,8918,19.7283856,-155.989442,9 -1702782999141,2023,12,16,17,16,39,9226,19.7283856,-155.9894419,1 -1702782999737,2023,12,16,17,16,39,9281,19.7283855,-155.9894419,8 -1702783000308,2023,12,16,17,16,40,9471,19.7283854,-155.9894419,7 -1702783000865,2023,12,16,17,16,40,9486,19.7283854,-155.9894419,7 -1702783001441,2023,12,16,17,16,41,7796,19.7283854,-155.9894419,1 -1702783002091,2023,12,16,17,16,42,7817,19.7283853,-155.9894419,1 -1702783002754,2023,12,16,17,16,42,8628,19.7283851,-155.9894419,10 -1702783003316,2023,12,16,17,16,43,8290,19.7283849,-155.9894419,1 -1702783003871,2023,12,16,17,16,43,8000,19.7283848,-155.989442,9 -1702783004425,2023,12,16,17,16,44,7603,19.7283846,-155.9894421,8 -1702783004977,2023,12,16,17,16,44,7380,19.7283845,-155.9894422,1 -1702783005547,2023,12,16,17,16,45,9204,19.7283844,-155.9894422,1 -1702783006109,2023,12,16,17,16,46,7529,19.7283842,-155.9894423,1 -1702783006678,2023,12,16,17,16,46,7634,19.728384,-155.9894423,1 -1702783007230,2023,12,16,17,16,47,9352,19.7283839,-155.9894423,1 -1702783007779,2023,12,16,17,16,47,9131,19.7283837,-155.9894423,1 -1702783008342,2023,12,16,17,16,48,8600,19.7283835,-155.9894424,1 -1702783008896,2023,12,16,17,16,48,8385,19.7283834,-155.9894424,1 -1702783009443,2023,12,16,17,16,49,7933,19.7283833,-155.9894425,1 -1702783010001,2023,12,16,17,16,50,7761,19.7283833,-155.9894426,1 -1702783010580,2023,12,16,17,16,50,8846,19.7283833,-155.9894426,1 -1702783011151,2023,12,16,17,16,51,8756,19.7283832,-155.9894428,24 -1702783011715,2023,12,16,17,16,51,8825,19.728383,-155.9894428,1 -1702783012290,2023,12,16,17,16,52,9457,19.7283829,-155.9894428,1 -1702783012852,2023,12,16,17,16,52,9459,19.7283828,-155.9894429,1 -1702783013425,2023,12,16,17,16,53,9343,19.7283827,-155.9894431,8 -1702783013988,2023,12,16,17,16,53,7732,19.7283827,-155.9894432,22 -1702783014532,2023,12,16,17,16,54,8891,19.7283827,-155.9894432,30 -1702783015135,2023,12,16,17,16,55,8916,19.7283826,-155.9894433,41 -1702783015693,2023,12,16,17,16,55,8852,19.7283827,-155.9894435,33 -1702783016278,2023,12,16,17,16,56,8859,19.7283827,-155.9894435,42 -1702783016817,2023,12,16,17,16,56,8821,19.7283827,-155.9894436,30 -1702783017381,2023,12,16,17,16,57,8798,19.7283827,-155.9894437,19 -1702783017941,2023,12,16,17,16,57,6652,19.7283826,-155.9894438,1 -1702783018501,2023,12,16,17,16,58,8109,19.7283826,-155.9894439,1 -1702783019071,2023,12,16,17,16,59,9072,19.7283826,-155.9894439,1 -1702783019633,2023,12,16,17,16,59,9203,19.7283825,-155.989444,1 -1702783020182,2023,12,16,17,17,0,9168,19.7283825,-155.989444,1 -1702783020734,2023,12,16,17,17,0,7181,19.7283825,-155.989444,1 -1702783021292,2023,12,16,17,17,1,9122,19.7283825,-155.9894441,1 -1702783021848,2023,12,16,17,17,1,9096,19.7283826,-155.9894441,1 -1702783022420,2023,12,16,17,17,2,9571,19.7283827,-155.9894443,18 -1702783022986,2023,12,16,17,17,2,9655,19.7283828,-155.9894444,17 -1702783023593,2023,12,16,17,17,3,8401,19.7283829,-155.9894444,1 -1702783024170,2023,12,16,17,17,4,9661,19.7283831,-155.9894445,1 -1702783024822,2023,12,16,17,17,4,8961,19.7283834,-155.9894445,20 -1702783025391,2023,12,16,17,17,5,9729,19.7283837,-155.9894445,7 -1702783025964,2023,12,16,17,17,5,9540,19.7283838,-155.9894445,1 -1702783026522,2023,12,16,17,17,6,9404,19.7283839,-155.9894445,9 -1702783027081,2023,12,16,17,17,7,9583,19.7283841,-155.9894446,1 -1702783027654,2023,12,16,17,17,7,8577,19.7283843,-155.9894447,21 -1702783028205,2023,12,16,17,17,8,8097,19.7283843,-155.9894448,10 -1702783028754,2023,12,16,17,17,8,9197,19.7283845,-155.9894448,1 -1702783029300,2023,12,16,17,17,9,8638,19.7283846,-155.9894448,1 -1702783029874,2023,12,16,17,17,9,9002,19.7283846,-155.9894449,1 -1702783030437,2023,12,16,17,17,10,9080,19.7283847,-155.9894449,1 -1702783031001,2023,12,16,17,17,11,8003,19.7283848,-155.989445,1 -1702783031691,2023,12,16,17,17,11,9231,19.728385,-155.989445,1 -1702783032263,2023,12,16,17,17,12,8989,19.728385,-155.9894451,1 -1702783032819,2023,12,16,17,17,12,7297,19.728385,-155.9894452,1 -1702783033394,2023,12,16,17,17,13,6797,19.728385,-155.9894453,1 -1702783033953,2023,12,16,17,17,13,6134,19.728385,-155.9894454,1 -1702783034509,2023,12,16,17,17,14,8901,19.728385,-155.9894455,1 -1702783035079,2023,12,16,17,17,15,6416,19.728385,-155.9894456,1 -1702783035646,2023,12,16,17,17,15,8299,19.728385,-155.9894456,1 -1702783036216,2023,12,16,17,17,16,9049,19.7283851,-155.9894457,1 -1702783036767,2023,12,16,17,17,16,8981,19.7283851,-155.9894457,1 -1702783037322,2023,12,16,17,17,17,8981,19.7283851,-155.9894457,1 -1702783037862,2023,12,16,17,17,17,7600,19.7283851,-155.9894457,1 -1702783038421,2023,12,16,17,17,18,7415,19.7283851,-155.9894458,1 -1702783038975,2023,12,16,17,17,18,8508,19.7283852,-155.9894457,1 -1702783039531,2023,12,16,17,17,19,8389,19.7283852,-155.9894457,1 -1702783040087,2023,12,16,17,17,20,8385,19.7283853,-155.9894457,1 -1702783040659,2023,12,16,17,17,20,8367,19.7283853,-155.9894457,1 -1702783041203,2023,12,16,17,17,21,8616,19.7283853,-155.9894458,1 -1702783041761,2023,12,16,17,17,21,8101,19.7283853,-155.9894458,10 -1702783042314,2023,12,16,17,17,22,8148,19.7283853,-155.9894458,10 -1702783042874,2023,12,16,17,17,22,8309,19.7283853,-155.9894458,23 -1702783043435,2023,12,16,17,17,23,8447,19.7283853,-155.989446,20 -1702783044116,2023,12,16,17,17,24,8717,19.7283853,-155.989446,10 -1702783044678,2023,12,16,17,17,24,8392,19.7283853,-155.9894461,1 -1702783045241,2023,12,16,17,17,25,8405,19.7283853,-155.9894462,1 -1702783045820,2023,12,16,17,17,25,8272,19.7283853,-155.9894462,1 -1702783046399,2023,12,16,17,17,26,8461,19.7283854,-155.9894463,1 -1702783046969,2023,12,16,17,17,26,9164,19.7283855,-155.9894464,1 -1702783047530,2023,12,16,17,17,27,6914,19.7283855,-155.9894464,1 -1702783048092,2023,12,16,17,17,28,8178,19.7283855,-155.9894465,1 -1702783048655,2023,12,16,17,17,28,6627,19.7283855,-155.9894466,1 -1702783049210,2023,12,16,17,17,29,7097,19.7283855,-155.9894467,1 -1702783049764,2023,12,16,17,17,29,8700,19.7283855,-155.9894467,1 -1702783050312,2023,12,16,17,17,30,8646,19.7283855,-155.9894468,1 -1702783050871,2023,12,16,17,17,30,8377,19.7283856,-155.9894468,1 -1702783051604,2023,12,16,17,17,31,8613,19.7283857,-155.989447,1 -1702783052173,2023,12,16,17,17,32,8886,19.7283857,-155.989447,1 -1702783052749,2023,12,16,17,17,32,9078,19.7283857,-155.9894471,1 -1702783053305,2023,12,16,17,17,33,8287,19.7283857,-155.9894472,1 -1702783054063,2023,12,16,17,17,34,8665,19.7283859,-155.9894473,1 -1702783054648,2023,12,16,17,17,34,9591,19.728386,-155.9894473,1 -1702783055204,2023,12,16,17,17,35,6705,19.7283861,-155.9894474,1 -1702783055756,2023,12,16,17,17,35,9287,19.7283861,-155.9894474,1 -1702783056323,2023,12,16,17,17,36,8316,19.7283862,-155.9894475,1 -1702783056872,2023,12,16,17,17,36,9290,19.7283861,-155.9894475,1 -1702783057439,2023,12,16,17,17,37,9137,19.7283861,-155.9894476,1 -1702783057981,2023,12,16,17,17,37,8501,19.7283861,-155.9894476,1 -1702783058532,2023,12,16,17,17,38,400,19.7283861,-155.9894476,42 -1702783059081,2023,12,16,17,17,39,478,19.7283861,-155.9894476,23 -1702783059654,2023,12,16,17,17,39,589,19.7283861,-155.9894476,1 -1702783060210,2023,12,16,17,17,40,657,19.7283861,-155.9894476,1 -1702783060770,2023,12,16,17,17,40,819,19.7283862,-155.9894476,1 -1702783061339,2023,12,16,17,17,41,883,19.7283863,-155.9894477,1 -1702783061891,2023,12,16,17,17,41,1100,19.7283864,-155.9894477,30 -1702783062466,2023,12,16,17,17,42,1256,19.7283864,-155.9894477,9 -1702783063018,2023,12,16,17,17,43,1326,19.7283863,-155.9894478,1 -1702783063627,2023,12,16,17,17,43,1424,19.7283863,-155.9894479,1 -1702783064188,2023,12,16,17,17,44,1622,19.7283863,-155.989448,1 -1702783064776,2023,12,16,17,17,44,2033,19.7283862,-155.989448,15 -1702783065335,2023,12,16,17,17,45,2225,19.7283861,-155.989448,10 -1702783065884,2023,12,16,17,17,45,2668,19.7283861,-155.989448,22 -1702783066440,2023,12,16,17,17,46,2762,19.7283861,-155.989448,11 -1702783067008,2023,12,16,17,17,47,3142,19.728386,-155.9894481,1 -1702783067711,2023,12,16,17,17,47,3776,19.728386,-155.9894481,1 -1702783068291,2023,12,16,17,17,48,3762,19.728386,-155.9894482,1 -1702783068999,2023,12,16,17,17,48,4035,19.7283861,-155.9894482,1 -1702783069596,2023,12,16,17,17,49,4618,19.7283861,-155.9894483,1 -1702783070257,2023,12,16,17,17,50,5381,19.7283861,-155.9894484,1 -1702783070820,2023,12,16,17,17,50,5607,19.7283861,-155.9894484,1 -1702783071363,2023,12,16,17,17,51,7513,19.7283861,-155.9894485,1 -1702783072041,2023,12,16,17,17,52,7447,19.7283861,-155.9894486,1 -1702783072658,2023,12,16,17,17,52,8175,19.7283862,-155.9894487,1 -1702783073205,2023,12,16,17,17,53,6861,19.7283861,-155.9894488,1 -1702783073753,2023,12,16,17,17,53,9641,19.728386,-155.989449,1 -1702783074352,2023,12,16,17,17,54,9411,19.7283856,-155.9894492,1 -1702783074919,2023,12,16,17,17,54,9625,19.7283852,-155.9894495,1 -1702783075510,2023,12,16,17,17,55,8691,19.728385,-155.9894496,1 -1702783076091,2023,12,16,17,17,56,9309,19.7283845,-155.9894499,1 -1702783076670,2023,12,16,17,17,56,7986,19.728384,-155.9894501,1 -1702783077227,2023,12,16,17,17,57,9646,19.7283835,-155.9894505,1 -1702783077780,2023,12,16,17,17,57,9678,19.7283833,-155.9894506,1 -1702783078353,2023,12,16,17,17,58,8742,19.7283829,-155.9894508,1 -1702783078907,2023,12,16,17,17,58,9272,19.7283824,-155.9894509,1 -1702783079493,2023,12,16,17,17,59,8958,19.7283821,-155.989451,10 -1702783080074,2023,12,16,17,18,0,9217,19.7283817,-155.9894511,1 -1702783080667,2023,12,16,17,18,0,8115,19.7283812,-155.9894513,1 -1702783081229,2023,12,16,17,18,1,8456,19.7283807,-155.9894514,19 -1702783081776,2023,12,16,17,18,1,8962,19.7283805,-155.9894514,33 -1702783082349,2023,12,16,17,18,2,8955,19.7283802,-155.9894515,22 -1702783082911,2023,12,16,17,18,2,7713,19.7283798,-155.9894516,1 -1702783083468,2023,12,16,17,18,3,9261,19.7283797,-155.9894516,10 -1702783084017,2023,12,16,17,18,4,9521,19.7283792,-155.9894518,19 -1702783084751,2023,12,16,17,18,4,9518,19.7283788,-155.989452,28 -1702783085337,2023,12,16,17,18,5,9629,19.7283783,-155.9894521,16 -1702783085908,2023,12,16,17,18,5,9575,19.7283778,-155.9894523,14 -1702783086509,2023,12,16,17,18,6,9575,19.7283776,-155.9894524,14 -1702783087817,2023,12,16,17,18,7,9628,19.7283767,-155.9894528,12 -1702783088393,2023,12,16,17,18,8,9364,19.7283762,-155.9894529,23 -1702783088964,2023,12,16,17,18,8,9434,19.7283758,-155.9894531,15 -1702783089515,2023,12,16,17,18,9,8404,19.7283755,-155.9894531,1 -1702783090069,2023,12,16,17,18,10,7988,19.7283751,-155.9894533,1 -1702783090746,2023,12,16,17,18,10,9576,19.7283748,-155.9894536,1 -1702783091298,2023,12,16,17,18,11,9736,19.7283745,-155.9894538,1 -1702783091863,2023,12,16,17,18,11,7929,19.7283742,-155.9894541,1 -1702783092413,2023,12,16,17,18,12,8298,19.728374,-155.9894542,1 -1702783092972,2023,12,16,17,18,12,9547,19.7283737,-155.9894545,1 -1702783093531,2023,12,16,17,18,13,9525,19.7283733,-155.9894547,7 -1702783094091,2023,12,16,17,18,14,9423,19.728373,-155.9894548,7 -1702783094657,2023,12,16,17,18,14,9579,19.7283725,-155.989455,1 -1702783095231,2023,12,16,17,18,15,8506,19.7283718,-155.9894552,7 -1702783095794,2023,12,16,17,18,15,8242,19.7283715,-155.9894553,1 -1702783096359,2023,12,16,17,18,16,9450,19.7283709,-155.9894556,1 -1702783096917,2023,12,16,17,18,16,9450,19.7283704,-155.9894558,1 -1702783097481,2023,12,16,17,18,17,8318,19.7283701,-155.9894559,1 -1702783098029,2023,12,16,17,18,18,8820,19.7283694,-155.9894561,10 -1702783098623,2023,12,16,17,18,18,6775,19.7283687,-155.9894562,1 -1702783099176,2023,12,16,17,18,19,9554,19.7283682,-155.9894563,1 -1702783099738,2023,12,16,17,18,19,9521,19.7283676,-155.9894564,1 -1702783100291,2023,12,16,17,18,20,9477,19.7283669,-155.9894566,1 -1702783100849,2023,12,16,17,18,20,9029,19.7283664,-155.9894567,1 -1702783101414,2023,12,16,17,18,21,8716,19.7283662,-155.9894568,1 -1702783101979,2023,12,16,17,18,21,6802,19.7283657,-155.9894569,1 -1702783102608,2023,12,16,17,18,22,7162,19.728365,-155.989457,1 -1702783103191,2023,12,16,17,18,23,7539,19.7283646,-155.9894571,1 -1702783103742,2023,12,16,17,18,23,7282,19.7283638,-155.9894573,1 -1702783104293,2023,12,16,17,18,24,7394,19.7283632,-155.9894574,1 -1702783104852,2023,12,16,17,18,24,7040,19.7283627,-155.9894575,1 -1702783105410,2023,12,16,17,18,25,8248,19.7283625,-155.9894576,1 -1702783105980,2023,12,16,17,18,25,8562,19.728362,-155.9894577,1 -1702783106535,2023,12,16,17,18,26,8562,19.7283616,-155.9894578,1 -1702783107084,2023,12,16,17,18,27,9632,19.7283614,-155.9894578,1 -1702783107655,2023,12,16,17,18,27,8629,19.7283611,-155.9894579,1 -1702783108212,2023,12,16,17,18,28,9116,19.7283609,-155.9894579,1 -1702783108755,2023,12,16,17,18,28,8928,19.7283608,-155.989458,1 -1702783109402,2023,12,16,17,18,29,8836,19.7283606,-155.9894581,1 -1702783109957,2023,12,16,17,18,29,8901,19.7283604,-155.9894581,1 -1702783110514,2023,12,16,17,18,30,9006,19.7283602,-155.9894581,1 -1702783111091,2023,12,16,17,18,31,9330,19.72836,-155.9894581,1 -1702783111668,2023,12,16,17,18,31,5311,19.7283599,-155.9894582,1 -1702783112340,2023,12,16,17,18,32,8384,19.7283596,-155.9894583,1 -1702783113044,2023,12,16,17,18,33,7421,19.7283594,-155.9894583,1 -1702783113611,2023,12,16,17,18,33,6789,19.7283592,-155.9894582,1 -1702783114172,2023,12,16,17,18,34,7587,19.7283591,-155.9894582,1 -1702783114734,2023,12,16,17,18,34,8545,19.728359,-155.9894582,22 -1702783115296,2023,12,16,17,18,35,8593,19.7283589,-155.9894582,1 -1702783115861,2023,12,16,17,18,35,7693,19.7283589,-155.9894582,1 -1702783116439,2023,12,16,17,18,36,8500,19.7283589,-155.9894581,1 -1702783117002,2023,12,16,17,18,37,6250,19.728359,-155.9894581,12 -1702783117609,2023,12,16,17,18,37,7082,19.728359,-155.989458,1 -1702783118273,2023,12,16,17,18,38,9217,19.7283591,-155.9894579,1 -1702783118841,2023,12,16,17,18,38,9201,19.7283591,-155.9894578,1 -1702783119402,2023,12,16,17,18,39,7826,19.7283591,-155.9894578,1 -1702783119950,2023,12,16,17,18,39,8843,19.7283591,-155.9894577,1 -1702783120516,2023,12,16,17,18,40,9026,19.7283592,-155.9894576,1 -1702783121073,2023,12,16,17,18,41,8887,19.7283591,-155.9894576,1 -1702783121665,2023,12,16,17,18,41,9339,19.7283591,-155.9894575,1 -1702783122215,2023,12,16,17,18,42,8814,19.7283591,-155.9894574,1 -1702783122777,2023,12,16,17,18,42,9475,19.7283591,-155.9894573,1 -1702783123341,2023,12,16,17,18,43,7457,19.7283592,-155.9894572,9 -1702783123892,2023,12,16,17,18,43,6927,19.7283592,-155.9894571,1 -1702783124440,2023,12,16,17,18,44,6741,19.7283592,-155.9894571,1 -1702783125005,2023,12,16,17,18,45,5592,19.7283592,-155.989457,1 -1702783125575,2023,12,16,17,18,45,4540,19.7283592,-155.989457,1 -1702783126125,2023,12,16,17,18,46,4172,19.7283592,-155.9894569,1 -1702783126689,2023,12,16,17,18,46,3224,19.7283592,-155.9894569,1 -1702783127256,2023,12,16,17,18,47,3601,19.7283592,-155.9894569,1 -1702783127806,2023,12,16,17,18,47,3721,19.7283592,-155.9894569,1 -1702783128371,2023,12,16,17,18,48,4105,19.7283592,-155.9894568,28 -1702783128924,2023,12,16,17,18,48,4447,19.7283592,-155.9894567,8 -1702783129479,2023,12,16,17,18,49,4788,19.7283593,-155.9894566,19 -1702783130046,2023,12,16,17,18,50,5009,19.7283594,-155.9894565,1 -1702783130627,2023,12,16,17,18,50,5441,19.7283596,-155.9894563,1 -1702783131280,2023,12,16,17,18,51,6046,19.7283597,-155.9894561,1 -1702783131848,2023,12,16,17,18,51,5761,19.7283598,-155.9894559,1 -1702783132407,2023,12,16,17,18,52,5610,19.72836,-155.9894558,1 -1702783132974,2023,12,16,17,18,52,6768,19.7283601,-155.9894556,1 -1702783133529,2023,12,16,17,18,53,7263,19.7283602,-155.9894556,1 -1702783134084,2023,12,16,17,18,54,6666,19.7283602,-155.9894555,1 -1702783134640,2023,12,16,17,18,54,7890,19.7283603,-155.9894554,8 -1702783135202,2023,12,16,17,18,55,7781,19.7283606,-155.9894553,7 -1702783135764,2023,12,16,17,18,55,8050,19.7283607,-155.9894553,6 -1702783136316,2023,12,16,17,18,56,8088,19.7283609,-155.9894551,1 -1702783136881,2023,12,16,17,18,56,8774,19.7283613,-155.9894549,1 -1702783137447,2023,12,16,17,18,57,7334,19.7283615,-155.9894548,1 -1702783138078,2023,12,16,17,18,58,8437,19.7283618,-155.9894546,1 -1702783138670,2023,12,16,17,18,58,8563,19.7283622,-155.9894544,1 -1702783139239,2023,12,16,17,18,59,7387,19.7283624,-155.9894542,1 -1702783139794,2023,12,16,17,18,59,7637,19.7283625,-155.9894541,1 -1702783140373,2023,12,16,17,19,0,7763,19.7283629,-155.989454,1 -1702783140922,2023,12,16,17,19,0,8269,19.7283631,-155.9894538,1 -1702783141481,2023,12,16,17,19,1,8968,19.7283633,-155.9894537,1 -1702783142035,2023,12,16,17,19,2,7355,19.7283635,-155.9894537,1 -1702783142612,2023,12,16,17,19,2,8297,19.7283637,-155.9894535,1 -1702783143169,2023,12,16,17,19,3,8866,19.728364,-155.9894534,1 -1702783143725,2023,12,16,17,19,3,475,19.7283641,-155.9894533,36 -1702783144313,2023,12,16,17,19,4,597,19.7283642,-155.9894532,1 -1702783144880,2023,12,16,17,19,4,840,19.7283644,-155.989453,1 -1702783145454,2023,12,16,17,19,5,1020,19.7283645,-155.989453,15 -1702783146008,2023,12,16,17,19,6,1381,19.7283647,-155.9894529,7 -1702783146608,2023,12,16,17,19,6,1742,19.728365,-155.9894527,1 -1702783147301,2023,12,16,17,19,7,1911,19.7283652,-155.9894527,1 -1702783147867,2023,12,16,17,19,7,2069,19.7283656,-155.9894526,9 -1702783148423,2023,12,16,17,19,8,2441,19.7283658,-155.9894525,9 -1702783148996,2023,12,16,17,19,8,2699,19.7283662,-155.9894525,1 -1702783149668,2023,12,16,17,19,9,3089,19.7283665,-155.9894524,1 -1702783150255,2023,12,16,17,19,10,3580,19.7283668,-155.9894523,1 -1702783150813,2023,12,16,17,19,10,4219,19.728367,-155.9894522,9 -1702783151382,2023,12,16,17,19,11,4468,19.7283671,-155.9894521,1 -1702783151941,2023,12,16,17,19,11,5417,19.7283673,-155.9894519,8 -1702783152501,2023,12,16,17,19,12,5838,19.7283676,-155.9894518,1 -1702783153060,2023,12,16,17,19,13,5294,19.7283677,-155.9894518,1 -1702783153617,2023,12,16,17,19,13,5454,19.728368,-155.9894516,1 -1702783154210,2023,12,16,17,19,14,5550,19.7283681,-155.9894514,1 -1702783154792,2023,12,16,17,19,14,5906,19.7283682,-155.9894514,1 -1702783155341,2023,12,16,17,19,15,5715,19.7283681,-155.9894512,1 -1702783155919,2023,12,16,17,19,15,5151,19.7283682,-155.989451,1 -1702783156473,2023,12,16,17,19,16,4367,19.7283684,-155.9894508,1 -1702783157029,2023,12,16,17,19,17,4307,19.7283685,-155.9894508,1 -1702783157633,2023,12,16,17,19,17,4265,19.7283687,-155.9894507,1 -1702783158202,2023,12,16,17,19,18,4430,19.728369,-155.9894505,1 -1702783158766,2023,12,16,17,19,18,4638,19.7283691,-155.9894505,1 -1702783159347,2023,12,16,17,19,19,4815,19.7283695,-155.9894504,1 -1702783159897,2023,12,16,17,19,19,5754,19.7283699,-155.9894502,9 -1702783160593,2023,12,16,17,19,20,6336,19.7283703,-155.9894501,1 -1702783161151,2023,12,16,17,19,21,6701,19.7283707,-155.98945,9 -1702783161707,2023,12,16,17,19,21,7552,19.7283708,-155.9894499,27 -1702783162303,2023,12,16,17,19,22,7915,19.728371,-155.9894498,30 -1702783162865,2023,12,16,17,19,22,8776,19.7283712,-155.9894496,9 -1702783163433,2023,12,16,17,19,23,8940,19.7283714,-155.9894495,1 -1702783164002,2023,12,16,17,19,24,6203,19.7283717,-155.9894496,1 -1702783164593,2023,12,16,17,19,24,5569,19.7283719,-155.9894495,1 -1702783165155,2023,12,16,17,19,25,6329,19.728372,-155.9894494,1 -1702783165702,2023,12,16,17,19,25,6656,19.728372,-155.9894494,1 -1702783166281,2023,12,16,17,19,26,7323,19.7283722,-155.9894494,10 -1702783166876,2023,12,16,17,19,26,8360,19.7283724,-155.9894493,17 -1702783167449,2023,12,16,17,19,27,9005,19.7283726,-155.9894492,1 -1702783168003,2023,12,16,17,19,28,8089,19.7283729,-155.9894491,1 -1702783168604,2023,12,16,17,19,28,8089,19.7283731,-155.989449,1 -1702783169162,2023,12,16,17,19,29,8990,19.7283734,-155.989449,1 -1702783169719,2023,12,16,17,19,29,9381,19.7283735,-155.989449,1 -1702783170302,2023,12,16,17,19,30,9355,19.7283736,-155.9894489,1 -1702783170881,2023,12,16,17,19,30,9134,19.7283738,-155.9894489,1 -1702783171425,2023,12,16,17,19,31,8101,19.7283739,-155.989449,1 -1702783171971,2023,12,16,17,19,31,8207,19.7283741,-155.989449,1 -1702783172549,2023,12,16,17,19,32,8619,19.7283743,-155.989449,1 -1702783173112,2023,12,16,17,19,33,8601,19.7283744,-155.9894489,1 -1702783173718,2023,12,16,17,19,33,8099,19.7283747,-155.9894488,24 -1702783174308,2023,12,16,17,19,34,8099,19.7283749,-155.9894488,24 -1702783174868,2023,12,16,17,19,34,8034,19.7283751,-155.9894487,10 -1702783175429,2023,12,16,17,19,35,7948,19.7283754,-155.9894487,1 -1702783178474,2023,12,16,17,19,38,8705,19.7283761,-155.9894485,1 -1702783179021,2023,12,16,17,19,39,8963,19.7283762,-155.9894485,1 -1702783179612,2023,12,16,17,19,39,8047,19.7283764,-155.9894484,1 -1702783180204,2023,12,16,17,19,40,8541,19.7283767,-155.9894483,14 -1702783180763,2023,12,16,17,19,40,8805,19.7283768,-155.9894483,7 -1702783181325,2023,12,16,17,19,41,9007,19.7283771,-155.9894484,21 -1702783181881,2023,12,16,17,19,41,9238,19.7283773,-155.9894484,7 -1702783182491,2023,12,16,17,19,42,9387,19.7283776,-155.9894484,1 -1702783183053,2023,12,16,17,19,43,9379,19.7283777,-155.9894484,1 -1702783183627,2023,12,16,17,19,43,9371,19.7283779,-155.9894484,1 -1702783314425,2023,12,16,17,21,54,9140,19.7283508,-155.9894447,1 -1702783315001,2023,12,16,17,21,55,8895,19.7283507,-155.9894449,7 -1702783315685,2023,12,16,17,21,55,8799,19.7283506,-155.989445,1 -1702783316245,2023,12,16,17,21,56,8707,19.7283506,-155.9894451,1 -1702783316809,2023,12,16,17,21,56,8459,19.7283506,-155.9894452,9 -1702783317370,2023,12,16,17,21,57,8282,19.7283505,-155.9894453,1 -1702783317923,2023,12,16,17,21,57,8178,19.7283506,-155.9894453,1 -1702783318482,2023,12,16,17,21,58,6476,19.7283506,-155.9894454,1 -1702783319063,2023,12,16,17,21,59,5707,19.7283506,-155.9894455,1 -1702783319642,2023,12,16,17,21,59,4813,19.7283506,-155.9894457,1 -1702783320185,2023,12,16,17,22,0,5177,19.7283505,-155.9894458,1 -1702783320756,2023,12,16,17,22,0,2819,19.7283505,-155.989446,1 -1702783321322,2023,12,16,17,22,1,3090,19.7283505,-155.9894461,1 -1702783321873,2023,12,16,17,22,1,3344,19.7283505,-155.9894462,1 -1702783322448,2023,12,16,17,22,2,2913,19.7283505,-155.9894464,1 -1702783323022,2023,12,16,17,22,3,3976,19.7283505,-155.9894466,1 -1702783323675,2023,12,16,17,22,3,5090,19.7283505,-155.9894468,1 -1702783324239,2023,12,16,17,22,4,5447,19.7283505,-155.9894468,1 -1702783324790,2023,12,16,17,22,4,6463,19.7283505,-155.9894469,1 -1702783325350,2023,12,16,17,22,5,6816,19.7283506,-155.989447,11 -1702783325895,2023,12,16,17,22,5,7780,19.7283506,-155.989447,1 -1702783326448,2023,12,16,17,22,6,7896,19.7283506,-155.9894471,1 -1702783327017,2023,12,16,17,22,7,7896,19.7283508,-155.9894471,1 -1702783334233,2023,12,16,17,22,14,9024,19.7283502,-155.9894481,1 -1702783334796,2023,12,16,17,22,14,9019,19.7283503,-155.9894482,1 -1702783335340,2023,12,16,17,22,15,9163,19.7283504,-155.9894483,1 -1702783335888,2023,12,16,17,22,15,8917,19.7283503,-155.9894483,17 -1702783336460,2023,12,16,17,22,16,8966,19.7283503,-155.9894485,1 -1702783337024,2023,12,16,17,22,17,8738,19.7283501,-155.9894486,27 -1702783361166,2023,12,16,17,22,41,8020,19.7283511,-155.9894485,1 -1702783361725,2023,12,16,17,22,41,8753,19.7283514,-155.9894484,1 -1702783362284,2023,12,16,17,22,42,8974,19.7283516,-155.9894484,1 -1702783362849,2023,12,16,17,22,42,9075,19.7283517,-155.9894484,9 -1702783363395,2023,12,16,17,22,43,8920,19.7283519,-155.9894483,1 -1702783363953,2023,12,16,17,22,43,8534,19.7283521,-155.9894483,10 -1702783364545,2023,12,16,17,22,44,7172,19.7283522,-155.9894483,1 -1702783365106,2023,12,16,17,22,45,8902,19.7283524,-155.9894483,1 -1702783371902,2023,12,16,17,22,51,9227,19.7283547,-155.9894489,1 -1702783372459,2023,12,16,17,22,52,9219,19.7283548,-155.989449,1 -1702783373007,2023,12,16,17,22,53,8046,19.728355,-155.9894491,1 -1702783373583,2023,12,16,17,22,53,7574,19.7283553,-155.9894491,1 -1702783374141,2023,12,16,17,22,54,6825,19.7283554,-155.9894491,1 -1702783374693,2023,12,16,17,22,54,7512,19.7283556,-155.9894491,1 -1702783375265,2023,12,16,17,22,55,8164,19.7283558,-155.9894492,1 -1702783375814,2023,12,16,17,22,55,8548,19.7283559,-155.9894493,10 -1702783376371,2023,12,16,17,22,56,9049,19.728356,-155.9894493,1 -1702783376926,2023,12,16,17,22,56,9059,19.7283562,-155.9894494,11 -1702783377587,2023,12,16,17,22,57,9084,19.7283564,-155.9894494,1 -1702783378144,2023,12,16,17,22,58,7111,19.7283565,-155.9894494,1 -1702783378701,2023,12,16,17,22,58,6206,19.7283566,-155.9894495,1 -1702783379259,2023,12,16,17,22,59,8881,19.7283567,-155.9894495,1 -1702783379820,2023,12,16,17,22,59,8944,19.7283567,-155.9894495,1 -1702783380392,2023,12,16,17,23,0,6585,19.7283568,-155.9894495,1 -1702783380946,2023,12,16,17,23,0,7516,19.7283569,-155.9894495,1 -1702783381487,2023,12,16,17,23,1,9009,19.728357,-155.9894496,21 -1702783382034,2023,12,16,17,23,2,9009,19.7283571,-155.9894496,21 -1702783382593,2023,12,16,17,23,2,9114,19.7283573,-155.9894495,1 -1702783907912,2023,12,16,17,31,47,9599,19.7283339,-155.9894389,1 -1702783908473,2023,12,16,17,31,48,9643,19.7283338,-155.9894391,1 -1702783909730,2023,12,16,17,31,49,9184,19.7283338,-155.9894396,1 -1702783910289,2023,12,16,17,31,50,8970,19.7283338,-155.9894397,17 -1702783910841,2023,12,16,17,31,50,8793,19.7283338,-155.9894401,1 -1702783911392,2023,12,16,17,31,51,8689,19.7283338,-155.9894404,1 -1702783912031,2023,12,16,17,31,52,8770,19.7283339,-155.9894408,7 -1702783912646,2023,12,16,17,31,52,8791,19.728334,-155.989441,14 -1702783913196,2023,12,16,17,31,53,8971,19.7283341,-155.9894413,1 -1702783913753,2023,12,16,17,31,53,8999,19.7283342,-155.9894417,1 -1702783914307,2023,12,16,17,31,54,8232,19.7283342,-155.9894419,1 -1702783914849,2023,12,16,17,31,54,8196,19.7283343,-155.9894423,1 -1702783915422,2023,12,16,17,31,55,9383,19.7283345,-155.9894427,1 -1702783915966,2023,12,16,17,31,55,7339,19.7283345,-155.9894429,1 -1702783916529,2023,12,16,17,31,56,6714,19.7283345,-155.9894432,1 -1702783917075,2023,12,16,17,31,57,9062,19.7283347,-155.9894436,1 -1702783917655,2023,12,16,17,31,57,7887,19.7283348,-155.9894442,1 -1702783918208,2023,12,16,17,31,58,9344,19.7283348,-155.9894444,1 -1702783918762,2023,12,16,17,31,58,8261,19.7283349,-155.9894448,1 -1702783919316,2023,12,16,17,31,59,8875,19.728335,-155.989445,1 -1702783919871,2023,12,16,17,31,59,8399,19.7283353,-155.9894455,1 -1702783920441,2023,12,16,17,32,0,8773,19.7283356,-155.9894461,1 -1702783921026,2023,12,16,17,32,1,9040,19.7283358,-155.9894467,1 -1702783921599,2023,12,16,17,32,1,8831,19.7283359,-155.9894469,7 -1702783922158,2023,12,16,17,32,2,9316,19.7283363,-155.9894475,7 -1702783922716,2023,12,16,17,32,2,9226,19.7283366,-155.989448,1 -1702783969633,2023,12,16,17,32,49,9026,19.728332,-155.9894536,1 -1702783970178,2023,12,16,17,32,50,7422,19.7283319,-155.9894535,1 -1702783970741,2023,12,16,17,32,50,7034,19.7283318,-155.9894535,1 -1702783971301,2023,12,16,17,32,51,6245,19.7283316,-155.9894534,1 -1702783971856,2023,12,16,17,32,51,6069,19.7283315,-155.9894533,1 -1702783972422,2023,12,16,17,32,52,5739,19.7283314,-155.9894532,1 -1702783972990,2023,12,16,17,32,52,5509,19.7283313,-155.9894531,1 -1702783973577,2023,12,16,17,32,53,6252,19.7283313,-155.9894531,1 -1702783974145,2023,12,16,17,32,54,7329,19.7283312,-155.9894531,7 -1702783974693,2023,12,16,17,32,54,7947,19.7283311,-155.9894531,1 -1702783975242,2023,12,16,17,32,55,8229,19.7283311,-155.9894531,1 -1702783975795,2023,12,16,17,32,55,8590,19.7283311,-155.9894531,8 -1702783976375,2023,12,16,17,32,56,8875,19.7283311,-155.9894531,1 -1702783976936,2023,12,16,17,32,56,8622,19.7283311,-155.9894531,1 -1702783977479,2023,12,16,17,32,57,9409,19.7283311,-155.9894531,12 -1702783978047,2023,12,16,17,32,58,9402,19.7283311,-155.9894531,1 -1702783978640,2023,12,16,17,32,58,9356,19.7283311,-155.9894532,1 -1702783979214,2023,12,16,17,32,59,9321,19.7283311,-155.9894532,11 -1702783979763,2023,12,16,17,32,59,9403,19.7283311,-155.9894533,1 -1702783980347,2023,12,16,17,33,0,8759,19.7283311,-155.9894534,1 -1702783980896,2023,12,16,17,33,0,9535,19.7283311,-155.9894535,1 -1702783981458,2023,12,16,17,33,1,7716,19.7283312,-155.9894535,1 -1702783982017,2023,12,16,17,33,2,9410,19.7283312,-155.9894535,1 -1702783982624,2023,12,16,17,33,2,8174,19.7283312,-155.9894535,1 -1702783983184,2023,12,16,17,33,3,8503,19.7283312,-155.9894535,8 -1702783983745,2023,12,16,17,33,3,8732,19.7283313,-155.9894535,17 -1702783984291,2023,12,16,17,33,4,9527,19.7283314,-155.9894535,40 -1702783984851,2023,12,16,17,33,4,9485,19.7283314,-155.9894536,31 -1702783985398,2023,12,16,17,33,5,9149,19.7283314,-155.9894536,50 -1702783985962,2023,12,16,17,33,5,8857,19.7283314,-155.9894536,58 -1702783986595,2023,12,16,17,33,6,8454,19.7283314,-155.9894536,63 -1702783987160,2023,12,16,17,33,7,8739,19.7283316,-155.9894536,24 -1702783987729,2023,12,16,17,33,7,6433,19.7283317,-155.9894537,10 -1702783988293,2023,12,16,17,33,8,7478,19.7283318,-155.9894536,1 -1702783988871,2023,12,16,17,33,8,8734,19.7283319,-155.9894536,1 -1702783989428,2023,12,16,17,33,9,8971,19.728332,-155.9894536,1 -1702783989977,2023,12,16,17,33,9,7183,19.7283321,-155.9894536,1 -1702783990569,2023,12,16,17,33,10,7584,19.7283321,-155.9894536,1 -1702783991128,2023,12,16,17,33,11,9296,19.7283321,-155.9894536,1 -1702783991690,2023,12,16,17,33,11,9478,19.728332,-155.9894536,8 -1702783992250,2023,12,16,17,33,12,9475,19.728332,-155.9894536,9 -1702783992795,2023,12,16,17,33,12,9461,19.728332,-155.9894536,9 -1702783993357,2023,12,16,17,33,13,8929,19.728332,-155.9894536,1 -1702783993928,2023,12,16,17,33,13,8914,19.7283321,-155.9894536,1 -1702783994484,2023,12,16,17,33,14,8679,19.7283321,-155.9894535,1 -1702783995044,2023,12,16,17,33,15,9484,19.7283322,-155.9894535,1 -1702783995878,2023,12,16,17,33,15,6687,19.7283323,-155.9894535,1 -1702783996462,2023,12,16,17,33,16,9233,19.7283324,-155.9894535,1 -1702783997020,2023,12,16,17,33,17,9253,19.7283325,-155.9894535,1 -1702783997622,2023,12,16,17,33,17,9315,19.7283326,-155.9894535,1 -1702783998186,2023,12,16,17,33,18,8162,19.7283326,-155.9894535,8 -1702783998773,2023,12,16,17,33,18,8785,19.7283328,-155.9894536,8 -1702783999361,2023,12,16,17,33,19,7062,19.7283329,-155.9894536,1 -1702783999944,2023,12,16,17,33,19,6397,19.728333,-155.9894536,1 -1702784000555,2023,12,16,17,33,20,7023,19.7283331,-155.9894536,1 -1702784001132,2023,12,16,17,33,21,5464,19.7283331,-155.9894536,1 -1702784001684,2023,12,16,17,33,21,5560,19.7283332,-155.9894536,1 -1702784002266,2023,12,16,17,33,22,6756,19.7283332,-155.9894536,1 -1702784002825,2023,12,16,17,33,22,7022,19.7283333,-155.9894536,1 -1702784003381,2023,12,16,17,33,23,7635,19.7283334,-155.9894536,1 -1702784003934,2023,12,16,17,33,23,6746,19.7283335,-155.9894536,1 -1702784004489,2023,12,16,17,33,24,7749,19.7283335,-155.9894536,17 -1702784005051,2023,12,16,17,33,25,8731,19.7283337,-155.9894536,6 -1702784005637,2023,12,16,17,33,25,8752,19.728334,-155.9894536,1 -1702784006182,2023,12,16,17,33,26,8480,19.7283341,-155.9894536,1 -1702784006737,2023,12,16,17,33,26,6347,19.7283342,-155.9894536,1 -1702784007290,2023,12,16,17,33,27,6347,19.7283344,-155.9894536,1 -1702784007851,2023,12,16,17,33,27,8721,19.7283344,-155.9894536,1 -1702784008407,2023,12,16,17,33,28,8481,19.7283345,-155.9894536,1 -1702784008964,2023,12,16,17,33,28,8289,19.7283347,-155.9894536,1 -1702784009547,2023,12,16,17,33,29,8111,19.7283348,-155.9894537,1 -1702784010108,2023,12,16,17,33,30,7924,19.7283349,-155.9894537,1 -1702784010673,2023,12,16,17,33,30,8385,19.728335,-155.9894538,1 -1702784011222,2023,12,16,17,33,31,8549,19.7283351,-155.9894538,1 -1702784011773,2023,12,16,17,33,31,8634,19.7283352,-155.9894538,11 -1702784012343,2023,12,16,17,33,32,8857,19.7283353,-155.9894538,23 -1702784012921,2023,12,16,17,33,32,8718,19.7283353,-155.9894538,1 -1702784013482,2023,12,16,17,33,33,9232,19.7283353,-155.9894539,52 -1702784014040,2023,12,16,17,33,34,9294,19.7283353,-155.9894539,44 -1702784014636,2023,12,16,17,33,34,9216,19.7283353,-155.9894539,44 -1702784015177,2023,12,16,17,33,35,8980,19.7283353,-155.9894539,23 -1702784015738,2023,12,16,17,33,35,7038,19.7283353,-155.989454,1 -1702784016295,2023,12,16,17,33,36,8135,19.7283353,-155.9894541,1 -1702784016886,2023,12,16,17,33,36,8135,19.7283354,-155.9894541,1 -1702784017457,2023,12,16,17,33,37,7436,19.7283357,-155.9894542,1 -1702784018048,2023,12,16,17,33,38,7956,19.7283359,-155.9894543,1 -1702784018655,2023,12,16,17,33,38,7858,19.7283362,-155.9894544,1 -1702784019197,2023,12,16,17,33,39,9034,19.7283362,-155.9894545,1 -1702784019759,2023,12,16,17,33,39,9289,19.7283364,-155.9894546,1 -1702784020303,2023,12,16,17,33,40,9383,19.7283366,-155.9894547,23 -1702784020861,2023,12,16,17,33,40,9219,19.7283368,-155.9894548,17 -1702784021442,2023,12,16,17,33,41,8177,19.7283368,-155.9894548,1 -1702784022046,2023,12,16,17,33,42,8140,19.7283369,-155.9894548,1 -1702784022626,2023,12,16,17,33,42,7578,19.7283368,-155.9894549,1 -1702784023172,2023,12,16,17,33,43,6914,19.7283369,-155.9894549,1 -1702784023724,2023,12,16,17,33,43,6046,19.728337,-155.989455,1 -1702784024283,2023,12,16,17,33,44,5854,19.7283371,-155.9894551,1 -1702784024838,2023,12,16,17,33,44,6144,19.7283372,-155.9894551,1 -1702784025386,2023,12,16,17,33,45,5665,19.7283373,-155.9894552,1 -1702784025935,2023,12,16,17,33,45,6265,19.7283374,-155.9894553,1 -1702784026482,2023,12,16,17,33,46,6372,19.7283375,-155.9894553,1 -1702784027045,2023,12,16,17,33,47,4777,19.7283376,-155.9894553,1 -1702784027664,2023,12,16,17,33,47,4080,19.7283377,-155.9894553,1 -1702784028230,2023,12,16,17,33,48,5069,19.7283378,-155.9894554,1 -1702784028787,2023,12,16,17,33,48,5251,19.7283378,-155.9894554,1 -1702784029337,2023,12,16,17,33,49,6061,19.728338,-155.9894555,1 -1702784029899,2023,12,16,17,33,49,5630,19.7283382,-155.9894555,1 -1702784030443,2023,12,16,17,33,50,8181,19.7283383,-155.9894555,1 -1702784031002,2023,12,16,17,33,51,5513,19.7283385,-155.9894556,1 -1702784031751,2023,12,16,17,33,51,7368,19.7283387,-155.9894556,1 -1702784032335,2023,12,16,17,33,52,7782,19.728339,-155.9894556,1 -1702784032893,2023,12,16,17,33,52,8115,19.7283393,-155.9894556,8 -1702784033450,2023,12,16,17,33,53,8697,19.7283394,-155.9894556,1 -1702784034011,2023,12,16,17,33,54,8913,19.7283396,-155.9894556,1 -1702784034619,2023,12,16,17,33,54,9424,19.7283397,-155.9894555,1 -1702784035169,2023,12,16,17,33,55,9399,19.7283398,-155.9894555,1 -1702784035729,2023,12,16,17,33,55,7034,19.72834,-155.9894554,1 -1702784036294,2023,12,16,17,33,56,7004,19.7283402,-155.9894554,1 -1702784036902,2023,12,16,17,33,56,8764,19.7283405,-155.9894554,1 -1702784037473,2023,12,16,17,33,57,6984,19.7283405,-155.9894554,1 -1702784038035,2023,12,16,17,33,58,7313,19.7283407,-155.9894554,1 -1702784038632,2023,12,16,17,33,58,7592,19.7283408,-155.9894554,1 -1702784039179,2023,12,16,17,33,59,8511,19.7283409,-155.9894554,8 -1702784039725,2023,12,16,17,33,59,8541,19.7283411,-155.9894554,1 -1702784040278,2023,12,16,17,34,0,8605,19.7283414,-155.9894554,17 -1702784040832,2023,12,16,17,34,0,8652,19.7283414,-155.9894554,21 -1702784041391,2023,12,16,17,34,1,8781,19.7283415,-155.9894554,11 -1702784041929,2023,12,16,17,34,1,8612,19.7283417,-155.9894554,1 -1702784042483,2023,12,16,17,34,2,9082,19.7283418,-155.9894554,1 -1702784043029,2023,12,16,17,34,3,9143,19.7283418,-155.9894554,23 -1702784043619,2023,12,16,17,34,3,9268,19.7283419,-155.9894554,10 -1702784044185,2023,12,16,17,34,4,9129,19.728342,-155.9894555,1 -1702784044743,2023,12,16,17,34,4,8235,19.7283421,-155.9894555,1 -1702784045306,2023,12,16,17,34,5,9566,19.7283422,-155.9894555,1 -1702784045853,2023,12,16,17,34,5,9779,19.7283422,-155.9894555,1 -1702784046405,2023,12,16,17,34,6,9651,19.7283423,-155.9894555,1 -1702784046951,2023,12,16,17,34,6,9631,19.7283424,-155.9894555,1 -1702784047507,2023,12,16,17,34,7,9624,19.7283425,-155.9894555,1 -1702784048055,2023,12,16,17,34,8,9290,19.7283426,-155.9894554,1 -1702784048662,2023,12,16,17,34,8,8153,19.7283426,-155.9894553,10 -1702784049237,2023,12,16,17,34,9,9341,19.7283426,-155.9894552,1 -1702784049781,2023,12,16,17,34,9,9173,19.7283427,-155.9894552,1 -1702784050327,2023,12,16,17,34,10,8852,19.7283429,-155.9894551,1 -1702784050985,2023,12,16,17,34,10,8140,19.7283429,-155.9894551,1 -1702784051700,2023,12,16,17,34,11,8530,19.728343,-155.989455,1 -1702784052254,2023,12,16,17,34,12,8648,19.728343,-155.9894549,1 -1702784052993,2023,12,16,17,34,12,9020,19.728343,-155.9894548,1 -1702784053573,2023,12,16,17,34,13,7353,19.7283428,-155.9894546,1 -1702784054135,2023,12,16,17,34,14,6510,19.7283428,-155.9894546,1 -1702784054710,2023,12,16,17,34,14,7443,19.7283428,-155.9894544,1 -1702784055268,2023,12,16,17,34,15,7209,19.7283426,-155.9894543,1 -1702784055815,2023,12,16,17,34,15,8493,19.7283425,-155.9894542,1 -1702784056358,2023,12,16,17,34,16,8100,19.7283424,-155.9894541,1 -1702784056924,2023,12,16,17,34,16,8286,19.7283423,-155.9894541,1 -1702784057470,2023,12,16,17,34,17,6995,19.7283423,-155.989454,1 -1702784058034,2023,12,16,17,34,18,6583,19.7283422,-155.9894539,1 -1702784058624,2023,12,16,17,34,18,6061,19.7283422,-155.9894538,1 -1702784059177,2023,12,16,17,34,19,6996,19.7283421,-155.9894537,1 -1702784059715,2023,12,16,17,34,19,7363,19.7283421,-155.9894536,1 -1702784060278,2023,12,16,17,34,20,5289,19.7283421,-155.9894534,1 -1702784060830,2023,12,16,17,34,20,5724,19.7283421,-155.9894534,1 -1702784061385,2023,12,16,17,34,21,8163,19.7283421,-155.9894533,1 -1702784061939,2023,12,16,17,34,21,8454,19.7283419,-155.9894531,7 -1702784062487,2023,12,16,17,34,22,8564,19.7283419,-155.9894531,1 -1702784063046,2023,12,16,17,34,23,8685,19.7283418,-155.989453,1 -1702784063596,2023,12,16,17,34,23,8740,19.7283417,-155.9894528,1 -1702784064154,2023,12,16,17,34,24,9277,19.7283417,-155.9894528,7 -1702784064723,2023,12,16,17,34,24,9559,19.7283417,-155.9894526,15 -1702784065288,2023,12,16,17,34,25,9575,19.7283417,-155.9894524,27 -1702784065845,2023,12,16,17,34,25,9594,19.7283417,-155.9894522,8 -1702784066435,2023,12,16,17,34,26,9002,19.7283417,-155.9894521,1 -1702784066997,2023,12,16,17,34,26,9375,19.7283417,-155.9894519,7 -1702784067616,2023,12,16,17,34,27,9306,19.7283416,-155.9894518,9 -1702784068169,2023,12,16,17,34,28,9458,19.7283415,-155.9894516,1 -1702784068719,2023,12,16,17,34,28,7652,19.7283415,-155.9894515,1 -1702784069271,2023,12,16,17,34,29,7715,19.7283414,-155.9894514,1 -1702784069851,2023,12,16,17,34,29,7829,19.7283414,-155.9894512,1 -1702784070401,2023,12,16,17,34,30,8811,19.7283415,-155.9894512,1 -1702784070987,2023,12,16,17,34,30,8347,19.7283415,-155.989451,1 -1702784071601,2023,12,16,17,34,31,8676,19.7283415,-155.9894508,1 -1702784072163,2023,12,16,17,34,32,8644,19.7283416,-155.9894507,1 -1702784072720,2023,12,16,17,34,32,9074,19.7283416,-155.9894505,1 -1702784073268,2023,12,16,17,34,33,9007,19.7283418,-155.9894505,1 -1702784073835,2023,12,16,17,34,33,9001,19.7283418,-155.9894503,1 -1702784074394,2023,12,16,17,34,34,8860,19.7283418,-155.9894503,1 -1702784074934,2023,12,16,17,34,34,8182,19.7283418,-155.9894502,1 -1702784075490,2023,12,16,17,34,35,7856,19.7283418,-155.98945,1 -1702784076027,2023,12,16,17,34,36,5771,19.7283418,-155.9894499,1 -1702784076628,2023,12,16,17,34,36,6450,19.7283418,-155.9894497,1 -1702784077177,2023,12,16,17,34,37,6558,19.7283418,-155.9894496,1 -1702784077730,2023,12,16,17,34,37,6548,19.7283417,-155.9894496,1 -1702784078292,2023,12,16,17,34,38,6579,19.7283416,-155.9894494,1 -1702784078847,2023,12,16,17,34,38,6958,19.7283415,-155.9894492,1 -1702784079400,2023,12,16,17,34,39,8584,19.7283414,-155.9894491,1 -1702784079953,2023,12,16,17,34,39,6602,19.7283414,-155.989449,1 -1702784080508,2023,12,16,17,34,40,7866,19.7283415,-155.9894488,1 -1702784081062,2023,12,16,17,34,41,8318,19.7283415,-155.9894488,1 -1702784081638,2023,12,16,17,34,41,8222,19.7283414,-155.9894487,1 -1702784082188,2023,12,16,17,34,42,7489,19.7283413,-155.9894487,1 -1702784082759,2023,12,16,17,34,42,8439,19.7283412,-155.9894486,1 -1702784083331,2023,12,16,17,34,43,8301,19.728341,-155.9894485,9 -1702784083891,2023,12,16,17,34,43,8553,19.7283407,-155.9894485,1 -1702784084457,2023,12,16,17,34,44,8843,19.7283407,-155.9894485,9 -1702784085080,2023,12,16,17,34,45,9015,19.7283406,-155.9894483,1 -1702784085645,2023,12,16,17,34,45,7672,19.7283406,-155.9894482,1 -1702784086207,2023,12,16,17,34,46,9269,19.7283407,-155.9894481,1 -1702784086757,2023,12,16,17,34,46,9346,19.7283407,-155.9894481,1 -1702784087305,2023,12,16,17,34,47,9385,19.7283407,-155.989448,1 -1702784087845,2023,12,16,17,34,47,9260,19.7283408,-155.9894479,11 -1702784088405,2023,12,16,17,34,48,8593,19.7283408,-155.9894478,1 -1702784088963,2023,12,16,17,34,48,9350,19.7283409,-155.9894478,20 -1702784089578,2023,12,16,17,34,49,8843,19.728341,-155.9894478,19 -1702784090145,2023,12,16,17,34,50,8880,19.7283412,-155.9894477,36 -1702784090697,2023,12,16,17,34,50,8937,19.7283414,-155.9894477,24 -1702784091259,2023,12,16,17,34,51,7219,19.7283416,-155.9894477,1 -1702784091814,2023,12,16,17,34,51,8514,19.7283419,-155.9894477,1 -1702784092366,2023,12,16,17,34,52,7645,19.728342,-155.9894477,1 -1702784092919,2023,12,16,17,34,52,7200,19.7283422,-155.9894477,1 -1702784093475,2023,12,16,17,34,53,9366,19.7283424,-155.9894477,1 -1702784094026,2023,12,16,17,34,54,6500,19.7283425,-155.9894477,1 -1702784094594,2023,12,16,17,34,54,6909,19.7283427,-155.9894477,1 -1702784095170,2023,12,16,17,34,55,8855,19.7283429,-155.9894477,1 -1702784095739,2023,12,16,17,34,55,8134,19.7283431,-155.9894477,1 -1702784096286,2023,12,16,17,34,56,8416,19.7283434,-155.9894477,1 -1702784096858,2023,12,16,17,34,56,8621,19.7283438,-155.9894477,1 -1702784097410,2023,12,16,17,34,57,8907,19.728344,-155.9894477,1 -1702784097959,2023,12,16,17,34,57,9222,19.7283445,-155.9894477,1 -1702784098511,2023,12,16,17,34,58,9515,19.7283448,-155.9894477,7 -1702784099066,2023,12,16,17,34,59,9624,19.728345,-155.9894477,1 -1702784099625,2023,12,16,17,34,59,9366,19.7283454,-155.9894477,8 -1702784100187,2023,12,16,17,35,0,9471,19.7283456,-155.9894477,9 -1702784100733,2023,12,16,17,35,0,9592,19.7283458,-155.9894477,7 -1702784101284,2023,12,16,17,35,1,9292,19.728346,-155.9894477,1 -1702784101840,2023,12,16,17,35,1,9314,19.7283463,-155.9894477,16 -1702784102402,2023,12,16,17,35,2,8551,19.7283464,-155.9894477,8 -1702784103005,2023,12,16,17,35,3,8396,19.7283467,-155.9894477,18 -1702784103663,2023,12,16,17,35,3,8186,19.7283472,-155.9894476,8 -1702784104231,2023,12,16,17,35,4,8293,19.7283476,-155.9894477,1 -1702784104793,2023,12,16,17,35,4,8356,19.7283477,-155.9894477,1 -1702784105360,2023,12,16,17,35,5,8626,19.728348,-155.9894477,1 -1702784105934,2023,12,16,17,35,5,8702,19.7283482,-155.9894478,1 -1702784106536,2023,12,16,17,35,6,9292,19.7283484,-155.9894479,12 -1702784107133,2023,12,16,17,35,7,9348,19.7283484,-155.9894479,1 -1702784107716,2023,12,16,17,35,7,9405,19.7283485,-155.989448,1 -1702784108266,2023,12,16,17,35,8,7731,19.7283486,-155.9894481,1 -1702784108822,2023,12,16,17,35,8,9243,19.7283487,-155.9894482,1 -1702784109384,2023,12,16,17,35,9,9046,19.7283488,-155.9894482,1 -1702784109936,2023,12,16,17,35,9,8952,19.7283489,-155.9894483,1 -1702784110498,2023,12,16,17,35,10,8841,19.7283489,-155.9894485,1 -1702784111082,2023,12,16,17,35,11,8813,19.728349,-155.9894485,1 -1702784111688,2023,12,16,17,35,11,8920,19.7283491,-155.9894486,1 -1702784112268,2023,12,16,17,35,12,7965,19.7283491,-155.9894487,1 -1702784112836,2023,12,16,17,35,12,7851,19.7283493,-155.9894488,1 -1702784113407,2023,12,16,17,35,13,9165,19.7283493,-155.9894488,1 -1702784113979,2023,12,16,17,35,13,9160,19.7283495,-155.989449,1 -1702784114589,2023,12,16,17,35,14,9294,19.7283496,-155.9894491,1 -1702784115141,2023,12,16,17,35,15,8244,19.7283499,-155.9894492,12 -1702784115690,2023,12,16,17,35,15,8951,19.72835,-155.9894493,34 -1702784116246,2023,12,16,17,35,16,9143,19.7283501,-155.9894494,23 -1702784116807,2023,12,16,17,35,16,9121,19.7283504,-155.9894496,25 -1702784117368,2023,12,16,17,35,17,7935,19.7283505,-155.9894497,13 -1702784117923,2023,12,16,17,35,17,7592,19.7283508,-155.9894499,1 -1702784118477,2023,12,16,17,35,18,7469,19.7283511,-155.9894501,1 -1702784119045,2023,12,16,17,35,19,7085,19.7283512,-155.9894502,1 -1702784119603,2023,12,16,17,35,19,8625,19.7283514,-155.9894503,1 -1702784120166,2023,12,16,17,35,20,7171,19.7283517,-155.9894505,1 -1702784120724,2023,12,16,17,35,20,7281,19.7283518,-155.9894506,1 -1702784121281,2023,12,16,17,35,21,7884,19.7283518,-155.9894508,1 -1702784121846,2023,12,16,17,35,21,8386,19.728352,-155.989451,1 -1702784122396,2023,12,16,17,35,22,8036,19.7283521,-155.9894511,19 -1702784122951,2023,12,16,17,35,22,7805,19.7283522,-155.9894512,1 -1702784123504,2023,12,16,17,35,23,8781,19.7283524,-155.9894512,1 -1702784124057,2023,12,16,17,35,24,8915,19.7283524,-155.9894512,10 -1702784124642,2023,12,16,17,35,24,9531,19.7283525,-155.9894513,1 -1702784125191,2023,12,16,17,35,25,9255,19.7283526,-155.9894515,1 -1702784125751,2023,12,16,17,35,25,9182,19.7283526,-155.9894515,1 -1702784126305,2023,12,16,17,35,26,8700,19.7283526,-155.9894516,1 -1702784126851,2023,12,16,17,35,26,8928,19.7283526,-155.9894516,1 -1702784127408,2023,12,16,17,35,27,9369,19.7283526,-155.9894516,1 -1702784127960,2023,12,16,17,35,27,9021,19.7283526,-155.9894517,1 -1702784128617,2023,12,16,17,35,28,8097,19.7283526,-155.9894518,1 -1702784129172,2023,12,16,17,35,29,6964,19.7283526,-155.9894518,1 -1702784129743,2023,12,16,17,35,29,8903,19.7283526,-155.9894518,1 -1702784130305,2023,12,16,17,35,30,9127,19.7283527,-155.9894518,1 -1702784130897,2023,12,16,17,35,30,8694,19.7283528,-155.9894519,1 -1702784131486,2023,12,16,17,35,31,9024,19.7283529,-155.989452,9 -1702784132040,2023,12,16,17,35,32,7461,19.7283529,-155.989452,1 -1702784132599,2023,12,16,17,35,32,7422,19.728353,-155.989452,1 -1702784133280,2023,12,16,17,35,33,8090,19.728353,-155.9894521,1 -1702784133836,2023,12,16,17,35,33,7899,19.728353,-155.9894522,1 -1702784134396,2023,12,16,17,35,34,7289,19.728353,-155.9894522,1 -1702784135168,2023,12,16,17,35,35,7981,19.7283527,-155.9894522,1 -1702784135714,2023,12,16,17,35,35,7349,19.7283526,-155.9894522,1 -1702784136273,2023,12,16,17,35,36,7734,19.7283524,-155.9894522,1 -1702784136837,2023,12,16,17,35,36,8781,19.7283523,-155.9894522,17 -1702784137395,2023,12,16,17,35,37,8512,19.7283523,-155.9894522,10 -1702784137977,2023,12,16,17,35,37,9174,19.7283524,-155.9894522,17 -1702784138617,2023,12,16,17,35,38,9386,19.7283524,-155.9894523,1 -1702784139174,2023,12,16,17,35,39,7454,19.7283523,-155.9894523,1 -1702784139732,2023,12,16,17,35,39,6925,19.7283523,-155.9894523,1 -1702784140283,2023,12,16,17,35,40,7104,19.7283522,-155.9894523,1 -1702784140837,2023,12,16,17,35,40,6118,19.7283522,-155.9894523,1 -1702784141397,2023,12,16,17,35,41,6138,19.7283522,-155.9894523,1 -1702784141953,2023,12,16,17,35,41,5856,19.728352,-155.9894523,1 -1702784142504,2023,12,16,17,35,42,7088,19.7283516,-155.9894523,1 -1702784143088,2023,12,16,17,35,43,6904,19.7283515,-155.9894523,1 -1702784143671,2023,12,16,17,35,43,7821,19.7283514,-155.9894523,1 -1702784144230,2023,12,16,17,35,44,8470,19.7283515,-155.9894523,1 -1702784144787,2023,12,16,17,35,44,8449,19.7283513,-155.9894523,9 -1702784145346,2023,12,16,17,35,45,9051,19.7283512,-155.9894523,15 -1702784145902,2023,12,16,17,35,45,9356,19.7283511,-155.9894523,12 -1702784146473,2023,12,16,17,35,46,9676,19.728351,-155.9894523,4 -1702784147024,2023,12,16,17,35,47,9374,19.728351,-155.9894523,15 -1702784147610,2023,12,16,17,35,47,9284,19.7283509,-155.9894523,5 -1702784148172,2023,12,16,17,35,48,9152,19.7283507,-155.9894523,11 -1702784148742,2023,12,16,17,35,48,8923,19.7283506,-155.9894523,1 -1702784149304,2023,12,16,17,35,49,8783,19.7283503,-155.9894523,1 -1702784149867,2023,12,16,17,35,49,9507,19.7283501,-155.9894523,1 -1702784150421,2023,12,16,17,35,50,8478,19.72835,-155.9894522,1 -1702784150975,2023,12,16,17,35,50,9266,19.7283498,-155.9894522,5 -1702784151562,2023,12,16,17,35,51,9069,19.7283496,-155.9894521,27 -1702784152125,2023,12,16,17,35,52,8958,19.7283496,-155.989452,18 -1702784152688,2023,12,16,17,35,52,8538,19.7283495,-155.989452,13 -1702784153250,2023,12,16,17,35,53,8642,19.7283494,-155.9894518,12 -1702784153814,2023,12,16,17,35,53,8864,19.7283493,-155.9894518,20 -1702784154360,2023,12,16,17,35,54,8921,19.7283493,-155.9894518,23 -1702784154906,2023,12,16,17,35,54,8989,19.7283493,-155.9894518,17 -1702784155449,2023,12,16,17,35,55,9012,19.7283493,-155.9894517,15 -1702784155997,2023,12,16,17,35,55,9108,19.7283493,-155.9894517,14 -1702784156598,2023,12,16,17,35,56,9142,19.7283493,-155.9894517,15 -1702784157158,2023,12,16,17,35,57,9156,19.7283492,-155.9894516,1 -1702784157701,2023,12,16,17,35,57,9049,19.7283492,-155.9894516,1 -1702784158253,2023,12,16,17,35,58,9474,19.7283492,-155.9894515,1 -1702784158823,2023,12,16,17,35,58,9311,19.7283492,-155.9894515,11 -1702784159371,2023,12,16,17,35,59,9276,19.7283492,-155.9894514,13 -1702784159922,2023,12,16,17,35,59,9266,19.7283492,-155.9894513,1 -1702784160481,2023,12,16,17,36,0,9136,19.7283492,-155.9894513,11 -1702784161061,2023,12,16,17,36,1,8043,19.7283492,-155.9894513,1 -1702784161646,2023,12,16,17,36,1,7168,19.7283492,-155.9894513,1 -1702784162219,2023,12,16,17,36,2,7168,19.7283492,-155.9894512,1 -1702784162880,2023,12,16,17,36,2,8462,19.7283491,-155.9894512,1 -1702784163462,2023,12,16,17,36,3,7207,19.728349,-155.9894512,1 -1702784164012,2023,12,16,17,36,4,9210,19.7283489,-155.9894512,1 -1702784164617,2023,12,16,17,36,4,7767,19.728349,-155.9894512,1 -1702784165177,2023,12,16,17,36,5,8913,19.728349,-155.9894511,1 -1702784165723,2023,12,16,17,36,5,7677,19.728349,-155.9894511,1 -1702784166295,2023,12,16,17,36,6,7811,19.728349,-155.9894511,1 -1702784166889,2023,12,16,17,36,6,8415,19.728349,-155.9894511,1 -1702784167465,2023,12,16,17,36,7,8074,19.728349,-155.9894511,1 -1702784168043,2023,12,16,17,36,8,8575,19.728349,-155.9894511,1 -1702784168653,2023,12,16,17,36,8,7699,19.7283492,-155.9894511,1 -1702784169210,2023,12,16,17,36,9,8295,19.7283494,-155.9894511,1 -1702784169869,2023,12,16,17,36,9,9555,19.7283496,-155.9894511,1 -1702784170458,2023,12,16,17,36,10,7417,19.7283497,-155.9894511,1 -1702784171046,2023,12,16,17,36,11,6687,19.7283498,-155.9894512,1 -1702784171741,2023,12,16,17,36,11,8337,19.7283501,-155.9894512,1 -1702784172317,2023,12,16,17,36,12,9206,19.7283502,-155.9894512,1 -1702784172908,2023,12,16,17,36,12,9161,19.7283502,-155.9894512,10 -1702784173492,2023,12,16,17,36,13,9118,19.7283502,-155.9894512,21 -1702784174054,2023,12,16,17,36,14,7247,19.7283502,-155.9894512,1 -1702784174647,2023,12,16,17,36,14,9311,19.7283503,-155.9894512,22 -1702784175241,2023,12,16,17,36,15,9539,19.7283505,-155.9894512,1 -1702784175792,2023,12,16,17,36,15,8698,19.7283506,-155.9894511,1 -1702784176342,2023,12,16,17,36,16,8337,19.7283507,-155.989451,1 -1702784176894,2023,12,16,17,36,16,7612,19.7283508,-155.9894509,1 -1702784177446,2023,12,16,17,36,17,7218,19.728351,-155.9894509,1 -1702784177998,2023,12,16,17,36,17,6251,19.728351,-155.9894508,1 -1702784178692,2023,12,16,17,36,18,7080,19.7283512,-155.9894509,1 -1702784179233,2023,12,16,17,36,19,5609,19.7283514,-155.9894509,1 -1702784179797,2023,12,16,17,36,19,5265,19.7283517,-155.9894509,1 -1702784185483,2023,12,16,17,36,25,8576,19.7283537,-155.9894516,1 -1702784186054,2023,12,16,17,36,26,9090,19.7283539,-155.9894516,32 -1702784186610,2023,12,16,17,36,26,8526,19.7283541,-155.9894516,22 -1702784187166,2023,12,16,17,36,27,8606,19.7283542,-155.9894517,31 -1702784187731,2023,12,16,17,36,27,8270,19.7283543,-155.9894517,12 -1702784188285,2023,12,16,17,36,28,7868,19.7283544,-155.9894518,1 -1702784188836,2023,12,16,17,36,28,7844,19.7283545,-155.9894517,1 -1702784189393,2023,12,16,17,36,29,7802,19.7283545,-155.9894518,1 -1702784189961,2023,12,16,17,36,29,7752,19.7283546,-155.9894518,1 -1702784190510,2023,12,16,17,36,30,9081,19.7283546,-155.9894518,9 -1702784191069,2023,12,16,17,36,31,9471,19.7283546,-155.9894518,1 -1702784191633,2023,12,16,17,36,31,7814,19.7283546,-155.9894518,1 -1702784192182,2023,12,16,17,36,32,9627,19.7283546,-155.9894518,1 -1702784192764,2023,12,16,17,36,32,9627,19.7283546,-155.9894517,1 -1702784193312,2023,12,16,17,36,33,9399,19.7283546,-155.9894517,8 -1702784193856,2023,12,16,17,36,33,8956,19.7283546,-155.9894516,20 -1702784194409,2023,12,16,17,36,34,9349,19.7283546,-155.9894514,31 -1702784194969,2023,12,16,17,36,34,9329,19.7283547,-155.9894514,43 -1702784195522,2023,12,16,17,36,35,9359,19.7283548,-155.9894513,34 -1702784196113,2023,12,16,17,36,36,9308,19.7283548,-155.9894513,12 -1702784196685,2023,12,16,17,36,36,9136,19.7283548,-155.9894513,31 -1702784197236,2023,12,16,17,36,37,9402,19.728355,-155.9894515,22 -1702784197788,2023,12,16,17,36,37,9336,19.7283554,-155.9894518,22 -1702784198338,2023,12,16,17,36,38,9179,19.7283557,-155.9894521,45 -1702784198893,2023,12,16,17,36,38,9296,19.7283565,-155.9894527,33 -1702784199448,2023,12,16,17,36,39,9423,19.7283576,-155.9894535,32 -1702784199995,2023,12,16,17,36,39,9568,19.7283582,-155.9894538,9 -1702784200599,2023,12,16,17,36,40,9510,19.7283588,-155.9894545,17 -1702784201156,2023,12,16,17,36,41,9600,19.7283592,-155.989455,7 -1702784201709,2023,12,16,17,36,41,9329,19.7283593,-155.9894552,8 -1702784202281,2023,12,16,17,36,42,9501,19.7283594,-155.9894555,6 -1702784202846,2023,12,16,17,36,42,8109,19.7283594,-155.9894557,1 -1702784203407,2023,12,16,17,36,43,8346,19.7283593,-155.9894559,1 -1702784203956,2023,12,16,17,36,43,8534,19.7283592,-155.989456,1 -1702784204515,2023,12,16,17,36,44,8864,19.728359,-155.989456,1 -1702784205082,2023,12,16,17,36,45,8799,19.7283587,-155.989456,1 -1702784205674,2023,12,16,17,36,45,8773,19.7283585,-155.9894561,1 -1702784206213,2023,12,16,17,36,46,8313,19.728358,-155.9894561,1 -1702784206756,2023,12,16,17,36,46,8463,19.7283577,-155.9894561,10 -1702784207308,2023,12,16,17,36,47,8765,19.7283575,-155.9894561,1 -1702784207894,2023,12,16,17,36,47,1191,19.7283571,-155.989456,53 -1702784208468,2023,12,16,17,36,48,1268,19.7283566,-155.9894559,1 -1702784209013,2023,12,16,17,36,49,1424,19.7283564,-155.9894559,1 -1702784209620,2023,12,16,17,36,49,1098,19.7283559,-155.9894558,1 -1702784210178,2023,12,16,17,36,50,1506,19.7283554,-155.9894557,1 -1702784210736,2023,12,16,17,36,50,1197,19.7283551,-155.9894556,1 -1702784211279,2023,12,16,17,36,51,1735,19.728355,-155.9894555,1 -1702784211858,2023,12,16,17,36,51,1881,19.7283549,-155.9894554,10 -1702784212420,2023,12,16,17,36,52,2196,19.7283547,-155.9894553,41 -1702784212977,2023,12,16,17,36,52,2539,19.7283546,-155.9894552,34 -1702784213523,2023,12,16,17,36,53,2648,19.7283544,-155.9894552,17 -1702784214098,2023,12,16,17,36,54,3469,19.7283542,-155.989455,9 -1702784214678,2023,12,16,17,36,54,3569,19.7283541,-155.9894549,10 -1702784215243,2023,12,16,17,36,55,4331,19.728354,-155.9894547,21 -1702784215808,2023,12,16,17,36,55,4935,19.7283538,-155.9894546,20 -1702784216399,2023,12,16,17,36,56,4841,19.7283536,-155.9894545,9 -1702784217092,2023,12,16,17,36,57,6204,19.7283532,-155.9894544,33 -1702784217684,2023,12,16,17,36,57,7206,19.7283531,-155.9894543,24 -1702784218235,2023,12,16,17,36,58,7519,19.7283529,-155.9894543,43 -1702784218780,2023,12,16,17,36,58,8436,19.7283527,-155.9894542,27 -1702784219363,2023,12,16,17,36,59,8189,19.7283527,-155.9894541,7 -1702784219910,2023,12,16,17,36,59,8739,19.7283526,-155.9894541,39 -1702784220482,2023,12,16,17,37,0,9163,19.7283525,-155.9894539,35 -1702784221058,2023,12,16,17,37,1,9202,19.7283524,-155.9894537,28 -1702784221642,2023,12,16,17,37,1,8881,19.7283523,-155.9894536,8 -1702784222201,2023,12,16,17,37,2,9362,19.7283521,-155.9894534,21 -1702784222768,2023,12,16,17,37,2,9380,19.728352,-155.9894532,30 -1702784223311,2023,12,16,17,37,3,9356,19.7283519,-155.9894531,19 -1702784223889,2023,12,16,17,37,3,9260,19.7283518,-155.9894529,1 -1702784224448,2023,12,16,17,37,4,9235,19.7283516,-155.9894528,8 -1702784225012,2023,12,16,17,37,5,9350,19.7283516,-155.9894527,8 -1702784225616,2023,12,16,17,37,5,8992,19.7283513,-155.9894525,15 -1702784226175,2023,12,16,17,37,6,8505,19.7283511,-155.9894523,1 -1702784226718,2023,12,16,17,37,6,8687,19.7283508,-155.9894521,9 -1702784227286,2023,12,16,17,37,7,8930,19.7283508,-155.989452,25 -1702784227841,2023,12,16,17,37,7,8982,19.7283506,-155.9894518,37 -1702784228398,2023,12,16,17,37,8,9197,19.7283505,-155.9894515,46 -1702784229069,2023,12,16,17,37,9,8969,19.7283504,-155.9894513,31 -1702784229733,2023,12,16,17,37,9,8750,19.7283503,-155.989451,10 -1702784230375,2023,12,16,17,37,10,8532,19.7283501,-155.9894509,10 -1702784230935,2023,12,16,17,37,10,8440,19.72835,-155.9894509,1 -1702784231516,2023,12,16,17,37,11,8036,19.7283499,-155.9894507,1 -1702784232068,2023,12,16,17,37,12,7311,19.72835,-155.9894506,1 -1702784232663,2023,12,16,17,37,12,7358,19.7283501,-155.9894505,1 -1702784233213,2023,12,16,17,37,13,7003,19.7283501,-155.9894504,1 -1702784233767,2023,12,16,17,37,13,5455,19.7283499,-155.9894504,1 -1702784234315,2023,12,16,17,37,14,7778,19.7283498,-155.9894503,1 -1702784234853,2023,12,16,17,37,14,8199,19.7283498,-155.9894503,1 -1702784235411,2023,12,16,17,37,15,8607,19.7283497,-155.9894503,19 -1702784235959,2023,12,16,17,37,15,8971,19.7283496,-155.9894502,10 -1702784236502,2023,12,16,17,37,16,9114,19.7283495,-155.9894501,23 -1702784237061,2023,12,16,17,37,17,9091,19.7283494,-155.98945,1 -1702784237652,2023,12,16,17,37,17,8731,19.7283494,-155.98945,1 -1702784238196,2023,12,16,17,37,18,8087,19.7283495,-155.9894499,1 -1702784238743,2023,12,16,17,37,18,7507,19.7283495,-155.9894498,1 -1702784239303,2023,12,16,17,37,19,6884,19.7283495,-155.9894498,1 -1702784239851,2023,12,16,17,37,19,6442,19.7283495,-155.9894498,1 -1702784240398,2023,12,16,17,37,20,6955,19.7283495,-155.9894498,1 -1702784240957,2023,12,16,17,37,20,5267,19.7283495,-155.9894498,1 -1702784241503,2023,12,16,17,37,21,6760,19.7283496,-155.9894498,1 -1702784242055,2023,12,16,17,37,22,6846,19.7283498,-155.9894498,1 -1702784242647,2023,12,16,17,37,22,8439,19.7283499,-155.9894498,1 -1702784243244,2023,12,16,17,37,23,6671,19.7283499,-155.9894498,1 -1702784243799,2023,12,16,17,37,23,7095,19.72835,-155.9894499,1 -1702784244392,2023,12,16,17,37,24,7392,19.7283501,-155.98945,1 -1702784245139,2023,12,16,17,37,25,8940,19.72835,-155.98945,5 -1702784245693,2023,12,16,17,37,25,8986,19.7283501,-155.9894502,24 -1702784246257,2023,12,16,17,37,26,8473,19.7283501,-155.9894503,1 -1702784246804,2023,12,16,17,37,26,8827,19.7283502,-155.9894504,15 -1702784247359,2023,12,16,17,37,27,8078,19.7283502,-155.9894506,10 -1702784247901,2023,12,16,17,37,27,7600,19.7283502,-155.9894506,1 -1702784248462,2023,12,16,17,37,28,9424,19.7283503,-155.9894508,7 -1702784249027,2023,12,16,17,37,29,9353,19.7283504,-155.9894509,1 -1702784249639,2023,12,16,17,37,29,9147,19.7283503,-155.9894509,1 -1702784250189,2023,12,16,17,37,30,9396,19.7283504,-155.989451,17 -1702784250754,2023,12,16,17,37,30,9461,19.7283505,-155.9894511,1 -1702784251307,2023,12,16,17,37,31,9527,19.7283507,-155.9894511,19 -1702784251860,2023,12,16,17,37,31,9468,19.7283507,-155.9894512,9 -1702784252409,2023,12,16,17,37,32,9460,19.7283507,-155.9894512,1 -1702784252956,2023,12,16,17,37,32,9515,19.7283507,-155.9894513,1 -1702784253607,2023,12,16,17,37,33,8191,19.7283505,-155.9894513,1 -1702784254171,2023,12,16,17,37,34,9437,19.7283503,-155.9894513,1 -1702784254719,2023,12,16,17,37,34,6862,19.7283502,-155.9894514,1 -1702784255266,2023,12,16,17,37,35,9609,19.7283502,-155.9894514,1 -1702784255816,2023,12,16,17,37,35,7962,19.7283502,-155.9894514,1 -1702784256373,2023,12,16,17,37,36,8594,19.7283501,-155.9894514,1 -1702784256951,2023,12,16,17,37,36,8950,19.7283501,-155.9894514,1 -1702784257599,2023,12,16,17,37,37,9352,19.7283502,-155.9894515,1 -1702784258205,2023,12,16,17,37,38,8748,19.7283503,-155.9894516,1 -1702784258757,2023,12,16,17,37,38,8348,19.7283505,-155.9894517,1 -1702784259328,2023,12,16,17,37,39,7854,19.7283506,-155.9894518,1 -1702784259871,2023,12,16,17,37,39,7374,19.7283506,-155.9894519,1 -1702784260441,2023,12,16,17,37,40,7102,19.7283506,-155.989452,1 -1702784261029,2023,12,16,17,37,41,8050,19.7283507,-155.989452,10 -1702784261676,2023,12,16,17,37,41,8394,19.728351,-155.9894521,1 -1702784262247,2023,12,16,17,37,42,8817,19.7283512,-155.9894521,1 -1702784262907,2023,12,16,17,37,42,9339,19.7283515,-155.9894522,1 -1702784263447,2023,12,16,17,37,43,8207,19.7283516,-155.9894523,1 -1702784263991,2023,12,16,17,37,43,9441,19.7283517,-155.9894525,1 -1702784264601,2023,12,16,17,37,44,8288,19.7283518,-155.9894526,1 -1702784265153,2023,12,16,17,37,45,8871,19.7283519,-155.9894528,1 -1702784265732,2023,12,16,17,37,45,7845,19.728352,-155.9894529,1 -1702784266281,2023,12,16,17,37,46,7982,19.728352,-155.989453,1 -1702784266837,2023,12,16,17,37,46,7982,19.7283521,-155.9894531,1 -1702784267399,2023,12,16,17,37,47,7553,19.7283522,-155.9894532,1 -1702784267957,2023,12,16,17,37,47,7234,19.7283522,-155.9894533,1 -1702784268506,2023,12,16,17,37,48,9450,19.7283524,-155.9894533,1 -1702784269065,2023,12,16,17,37,49,9450,19.7283526,-155.9894533,1 -1702784269621,2023,12,16,17,37,49,8369,19.7283527,-155.9894533,11 -1702784270176,2023,12,16,17,37,50,9471,19.7283528,-155.9894534,30 -1702784270732,2023,12,16,17,37,50,9499,19.728353,-155.9894535,26 -1702784271284,2023,12,16,17,37,51,9485,19.728353,-155.9894535,40 -1702784271853,2023,12,16,17,37,51,9526,19.7283533,-155.9894535,40 -1702784272423,2023,12,16,17,37,52,9519,19.7283535,-155.9894536,40 -1702784273006,2023,12,16,17,37,53,9454,19.7283537,-155.9894537,14 -1702784273611,2023,12,16,17,37,53,8014,19.7283537,-155.9894537,1 -1702784274203,2023,12,16,17,37,54,7272,19.7283539,-155.9894539,1 -1702784274769,2023,12,16,17,37,54,9005,19.7283541,-155.9894541,1 -1702784275340,2023,12,16,17,37,55,8662,19.7283542,-155.9894542,1 -1702784275911,2023,12,16,17,37,55,7316,19.7283542,-155.9894543,1 -1702784276463,2023,12,16,17,37,56,6898,19.7283541,-155.9894544,1 -1702784277032,2023,12,16,17,37,57,9009,19.7283543,-155.9894546,1 -1702784277663,2023,12,16,17,37,57,7810,19.7283545,-155.9894547,1 -1702784278228,2023,12,16,17,37,58,9288,19.7283546,-155.9894547,1 -1702784278793,2023,12,16,17,37,58,8921,19.7283548,-155.9894548,1 -1702784279365,2023,12,16,17,37,59,9181,19.7283549,-155.9894549,1 -1702784279954,2023,12,16,17,37,59,9181,19.7283551,-155.989455,1 -1702784280559,2023,12,16,17,38,0,9045,19.7283552,-155.9894551,1 -1702784281123,2023,12,16,17,38,1,9078,19.7283553,-155.9894552,7 -1702784281692,2023,12,16,17,38,1,9447,19.7283555,-155.9894553,6 -1702784282256,2023,12,16,17,38,2,9447,19.7283556,-155.9894554,6 -1702784282799,2023,12,16,17,38,2,9303,19.7283557,-155.9894555,9 -1702784283371,2023,12,16,17,38,3,9389,19.7283557,-155.9894557,17 -1702784283925,2023,12,16,17,38,3,7052,19.7283557,-155.9894557,1 -1702784284475,2023,12,16,17,38,4,6783,19.7283557,-155.9894558,1 -1702784285027,2023,12,16,17,38,5,9233,19.7283557,-155.9894559,1 -1702784285596,2023,12,16,17,38,5,9164,19.7283557,-155.9894559,9 -1702784286179,2023,12,16,17,38,6,9031,19.7283559,-155.989456,19 -1702784286735,2023,12,16,17,38,6,9234,19.728356,-155.9894562,9 -1702784287513,2023,12,16,17,38,7,8880,19.7283561,-155.9894563,9 -1702784288051,2023,12,16,17,38,8,9373,19.7283563,-155.9894564,16 -1702784288630,2023,12,16,17,38,8,9628,19.7283565,-155.9894565,8 -1702784289192,2023,12,16,17,38,9,9678,19.7283566,-155.9894565,1 -1702784289730,2023,12,16,17,38,9,8886,19.7283568,-155.9894566,6 -1702784290279,2023,12,16,17,38,10,9643,19.7283569,-155.9894567,1 -1702784290863,2023,12,16,17,38,10,9033,19.7283572,-155.9894568,19 -1702784291440,2023,12,16,17,38,11,9076,19.7283574,-155.9894569,14 -1702784292242,2023,12,16,17,38,12,9139,19.7283576,-155.989457,1 -1702784292823,2023,12,16,17,38,12,9099,19.7283579,-155.9894571,9 -1702784293375,2023,12,16,17,38,13,8564,19.7283582,-155.9894571,9 -1702784293935,2023,12,16,17,38,13,9222,19.7283583,-155.9894571,1 -1702784294490,2023,12,16,17,38,14,9225,19.7283583,-155.9894572,1 -1702784295170,2023,12,16,17,38,15,8021,19.7283582,-155.9894572,1 -1702784295740,2023,12,16,17,38,15,7566,19.7283582,-155.9894572,1 -1702784296298,2023,12,16,17,38,16,9255,19.7283581,-155.9894572,1 -1702784296854,2023,12,16,17,38,16,9144,19.7283581,-155.9894571,1 -1702784297402,2023,12,16,17,38,17,8160,19.728358,-155.989457,1 -1702784297974,2023,12,16,17,38,17,9503,19.7283579,-155.9894569,1 -1702784298547,2023,12,16,17,38,18,8487,19.7283578,-155.9894568,1 -1702784299098,2023,12,16,17,38,19,9295,19.7283577,-155.9894567,1 -1702784299664,2023,12,16,17,38,19,9323,19.7283577,-155.9894565,1 -1702784300221,2023,12,16,17,38,20,9375,19.7283577,-155.9894565,1 -1702784300784,2023,12,16,17,38,20,9288,19.7283579,-155.9894563,8 -1702784301344,2023,12,16,17,38,21,9133,19.7283581,-155.9894562,8 -1702784301887,2023,12,16,17,38,21,6995,19.7283582,-155.9894561,1 -1702784302475,2023,12,16,17,38,22,8663,19.7283584,-155.989456,29 -1702784303040,2023,12,16,17,38,23,8442,19.7283585,-155.9894558,23 -1702784303604,2023,12,16,17,38,23,8763,19.7283586,-155.9894558,23 -1702784304169,2023,12,16,17,38,24,6966,19.7283586,-155.9894557,1 -1702784304721,2023,12,16,17,38,24,7615,19.7283588,-155.9894555,1 -1702784305284,2023,12,16,17,38,25,7271,19.7283589,-155.9894554,1 -1702784305847,2023,12,16,17,38,25,7157,19.728359,-155.9894554,1 -1702784306407,2023,12,16,17,38,26,6072,19.7283593,-155.9894552,1 -1702784306994,2023,12,16,17,38,26,6493,19.7283596,-155.9894551,1 -1702784307607,2023,12,16,17,38,27,6915,19.7283597,-155.989455,1 -1702784308166,2023,12,16,17,38,28,7146,19.7283597,-155.9894549,1 -1702784308717,2023,12,16,17,38,28,7673,19.7283598,-155.9894548,13 -1702784309269,2023,12,16,17,38,29,7523,19.7283599,-155.9894547,48 -1702784309815,2023,12,16,17,38,29,7503,19.72836,-155.9894546,47 -1702784310357,2023,12,16,17,38,30,7517,19.7283603,-155.9894545,24 -1702784310926,2023,12,16,17,38,30,7624,19.7283604,-155.9894544,24 -1702784311492,2023,12,16,17,38,31,7966,19.7283606,-155.9894543,1 -1702784312065,2023,12,16,17,38,32,8791,19.7283608,-155.9894542,1 -1702784312629,2023,12,16,17,38,32,8791,19.728361,-155.989454,1 -1702784313195,2023,12,16,17,38,33,7437,19.7283611,-155.989454,1 -1702784313818,2023,12,16,17,38,33,9544,19.7283612,-155.9894538,1 -1702784314370,2023,12,16,17,38,34,6708,19.7283613,-155.9894537,1 -1702784314931,2023,12,16,17,38,34,9186,19.7283614,-155.9894537,1 -1702784315511,2023,12,16,17,38,35,6520,19.7283617,-155.9894536,1 -1702784316137,2023,12,16,17,38,36,6235,19.7283619,-155.9894535,1 -1702784316698,2023,12,16,17,38,36,7364,19.728362,-155.9894534,1 -1702784317269,2023,12,16,17,38,37,6363,19.7283622,-155.9894534,1 -1702784317834,2023,12,16,17,38,37,5079,19.7283624,-155.9894534,1 -1702784318385,2023,12,16,17,38,38,7118,19.7283626,-155.9894534,1 -1702784318963,2023,12,16,17,38,38,8714,19.7283629,-155.9894534,1 -1702784319509,2023,12,16,17,38,39,9292,19.7283631,-155.9894534,1 -1702784320074,2023,12,16,17,38,40,6700,19.7283633,-155.9894535,1 -1702784320667,2023,12,16,17,38,40,7860,19.7283635,-155.9894536,1 -1702784321241,2023,12,16,17,38,41,8236,19.7283636,-155.9894536,1 -1702784321795,2023,12,16,17,38,41,9622,19.7283637,-155.9894537,1 -1702784322358,2023,12,16,17,38,42,7254,19.7283639,-155.9894538,1 -1702784322906,2023,12,16,17,38,42,9571,19.728364,-155.9894538,1 -1702784323470,2023,12,16,17,38,43,6492,19.7283642,-155.9894539,1 -1702784324030,2023,12,16,17,38,44,9431,19.7283644,-155.989454,1 -1702784324613,2023,12,16,17,38,44,9193,19.7283646,-155.9894541,1 -1702784325167,2023,12,16,17,38,45,8055,19.7283647,-155.9894541,1 -1702784325722,2023,12,16,17,38,45,8140,19.7283647,-155.9894542,8 -1702784326434,2023,12,16,17,38,46,7408,19.7283648,-155.9894543,24 -1702784326994,2023,12,16,17,38,46,8633,19.728365,-155.9894543,1 -1702784327761,2023,12,16,17,38,47,8057,19.7283652,-155.9894544,1 -1702784328330,2023,12,16,17,38,48,8082,19.7283652,-155.9894545,1 -1702784328930,2023,12,16,17,38,48,8309,19.7283653,-155.9894547,1 -1702784329484,2023,12,16,17,38,49,8050,19.7283653,-155.9894547,1 -1702784330038,2023,12,16,17,38,50,7996,19.7283653,-155.9894548,1 -1702784330601,2023,12,16,17,38,50,7888,19.7283653,-155.9894548,1 -1702784331177,2023,12,16,17,38,51,7531,19.7283653,-155.9894549,1 -1702784331749,2023,12,16,17,38,51,7375,19.7283652,-155.989455,1 -1702784332304,2023,12,16,17,38,52,6640,19.7283653,-155.989455,1 -1702784332855,2023,12,16,17,38,52,6747,19.7283653,-155.989455,1 -1702784333416,2023,12,16,17,38,53,6478,19.7283654,-155.989455,1 -1702784333969,2023,12,16,17,38,53,6478,19.7283655,-155.989455,1 -1702784334514,2023,12,16,17,38,54,8224,19.7283656,-155.989455,1 -1702784335067,2023,12,16,17,38,55,8668,19.7283656,-155.989455,1 -1702784335684,2023,12,16,17,38,55,7604,19.7283657,-155.989455,1 -1702784336267,2023,12,16,17,38,56,6611,19.7283658,-155.989455,1 -1702784336836,2023,12,16,17,38,56,7610,19.7283658,-155.989455,1 -1702784337395,2023,12,16,17,38,57,6445,19.7283658,-155.989455,1 -1702784337971,2023,12,16,17,38,57,5634,19.7283659,-155.989455,1 -1702784338564,2023,12,16,17,38,58,5760,19.7283659,-155.989455,1 -1702784339103,2023,12,16,17,38,59,5526,19.7283659,-155.989455,1 -1702784339707,2023,12,16,17,38,59,6517,19.7283659,-155.9894551,1 -1702784340262,2023,12,16,17,39,0,7098,19.7283659,-155.9894551,1 -1702784340808,2023,12,16,17,39,0,7648,19.7283659,-155.9894551,1 -1702784341357,2023,12,16,17,39,1,8171,19.7283659,-155.9894551,1 -1702784341907,2023,12,16,17,39,1,8583,19.7283661,-155.9894551,8 -1702784342471,2023,12,16,17,39,2,8461,19.7283661,-155.9894551,1 -1702784343018,2023,12,16,17,39,3,9163,19.7283664,-155.9894552,1 -1702784343662,2023,12,16,17,39,3,8424,19.7283667,-155.9894552,11 -1702784344206,2023,12,16,17,39,4,8602,19.7283668,-155.9894553,1 -1702784344766,2023,12,16,17,39,4,8786,19.728367,-155.9894554,9 -1702784345314,2023,12,16,17,39,5,9001,19.7283674,-155.9894555,18 -1702784345865,2023,12,16,17,39,5,9093,19.7283675,-155.9894555,14 -1702784346431,2023,12,16,17,39,6,9073,19.7283677,-155.9894556,23 -1702784346985,2023,12,16,17,39,6,8911,19.7283677,-155.9894557,24 -1702784347599,2023,12,16,17,39,7,9021,19.7283676,-155.9894557,15 -1702784348260,2023,12,16,17,39,8,8728,19.7283676,-155.9894556,15 -1702784348804,2023,12,16,17,39,8,8306,19.7283676,-155.9894556,24 -1702784349352,2023,12,16,17,39,9,8187,19.7283675,-155.9894556,7 -1702784349906,2023,12,16,17,39,9,8404,19.7283675,-155.9894556,1 -1702784350478,2023,12,16,17,39,10,8585,19.7283675,-155.9894556,7 -1702784351073,2023,12,16,17,39,11,7984,19.7283674,-155.9894555,1 -1702784351705,2023,12,16,17,39,11,9084,19.7283672,-155.9894554,1 -1702784352267,2023,12,16,17,39,12,8309,19.7283669,-155.9894554,1 -1702784352806,2023,12,16,17,39,12,6925,19.7283668,-155.9894553,8 -1702784353360,2023,12,16,17,39,13,7329,19.7283666,-155.9894552,1 -1702784353916,2023,12,16,17,39,13,7917,19.7283666,-155.9894552,1 -1702784354480,2023,12,16,17,39,14,7545,19.7283666,-155.9894552,1 -1702784355037,2023,12,16,17,39,15,7843,19.7283665,-155.9894552,1 -1702784355658,2023,12,16,17,39,15,8163,19.7283662,-155.9894552,1 -1702784356206,2023,12,16,17,39,16,9027,19.7283661,-155.9894552,1 -1702784356752,2023,12,16,17,39,16,8617,19.7283657,-155.9894552,8 -1702784357345,2023,12,16,17,39,17,9410,19.7283655,-155.9894552,1 -1702784357904,2023,12,16,17,39,17,9008,19.7283651,-155.9894552,1 -1702784358456,2023,12,16,17,39,18,9359,19.728365,-155.9894552,1 -1702784359002,2023,12,16,17,39,19,9716,19.7283646,-155.9894552,1 -1702784359602,2023,12,16,17,39,19,9639,19.7283642,-155.9894552,1 -1702784360175,2023,12,16,17,39,20,9192,19.7283641,-155.9894552,1 -1702784360738,2023,12,16,17,39,20,8888,19.7283637,-155.9894551,1 -1702784361336,2023,12,16,17,39,21,8478,19.7283633,-155.989455,1 -1702784361903,2023,12,16,17,39,21,8714,19.7283628,-155.9894549,1 -1702784362463,2023,12,16,17,39,22,9038,19.7283626,-155.9894549,1 -1702784363126,2023,12,16,17,39,23,9108,19.7283622,-155.9894547,1 -1702784363681,2023,12,16,17,39,23,9531,19.7283617,-155.9894546,1 -1702784364229,2023,12,16,17,39,24,9241,19.7283611,-155.9894544,1 -1702784364782,2023,12,16,17,39,24,7084,19.7283608,-155.9894544,1 -1702784365357,2023,12,16,17,39,25,6632,19.7283602,-155.9894542,1 -1702784365906,2023,12,16,17,39,25,7322,19.7283597,-155.9894541,1 -1702784366465,2023,12,16,17,39,26,7821,19.7283594,-155.989454,1 -1702784367014,2023,12,16,17,39,27,5528,19.7283589,-155.9894539,1 -1702784367669,2023,12,16,17,39,27,6200,19.7283583,-155.9894538,1 -1702784368235,2023,12,16,17,39,28,7069,19.7283577,-155.9894536,1 -1702784368792,2023,12,16,17,39,28,7911,19.7283574,-155.9894535,1 -1702784369364,2023,12,16,17,39,29,8463,19.7283569,-155.9894533,11 -1702784370023,2023,12,16,17,39,30,8361,19.7283564,-155.9894531,1 -1702784370621,2023,12,16,17,39,30,8554,19.7283559,-155.9894529,1 -1702784371287,2023,12,16,17,39,31,8660,19.7283555,-155.9894527,1 -1702784371835,2023,12,16,17,39,31,8806,19.7283554,-155.9894525,1 -1702784372387,2023,12,16,17,39,32,8983,19.7283551,-155.9894523,1 -1702784372941,2023,12,16,17,39,32,9120,19.7283547,-155.9894521,1 -1702784373497,2023,12,16,17,39,33,9049,19.7283546,-155.9894521,1 -1702784374081,2023,12,16,17,39,34,6556,19.7283544,-155.9894518,1 -1702784374670,2023,12,16,17,39,34,7109,19.7283542,-155.9894516,1 -1702784375219,2023,12,16,17,39,35,5381,19.7283539,-155.9894514,1 -1702784375768,2023,12,16,17,39,35,6737,19.7283538,-155.9894513,1 -1702784376311,2023,12,16,17,39,36,7322,19.7283535,-155.9894511,10 -1702784376890,2023,12,16,17,39,36,8185,19.7283532,-155.989451,1 -1702784377455,2023,12,16,17,39,37,8513,19.728353,-155.9894508,1 -1702784378012,2023,12,16,17,39,38,9275,19.7283526,-155.9894506,1 -1702784378660,2023,12,16,17,39,38,9314,19.7283524,-155.9894504,11 -1702784379222,2023,12,16,17,39,39,9080,19.7283521,-155.9894502,34 -1702784379777,2023,12,16,17,39,39,9060,19.7283519,-155.9894501,19 -1702784380320,2023,12,16,17,39,40,8482,19.7283515,-155.9894499,19 -1702784380872,2023,12,16,17,39,40,8046,19.7283512,-155.9894496,30 -1702784381426,2023,12,16,17,39,41,7763,19.7283511,-155.9894495,20 -1702784381979,2023,12,16,17,39,41,7572,19.7283508,-155.9894493,20 -1702784382534,2023,12,16,17,39,42,8652,19.7283505,-155.9894491,1 -1702784383084,2023,12,16,17,39,43,7415,19.7283503,-155.989449,1 -1702784383696,2023,12,16,17,39,43,7782,19.7283499,-155.9894489,10 -1702784384240,2023,12,16,17,39,44,8142,19.7283493,-155.9894486,1 -1702784384786,2023,12,16,17,39,44,8608,19.728349,-155.9894485,32 -1702784385337,2023,12,16,17,39,45,8854,19.7283485,-155.9894483,20 -1702784385889,2023,12,16,17,39,45,7109,19.7283477,-155.9894481,1 -1702784386693,2023,12,16,17,39,46,9015,19.7283471,-155.9894479,10 -1702784387265,2023,12,16,17,39,47,8889,19.7283466,-155.9894477,1 -1702784387836,2023,12,16,17,39,47,8653,19.7283464,-155.9894476,1 -1702784388388,2023,12,16,17,39,48,8826,19.728346,-155.9894475,1 -1702784388931,2023,12,16,17,39,48,8719,19.7283456,-155.9894473,1 -1702784389516,2023,12,16,17,39,49,8536,19.7283455,-155.9894472,1 -1702784390073,2023,12,16,17,39,50,8709,19.7283452,-155.989447,1 -1702784390638,2023,12,16,17,39,50,8074,19.7283451,-155.9894469,1 -1702784391185,2023,12,16,17,39,51,8783,19.7283451,-155.9894468,1 -1702784391761,2023,12,16,17,39,51,8643,19.728345,-155.9894467,1 -1702784392330,2023,12,16,17,39,52,9208,19.728345,-155.9894466,1 -1702784392885,2023,12,16,17,39,52,8835,19.728345,-155.9894465,1 -1702784393439,2023,12,16,17,39,53,9091,19.728345,-155.9894465,1 -1702784393994,2023,12,16,17,39,53,8941,19.7283451,-155.9894464,11 -1702784394598,2023,12,16,17,39,54,9154,19.7283454,-155.9894464,10 -1702784395148,2023,12,16,17,39,55,8712,19.7283454,-155.9894465,26 -1702784395698,2023,12,16,17,39,55,9267,19.7283455,-155.9894465,11 -1702784396241,2023,12,16,17,39,56,8245,19.7283456,-155.9894467,11 -1702784396834,2023,12,16,17,39,56,9326,19.7283457,-155.9894469,21 -1702784397389,2023,12,16,17,39,57,9484,19.7283457,-155.9894471,20 -1702784397942,2023,12,16,17,39,57,9875,19.7283457,-155.9894473,1 -1702784398489,2023,12,16,17,39,58,7481,19.7283457,-155.9894473,1 -1702784399047,2023,12,16,17,39,59,395,19.7283458,-155.9894474,55 -1702784399645,2023,12,16,17,39,59,492,19.7283458,-155.9894476,1 -1702784400200,2023,12,16,17,40,0,637,19.728346,-155.9894478,1 -1702784400755,2023,12,16,17,40,0,673,19.7283461,-155.9894479,1 -1702784401315,2023,12,16,17,40,1,581,19.7283462,-155.989448,1 -1702784401876,2023,12,16,17,40,1,888,19.7283463,-155.9894481,22 -1702784402451,2023,12,16,17,40,2,1070,19.7283463,-155.9894481,15 -1702784403105,2023,12,16,17,40,3,1520,19.7283465,-155.9894482,31 -1702784403693,2023,12,16,17,40,3,1665,19.7283468,-155.9894483,27 -1702784404260,2023,12,16,17,40,4,1861,19.7283471,-155.9894483,16 -1702784404809,2023,12,16,17,40,4,1742,19.7283471,-155.9894484,1 -1702784405576,2023,12,16,17,40,5,1624,19.728347,-155.9894484,1 -1702784406135,2023,12,16,17,40,6,1974,19.728347,-155.9894485,1 -1702784406692,2023,12,16,17,40,6,2218,19.7283469,-155.9894485,1 -1702784407262,2023,12,16,17,40,7,2810,19.7283467,-155.9894485,1 -1702784407827,2023,12,16,17,40,7,3337,19.7283467,-155.9894485,36 -1702784408421,2023,12,16,17,40,8,3766,19.7283468,-155.9894486,52 -1702784408990,2023,12,16,17,40,8,4200,19.7283467,-155.9894486,43 -1702784409601,2023,12,16,17,40,9,5102,19.7283467,-155.9894486,29 -1702784410284,2023,12,16,17,40,10,4696,19.7283467,-155.9894486,1 -1702784410835,2023,12,16,17,40,10,4766,19.7283467,-155.9894486,1 -1702784411390,2023,12,16,17,40,11,4674,19.7283467,-155.9894485,1 -1702784411951,2023,12,16,17,40,11,4764,19.7283468,-155.9894484,1 -1702784412498,2023,12,16,17,40,12,5535,19.7283469,-155.9894484,1 -1702784413058,2023,12,16,17,40,13,6216,19.7283469,-155.9894483,1 -1702784413630,2023,12,16,17,40,13,6216,19.7283471,-155.9894483,1 -1702784414184,2023,12,16,17,40,14,6342,19.7283472,-155.9894483,1 -1702784414736,2023,12,16,17,40,14,6412,19.7283473,-155.9894483,1 -1702784415282,2023,12,16,17,40,15,6927,19.7283475,-155.9894483,1 -1702784415962,2023,12,16,17,40,15,7556,19.7283476,-155.9894483,1 -1702784416520,2023,12,16,17,40,16,7627,19.7283476,-155.9894483,1 -1702784417100,2023,12,16,17,40,17,5367,19.7283476,-155.9894483,1 -1702784417672,2023,12,16,17,40,17,8322,19.7283477,-155.9894484,1 -1702784418218,2023,12,16,17,40,18,8494,19.728348,-155.9894484,1 -1702784418771,2023,12,16,17,40,18,8989,19.728348,-155.9894484,11 -1702784419370,2023,12,16,17,40,19,6981,19.728348,-155.9894484,1 -1702784419932,2023,12,16,17,40,19,7624,19.7283482,-155.9894484,1 -1702784420473,2023,12,16,17,40,20,9474,19.7283483,-155.9894484,8 -1702784421031,2023,12,16,17,40,21,9609,19.7283485,-155.9894484,8 -1702784421618,2023,12,16,17,40,21,9558,19.7283487,-155.9894484,8 -1702784422286,2023,12,16,17,40,22,9358,19.7283489,-155.9894484,6 -1702784422865,2023,12,16,17,40,22,9359,19.7283491,-155.9894484,6 -1702784423416,2023,12,16,17,40,23,8786,19.7283492,-155.9894484,1 -1702784423978,2023,12,16,17,40,23,9041,19.7283494,-155.9894483,1 -1702784424555,2023,12,16,17,40,24,9394,19.7283496,-155.9894483,8 -1702784425124,2023,12,16,17,40,25,8628,19.7283497,-155.9894482,1 -1702784425678,2023,12,16,17,40,25,8679,19.7283499,-155.9894482,1 -1702784426239,2023,12,16,17,40,26,8796,19.7283501,-155.9894482,1 -1702784426831,2023,12,16,17,40,26,8396,19.7283504,-155.9894482,1 -1702784427397,2023,12,16,17,40,27,8729,19.7283505,-155.9894482,1 -1702784427943,2023,12,16,17,40,27,8521,19.7283508,-155.9894481,1 -1702784428657,2023,12,16,17,40,28,8619,19.7283511,-155.9894481,11 -1702784429210,2023,12,16,17,40,29,8391,19.7283514,-155.9894481,1 -1702784429768,2023,12,16,17,40,29,8096,19.7283516,-155.9894481,10 -1702784430326,2023,12,16,17,40,30,7790,19.7283519,-155.9894481,11 -1702784430877,2023,12,16,17,40,30,7658,19.7283522,-155.9894481,1 -1702784431427,2023,12,16,17,40,31,7785,19.7283524,-155.9894482,1 -1702784431981,2023,12,16,17,40,31,7895,19.7283528,-155.9894482,9 -1702784432539,2023,12,16,17,40,32,9421,19.7283532,-155.9894482,1 -1702784433086,2023,12,16,17,40,33,9376,19.7283534,-155.9894482,1 -1702784433665,2023,12,16,17,40,33,8822,19.7283538,-155.9894482,1 -1702784434202,2023,12,16,17,40,34,7241,19.7283542,-155.9894482,1 -1702784434762,2023,12,16,17,40,34,7253,19.7283545,-155.9894482,1 -1702784435306,2023,12,16,17,40,35,8012,19.7283548,-155.9894482,1 -1702784435859,2023,12,16,17,40,35,8873,19.7283551,-155.9894482,1 -1702784436412,2023,12,16,17,40,36,9151,19.7283552,-155.9894482,17 -1702784436974,2023,12,16,17,40,36,9243,19.7283555,-155.9894482,17 -1702784437579,2023,12,16,17,40,37,9173,19.7283556,-155.9894482,16 -1702784438133,2023,12,16,17,40,38,9254,19.7283557,-155.9894482,28 -1702784438685,2023,12,16,17,40,38,9044,19.7283558,-155.9894481,49 -1702784439441,2023,12,16,17,40,39,9283,19.728356,-155.9894481,44 -1702784439990,2023,12,16,17,40,39,9319,19.7283562,-155.9894481,27 -1702784440565,2023,12,16,17,40,40,9213,19.7283565,-155.9894481,15 -1702784441140,2023,12,16,17,40,41,8944,19.7283567,-155.9894481,24 -1702784441731,2023,12,16,17,40,41,8680,19.728357,-155.9894481,31 -1702784442297,2023,12,16,17,40,42,8276,19.7283573,-155.9894481,1 -1702784442859,2023,12,16,17,40,42,7410,19.7283577,-155.9894481,1 -1702784443423,2023,12,16,17,40,43,7456,19.7283579,-155.9894481,1 -1702784443966,2023,12,16,17,40,43,8842,19.7283583,-155.9894482,1 -1702784444520,2023,12,16,17,40,44,8149,19.7283587,-155.9894483,1 -1702784445064,2023,12,16,17,40,45,7924,19.7283588,-155.9894484,1 -1702784445664,2023,12,16,17,40,45,7336,19.7283592,-155.9894484,1 -1702784446216,2023,12,16,17,40,46,8101,19.7283594,-155.9894485,1 -1702784446762,2023,12,16,17,40,46,8164,19.7283594,-155.9894485,1 -1702784447339,2023,12,16,17,40,47,7402,19.7283596,-155.9894485,1 -1702784447896,2023,12,16,17,40,47,8514,19.7283599,-155.9894485,1 -1702784448455,2023,12,16,17,40,48,6462,19.72836,-155.9894486,1 -1702784449011,2023,12,16,17,40,49,7214,19.7283603,-155.9894486,1 -1702784449711,2023,12,16,17,40,49,7586,19.7283606,-155.9894486,1 -1702784450266,2023,12,16,17,40,50,7918,19.7283609,-155.9894486,1 -1702784450855,2023,12,16,17,40,50,8406,19.7283612,-155.9894487,1 -1702784451399,2023,12,16,17,40,51,9077,19.7283613,-155.9894488,27 -1702784451952,2023,12,16,17,40,51,9217,19.7283615,-155.9894489,41 -1702784452507,2023,12,16,17,40,52,9629,19.7283618,-155.9894489,17 -1702784453066,2023,12,16,17,40,53,9575,19.728362,-155.9894489,16 -1702784453622,2023,12,16,17,40,53,9430,19.7283624,-155.9894489,14 -1702784454188,2023,12,16,17,40,54,9414,19.7283627,-155.989449,8 -1702784454745,2023,12,16,17,40,54,9314,19.7283629,-155.989449,1 -1702784455306,2023,12,16,17,40,55,9172,19.728363,-155.989449,1 -1702784455862,2023,12,16,17,40,55,9206,19.7283631,-155.989449,23 -1702784456420,2023,12,16,17,40,56,9227,19.7283632,-155.989449,23 -1702784456979,2023,12,16,17,40,56,9103,19.7283632,-155.989449,1 -1702784457647,2023,12,16,17,40,57,7297,19.7283633,-155.989449,1 -1702784458230,2023,12,16,17,40,58,6158,19.7283634,-155.989449,1 -1702784458795,2023,12,16,17,40,58,8638,19.7283634,-155.989449,1 -1702784459360,2023,12,16,17,40,59,7490,19.7283635,-155.989449,1 -1702784459919,2023,12,16,17,40,59,7589,19.7283636,-155.9894489,1 -1702784460479,2023,12,16,17,41,0,8749,19.7283638,-155.9894488,1 -1702784461038,2023,12,16,17,41,1,9009,19.7283638,-155.9894488,1 -1702784461606,2023,12,16,17,41,1,8698,19.7283639,-155.9894487,19 -1702784462165,2023,12,16,17,41,2,8857,19.7283641,-155.9894486,30 -1702784462710,2023,12,16,17,41,2,8982,19.7283642,-155.9894486,27 -1702784463251,2023,12,16,17,41,3,8962,19.7283642,-155.9894485,18 -1702784463801,2023,12,16,17,41,3,8408,19.7283642,-155.9894484,1 -1702784464352,2023,12,16,17,41,4,9181,19.7283643,-155.9894483,31 -1702784464897,2023,12,16,17,41,4,9412,19.7283644,-155.9894481,1 -1702784465473,2023,12,16,17,41,5,8431,19.7283645,-155.989448,10 -1702784466015,2023,12,16,17,41,6,8500,19.7283646,-155.9894479,1 -1702784466601,2023,12,16,17,41,6,8167,19.7283646,-155.9894478,1 -1702784467173,2023,12,16,17,41,7,8342,19.7283647,-155.9894478,1 -1702784467722,2023,12,16,17,41,7,8699,19.7283647,-155.9894477,8 -1702784468289,2023,12,16,17,41,8,8878,19.7283648,-155.9894476,17 -1702784468862,2023,12,16,17,41,8,9170,19.7283648,-155.9894476,22 -1702784469421,2023,12,16,17,41,9,9295,19.7283648,-155.9894476,20 -1702784470064,2023,12,16,17,41,10,9296,19.7283648,-155.9894475,14 -1702784470636,2023,12,16,17,41,10,9387,19.7283648,-155.9894474,22 -1702784471187,2023,12,16,17,41,11,7348,19.7283648,-155.9894473,1 -1702784471748,2023,12,16,17,41,11,8778,19.7283648,-155.9894473,1 -1702784472295,2023,12,16,17,41,12,4980,19.7283647,-155.9894472,1 -1702784472859,2023,12,16,17,41,12,7713,19.7283646,-155.9894472,1 -1702784473412,2023,12,16,17,41,13,4313,19.7283646,-155.9894471,1 -1702784473963,2023,12,16,17,41,13,4539,19.7283645,-155.989447,1 -1702784474528,2023,12,16,17,41,14,4793,19.7283645,-155.9894469,1 -1702784475083,2023,12,16,17,41,15,5541,19.7283644,-155.9894469,1 -1702784475726,2023,12,16,17,41,15,6025,19.7283643,-155.9894467,1 -1702784476278,2023,12,16,17,41,16,6929,19.7283641,-155.9894466,1 -1702784476835,2023,12,16,17,41,16,5982,19.7283639,-155.9894464,1 -1702784477381,2023,12,16,17,41,17,7834,19.7283639,-155.9894463,1 -1702784477942,2023,12,16,17,41,17,6939,19.7283639,-155.9894462,1 -1702784478492,2023,12,16,17,41,18,6805,19.7283638,-155.989446,1 -1702784479060,2023,12,16,17,41,19,6805,19.7283638,-155.989446,1 -1702784479649,2023,12,16,17,41,19,8199,19.7283636,-155.9894458,1 -1702784480195,2023,12,16,17,41,20,9472,19.7283635,-155.9894457,1 -1702784480740,2023,12,16,17,41,20,9353,19.7283634,-155.9894456,19 -1702784481286,2023,12,16,17,41,21,9101,19.7283633,-155.9894455,9 -1702784481844,2023,12,16,17,41,21,8970,19.7283632,-155.9894453,8 -1702784482396,2023,12,16,17,41,22,8637,19.7283632,-155.9894452,8 -1702784482944,2023,12,16,17,41,22,8446,19.7283632,-155.9894451,14 -1702784483488,2023,12,16,17,41,23,8162,19.7283632,-155.989445,16 -1702784484046,2023,12,16,17,41,24,8328,19.7283631,-155.989445,17 -1702784484643,2023,12,16,17,41,24,8453,19.7283631,-155.989445,17 -1702784485189,2023,12,16,17,41,25,8601,19.7283631,-155.989445,1 -1702784485738,2023,12,16,17,41,25,8634,19.7283631,-155.989445,30 -1702784486301,2023,12,16,17,41,26,8120,19.728363,-155.9894449,11 -1702784486861,2023,12,16,17,41,26,8100,19.728363,-155.9894449,1 -1702784487415,2023,12,16,17,41,27,8498,19.7283629,-155.9894449,11 -1702784487990,2023,12,16,17,41,27,9135,19.7283629,-155.9894449,1 -1702784488540,2023,12,16,17,41,28,8031,19.7283628,-155.9894449,1 -1702784489097,2023,12,16,17,41,29,7951,19.7283627,-155.9894449,1 -1702784489684,2023,12,16,17,41,29,9171,19.7283627,-155.9894449,1 -1702784490311,2023,12,16,17,41,30,9449,19.7283623,-155.9894449,1 -1702784490863,2023,12,16,17,41,30,7766,19.7283619,-155.9894449,1 -1702784491558,2023,12,16,17,41,31,8866,19.7283617,-155.9894449,1 -1702784492205,2023,12,16,17,41,32,7308,19.7283615,-155.9894449,1 -1702784492770,2023,12,16,17,41,32,8608,19.7283614,-155.9894449,1 -1702784493332,2023,12,16,17,41,33,4978,19.7283614,-155.9894449,1 -1702784493912,2023,12,16,17,41,33,7078,19.7283613,-155.9894449,1 -1702784494482,2023,12,16,17,41,34,5713,19.7283612,-155.9894449,1 -1702784495029,2023,12,16,17,41,35,7438,19.7283612,-155.9894449,1 -1702784495627,2023,12,16,17,41,35,5933,19.728361,-155.9894449,1 -1702784496172,2023,12,16,17,41,36,7302,19.7283609,-155.9894449,1 -1702784496732,2023,12,16,17,41,36,7553,19.7283608,-155.9894449,1 -1702784497291,2023,12,16,17,41,37,8245,19.7283606,-155.9894449,1 -1702784497879,2023,12,16,17,41,37,9289,19.7283604,-155.9894449,1 -1702784498437,2023,12,16,17,41,38,8221,19.7283601,-155.9894449,1 -1702784498980,2023,12,16,17,41,38,8245,19.72836,-155.9894449,1 -1702784499581,2023,12,16,17,41,39,9230,19.7283598,-155.9894449,10 -1702784500144,2023,12,16,17,41,40,7844,19.7283597,-155.9894449,1 -1702784500695,2023,12,16,17,41,40,7570,19.7283596,-155.9894449,1 -1702784501254,2023,12,16,17,41,41,8691,19.7283595,-155.9894449,1 -1702784501814,2023,12,16,17,41,41,8636,19.7283593,-155.9894449,1 -1702784502360,2023,12,16,17,41,42,7099,19.7283592,-155.9894449,1 -1702784502904,2023,12,16,17,41,42,8160,19.7283588,-155.9894449,1 -1702784503491,2023,12,16,17,41,43,7431,19.7283586,-155.9894449,1 -1702784504039,2023,12,16,17,41,44,8290,19.7283585,-155.9894449,1 -1702784504613,2023,12,16,17,41,44,8631,19.7283582,-155.9894449,1 -1702784505193,2023,12,16,17,41,45,8856,19.7283581,-155.9894449,1 -1702784505743,2023,12,16,17,41,45,7758,19.7283579,-155.9894448,1 -1702784506300,2023,12,16,17,41,46,7535,19.7283578,-155.9894449,1 -1702784506849,2023,12,16,17,41,46,9147,19.7283576,-155.9894449,1 -1702784507651,2023,12,16,17,41,47,8444,19.7283574,-155.9894449,1 -1702784508194,2023,12,16,17,41,48,8290,19.7283571,-155.9894449,1 -1702784508749,2023,12,16,17,41,48,7781,19.7283568,-155.989445,1 -1702784509295,2023,12,16,17,41,49,8930,19.7283567,-155.989445,1 -1702784509860,2023,12,16,17,41,49,7261,19.7283565,-155.9894451,1 -1702784510412,2023,12,16,17,41,50,7360,19.7283564,-155.9894452,1 -1702784510970,2023,12,16,17,41,50,7475,19.7283563,-155.9894452,1 -1702784511514,2023,12,16,17,41,51,7864,19.7283562,-155.9894453,1 -1702784512091,2023,12,16,17,41,52,8037,19.7283561,-155.9894453,1 -1702784512653,2023,12,16,17,41,52,9169,19.728356,-155.9894454,1 -1702784513191,2023,12,16,17,41,53,8872,19.7283559,-155.9894454,1 -1702784513769,2023,12,16,17,41,53,9327,19.7283557,-155.9894455,7 -1702784514312,2023,12,16,17,41,54,9584,19.7283556,-155.9894455,1 -1702784514960,2023,12,16,17,41,54,9573,19.7283555,-155.9894456,1 -1702784515513,2023,12,16,17,41,55,9653,19.7283554,-155.9894457,1 -1702784516071,2023,12,16,17,41,56,9567,19.7283555,-155.9894457,1 -1702784516662,2023,12,16,17,41,56,8761,19.7283555,-155.9894458,8 -1702784517200,2023,12,16,17,41,57,8905,19.7283555,-155.9894458,1 -1702784517769,2023,12,16,17,41,57,9055,19.7283556,-155.9894459,8 -1702784518326,2023,12,16,17,41,58,8870,19.7283557,-155.989446,8 -1702784518871,2023,12,16,17,41,58,9492,19.7283558,-155.9894462,1 -1702784519435,2023,12,16,17,41,59,8765,19.7283558,-155.9894463,1 -1702784519983,2023,12,16,17,41,59,8644,19.7283558,-155.9894463,1 -1702784520662,2023,12,16,17,42,0,8760,19.7283559,-155.9894465,1 -1702784521225,2023,12,16,17,42,1,8869,19.7283561,-155.9894466,1 -1702784521897,2023,12,16,17,42,1,9301,19.7283562,-155.9894467,1 -1702784522464,2023,12,16,17,42,2,8499,19.7283563,-155.9894468,1 -1702784523015,2023,12,16,17,42,3,8460,19.7283563,-155.9894468,1 -1702784523608,2023,12,16,17,42,3,7702,19.7283565,-155.9894469,1 -1702784524169,2023,12,16,17,42,4,8939,19.7283568,-155.989447,16 -1702784524715,2023,12,16,17,42,4,9727,19.7283569,-155.9894471,1 -1702784525271,2023,12,16,17,42,5,9661,19.728357,-155.9894471,7 -1702784525828,2023,12,16,17,42,5,9492,19.7283572,-155.9894471,22 -1702784526382,2023,12,16,17,42,6,8961,19.7283575,-155.9894472,1 -1702784526943,2023,12,16,17,42,6,9186,19.7283576,-155.9894472,1 -1702784527580,2023,12,16,17,42,7,7100,19.7283577,-155.9894472,1 -1702784528159,2023,12,16,17,42,8,7823,19.7283578,-155.9894472,1 -1702784528712,2023,12,16,17,42,8,8352,19.7283578,-155.9894472,10 -1702784529269,2023,12,16,17,42,9,8911,19.7283579,-155.9894472,9 -1702784529849,2023,12,16,17,42,9,9250,19.7283579,-155.9894472,9 -1702784574524,2023,12,16,17,42,54,9206,19.7283624,-155.9894519,1 -1702784575084,2023,12,16,17,42,55,9224,19.7283625,-155.989452,8 -1702784575639,2023,12,16,17,42,55,9407,19.7283625,-155.989452,1 -1702784576199,2023,12,16,17,42,56,9073,19.7283625,-155.9894521,20 -1702784576757,2023,12,16,17,42,56,9268,19.7283625,-155.9894521,1 -1702784577308,2023,12,16,17,42,57,6217,19.7283625,-155.9894522,1 -1702784577871,2023,12,16,17,42,57,6217,19.7283625,-155.9894522,1 -1702784578429,2023,12,16,17,42,58,9312,19.7283625,-155.9894522,1 -1702784578976,2023,12,16,17,42,58,7667,19.7283625,-155.9894522,11 -1702784579529,2023,12,16,17,42,59,9466,19.7283624,-155.9894522,1 -1702784580087,2023,12,16,17,43,0,8560,19.7283623,-155.9894522,1 -1702784580669,2023,12,16,17,43,0,9623,19.7283621,-155.9894522,12 -1702784581216,2023,12,16,17,43,1,9517,19.728362,-155.9894522,10 -1702784581782,2023,12,16,17,43,1,9460,19.7283618,-155.9894522,11 -1702784582338,2023,12,16,17,43,2,9434,19.7283617,-155.9894521,1 -1702784582889,2023,12,16,17,43,2,9424,19.7283616,-155.9894521,14 -1702784583455,2023,12,16,17,43,3,9424,19.7283614,-155.989452,14 -1702784584008,2023,12,16,17,43,4,9191,19.7283612,-155.989452,27 -1702784584632,2023,12,16,17,43,4,9517,19.7283612,-155.9894519,16 -1702784585194,2023,12,16,17,43,5,9694,19.728361,-155.9894519,33 -1702784585764,2023,12,16,17,43,5,9760,19.7283608,-155.9894518,45 -1702784586334,2023,12,16,17,43,6,9700,19.7283607,-155.9894518,37 -1702784586881,2023,12,16,17,43,6,9593,19.7283606,-155.9894518,33 -1702784587432,2023,12,16,17,43,7,9293,19.7283605,-155.9894517,22 -1702784587986,2023,12,16,17,43,7,9184,19.7283604,-155.9894517,20 -1702784588551,2023,12,16,17,43,8,8895,19.7283601,-155.9894517,11 -1702784589113,2023,12,16,17,43,9,7327,19.7283598,-155.9894516,1 -1702784589676,2023,12,16,17,43,9,9038,19.7283596,-155.9894516,1 -1702784590244,2023,12,16,17,43,10,8903,19.7283595,-155.9894516,1 -1702784590810,2023,12,16,17,43,10,9058,19.7283595,-155.9894515,1 -1702784591367,2023,12,16,17,43,11,9008,19.7283593,-155.9894514,1 -1702784591918,2023,12,16,17,43,11,8596,19.7283592,-155.9894514,1 -1702784592476,2023,12,16,17,43,12,8605,19.7283589,-155.9894514,1 -1702784593039,2023,12,16,17,43,13,7595,19.7283587,-155.9894513,1 -1702784593611,2023,12,16,17,43,13,7576,19.7283586,-155.9894513,1 -1702784594169,2023,12,16,17,43,14,7092,19.7283584,-155.9894513,1 -1702784594728,2023,12,16,17,43,14,8062,19.7283583,-155.9894513,1 -1702784595285,2023,12,16,17,43,15,8932,19.7283582,-155.9894513,1 -1702784595845,2023,12,16,17,43,15,8075,19.7283581,-155.9894513,1 -1702784596439,2023,12,16,17,43,16,8936,19.7283582,-155.9894513,1 -1702784597016,2023,12,16,17,43,17,8336,19.728358,-155.9894513,12 -1702784597593,2023,12,16,17,43,17,8407,19.7283579,-155.9894513,1 -1702784598143,2023,12,16,17,43,18,8645,19.7283576,-155.9894512,1 -1702784598683,2023,12,16,17,43,18,8825,19.7283572,-155.9894512,1 -1702784599232,2023,12,16,17,43,19,9132,19.728357,-155.9894512,8 -1702784599783,2023,12,16,17,43,19,9442,19.7283567,-155.9894511,1 -1702784600341,2023,12,16,17,43,20,9460,19.7283565,-155.989451,1 -1702784600917,2023,12,16,17,43,20,7060,19.7283564,-155.9894509,1 -1702784601483,2023,12,16,17,43,21,9488,19.7283562,-155.9894508,1 -1702784602064,2023,12,16,17,43,22,9372,19.728356,-155.9894507,1 -1702784602694,2023,12,16,17,43,22,5144,19.7283559,-155.9894506,1 -1702784603250,2023,12,16,17,43,23,9524,19.7283558,-155.9894506,1 -1702784603789,2023,12,16,17,43,23,6734,19.7283555,-155.9894505,1 -1702784604341,2023,12,16,17,43,24,9297,19.7283552,-155.9894505,1 -1702784604892,2023,12,16,17,43,24,6542,19.7283551,-155.9894505,1 -1702784605677,2023,12,16,17,43,25,6998,19.7283547,-155.9894505,1 -1702784606235,2023,12,16,17,43,26,9445,19.7283547,-155.9894505,1 -1702784606804,2023,12,16,17,43,26,9396,19.7283545,-155.9894505,1 -1702784607485,2023,12,16,17,43,27,8115,19.7283544,-155.9894505,1 -1702784608045,2023,12,16,17,43,28,8577,19.7283542,-155.9894505,1 -1702784608724,2023,12,16,17,43,28,7168,19.728354,-155.9894505,8 -1702784609276,2023,12,16,17,43,29,8275,19.728354,-155.9894505,1 -1702784609816,2023,12,16,17,43,29,7403,19.7283537,-155.9894506,1 -1702784610363,2023,12,16,17,43,30,7589,19.7283534,-155.9894505,1 -1702784610925,2023,12,16,17,43,30,8282,19.7283532,-155.9894505,1 -1702784611589,2023,12,16,17,43,31,7314,19.7283529,-155.9894505,1 -1702784612166,2023,12,16,17,43,32,8963,19.7283526,-155.9894505,1 -1702784612715,2023,12,16,17,43,32,8948,19.7283523,-155.9894505,1 -1702784613266,2023,12,16,17,43,33,8444,19.7283522,-155.9894505,1 -1702784613819,2023,12,16,17,43,33,9035,19.7283519,-155.9894504,1 -1702784614383,2023,12,16,17,43,34,9028,19.7283516,-155.9894502,1 -1702784614934,2023,12,16,17,43,34,8345,19.7283514,-155.9894501,1 -1702784615506,2023,12,16,17,43,35,8221,19.728351,-155.9894498,1 -1702784616045,2023,12,16,17,43,36,9276,19.7283507,-155.9894495,1 -1702784616602,2023,12,16,17,43,36,9170,19.7283505,-155.9894494,1 -1702784617168,2023,12,16,17,43,37,9435,19.72835,-155.9894491,1 -1702784617716,2023,12,16,17,43,37,8026,19.7283496,-155.9894488,1 -1702784618275,2023,12,16,17,43,38,9501,19.7283494,-155.9894487,1 -1702784618841,2023,12,16,17,43,38,9506,19.7283489,-155.9894484,1 -1702784619513,2023,12,16,17,43,39,9458,19.7283486,-155.9894483,1 -1702784620065,2023,12,16,17,43,40,9240,19.7283483,-155.9894481,1 -1702784620629,2023,12,16,17,43,40,9336,19.728348,-155.989448,8 -1702784621170,2023,12,16,17,43,41,9438,19.7283478,-155.9894479,1 -1702784621730,2023,12,16,17,43,41,8678,19.7283476,-155.9894478,1 -1702784622286,2023,12,16,17,43,42,8678,19.7283474,-155.9894478,1 -1702784622834,2023,12,16,17,43,42,8396,19.7283471,-155.9894477,19 -1702784623390,2023,12,16,17,43,43,8485,19.7283468,-155.9894475,30 -1702784623929,2023,12,16,17,43,43,8386,19.7283466,-155.9894475,9 -1702784624686,2023,12,16,17,43,44,7825,19.7283462,-155.9894474,1 -1702784625347,2023,12,16,17,43,45,8320,19.7283459,-155.9894473,8 -1702784626034,2023,12,16,17,43,46,8176,19.7283457,-155.9894472,9 -1702784626614,2023,12,16,17,43,46,8034,19.7283456,-155.9894472,1 -1702784627159,2023,12,16,17,43,47,8931,19.7283453,-155.9894472,1 -1702784627719,2023,12,16,17,43,47,8563,19.7283449,-155.9894471,1 -1702784628277,2023,12,16,17,43,48,9023,19.7283447,-155.9894471,1 -1702784628836,2023,12,16,17,43,48,8023,19.7283445,-155.9894471,1 -1702784629392,2023,12,16,17,43,49,7859,19.7283443,-155.9894471,1 -1702784629942,2023,12,16,17,43,49,9415,19.7283441,-155.9894471,6 -1702784630495,2023,12,16,17,43,50,9101,19.7283439,-155.9894471,1 -1702784631052,2023,12,16,17,43,51,8961,19.7283438,-155.9894471,1 -1702784631718,2023,12,16,17,43,51,8625,19.7283437,-155.9894472,1 -1702784632262,2023,12,16,17,43,52,8267,19.7283437,-155.9894473,1 -1702784632812,2023,12,16,17,43,52,393,19.7283436,-155.9894476,52 -1702784633372,2023,12,16,17,43,53,417,19.7283436,-155.9894479,18 -1702784633941,2023,12,16,17,43,53,470,19.7283436,-155.9894482,18 -1702784634510,2023,12,16,17,43,54,8944,19.7283436,-155.9894484,51 -1702784635055,2023,12,16,17,43,55,8944,19.7283435,-155.9894488,34 -1702784635749,2023,12,16,17,43,55,8891,19.7283436,-155.9894491,55 -1702784636294,2023,12,16,17,43,56,8917,19.7283436,-155.9894495,58 -1702784636889,2023,12,16,17,43,56,8915,19.7283436,-155.9894496,57 -1702784637436,2023,12,16,17,43,57,8449,19.7283437,-155.98945,42 -1702784637998,2023,12,16,17,43,57,8306,19.7283438,-155.9894504,22 -1702784638593,2023,12,16,17,43,58,9193,19.7283438,-155.9894505,11 -1702784639149,2023,12,16,17,43,59,9182,19.7283439,-155.9894508,10 -1702784639699,2023,12,16,17,43,59,8931,19.7283439,-155.9894511,10 -1702784640261,2023,12,16,17,44,0,9473,19.728344,-155.9894513,1 -1702784640828,2023,12,16,17,44,0,9398,19.728344,-155.9894516,8 -1702784641377,2023,12,16,17,44,1,9595,19.728344,-155.989452,16 -1702784641954,2023,12,16,17,44,1,9113,19.728344,-155.9894523,32 -1702784642503,2023,12,16,17,44,2,8949,19.728344,-155.9894525,1 -1702784643071,2023,12,16,17,44,3,8631,19.7283441,-155.9894528,1 -1702784643653,2023,12,16,17,44,3,8697,19.7283442,-155.9894532,8 -1702784644240,2023,12,16,17,44,4,9036,19.7283443,-155.9894534,14 -1702784644797,2023,12,16,17,44,4,8314,19.7283445,-155.9894537,1 -1702784645348,2023,12,16,17,44,5,8308,19.7283446,-155.989454,9 -1702784645903,2023,12,16,17,44,5,8751,19.7283447,-155.9894542,1 -1702784646557,2023,12,16,17,44,6,7462,19.7283448,-155.9894545,1 -1702784647149,2023,12,16,17,44,7,7490,19.7283449,-155.9894548,1 -1702784647699,2023,12,16,17,44,7,9181,19.7283449,-155.9894551,1 -1702784648266,2023,12,16,17,44,8,7191,19.7283449,-155.9894553,1 -1702784648813,2023,12,16,17,44,8,9306,19.7283449,-155.9894554,1 -1702784649382,2023,12,16,17,44,9,8561,19.7283449,-155.9894556,1 -1702784649933,2023,12,16,17,44,9,9050,19.728345,-155.9894558,1 -1702784650486,2023,12,16,17,44,10,8779,19.728345,-155.9894559,11 -1702784651056,2023,12,16,17,44,11,8703,19.728345,-155.9894561,12 -1702784651774,2023,12,16,17,44,11,8071,19.728345,-155.9894563,1 -1702784652327,2023,12,16,17,44,12,8225,19.728345,-155.9894565,1 -1702784652880,2023,12,16,17,44,12,8586,19.728345,-155.9894566,26 -1702784653430,2023,12,16,17,44,13,8783,19.728345,-155.9894567,37 -1702784653977,2023,12,16,17,44,13,8908,19.728345,-155.9894569,16 -1702784654547,2023,12,16,17,44,14,8867,19.728345,-155.9894569,25 -1702784655095,2023,12,16,17,44,15,8940,19.7283451,-155.989457,18 -1702784655664,2023,12,16,17,44,15,9057,19.7283452,-155.9894571,17 -1702784656208,2023,12,16,17,44,16,8599,19.7283451,-155.9894571,1 -1702784656753,2023,12,16,17,44,16,8313,19.7283451,-155.9894572,1 -1702784657312,2023,12,16,17,44,17,8890,19.728345,-155.9894573,1 -1702784657864,2023,12,16,17,44,17,8197,19.728345,-155.9894574,1 -1702784658428,2023,12,16,17,44,18,6408,19.728345,-155.9894575,1 -1702784658981,2023,12,16,17,44,18,7938,19.728345,-155.9894576,1 -1702784659581,2023,12,16,17,44,19,7663,19.7283449,-155.9894577,9 -1702784660174,2023,12,16,17,44,20,7068,19.7283448,-155.9894577,9 -1702784660745,2023,12,16,17,44,20,8126,19.7283448,-155.9894578,1 -1702784661327,2023,12,16,17,44,21,7806,19.7283448,-155.9894578,1 -1702784661885,2023,12,16,17,44,21,8103,19.7283448,-155.9894579,1 -1702784662449,2023,12,16,17,44,22,8103,19.7283447,-155.9894579,1 -1702784662988,2023,12,16,17,44,22,7399,19.7283446,-155.9894578,1 -1702784663609,2023,12,16,17,44,23,8543,19.7283445,-155.9894578,11 -1702784664161,2023,12,16,17,44,24,8526,19.7283444,-155.9894578,1 -1702784664719,2023,12,16,17,44,24,8411,19.7283443,-155.9894578,1 -1702784665272,2023,12,16,17,44,25,8456,19.7283442,-155.9894578,1 -1702784665820,2023,12,16,17,44,25,7577,19.7283442,-155.9894578,1 -1702784666398,2023,12,16,17,44,26,8630,19.7283441,-155.9894578,10 -1702784666957,2023,12,16,17,44,26,8487,19.728344,-155.9894577,1 -1702784667510,2023,12,16,17,44,27,8253,19.7283439,-155.9894577,10 -1702784668074,2023,12,16,17,44,28,8635,19.7283439,-155.9894576,32 -1702784668665,2023,12,16,17,44,28,8443,19.7283438,-155.9894576,8 -1702784669228,2023,12,16,17,44,29,8443,19.7283437,-155.9894576,8 -1702784669790,2023,12,16,17,44,29,6711,19.7283435,-155.9894575,1 -1702784670345,2023,12,16,17,44,30,6711,19.7283433,-155.9894573,1 -1702784670888,2023,12,16,17,44,30,5795,19.7283433,-155.9894573,1 -1702784671484,2023,12,16,17,44,31,7738,19.7283431,-155.9894571,1 -1702784672073,2023,12,16,17,44,32,5488,19.728343,-155.989457,1 -1702784672747,2023,12,16,17,44,32,6701,19.7283429,-155.989457,1 -1702784673322,2023,12,16,17,44,33,7717,19.7283428,-155.9894569,1 -1702784673899,2023,12,16,17,44,33,7640,19.7283427,-155.9894569,1 -1702784674479,2023,12,16,17,44,34,7438,19.7283425,-155.9894568,1 -1702784675048,2023,12,16,17,44,35,8542,19.7283423,-155.9894567,7 -1702784675761,2023,12,16,17,44,35,7351,19.7283421,-155.9894566,1 -1702784676316,2023,12,16,17,44,36,8519,19.728342,-155.9894565,1 -1702784676876,2023,12,16,17,44,36,8090,19.7283419,-155.9894565,1 -1702784677623,2023,12,16,17,44,37,8195,19.7283419,-155.9894565,1 -1702784678182,2023,12,16,17,44,38,7649,19.7283418,-155.9894565,1 -1702784678748,2023,12,16,17,44,38,7695,19.7283417,-155.9894565,1 -1702784679305,2023,12,16,17,44,39,6962,19.7283416,-155.9894565,1 -1702784679889,2023,12,16,17,44,39,8313,19.7283416,-155.9894565,1 -1702784680456,2023,12,16,17,44,40,7955,19.7283416,-155.9894565,1 -1702784681021,2023,12,16,17,44,41,7955,19.7283415,-155.9894565,1 -1702784681716,2023,12,16,17,44,41,4595,19.7283415,-155.9894564,1 -1702784682290,2023,12,16,17,44,42,5784,19.7283415,-155.9894564,1 -1702784682847,2023,12,16,17,44,42,5641,19.7283415,-155.9894564,1 -1702784683397,2023,12,16,17,44,43,7141,19.7283415,-155.9894564,1 -1702784683945,2023,12,16,17,44,43,7709,19.7283414,-155.9894564,1 -1702784684485,2023,12,16,17,44,44,8487,19.7283415,-155.9894564,1 -1702784685047,2023,12,16,17,44,45,8785,19.7283415,-155.9894564,5 -1702784685653,2023,12,16,17,44,45,8886,19.7283415,-155.9894564,5 -1702784686229,2023,12,16,17,44,46,8980,19.7283415,-155.9894565,15 -1702784686789,2023,12,16,17,44,46,9014,19.7283414,-155.9894565,25 -1702784687343,2023,12,16,17,44,47,9132,19.7283413,-155.9894565,9 -1702784687912,2023,12,16,17,44,47,9192,19.7283413,-155.9894564,1 -1702784688490,2023,12,16,17,44,48,8897,19.7283413,-155.9894564,28 -1702784689060,2023,12,16,17,44,49,8714,19.7283413,-155.9894564,29 -1702784689782,2023,12,16,17,44,49,8303,19.7283413,-155.9894564,20 -1702784690344,2023,12,16,17,44,50,8556,19.7283414,-155.9894564,9 -1702784690915,2023,12,16,17,44,50,9065,19.7283416,-155.9894564,9 -1702784691467,2023,12,16,17,44,51,9180,19.7283417,-155.9894564,18 -1702784692027,2023,12,16,17,44,52,9433,19.7283418,-155.9894564,1 -1702784692725,2023,12,16,17,44,52,9431,19.7283419,-155.9894564,1 -1702784693282,2023,12,16,17,44,53,9048,19.728342,-155.9894564,8 -1702784693868,2023,12,16,17,44,53,8883,19.7283421,-155.9894564,9 -1702784694427,2023,12,16,17,44,54,9035,19.7283421,-155.9894564,1 -1702784694998,2023,12,16,17,44,54,8156,19.7283421,-155.9894564,1 -1702784695611,2023,12,16,17,44,55,8196,19.7283422,-155.9894564,20 -1702784696287,2023,12,16,17,44,56,8224,19.7283423,-155.9894564,1 -1702784696847,2023,12,16,17,44,56,8817,19.7283424,-155.9894564,1 -1702784697392,2023,12,16,17,44,57,8566,19.7283425,-155.9894564,1 -1702784698059,2023,12,16,17,44,58,8383,19.7283427,-155.9894564,1 -1702784698748,2023,12,16,17,44,58,6717,19.7283428,-155.9894564,1 -1702784699308,2023,12,16,17,44,59,8666,19.7283429,-155.9894564,1 -1702784699904,2023,12,16,17,44,59,8750,19.728343,-155.9894564,9 -1702784700499,2023,12,16,17,45,0,7205,19.728343,-155.9894564,1 -1702784701081,2023,12,16,17,45,1,7427,19.7283432,-155.9894564,1 -1702784701656,2023,12,16,17,45,1,8154,19.7283434,-155.9894564,1 -1702784702205,2023,12,16,17,45,2,6206,19.7283434,-155.9894564,1 -1702784702761,2023,12,16,17,45,2,9151,19.7283436,-155.9894564,1 -1702784703310,2023,12,16,17,45,3,7117,19.7283438,-155.9894565,1 -1702784703861,2023,12,16,17,45,3,8029,19.7283439,-155.9894565,18 -1702784704422,2023,12,16,17,45,4,8903,19.7283441,-155.9894565,7 -1702784704988,2023,12,16,17,45,4,8752,19.7283445,-155.9894565,18 -1702784705618,2023,12,16,17,45,5,8773,19.7283449,-155.9894565,16 -1702784706171,2023,12,16,17,45,6,7836,19.7283451,-155.9894566,9 -1702784706765,2023,12,16,17,45,6,8265,19.7283456,-155.9894566,12 -1702784707468,2023,12,16,17,45,7,8951,19.7283458,-155.9894567,9 -1702784708049,2023,12,16,17,45,8,8254,19.7283461,-155.9894567,1 -1702784708651,2023,12,16,17,45,8,8114,19.7283462,-155.9894567,1 -1702784709231,2023,12,16,17,45,9,7685,19.7283462,-155.9894567,1 -1702784709800,2023,12,16,17,45,9,7433,19.7283465,-155.9894567,1 -1702784710362,2023,12,16,17,45,10,7585,19.7283467,-155.9894566,1 -1702784710939,2023,12,16,17,45,10,7250,19.7283469,-155.9894566,1 -1702784711500,2023,12,16,17,45,11,6165,19.7283469,-155.9894566,1 -1702784712086,2023,12,16,17,45,12,7550,19.728347,-155.9894565,1 -1702784712662,2023,12,16,17,45,12,7710,19.7283472,-155.9894565,1 -1702784713353,2023,12,16,17,45,13,7981,19.7283474,-155.9894565,1 -1702784713995,2023,12,16,17,45,13,8106,19.7283476,-155.9894565,1 -1702784714590,2023,12,16,17,45,14,7868,19.7283478,-155.9894565,1 -1702784715162,2023,12,16,17,45,15,7768,19.728348,-155.9894565,1 -1702784715724,2023,12,16,17,45,15,6909,19.7283483,-155.9894565,1 -1702784813800,2023,12,16,17,46,53,9299,19.728361,-155.9894598,9 -1702784814381,2023,12,16,17,46,54,9447,19.728361,-155.9894598,8 -1702784814930,2023,12,16,17,46,54,9115,19.728361,-155.9894598,8 -1702784815483,2023,12,16,17,46,55,9063,19.7283611,-155.9894599,1 -1702784816047,2023,12,16,17,46,56,8305,19.7283611,-155.9894599,1 -1702784816661,2023,12,16,17,46,56,7870,19.7283612,-155.98946,1 -1702784817217,2023,12,16,17,46,57,8676,19.7283613,-155.9894601,1 -1702784817792,2023,12,16,17,46,57,8682,19.7283615,-155.9894602,1 -1702784825621,2023,12,16,17,47,5,7747,19.7283631,-155.9894619,1 -1702784826175,2023,12,16,17,47,6,7788,19.7283632,-155.9894621,1 -1702784826735,2023,12,16,17,47,6,8569,19.7283633,-155.9894622,1 -1702784827290,2023,12,16,17,47,7,9162,19.7283635,-155.9894624,9 -1702784827855,2023,12,16,17,47,7,9007,19.7283637,-155.9894625,10 -1702784828405,2023,12,16,17,47,8,9308,19.7283638,-155.9894626,1 -1702784828979,2023,12,16,17,47,8,9492,19.728364,-155.9894628,1 -1702784829537,2023,12,16,17,47,9,8954,19.7283642,-155.989463,1 -1702784830091,2023,12,16,17,47,10,9571,19.7283644,-155.9894631,1 -1702784830664,2023,12,16,17,47,10,7974,19.7283646,-155.9894632,1 -1702784831221,2023,12,16,17,47,11,7710,19.7283649,-155.9894634,1 -1702784831779,2023,12,16,17,47,11,8287,19.7283652,-155.9894636,1 -1702784832331,2023,12,16,17,47,12,7300,19.7283653,-155.9894637,1 -1702784832883,2023,12,16,17,47,12,7593,19.7283654,-155.9894639,1 -1702784833447,2023,12,16,17,47,13,8194,19.7283654,-155.989464,17 -1702784833999,2023,12,16,17,47,13,8882,19.7283654,-155.9894641,20 -1702784834619,2023,12,16,17,47,14,9187,19.7283654,-155.9894643,1 -1702784835179,2023,12,16,17,47,15,9030,19.7283654,-155.9894645,21 -1702784835728,2023,12,16,17,47,15,9178,19.7283654,-155.9894646,21 -1702784836278,2023,12,16,17,47,16,9289,19.7283654,-155.9894648,11 -1702784836865,2023,12,16,17,47,16,9326,19.7283654,-155.989465,1 -1702784837417,2023,12,16,17,47,17,9405,19.7283654,-155.9894652,1 -1702784837962,2023,12,16,17,47,17,9540,19.7283654,-155.9894653,1 -1702784838516,2023,12,16,17,47,18,9572,19.7283651,-155.9894653,1 -1702784839064,2023,12,16,17,47,19,9648,19.728365,-155.9894653,13 -1702784839655,2023,12,16,17,47,19,9666,19.7283648,-155.9894654,13 -1702784840199,2023,12,16,17,47,20,7296,19.7283646,-155.9894655,1 -1702784840855,2023,12,16,17,47,20,9627,19.7283645,-155.9894656,1 -1702784841408,2023,12,16,17,47,21,9617,19.7283645,-155.9894658,1 -1702784841982,2023,12,16,17,47,21,9049,19.7283644,-155.9894659,1 -1702784842563,2023,12,16,17,47,22,7256,19.7283643,-155.9894662,1 -1702784843132,2023,12,16,17,47,23,8099,19.7283643,-155.9894664,1 -1702784843702,2023,12,16,17,47,23,7266,19.7283643,-155.9894665,1 -1702784844285,2023,12,16,17,47,24,7042,19.7283643,-155.9894668,1 -1702784844844,2023,12,16,17,47,24,6241,19.7283642,-155.989467,1 -1702784845411,2023,12,16,17,47,25,7013,19.7283642,-155.9894671,1 -1702784845981,2023,12,16,17,47,25,6802,19.7283642,-155.9894672,1 -1702784846536,2023,12,16,17,47,26,6967,19.728364,-155.9894673,1 -1702784847187,2023,12,16,17,47,27,7473,19.7283639,-155.9894673,1 -1702784847758,2023,12,16,17,47,27,7971,19.7283637,-155.9894674,1 -1702784848403,2023,12,16,17,47,28,8688,19.7283637,-155.9894674,1 -1702784848985,2023,12,16,17,47,28,8986,19.7283635,-155.9894675,1 -1702784849696,2023,12,16,17,47,29,8995,19.7283634,-155.9894676,1 -1702784850305,2023,12,16,17,47,30,9239,19.7283633,-155.9894676,1 -1702784850865,2023,12,16,17,47,30,9372,19.7283632,-155.9894677,1 -1702784851428,2023,12,16,17,47,31,7789,19.728363,-155.9894677,1 -1702784852030,2023,12,16,17,47,32,6706,19.7283629,-155.9894678,1 -1702784852656,2023,12,16,17,47,32,9223,19.7283627,-155.9894679,1 -1702784853221,2023,12,16,17,47,33,8736,19.7283625,-155.989468,1 -1702784853797,2023,12,16,17,47,33,8607,19.7283623,-155.9894681,1 -1702784854345,2023,12,16,17,47,34,6140,19.7283622,-155.9894681,1 -1702784854888,2023,12,16,17,47,34,9330,19.728362,-155.989468,1 -1702784855459,2023,12,16,17,47,35,9363,19.7283618,-155.9894679,1 -1702784856027,2023,12,16,17,47,36,8743,19.7283616,-155.9894679,10 -1702784856678,2023,12,16,17,47,36,8822,19.7283612,-155.9894678,10 -1702784857315,2023,12,16,17,47,37,8659,19.728361,-155.9894678,21 -1702784858059,2023,12,16,17,47,38,8831,19.7283607,-155.9894677,12 -1702784858715,2023,12,16,17,47,38,8487,19.7283605,-155.9894675,10 -1702784859293,2023,12,16,17,47,39,8113,19.7283603,-155.9894675,1 -1702784859860,2023,12,16,17,47,39,8271,19.7283601,-155.9894674,1 -1702784860429,2023,12,16,17,47,40,8573,19.72836,-155.9894673,1 -1702784861087,2023,12,16,17,47,41,8900,19.7283601,-155.9894672,1 -1702784861790,2023,12,16,17,47,41,9331,19.7283602,-155.9894672,1 -1702784862342,2023,12,16,17,47,42,9420,19.7283602,-155.9894671,1 -1702784862935,2023,12,16,17,47,42,9400,19.7283601,-155.989467,1 -1702784863509,2023,12,16,17,47,43,8965,19.7283601,-155.989467,1 -1702784864098,2023,12,16,17,47,44,9084,19.72836,-155.9894669,1 -1702784864689,2023,12,16,17,47,44,8666,19.72836,-155.9894669,1 -1702784865263,2023,12,16,17,47,45,6699,19.7283599,-155.9894667,1 -1702784865842,2023,12,16,17,47,45,4670,19.7283599,-155.9894666,1 -1702784866409,2023,12,16,17,47,46,6731,19.7283598,-155.9894663,1 -1702784866988,2023,12,16,17,47,46,7163,19.7283597,-155.9894662,1 -1702784867598,2023,12,16,17,47,47,5937,19.7283595,-155.989466,1 -1702784868255,2023,12,16,17,47,48,3762,19.7283594,-155.9894658,1 -1702784868807,2023,12,16,17,47,48,5838,19.7283592,-155.9894656,1 -1702784869359,2023,12,16,17,47,49,5873,19.7283591,-155.9894656,1 -1702784869939,2023,12,16,17,47,49,6532,19.728359,-155.9894654,1 -1702784870498,2023,12,16,17,47,50,7033,19.7283588,-155.9894652,1 -1702784871074,2023,12,16,17,47,51,7251,19.7283587,-155.989465,1 -1702784871717,2023,12,16,17,47,51,4725,19.7283586,-155.9894649,1 -1702784872292,2023,12,16,17,47,52,6448,19.7283586,-155.9894648,1 -1702784872973,2023,12,16,17,47,52,5749,19.7283584,-155.9894647,1 -1702784873526,2023,12,16,17,47,53,6427,19.7283582,-155.9894645,10 -1702784874111,2023,12,16,17,47,54,7060,19.7283578,-155.9894644,22 -1702784874731,2023,12,16,17,47,54,7876,19.7283576,-155.9894642,32 -1702784875285,2023,12,16,17,47,55,7996,19.7283574,-155.9894641,10 -1702784875849,2023,12,16,17,47,55,8407,19.7283573,-155.9894639,10 -1702784876415,2023,12,16,17,47,56,8407,19.7283571,-155.9894637,10 -1702784876980,2023,12,16,17,47,56,9293,19.7283569,-155.9894636,1 -1702784877581,2023,12,16,17,47,57,8499,19.7283568,-155.9894633,1 -1702784878178,2023,12,16,17,47,58,9460,19.7283565,-155.989463,1 -1702784878766,2023,12,16,17,47,58,6064,19.7283563,-155.9894628,1 -1702784879436,2023,12,16,17,47,59,6978,19.7283561,-155.9894626,1 -1702784880036,2023,12,16,17,48,0,8719,19.7283559,-155.9894624,1 -1702784880621,2023,12,16,17,48,0,8382,19.7283555,-155.9894622,7 -1702784881237,2023,12,16,17,48,1,8987,19.7283551,-155.9894619,1 -1702784881814,2023,12,16,17,48,1,9360,19.7283548,-155.9894618,1 -1702784882385,2023,12,16,17,48,2,6238,19.7283543,-155.9894615,1 -1702784882978,2023,12,16,17,48,2,9033,19.7283542,-155.9894614,1 -1702784883547,2023,12,16,17,48,3,8832,19.7283538,-155.9894612,1 -1702784884196,2023,12,16,17,48,4,7544,19.7283534,-155.989461,1 -1702784884831,2023,12,16,17,48,4,8588,19.7283532,-155.9894609,9 -1702784885427,2023,12,16,17,48,5,8145,19.7283527,-155.9894607,1 -1702784886062,2023,12,16,17,48,6,8969,19.7283521,-155.9894603,1 -1702784886633,2023,12,16,17,48,6,9335,19.7283518,-155.9894601,7 -1702784887273,2023,12,16,17,48,7,9252,19.7283514,-155.9894598,7 -1702784887833,2023,12,16,17,48,7,9257,19.728351,-155.9894593,8 -1702784888511,2023,12,16,17,48,8,9263,19.7283506,-155.9894589,13 -1702784889130,2023,12,16,17,48,9,9276,19.7283502,-155.9894585,13 -1702784889718,2023,12,16,17,48,9,9278,19.7283499,-155.9894582,14 -1702784890269,2023,12,16,17,48,10,9299,19.7283497,-155.989458,7 -1702784890808,2023,12,16,17,48,10,9368,19.7283495,-155.9894576,1 -1702784891358,2023,12,16,17,48,11,9289,19.7283492,-155.9894571,1 -1702784891914,2023,12,16,17,48,11,8312,19.728349,-155.9894568,1 -1702784892465,2023,12,16,17,48,12,8634,19.7283486,-155.9894564,1 -1702784893043,2023,12,16,17,48,13,9301,19.7283482,-155.9894561,20 -1702784893685,2023,12,16,17,48,13,8359,19.7283478,-155.9894558,1 -1702784894245,2023,12,16,17,48,14,9514,19.7283477,-155.9894557,10 -1702784894828,2023,12,16,17,48,14,9621,19.7283474,-155.9894552,9 -1702784895512,2023,12,16,17,48,15,9416,19.7283471,-155.9894549,21 -1702784896073,2023,12,16,17,48,16,9053,19.7283467,-155.9894546,12 -1702784896747,2023,12,16,17,48,16,9172,19.7283463,-155.9894542,10 -1702784897348,2023,12,16,17,48,17,7846,19.7283462,-155.9894541,1 -1702784897891,2023,12,16,17,48,17,8963,19.7283459,-155.9894538,10 -1702784898447,2023,12,16,17,48,18,8902,19.7283457,-155.9894536,9 -1702784899021,2023,12,16,17,48,19,8934,19.7283456,-155.9894535,1 -1702784899700,2023,12,16,17,48,19,8503,19.7283452,-155.989453,1 -1702784900446,2023,12,16,17,48,20,9064,19.7283451,-155.9894528,1 -1702784901012,2023,12,16,17,48,21,9336,19.7283451,-155.9894527,20 -1702784901704,2023,12,16,17,48,21,9398,19.7283451,-155.9894524,11 -1702784902268,2023,12,16,17,48,22,9504,19.7283451,-155.9894521,1 -1702784902840,2023,12,16,17,48,22,9534,19.7283451,-155.9894516,1 -1702784903405,2023,12,16,17,48,23,8930,19.7283449,-155.989451,24 -1702784903997,2023,12,16,17,48,23,8739,19.7283447,-155.9894507,1 -1702784904610,2023,12,16,17,48,24,8042,19.7283444,-155.9894502,1 -1702784905205,2023,12,16,17,48,25,7877,19.7283441,-155.9894497,1 -1702784905758,2023,12,16,17,48,25,7271,19.7283437,-155.9894492,1 -1702784906328,2023,12,16,17,48,26,7058,19.7283435,-155.9894489,1 -1702784906886,2023,12,16,17,48,26,6934,19.7283432,-155.9894484,1 -1702784907444,2023,12,16,17,48,27,7162,19.7283428,-155.9894479,1 -1702784908030,2023,12,16,17,48,28,7295,19.7283425,-155.9894475,1 -1702784908684,2023,12,16,17,48,28,7984,19.7283426,-155.9894473,1 -1702784909268,2023,12,16,17,48,29,8433,19.7283427,-155.9894469,1 -1702784909815,2023,12,16,17,48,29,9483,19.7283427,-155.9894465,10 -1702784910374,2023,12,16,17,48,30,9578,19.7283424,-155.9894461,10 -1702784910933,2023,12,16,17,48,30,9565,19.7283423,-155.9894459,1 -1702784911488,2023,12,16,17,48,31,9450,19.7283422,-155.9894456,12 -1702784912059,2023,12,16,17,48,32,9450,19.7283421,-155.9894452,12 -1702784912617,2023,12,16,17,48,32,9201,19.7283419,-155.9894451,1 -1702784913197,2023,12,16,17,48,33,9085,19.7283417,-155.9894449,1 -1702784913769,2023,12,16,17,48,33,7684,19.7283417,-155.9894447,1 -1702784914313,2023,12,16,17,48,34,8580,19.7283418,-155.9894446,1 -1702784914875,2023,12,16,17,48,34,8525,19.7283418,-155.9894444,1 -1702784915521,2023,12,16,17,48,35,6771,19.7283419,-155.9894443,1 -1702784916080,2023,12,16,17,48,36,7759,19.7283421,-155.9894442,10 -1702784916725,2023,12,16,17,48,36,8158,19.7283422,-155.9894442,20 -1702784917280,2023,12,16,17,48,37,8311,19.7283423,-155.9894442,10 -1702784917827,2023,12,16,17,48,37,8524,19.7283425,-155.9894442,31 -1702784918378,2023,12,16,17,48,38,8733,19.7283429,-155.9894442,1 -1702784918944,2023,12,16,17,48,38,8926,19.728343,-155.9894441,1 -1702784919494,2023,12,16,17,48,39,8817,19.728343,-155.989444,1 -1702784920059,2023,12,16,17,48,40,8788,19.7283431,-155.989444,1 -1702784920666,2023,12,16,17,48,40,8727,19.7283435,-155.989444,1 -1702784921229,2023,12,16,17,48,41,8754,19.7283436,-155.989444,1 -1702784921772,2023,12,16,17,48,41,8798,19.7283438,-155.9894441,1 -1702784922336,2023,12,16,17,48,42,9159,19.7283443,-155.9894442,1 -1702784922894,2023,12,16,17,48,42,9361,19.7283444,-155.9894443,1 -1702784923781,2023,12,16,17,48,43,9322,19.7283448,-155.9894444,1 -1702784924335,2023,12,16,17,48,44,6332,19.728345,-155.9894446,1 -1702784924949,2023,12,16,17,48,44,7618,19.7283453,-155.9894447,1 -1702784925523,2023,12,16,17,48,45,8302,19.7283458,-155.9894449,1 -1702784926083,2023,12,16,17,48,46,7564,19.7283462,-155.9894451,1 -1702784926679,2023,12,16,17,48,46,7610,19.7283466,-155.9894454,1 -1702784927243,2023,12,16,17,48,47,8048,19.7283468,-155.9894456,1 -1702784927796,2023,12,16,17,48,47,8543,19.7283471,-155.9894459,1 -1702784928350,2023,12,16,17,48,48,9470,19.7283472,-155.9894461,10 -1702784928892,2023,12,16,17,48,48,9566,19.7283473,-155.9894462,10 -1702784929459,2023,12,16,17,48,49,9503,19.7283477,-155.9894463,28 -1702784930013,2023,12,16,17,48,50,9617,19.728348,-155.9894465,9 -1702784930576,2023,12,16,17,48,50,9603,19.7283482,-155.9894466,20 -1702784931142,2023,12,16,17,48,51,9221,19.7283484,-155.9894466,1 -1702784931697,2023,12,16,17,48,51,8830,19.7283485,-155.9894465,1 -1702784932261,2023,12,16,17,48,52,8507,19.7283486,-155.9894465,1 -1702784932832,2023,12,16,17,48,52,8639,19.7283486,-155.9894465,9 -1702784933395,2023,12,16,17,48,53,8062,19.7283487,-155.9894465,1 -1702784933951,2023,12,16,17,48,53,8079,19.7283488,-155.9894464,1 -1702784934516,2023,12,16,17,48,54,7994,19.7283491,-155.9894464,1 -1702784935107,2023,12,16,17,48,55,7951,19.7283495,-155.9894464,1 -1702784935704,2023,12,16,17,48,55,7173,19.72835,-155.9894464,1 -1702784936284,2023,12,16,17,48,56,7849,19.7283503,-155.9894464,1 -1702784936851,2023,12,16,17,48,56,7979,19.7283509,-155.9894465,1 -1702784937438,2023,12,16,17,48,57,8028,19.7283513,-155.9894467,1 -1702784938001,2023,12,16,17,48,58,8150,19.7283516,-155.9894469,1 -1702784938628,2023,12,16,17,48,58,8228,19.7283517,-155.989447,1 -1702784939194,2023,12,16,17,48,59,8945,19.7283519,-155.9894471,38 -1702784939765,2023,12,16,17,48,59,7993,19.7283518,-155.9894473,1 -1702784940339,2023,12,16,17,49,0,9168,19.7283518,-155.9894473,24 -1702784940902,2023,12,16,17,49,0,8977,19.7283517,-155.9894473,22 -1702784941483,2023,12,16,17,49,1,9061,19.7283516,-155.9894473,12 -1702784942033,2023,12,16,17,49,2,9222,19.7283516,-155.9894474,36 -1702784942638,2023,12,16,17,49,2,7171,19.7283516,-155.9894475,1 -1702784943189,2023,12,16,17,49,3,9083,19.7283516,-155.9894476,1 -1702784943841,2023,12,16,17,49,3,9125,19.7283515,-155.9894476,1 -1702784944396,2023,12,16,17,49,4,8951,19.7283514,-155.9894476,1 -1702784944951,2023,12,16,17,49,4,5654,19.7283513,-155.9894476,1 -1702784945515,2023,12,16,17,49,5,7074,19.7283513,-155.9894476,1 -1702784946095,2023,12,16,17,49,6,9185,19.7283512,-155.9894476,1 -1702784946678,2023,12,16,17,49,6,9291,19.7283513,-155.9894477,1 diff --git a/app/static/.DS_Store b/app/static/.DS_Store index 209e42df5f66c5f992475e20da4086d82cc760d2..b551b2e9497b606851c5b88e966503cb896a131f 100644 GIT binary patch delta 26 hcmZoMXffE(#ms4FWTB&=Yi49Jc@C4z=Jm{>A^>NV2YLVi delta 26 hcmZoMXffE(#ms4BWT2yA^>Lk2X6oX diff --git a/app/static/index.html b/app/static/index.html index 52ddf41..6b9e027 100644 --- a/app/static/index.html +++ b/app/static/index.html @@ -18,8 +18,8 @@

BlueSurvey

{{ icon }} Download -
- Clear Heatmap +
+ Clear Map Center Map

Status Console

{{ status }}
@@ -33,7 +33,7 @@

Status Console

- +