-
Notifications
You must be signed in to change notification settings - Fork 0
/
result.log
2959 lines (2595 loc) · 69.6 KB
/
result.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
======================
location : {
lat : -12.7576593,
lng : 135.2993862
name : East Arnhem Shire
======================
location : {
lat : -18.4070294,
lng : 14.8454619
name : Omusati Region
location : {
lat : -18.433333,
lng : 14.916667
name : Olumelengwa
======================
location : {
lat : -9.9755805,
lng : -55.1777747
name : Novo Mundo
location : {
lat : -9.9755912,
lng : -55.1778612
name : Novo Mundo
======================
location : {
lat : 19.8002388,
lng : -87.47711210000001
name : Punta Allen
location : {
lat : 20.0316666,
lng : -87.47777769999999
name : Boca Paila
======================
location : {
lat : -16.4479995,
lng : 16.3463791
name : Cuanhama
location : {
lat : -16.866667,
lng : 16.633333
name : Ediva do Muandi
======================location : {
lat : 61.0917012,
lng : 14.6663653
name : Dalarna County
location : {
lat : 60.9688386,
lng : 13.1171101
name : Malung NV
======================location : {
lat : -51.724911,
lng : -61.29965180000001
name : New Island
location : {
lat : -51.8531113,
lng : -61.25317009999999
name : Beaver
======================
location : {
lat : 53.789722,
lng : 95.49194399999999
name : Malinovka
\r\n======================\r\nlocation : {
lat : -36.3499498,
lng : 140.5135589
name : District Council of Tatiara
location : {
lat : -36.3111739,
lng : 140.7716407
name : Bordertown
======================
location : {
lat : 45.7469466,
lng : 91.0867701
name : Bulgan
location : {
lat : 45.419693,
lng : 90.680919
name : Beitashan Pasture Muye No.3 Team
\r======================
location : {
lat : 16.0567117,
lng : 49.0059852
name : Tarim
location : {
lat : 16.0768329,
lng : 49.1448952
name : Einat
======================
location : {
lat : 39.5564495,
lng : -114.524264
name : White Pine County
location : {
lat : 40.0366039,
lng : -113.9852805
name : Ibapah
======================
location : {
lat : 56.6889485,
lng : -105.404472
name : Division No. 18
======================
location : {
lat : -12.9349881,
lng : -74.2493192
name : Huanta Province
location : {
lat : -12.7388243,
lng : -74.3866039
name : Churcampa District
======================
location : {
lat : 50.5819797,
lng : -102.6769159
name : Cowessess No. 73
location : {
lat : 50.1435671,
lng : -101.6668282
name : Moosomin
======================
location : {
lat : 38.925875,
lng : 100.449818
name : Zhangye
location : {
lat : 38.929763,
lng : 100.478058
name : Ganzhou District
======================
location : {
lat : 34.4380625,
lng : 35.8308233
name : North Governorate
location : {
lat : 34.4345947,
lng : 35.8361633
name : Tripoli
======================
location : {
lat : 68.9610826,
lng : 33.0712855
name : Gorod Murmansk
location : {
lat : 68.97331129999999,
lng : 33.0855848
name : Murmansk
======================
location : {
lat : 65.69455599999999,
lng : 82.52561300000001
name : Krasnosel'kup
======================
location : {
lat : 9.966666999999999,
lng : 25.85
name : Lebissi
location : {
lat : 9.785573999999999,
lng : 26.044279
name : Umm Begago`n
======================
location : {
lat : -2.4516589,
lng : -72.66981129999999
name : San Antonio del Estrecho
location : {
lat : -2.4516589,
lng : -72.66981129999999
name : C.p el Estrecho
======================
location : {
lat : 48.0987106,
lng : -77.7967676
name : Val-d'Or
location : {
lat : 48.5650196,
lng : -78.1125205
name : Amos
======================
location : {
lat : 2.4949448,
lng : -50.9481853
name : Cal??oene
location : {
lat : 2.307765,
lng : -51.63243
name : Louren??o
======================
location : {
lat : 53.90140599999999,
lng : 85.187963
name : Zarinskiy Rayon
location : {
lat : 53.462097,
lng : 85.909836
name : Togul
======================
location : {
lat : 53.20105700000001,
lng : -70.86829999999999
name : Dover
location : {
lat : 53.1947741,
lng : -70.91071409999999
name : Nitchequon
======================
location : {
lat : 54.2939746,
lng : 129.4037634
name : Zeysky District
location : {
lat : 53.960667,
lng : 129.141785
name : Ogoron
======================
location : {
lat : 20.4492289,
lng : 41.929569
name : Jarab
location : {
lat : 20.5514157,
lng : 42.1375086
name : Al Uferiah
======================
location : {
lat : 46.554859,
lng : 17.5866732
name : Somogy County
location : {
lat : 47.18602620000001,
lng : 18.4221358
name : Sz??kesfeh??rv??r
======================
location : {
lat : 47.8423282,
lng : -83.40261079999999
name : Chapleau
location : {
lat : 47.724903,
lng : -83.204483
name : Nemegos
======================
location : {
lat : -28.849649,
lng : 121.989098
name : Murnong
location : {
lat : -28.6256573,
lng : 122.4013434
name : Laverton
======================
location : {
lat : 52.4168465,
lng : 102.9864725
name : Usolsky District
location : {
lat : 53.043865,
lng : 102.3717798
name : Golumet'
======================
location : {
lat : -20.582562,
lng : 130.350004
name : The Granites
location : {
lat : -20.5437839,
lng : 130.3337058
name : Tanami
======================
location : {
lat : 24.8105797,
lng : 42.7076107
name : Dariyah
location : {
lat : 24.721915,
lng : 42.9319657
name : Dariyah
======================
location : {
lat : 70.384109,
lng : 67.29972099999999
name : Mordyyakha
location : {
lat : 69.713448,
lng : 66.838776
name : Morrasale
======================
location : {
lat : -27.85285,
lng : 139.621201
name : Kanowana
======================
location : {
lat : -18.6457616,
lng : -48.1979986
name : Araguari
location : {
lat : -18.6458648,
lng : -48.1979912
name : Araguari
======================
location : {
lat : 33.1792764,
lng : 63.7695384
name : Pur Chaman
location : {
lat : 32.906849,
lng : 63.39431
name : Gur Zanak
======================
location : {
lat : 40.5504833,
lng : -114.872257
name : Sprucemont
location : {
lat : 40.7279868,
lng : -115.4784204
name : Lamoille
======================
location : {
lat : 41.343933,
lng : 86.261321
name : Yuli County
location : {
lat : 41.56142,
lng : 87.056541
name : Ege Zitage
======================
location : {
lat : 7.488241899999999,
lng : -59.6564494
name : Barima-Waini
location : {
lat : 8.2041293,
lng : -59.7775773
name : Mabaruma
======================
location : {
lat : 43.5912356,
lng : 3.2583626
name : H??rault
location : {
lat : 43.184277,
lng : 3.003078
name : Narbonne
======================
location : {
lat : -14.448888,
lng : 135.2327621
name : Wilton
======================
location : {
lat : 8.2042363,
lng : 33.5280072
name : Gambella Zone 3
location : {
lat : 8.332212,
lng : 33.7710906
name : Gunjang
======================
location : {
lat : -28.5301758,
lng : -62.3565156
name : General Taboada Department
location : {
lat : -28.4605787,
lng : -62.8343649
name : A??atuya
======================
location : {
lat : 29.1043813,
lng : 53.045893
name : Fars Province
location : {
lat : 28.5177435,
lng : 53.5743866
name : Jahrom
======================
location : {
lat : 43.6642649,
lng : -7.594534800000001
name : Viveiro
location : {
lat : 43.6831622,
lng : -7.8521653
name : Ortigueira
======================
location : {
lat : 12.8718422,
lng : 38.8205454
name : Wag Hemra
location : {
lat : 12.9127911,
lng : 38.8169781
name : Welezi
======================
location : {
lat : 36.569278,
lng : 64.64462999999999
name : Aman Bai
======================
location : {
lat : -35.1162185,
lng : 117.8597987
name : Green Islands
location : {
lat : -35.0556553,
lng : 117.8514627
name : Torndirrup
======================
location : {
lat : 24.449286,
lng : 109.378623
name : Shatangzhen
location : {
lat : 24.96967699999999,
lng : 109.46297
name : Alley
======================
location : {
lat : -3.7762628,
lng : 14.8454619
name : Pool
location : {
lat : -3.7435502,
lng : 14.5262026
name : Kindamba
======================
location : {
lat : 47.2121625,
lng : -102.72602
name : Dunn County
location : {
lat : 46.8791756,
lng : -102.7896242
name : Dickinson
======================
location : {
lat : -31.495761,
lng : 145.8388597
name : Cobar
location : {
lat : -31.6930706,
lng : 145.493781
name : Sandy Creek
======================
location : {
lat : 45.1522504,
lng : 59.3320447
name : Kantubek
location : {
lat : 45.1363315,
lng : 59.3109036
name : Ryabchiy Poselok
======================
location : {
lat : -7.8233262,
lng : -64.7786098
name : Caititu
location : {
lat : -7.808975999999998,
lng : -65.097717
name : Jur??cia
======================
location : {
lat : 58.7517042,
lng : -76.3761169
name : Baie-d'Hudson
location : {
lat : 58.86666700000001,
lng : -76.68333299999999
name : Nunainnaq
======================
location : {
lat : 16.4330013,
lng : -95.0182657
name : Juchit??n de Zaragoza
location : {
lat : 16.1842839,
lng : -95.20876249999999
name : Salina Cruz
======================
location : {
lat : 63.92200099999999,
lng : 127.469507
name : Sangar
location : {
lat : 63.93833300000001,
lng : 127.020278
name : Kalvitsa
======================
location : {
lat : 55.88333299999999,
lng : -64.75
name : Kaaitukupitak
location : {
lat : 56.05,
lng : -64.733333
name : Kamitshetshistatshuna
======================
location : {
lat : 13.6343413,
lng : 46.0563212
name : Abyan Governorate
location : {
lat : 13.932401,
lng : 46.0801697
name : M??diyah
======================
location : {
lat : -3.1184685,
lng : -40.8303823
name : Granja
location : {
lat : -2.9008418,
lng : -40.84209999999999
name : Camocim
======================
location : {
lat : 27.138723,
lng : 55.1375834
name : Hormozgan Province
location : {
lat : 26.9500841,
lng : 55.58572239999999
name : Bandar Khamir
======================
location : {
lat : 34.8544227,
lng : 128.433182
name : Tongyeong-si
location : {
lat : 34.2027806,
lng : 129.2875205
name : Tsushima
======================
location : {
lat : 50.3754565,
lng : -4.1426565
name : Plymouth
location : {
lat : 51.0781599,
lng : -4.058338
name : Barnstaple
======================
location : {
lat : 43.1189978,
lng : -124.408448
name : Bandon
location : {
lat : 42.7456644,
lng : -124.4973267
name : Port Orford
======================
location : {
lat : -3.685582000000001,
lng : -47.050129
name : P??o de Ouro
location : {
lat : -3.626076000000001,
lng : -47.02887
name : Bacabal
======================
location : {
lat : -33.6186125,
lng : 123.8609023
name : Israelite Bay
location : {
lat : -33.7049081,
lng : 123.4499743
name : Cape Arid
======================
location : {
lat : 66.285614,
lng : 36.847721
name : Kuzomen
location : {
lat : 66.266667,
lng : 36.94999999999999
name : Ust'ye Varzugi
======================
location : {
lat : 24.7821253,
lng : 92.8577105
name : Cachar
location : {
lat : 24.8332708,
lng : 92.7789054
name : Silchar
======================
location : {
lat : 17.6474239,
lng : -101.5455504
name : Zihuatanejo de Azueta
location : {
lat : 17.6416693,
lng : -101.5516955
name : Zihuatanejo
======================
location : {
lat : 28.7069373,
lng : -80.72782839999999
name : Dummit Grove
location : {
lat : 28.6433283,
lng : -80.69643959999999
name : Wilson
======================
location : {
lat : 7.434126,
lng : 13.92437
name : Nganha
location : {
lat : 8.035550599999999,
lng : 13.8411901
name : Bandjoukri
======================
location : {
lat : 56.5845216,
lng : -130.0464936
name : Kitimat-Stikine
location : {
lat : 55.94131239999999,
lng : -129.9878921
name : Stewart
======================
location : {
lat : 59.312973,
lng : 106.348389
name : Ika
======================
location : {
lat : 55.2959833,
lng : 28.7583626
name : Vitebsk Region
location : {
lat : 55.1926809,
lng : 30.206359
name : Viciebsk
======================
location : {
lat : 41.1242989,
lng : 64.6214281
name : Kanimekh District
location : {
lat : 40.7411851,
lng : 65.1417682
name : Kyzylkuduk
======================
location : {
lat : -6.7250166,
lng : 13.7289167
name : Tomboco
location : {
lat : -7.035801999999999,
lng : 14.30733
name : Bembe
======================
location : {
lat : 0.01811,
lng : -71.00257999999999
name : Lerida
location : {
lat : 0.05442,
lng : -71.22292999999999
name : Pacoa
======================
location : {
lat : -18.3918222,
lng : 139.041312
name : Burke Shire
======================
location : {
lat : 40.450451,
lng : 55.855801
name : Koymat
location : {
lat : 40.6186048,
lng : 55.4661031
name : Gyzylgaya
======================
location : {
lat : 20.8698522,
lng : 86.8609285
name : Bansada
location : {
lat : 20.7953311,
lng : 86.8966588
name : Dhamara
======================
location : {
lat : 55.8679695,
lng : -92.0946883
name : Shamattawa 1
======================
location : {
lat : 64.8329974,
lng : -164.2566019
name : Nome
location : {
lat : 64.6813889,
lng : -163.4055556
name : White Mountain
======================
location : {
lat : -4.6497952,
lng : 30.5279096
name : Kigoma Region
location : {
lat : -4.9983058,
lng : 30.0029572
name : Kazuramimba
======================
location : {
lat : 55.6166728,
lng : 24.3142283
name : Panev????ys District Municipality
location : {
lat : 55.7347915,
lng : 24.3574773
name : Panev????ys
======================
location : {
lat : 34.2154913,
lng : -77.88245959999999
name : New Hanover County
location : {
lat : 34.3675936,
lng : -77.71054819999999
name : Hampstead
======================
location : {
lat : 69.0655927,
lng : -124.5962892
name : Inuvialuit Lands
======================
location : {
lat : 50.8589713,
lng : 39.8644375
name : Voronezh Oblast
location : {
lat : 50.1964518,
lng : 39.5799725
name : Rossosh
======================
location : {
lat : 4.353693199999999,
lng : -53.7369154
name : Arrondissement of St.-Laurent-du-Maroni
location : {
lat : 4.9841025,
lng : -53.99767749999999
name : Saint-Laurent-du-Maroni
======================
location : {
lat : -22.3531369,
lng : 16.1286901
name : Otjimbingwe
location : {
lat : -22.516667,
lng : 15.85
name : Tsaobis
======================
location : {
lat : 51.253775,
lng : -85.3232139
name : Ontario
======================
location : {
lat : 65.84436669999999,
lng : -153.4302993
name : Yukon-Koyukuk
location : {
lat : 66.5655556,
lng : -152.6455556
name : Allakaket
======================
location : {
lat : -14.5349258,
lng : -75.18524699999999
name : Palpa Province
location : {
lat : -15.2609564,
lng : -75.22860609999999
name : San Nicol??s
======================
location : {
lat : 23.4595265,
lng : 87.6186379
name : Bardhaman
location : {
lat : 23.8160705,
lng : 87.79846529999999
name : Labpur
======================
location : {
lat : 38.1066372,
lng : 40.5426896
name : Diyarbak??r
location : {
lat : 37.9249733,
lng : 40.2109826
name : Diyarbak??r
======================
location : {
lat : -3.8116173,
lng : 39.7961562
name : Kikambala
location : {
lat : -3.2191864,
lng : 40.1168906
name : Malindi
======================
location : {
lat : 56.9924812,
lng : -118.9976094
name : Clear Hills County
location : {
lat : 56.5079229,
lng : -119.1341003
name : Worsley
======================
location : {
lat : 10.6188998,
lng : -73.37086959999999
name : Valledupar
location : {
lat : 10.4742449,
lng : -73.2436335
name : Valledupar
======================
location : {
lat : 41.5224188,
lng : 75.89986739999999
name : Naryn District
location : {
lat : 42.0301273,
lng : 74.9822461
name : Kyzart
======================
location : {
lat : 55.8263889,
lng : -133.6027778
name : Port Alice
location : {
lat : 55.8736111,
lng : -133.1847222
name : Naukati Bay
======================
location : {
lat : 54.7877149,
lng : -6.4923145
name : Northern Ireland
location : {
lat : 54.59728500000001,
lng : -5.93012
name : Belfast
======================
location : {
lat : -5.4259146,
lng : -71.1923805
name : Tabatinga
location : {
lat : -4.866850100000001,
lng : -70.9088478
name : Marubus
======================
location : {
lat : 59.9,
lng : -73.6333329
name : Tuttusivik
======================
location : {
lat : -17.5469447,
lng : 135.6913065
name : Creswell
======================