-
Notifications
You must be signed in to change notification settings - Fork 8
/
test_data.json
1000 lines (1000 loc) · 229 KB
/
test_data.json
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
{"organization": "TATACOMM-AS TATA Communications formerly VSNL is Leading ISP", "name": "TATACOMM-AS TATA Communications formerly VSNL is Leading ISP,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "115.114.251.0/24", "path": [7018, 6453, 4755], "asn": 4755}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "213.5.200.0/21", "path": [7018, 1299, 13293, 15744, 23456], "asn": 23456}
{"organization": "Hotwire Communications", "name": "HOTWIRE-COMMUNICATIONS - Hotwire Communications,US", "id": "HOTWIRE-COMMUNICATIONS", "country_code": "US", "local_pref": 100, "bgp_prefix": "8.26.230.0/23", "path": [7018, 3356, 23089], "asn": 23089}
{"organization": "TATA-AS Tata Communications Ltd", "name": "TATA-AS Tata Communications Ltd,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "121.244.20.0/23", "path": [7018, 6453, 4755, 10199], "asn": 10199}
{"organization": "AT&T Services, Inc.", "name": "EASYLINK2 - AT&T Services, Inc.,US", "id": "EASYLINK2", "country_code": "US", "local_pref": 100, "bgp_prefix": "204.127.151.0/24", "path": [7018, 4466], "asn": 4466}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "91.229.238.0/24", "path": [3257, 12741, 8374, 23456], "asn": 23456}
{"organization": "JAB Wireless, INC.", "name": "RISE-IL-AS20456 - JAB Wireless, INC.,US", "id": "RISE-IL-AS20456", "country_code": "US", "local_pref": 100, "bgp_prefix": "69.197.91.0/24", "path": [7018, 209, 20456], "asn": 20456}
{"organization": "Cinenet Communications", "name": "CINE-NET - Cinenet Communications,US", "id": "CINE-NET", "country_code": "US", "local_pref": 110, "bgp_prefix": "206.117.199.0/24", "path": [2914, 226, 5726, 3832], "asn": 3832}
{"organization": "Telecom Argentina S.A.", "name": "Telecom Argentina S.A.,AR", "id": null, "country_code": "AR", "local_pref": 100, "bgp_prefix": "200.45.40.0/21", "path": [7018, 6762, 7303], "asn": 7303}
{"organization": "Cox Communications Inc.", "name": "ASN-CXA-ALL-CCI-22773-RDC - Cox Communications Inc.,US", "id": "ASN-CXA-ALL-CCI-22773-RDC", "country_code": "US", "local_pref": 110, "bgp_prefix": "72.214.33.0/24", "path": [6939, 22773], "asn": 22773}
{"organization": "TFN-TW Taiwan Fixed Network, Telco and Network Service Provider.", "name": "TFN-TW Taiwan Fixed Network, Telco and Network Service Provider.,TW", "id": null, "country_code": "TW", "local_pref": 100, "bgp_prefix": "210.67.144.0/20", "path": [7018, 3491, 9924], "asn": 9924}
{"organization": "AT&T Mobility LLC", "name": "ATT-MOBILITY-LLC-AS20057 - AT&T Mobility LLC,US", "id": "ATT-MOBILITY-LLC-AS20057", "country_code": "US", "local_pref": 100, "bgp_prefix": "166.170.128.0/18", "path": [7018, 20057], "asn": 20057}
{"organization": "NTT America, Inc.", "name": "NTT-COMMUNICATIONS-2914 - NTT America, Inc.,US", "id": "NTT-COMMUNICATIONS-2914", "country_code": "US", "local_pref": 110, "bgp_prefix": "104.88.72.0/22", "path": [2914], "asn": 2914}
{"organization": "ETISALAT-MISR", "name": "ETISALAT-MISR,EG", "id": null, "country_code": "EG", "local_pref": 110, "bgp_prefix": "105.206.64.0/18", "path": [3257, 8452, 36992], "asn": 36992}
{"organization": "GoDaddy.com, LLC", "name": "AS-26496-GO-DADDY-COM-LLC - GoDaddy.com, LLC,US", "id": "AS-26496-GO-DADDY-COM-LLC", "country_code": "US", "local_pref": 100, "bgp_prefix": "68.178.248.0/22", "path": [7018, 209, 26496], "asn": 26496}
{"organization": "Tri-County Computer Services Association", "name": "TCCSA - Tri-County Computer Services Association,US", "id": "TCCSA", "country_code": "US", "local_pref": 110, "bgp_prefix": "208.108.96.0/20", "path": [6939, 600, 600, 600, 29941, 29941, 29941], "asn": 29941}
{"organization": "BLIZOO Blizoo DOOEL Skopje", "name": "BLIZOO Blizoo DOOEL Skopje,MK", "id": null, "country_code": "MK", "local_pref": 100, "bgp_prefix": "92.53.0.0/22", "path": [7018, 1299, 8447, 43612], "asn": 43612}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "103.55.91.0/24", "path": [11164, 15412, 18101, 23456], "asn": 23456}
{"organization": "LONEPINE-HK-CN Edinburgh Tower", "name": "LONEPINE-HK-CN Edinburgh Tower,CN", "id": null, "country_code": "CN", "local_pref": 110, "bgp_prefix": "203.190.123.0/24", "path": [2914, 24246, 45866], "asn": 45866}
{"organization": "ETISALAT-AS Emirates Telecommunications Corporation", "name": "ETISALAT-AS Emirates Telecommunications Corporation,AE", "id": null, "country_code": "AE", "local_pref": 100, "bgp_prefix": "88.221.217.0/24", "path": [7018, 6762, 8966, 8966], "asn": 8966}
{"organization": "GONET", "name": "GONET-ASN-1 - GONET,CA", "id": "GONET-ASN-1", "country_code": "CA", "local_pref": 110, "bgp_prefix": "204.41.32.0/24", "path": [11164, 852, 808], "asn": 808}
{"organization": "CONTABO Contabo GmbH", "name": "CONTABO Contabo GmbH,DE", "id": null, "country_code": "DE", "local_pref": 100, "bgp_prefix": "213.136.88.0/23", "path": [7018, 1299, 51167], "asn": 51167}
{"organization": "Telemar Norte Leste S.A.", "name": "Telemar Norte Leste S.A.,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "189.25.64.0/19", "path": [7018, 701, 7738], "asn": 7738}
{"organization": "Telemar Norte Leste S.A.", "name": "Telemar Norte Leste S.A.,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "189.25.64.0/18", "path": [7018, 701, 7738], "asn": 7738}
{"organization": "Internap Network Services Corporation", "name": "INTERNAP-2BLK - Internap Network Services Corporation,US", "id": "INTERNAP-2BLK", "country_code": "US", "local_pref": 110, "bgp_prefix": "72.5.188.0/24", "path": [2914, 12179], "asn": 12179}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "179.109.93.0/24", "path": [7018, 6762, 26615, 28202, 23456], "asn": 23456}
{"organization": "AXS Bolivia S. A.", "name": "AXS Bolivia S. A.,BO", "id": null, "country_code": "BO", "local_pref": 100, "bgp_prefix": "200.90.145.0/24", "path": [7018, 12956, 26210], "asn": 26210}
{"organization": "NTT America, Inc.", "name": "NTT-COMMUNICATIONS-2914 - NTT America, Inc.,US", "id": "NTT-COMMUNICATIONS-2914", "country_code": "US", "local_pref": 110, "bgp_prefix": "23.201.16.0/22", "path": [2914], "asn": 2914}
{"organization": "TELLCOM-AS TELLCOM ILETISIM HIZMETLERI A.S.", "name": "TELLCOM-AS TELLCOM ILETISIM HIZMETLERI A.S.,TR", "id": null, "country_code": "TR", "local_pref": 100, "bgp_prefix": "92.44.51.0/24", "path": [7018, 6453, 34984], "asn": 34984}
{"organization": "DTAG Deutsche Telekom AG", "name": "DTAG Deutsche Telekom AG,DE", "id": null, "country_code": "DE", "local_pref": 100, "bgp_prefix": "194.77.185.0/24", "path": [7018, 3320], "asn": 3320}
{"organization": "GIGAINFRA Softbank BB Corp.", "name": "GIGAINFRA Softbank BB Corp.,JP", "id": null, "country_code": "JP", "local_pref": 110, "bgp_prefix": "103.225.80.0/22", "path": [2914, 17676], "asn": 17676}
{"organization": "HCNGYEONGBUK-AS-KR Gyeongbuk Cable TV", "name": "HCNGYEONGBUK-AS-KR Gyeongbuk Cable TV,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "49.142.248.0/22", "path": [6939, 4766, 7562, 7623], "asn": 7623}
{"organization": "DIALTELECOMRO Digital Cable Systems S.A.", "name": "DIALTELECOMRO Digital Cable Systems S.A.,RO", "id": null, "country_code": "RO", "local_pref": 100, "bgp_prefix": "89.39.66.0/24", "path": [7018, 6762, 6910], "asn": 6910}
{"organization": "ALSATIS-AS alsatis wisp network AS", "name": "ALSATIS-AS alsatis wisp network AS,FR", "id": null, "country_code": "FR", "local_pref": 100, "bgp_prefix": "46.22.84.0/24", "path": [7018, 174, 48072], "asn": 48072}
{"organization": "BSNL-NIB National Internet Backbone", "name": "BSNL-NIB National Internet Backbone,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "117.227.64.0/18", "path": [7018, 6453, 9829], "asn": 9829}
{"organization": "GTSCE T-Mobile Czech Republic a.s.", "name": "GTSCE T-Mobile Czech Republic a.s.,CZ", "id": null, "country_code": "CZ", "local_pref": 100, "bgp_prefix": "37.156.180.0/23", "path": [7018, 1299, 5588], "asn": 5588}
{"organization": "UECOMM-AU Uecomm Ltd", "name": "UECOMM-AU Uecomm Ltd,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "203.0.161.0/24", "path": [11164, 7473, 7474, 10223], "asn": 10223}
{"organization": "Axtel, S.A.B. de C.V.", "name": "Axtel, S.A.B. de C.V.,MX", "id": null, "country_code": "MX", "local_pref": 100, "bgp_prefix": "201.156.16.0/20", "path": [7018, 701, 6503], "asn": 6503}
{"organization": "HYROADPUSAN-AS-KR PUSAN CABLE TV SYSTEM CO., LTD.", "name": "HYROADPUSAN-AS-KR PUSAN CABLE TV SYSTEM CO., LTD.,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "203.243.128.0/21", "path": [6939, 4766, 7562, 23584], "asn": 23584}
{"organization": "Time Warner Cable Internet LLC", "name": "RR-NYSREGION-ASN-01 - Time Warner Cable Internet LLC,US", "id": "RR-NYSREGION-ASN-01", "country_code": "US", "local_pref": 100, "bgp_prefix": "72.226.128.0/17", "path": [7018, 2828, 7843, 11351], "asn": 11351}
{"organization": "ADC-BUDDYB-AS Advance Datanetwork Communications Co.,Ltd. BuddyB service. Bangkok", "name": "ADC-BUDDYB-AS Advance Datanetwork Communications Co.,Ltd. BuddyB service. Bangkok,TH", "id": null, "country_code": "TH", "local_pref": 110, "bgp_prefix": "58.64.39.0/24", "path": [3257, 25973, 25973, 9304, 45430, 45458, 17565], "asn": 17565}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "186.235.240.0/24", "path": [7018, 12956, 28368, 23456], "asn": 23456}
{"organization": "AUTOEVER BRASIL TECNOLOGIA DA INFORMACAO LTDA", "name": "AUTOEVER BRASIL TECNOLOGIA DA INFORMACAO LTDA,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "177.52.135.0/24", "path": [7018, 6762, 23456, 22177, 52782, 52782, 52782], "asn": 52782}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "186.235.240.0/22", "path": [7018, 12956, 28368, 23456], "asn": 23456}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "186.235.240.0/23", "path": [7018, 12956, 28368, 23456], "asn": 23456}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "186.235.240.0/21", "path": [7018, 12956, 28368, 23456], "asn": 23456}
{"organization": "TTNET Turk Telekomunikasyon Anonim Sirketi", "name": "TTNET Turk Telekomunikasyon Anonim Sirketi,TR", "id": null, "country_code": "TR", "local_pref": 100, "bgp_prefix": "78.187.76.0/23", "path": [7018, 1299, 9121], "asn": 9121}
{"organization": "TOT-NET TOT Public Company Limited", "name": "TOT-NET TOT Public Company Limited,TH", "id": null, "country_code": "TH", "local_pref": 110, "bgp_prefix": "125.26.179.0/24", "path": [2914, 4651, 9737, 23969], "asn": 23969}
{"organization": "TIKONAINFINET-AS-1 Tikona Infinet Ltd", "name": "TIKONAINFINET-AS-1 Tikona Infinet Ltd,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "203.90.118.0/24", "path": [7018, 6453, 4755, 45528, 10077], "asn": 10077}
{"organization": "CHINA169-BACKBONE CNCGROUP China169 Backbone", "name": "CHINA169-BACKBONE CNCGROUP China169 Backbone,CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "115.100.0.0/15", "path": [7018, 4837], "asn": 4837}
{"organization": "ASN-IS IS Group B.V.", "name": "ASN-IS IS Group B.V.,NL", "id": null, "country_code": "NL", "local_pref": 110, "bgp_prefix": "77.245.80.0/20", "path": [2914, 8455, 15879], "asn": 15879}
{"organization": "CHINANET-JS-AS-AP AS Number for CHINANET jiangsu province backbone", "name": "CHINANET-JS-AS-AP AS Number for CHINANET jiangsu province backbone,CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "180.96.32.0/19", "path": [7018, 4134, 23650], "asn": 23650}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "138.255.8.0/22", "path": [6939, 52320, 16735, 23456, 23456], "asn": 23456}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "177.185.254.0/24", "path": [7018, 6762, 23456, 52752, 23456], "asn": 23456}
{"organization": "TELLCOM-AS TELLCOM ILETISIM HIZMETLERI A.S.", "name": "TELLCOM-AS TELLCOM ILETISIM HIZMETLERI A.S.,TR", "id": null, "country_code": "TR", "local_pref": 100, "bgp_prefix": "212.253.117.0/24", "path": [7018, 3320, 34984], "asn": 34984}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "177.124.24.0/22", "path": [7018, 6762, 25933, 23456], "asn": 23456}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "177.124.24.0/23", "path": [7018, 6762, 25933, 23456], "asn": 23456}
{"organization": "The Computer Company, Inc.", "name": "TCC - The Computer Company, Inc.,US", "id": "TCC", "country_code": "US", "local_pref": 100, "bgp_prefix": "12.132.104.0/24", "path": [7018, 27309], "asn": 27309}
{"organization": "DoD Network Information Center", "name": "DNIC-ASBLK-05800-06055 - DoD Network Information Center,US", "id": "DNIC-ASBLK-05800-06055", "country_code": "US", "local_pref": 100, "bgp_prefix": "205.72.240.0/20", "path": [7018, 209, 721, 27064, 5976], "asn": 5976}
{"organization": "New York State, Department of Insurance", "name": "AS-NYSDI - New York State, Department of Insurance,US", "id": "AS-NYSDI", "country_code": "US", "local_pref": 100, "bgp_prefix": "12.28.216.0/23", "path": [7018, 3356, 4323, 40116], "asn": 40116}
{"organization": "NTT America, Inc.", "name": "NTT-COMMUNICATIONS-2914 - NTT America, Inc.,US", "id": "NTT-COMMUNICATIONS-2914", "country_code": "US", "local_pref": 110, "bgp_prefix": "23.41.240.0/20", "path": [2914], "asn": 2914}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "80.250.189.0/24", "path": [7018, 1299, 3267, 23456], "asn": 23456}
{"organization": "DoD Network Information Center", "name": "DNIC-ASBLK-00721-00726 - DoD Network Information Center,US", "id": "DNIC-ASBLK-00721-00726", "country_code": "US", "local_pref": 100, "bgp_prefix": "140.14.138.0/24", "path": [7018, 209, 721], "asn": 721}
{"organization": "Krypt Technologies", "name": "VPLSNET - Krypt Technologies,US", "id": "VPLSNET", "country_code": "US", "local_pref": 110, "bgp_prefix": "98.126.100.0/24", "path": [11164, 3491, 35908], "asn": 35908}
{"organization": "SRC-SI-AS SRC.SI sistemske integracije d.o.o.", "name": "SRC-SI-AS SRC.SI sistemske integracije d.o.o.,SI", "id": null, "country_code": "SI", "local_pref": 110, "bgp_prefix": "193.23.137.0/24", "path": [3257, 8447, 16016, 16016, 16016, 16016, 15889, 15889], "asn": 15889}
{"organization": "Quality Technology Services Miami, LLC", "name": "QTS-MIAMI-1 - Quality Technology Services Miami, LLC,US", "id": "QTS-MIAMI-1", "country_code": "US", "local_pref": 110, "bgp_prefix": "209.208.208.0/20", "path": [2914, 11767], "asn": 11767}
{"organization": "Quality Technology Services Miami, LLC", "name": "QTS-MIAMI-1 - Quality Technology Services Miami, LLC,US", "id": "QTS-MIAMI-1", "country_code": "US", "local_pref": 110, "bgp_prefix": "209.208.208.0/21", "path": [2914, 11767], "asn": 11767}
{"organization": "INTERNETX-AS InterNetX GmbH", "name": "INTERNETX-AS InterNetX GmbH,DE", "id": null, "country_code": "DE", "local_pref": 110, "bgp_prefix": "85.236.32.0/19", "path": [2914, 8560, 15456], "asn": 15456}
{"organization": "BellSouth.net Inc.", "name": "TENNESSEE-NET - BellSouth.net Inc.,US", "id": "TENNESSEE-NET", "country_code": "US", "local_pref": 100, "bgp_prefix": "216.96.128.0/18", "path": [7018, 19957, 19957], "asn": 19957}
{"organization": "PRONET-AS Pronet Telekom Ltd", "name": "PRONET-AS Pronet Telekom Ltd,BG", "id": null, "country_code": "BG", "local_pref": 110, "bgp_prefix": "88.203.227.0/24", "path": [2914, 50186], "asn": 50186}
{"organization": "MegaPath Corporation", "name": "MEGAPATH5-US - MegaPath Corporation,US", "id": "MEGAPATH5-US", "country_code": "US", "local_pref": 100, "bgp_prefix": "74.211.200.0/24", "path": [7018, 2828, 18566], "asn": 18566}
{"organization": "DoD Network Information Center", "name": "DNIC-ASBLK-27032-27159 - DoD Network Information Center,US", "id": "DNIC-ASBLK-27032-27159", "country_code": "US", "local_pref": 100, "bgp_prefix": "131.158.188.0/24", "path": [7018, 209, 721, 27064], "asn": 27064}
{"organization": "The University of Tennessee Health Science Center", "name": "UTK - The University of Tennessee Health Science Center,US", "id": "UTK", "country_code": "US", "local_pref": 100, "bgp_prefix": "216.96.128.0/17", "path": [7018, 3356, 3450, 3450], "asn": 3450}
{"organization": "Alpheus Data Services, L.L.C.", "name": "DFWNAP - Alpheus Data Services, L.L.C.,US", "id": "DFWNAP", "country_code": "US", "local_pref": 100, "bgp_prefix": "207.91.188.0/24", "path": [7018, 36366], "asn": 36366}
{"organization": "CyrusOne LLC", "name": "CYRS - CyrusOne LLC,US", "id": "CYRS", "country_code": "US", "local_pref": 100, "bgp_prefix": "216.117.71.0/24", "path": [7018, 3356, 62], "asn": 62}
{"organization": "ViaWest ", "name": "ASN-VINS - ViaWest ,US", "id": "ASN-VINS", "country_code": "US", "local_pref": 110, "bgp_prefix": "142.56.240.0/20", "path": [2914, 13649], "asn": 13649}
{"organization": "Volkswagen of America, Inc.", "name": "VWMX-AS - Volkswagen of America, Inc.,US", "id": "VWMX-AS", "country_code": "US", "local_pref": 110, "bgp_prefix": "148.203.156.0/22", "path": [2914, 8151, 3810], "asn": 3810}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "119.42.123.0/24", "path": [6939, 4651, 4651, 4651, 23456, 23456, 23456], "asn": 23456}
{"organization": "STEK-AS S:t Erik Kommunikation AB", "name": "STEK-AS S:t Erik Kommunikation AB,SE", "id": null, "country_code": "SE", "local_pref": 110, "bgp_prefix": "192.121.236.0/24", "path": [3257, 29518, 29672], "asn": 29672}
{"organization": "Rackspace Hosting", "name": "RACKSPACE - Rackspace Hosting,US", "id": "RACKSPACE", "country_code": "US", "local_pref": 110, "bgp_prefix": "104.239.160.0/19", "path": [2914, 12200, 27357], "asn": 27357}
{"organization": "FAPL-AS-AP Fujitsu Asia Pte Ltd, NOC and RIM", "name": "FAPL-AS-AP Fujitsu Asia Pte Ltd, NOC and RIM,SG", "id": null, "country_code": "SG", "local_pref": 100, "bgp_prefix": "202.68.208.0/24", "path": [7018, 3491, 24038], "asn": 24038}
{"organization": "Eastern Illinois University", "name": "EIUNET - Eastern Illinois University,US", "id": "EIUNET", "country_code": "US", "local_pref": 100, "bgp_prefix": "139.67.0.0/18", "path": [7018, 174, 6325, 19070], "asn": 19070}
{"organization": "Midcontinent Media, Inc.", "name": "MIDCO-NET - Midcontinent Media, Inc.,US", "id": "MIDCO-NET", "country_code": "US", "local_pref": 99, "bgp_prefix": "208.107.18.0/23", "path": [6939, 11232], "asn": 11232}
{"organization": "ICENET-UA-AS Private Entrepreneur Ivanova Nina Leonidovna", "name": "ICENET-UA-AS Private Entrepreneur Ivanova Nina Leonidovna,UA", "id": null, "country_code": "UA", "local_pref": 110, "bgp_prefix": "91.222.48.0/24", "path": [6939, 12389, 23456, 48004, 51917, 51917, 51917, 51917, 51917, 51917], "asn": 51917}
{"organization": "TELE2", "name": "TELE2,SE", "id": null, "country_code": "SE", "local_pref": 100, "bgp_prefix": "192.36.43.0/24", "path": [7018, 1239, 1257], "asn": 1257}
{"organization": "MICOM-MN-AS Mongolia Telecom", "name": "MICOM-MN-AS Mongolia Telecom,MN", "id": null, "country_code": "MN", "local_pref": 100, "bgp_prefix": "202.179.24.0/21", "path": [7018, 3356, 45204, 45204, 9934], "asn": 9934}
{"organization": "ICENET-UA-AS Private Entrepreneur Ivanova Nina Leonidovna", "name": "ICENET-UA-AS Private Entrepreneur Ivanova Nina Leonidovna,UA", "id": null, "country_code": "UA", "local_pref": 110, "bgp_prefix": "91.222.48.0/22", "path": [6939, 21011, 6789, 51917, 51917, 51917, 51917, 51917, 51917, 51917], "asn": 51917}
{"organization": "Mediacom Communications Corp", "name": "MEDIACOM-ENTERPRISE-BUSINESS - Mediacom Communications Corp,US", "id": "MEDIACOM-ENTERPRISE-BUSINESS", "country_code": "US", "local_pref": 100, "bgp_prefix": "108.178.220.0/24", "path": [7018, 30036], "asn": 30036}
{"organization": "Claro S/A", "name": "Claro S/A,BR", "id": null, "country_code": "BR", "local_pref": 110, "bgp_prefix": "201.23.185.0/24", "path": [11164, 3549, 22085], "asn": 22085}
{"organization": "DAIMLER-AS Daimler Autonomous System", "name": "DAIMLER-AS Daimler Autonomous System,DE", "id": null, "country_code": "DE", "local_pref": 100, "bgp_prefix": "141.113.64.0/18", "path": [7018, 3320, 31399], "asn": 31399}
{"organization": "WORLDPHONE-IN AS Number for Interdomain Routing", "name": "WORLDPHONE-IN AS Number for Interdomain Routing,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "14.102.113.0/24", "path": [7018, 1299, 9498, 18002], "asn": 18002}
{"organization": "Primus Telecommunications Canada Inc.", "name": "PRIMUS-AS6407 - Primus Telecommunications Canada Inc.,CA", "id": "PRIMUS-AS6407", "country_code": "CA", "local_pref": 110, "bgp_prefix": "216.181.193.0/24", "path": [3257, 6407], "asn": 6407}
{"organization": "MACROIS-AS macroIS GmbH", "name": "MACROIS-AS macroIS GmbH,DE", "id": null, "country_code": "DE", "local_pref": 100, "bgp_prefix": "154.60.96.0/23", "path": [7018, 174, 39291], "asn": 39291}
{"organization": "Smithville Digital, LLC", "name": "SDL-20-AS - Smithville Digital, LLC,US", "id": "SDL-20-AS", "country_code": "US", "local_pref": 100, "bgp_prefix": "66.244.114.0/24", "path": [7018, 174, 11550], "asn": 11550}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 99, "bgp_prefix": "132.255.224.0/23", "path": [6939, 12956, 10834, 23456], "asn": 23456}
{"organization": "NEO-ASN Neo Telecoms S.A.S.", "name": "NEO-ASN Neo Telecoms S.A.S.,FR", "id": null, "country_code": "FR", "local_pref": 100, "bgp_prefix": "212.69.160.0/19", "path": [7018, 1299, 8218], "asn": 8218}
{"organization": "KEPRI-AS-KR KEPCO", "name": "KEPRI-AS-KR KEPCO,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "210.109.156.0/24", "path": [6939, 4766, 9848, 18300, 18300, 18300, 18300], "asn": 18300}
{"organization": "AMNET-AU-AP Amnet IT Services Pty Ltd", "name": "AMNET-AU-AP Amnet IT Services Pty Ltd,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "116.212.198.0/24", "path": [6939, 4826, 9822], "asn": 9822}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "31.186.108.0/24", "path": [7018, 6762, 23456, 23456], "asn": 23456}
{"organization": "CYBERNET-AP Cyber Internet Services (Pvt) Ltd.", "name": "CYBERNET-AP Cyber Internet Services (Pvt) Ltd.,PK", "id": null, "country_code": "PK", "local_pref": 110, "bgp_prefix": "202.163.81.0/24", "path": [11164, 4788, 17557, 9541], "asn": 9541}
{"organization": "BellSouth.net Inc.", "name": "BELLSOUTH-NET-BLK - BellSouth.net Inc.,US", "id": "BELLSOUTH-NET-BLK", "country_code": "US", "local_pref": 100, "bgp_prefix": "216.77.37.0/24", "path": [7018, 6389], "asn": 6389}
{"organization": "eHealthInsurance Services Inc.", "name": "EHI-PROD-SJ-AS - eHealthInsurance Services Inc.,US", "id": "EHI-PROD-SJ-AS", "country_code": "US", "local_pref": 110, "bgp_prefix": "12.130.143.0/24", "path": [7922, 33667, 11261, 11261, 11261, 11261, 11261, 11261, 11261], "asn": 11261}
{"organization": "Charter Communications", "name": "CHARTER-NET-HKY-NC - Charter Communications,US", "id": "CHARTER-NET-HKY-NC", "country_code": "US", "local_pref": 110, "bgp_prefix": "97.90.0.0/19", "path": [6939, 20115], "asn": 20115}
{"organization": "JAB Wireless, INC.", "name": "RISE-BROADBAND - JAB Wireless, INC.,US", "id": "RISE-BROADBAND", "country_code": "US", "local_pref": 110, "bgp_prefix": "72.26.131.0/24", "path": [6939, 36049, 17306], "asn": 17306}
{"organization": "NCIC-TW New Century InfoComm Tech Co., Ltd.", "name": "NCIC-TW New Century InfoComm Tech Co., Ltd.,TW", "id": null, "country_code": "TW", "local_pref": 110, "bgp_prefix": "218.211.128.0/17", "path": [2914, 4780, 9919], "asn": 9919}
{"organization": "The Center Informatica Ltda", "name": "The Center Informatica Ltda,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "177.128.152.0/23", "path": [7018, 1299, 16735, 53199], "asn": 53199}
{"organization": "The Center Informatica Ltda", "name": "The Center Informatica Ltda,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "177.128.152.0/22", "path": [7018, 1299, 16735, 53199], "asn": 53199}
{"organization": "AET-AS AzEuroTel J.V.", "name": "AET-AS AzEuroTel J.V.,AZ", "id": null, "country_code": "AZ", "local_pref": 110, "bgp_prefix": "213.172.64.0/20", "path": [6939, 12389, 29049, 13099], "asn": 13099}
{"organization": "BT LATAM Venezuela, S.A.", "name": "BT LATAM Venezuela, S.A.,VE", "id": null, "country_code": "VE", "local_pref": 100, "bgp_prefix": "200.89.0.0/24", "path": [7018, 3356, 7908], "asn": 7908}
{"organization": "Orange County Department of Education", "name": "OCDE - Orange County Department of Education,US", "id": "OCDE", "country_code": "US", "local_pref": 100, "bgp_prefix": "104.249.88.0/24", "path": [7018, 3356, 3356, 2152, 2152, 2152, 23024], "asn": 23024}
{"organization": "BKBNET-AU BKB Internet Pty Ltd", "name": "BKBNET-AU BKB Internet Pty Ltd,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "27.116.37.0/24", "path": [6939, 4826, 55581, 55581, 55581], "asn": 55581}
{"organization": "The Center Informatica Ltda", "name": "The Center Informatica Ltda,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "177.128.152.0/24", "path": [7018, 1299, 16735, 28245, 53199], "asn": 53199}
{"organization": "KIXS-AS-KR Korea Telecom", "name": "KIXS-AS-KR Korea Telecom,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "59.31.144.0/24", "path": [6939, 4766], "asn": 4766}
{"organization": "VIETEL-AS-AP Viettel Corporation", "name": "VIETEL-AS-AP Viettel Corporation,VN", "id": null, "country_code": "VN", "local_pref": 110, "bgp_prefix": "27.73.128.0/20", "path": [2914, 7552], "asn": 7552}
{"organization": "GERAIS ON LINE INFORMATICA LTDA - ME", "name": "GERAIS ON LINE INFORMATICA LTDA - ME,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "191.37.190.0/24", "path": [7018, 6762, 26615, 23456, 61904], "asn": 61904}
{"organization": "SinglePipe Communications, Inc.", "name": "MOMENTUM - SinglePipe Communications, Inc.,US", "id": "MOMENTUM", "country_code": "US", "local_pref": 110, "bgp_prefix": "209.55.27.0/24", "path": [11164, 4323, 10397], "asn": 10397}
{"organization": "GRID Grid Bilisim Teknolojileri A.S.", "name": "GRID Grid Bilisim Teknolojileri A.S.,TR", "id": null, "country_code": "TR", "local_pref": 110, "bgp_prefix": "31.6.89.0/24", "path": [2914, 9121, 9121, 39582], "asn": 39582}
{"organization": "Jack Henry & Associates, Inc.", "name": "JACKHENRY-4 - Jack Henry & Associates, Inc.,US", "id": "JACKHENRY-4", "country_code": "US", "local_pref": 100, "bgp_prefix": "216.116.91.0/24", "path": [7018, 209, 30652], "asn": 30652}
{"organization": "BHARTI-MOBILITY-AS-AP Bharti Airtel Ltd. AS for GPRS Service", "name": "BHARTI-MOBILITY-AS-AP Bharti Airtel Ltd. AS for GPRS Service,IN", "id": null, "country_code": "IN", "local_pref": 110, "bgp_prefix": "106.220.116.0/22", "path": [2914, 9498, 45609], "asn": 45609}
{"organization": "FAST-TELCO Fast Telecommunications Company W.L.L.", "name": "FAST-TELCO Fast Telecommunications Company W.L.L.,KW", "id": null, "country_code": "KW", "local_pref": 110, "bgp_prefix": "178.61.47.0/24", "path": [3257, 48237, 48237, 43852, 21050], "asn": 21050}
{"organization": "OBERON-ASN Oberon Plus LLC", "name": "OBERON-ASN Oberon Plus LLC,RU", "id": null, "country_code": "RU", "local_pref": 110, "bgp_prefix": "78.140.41.0/24", "path": [6939, 12389, 34573], "asn": 34573}
{"organization": "NOVAYA-ROSSIYA-AS Mobile TeleSystems Public Joint Stock Company", "name": "NOVAYA-ROSSIYA-AS Mobile TeleSystems Public Joint Stock Company,RU", "id": null, "country_code": "RU", "local_pref": 100, "bgp_prefix": "109.196.207.0/24", "path": [7018, 3356, 8359, 50397], "asn": 50397}
{"organization": "Halstad Telephone Company", "name": "RRV-NET - Halstad Telephone Company,US", "id": "RRV-NET", "country_code": "US", "local_pref": 110, "bgp_prefix": "204.73.192.0/21", "path": [6939, 25615, 21730], "asn": 21730}
{"organization": "OST-SPE OpenSource Training Ralf Spenneberg", "name": "OST-SPE OpenSource Training Ralf Spenneberg,DE", "id": null, "country_code": "DE", "local_pref": 100, "bgp_prefix": "91.213.36.0/24", "path": [7018, 174, 42184, 49552], "asn": 49552}
{"organization": "Northeast Texas Consortium (NETnet)", "name": "NETNET-CET - Northeast Texas Consortium (NETnet),US", "id": "NETNET-CET", "country_code": "US", "local_pref": 110, "bgp_prefix": "68.69.56.0/24", "path": [6939, 22645, 26954], "asn": 26954}
{"organization": "EURO-WEB-AS SAS CTS Computers and Telecommunications Systems", "name": "EURO-WEB-AS SAS CTS Computers and Telecommunications Systems,FR", "id": null, "country_code": "FR", "local_pref": 110, "bgp_prefix": "188.130.0.0/17", "path": [3257, 35393], "asn": 35393}
{"organization": "PINGCO-AS-AP PingCo Pty Ltd", "name": "PINGCO-AS-AP PingCo Pty Ltd,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "203.17.59.0/24", "path": [6939, 4826, 58530, 58530, 58530, 58530, 58530], "asn": 58530}
{"organization": "EZIT-AS EZIT Kft.", "name": "EZIT-AS EZIT Kft.,HU", "id": null, "country_code": "HU", "local_pref": 100, "bgp_prefix": "95.140.35.0/24", "path": [7018, 174, 62292], "asn": 62292}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "49.228.152.0/22", "path": [2914, 45430, 45430, 45430, 23456], "asn": 23456}
{"organization": "HEXA-AS HEXA OPERATOR SP. Z O.O.", "name": "HEXA-AS HEXA OPERATOR SP. Z O.O.,PL", "id": null, "country_code": "PL", "local_pref": 110, "bgp_prefix": "185.10.24.0/24", "path": [3257, 12741, 61171], "asn": 61171}
{"organization": "PS5 Internet", "name": "PS5 Internet,BR", "id": null, "country_code": "BR", "local_pref": 110, "bgp_prefix": "189.50.80.0/23", "path": [11164, 3549, 28327], "asn": 28327}
{"organization": "KNCTV-AS Kangnam Cable TV", "name": "KNCTV-AS Kangnam Cable TV,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "14.138.0.0/18", "path": [6939, 4766, 9957, 10036, 9943], "asn": 9943}
{"organization": "PS5 Internet", "name": "PS5 Internet,BR", "id": null, "country_code": "BR", "local_pref": 110, "bgp_prefix": "189.50.80.0/21", "path": [11164, 3549, 28327], "asn": 28327}
{"organization": "MTS MTS PJSC", "name": "MTS MTS PJSC,RU", "id": null, "country_code": "RU", "local_pref": 100, "bgp_prefix": "89.175.0.0/16", "path": [7018, 3356, 8359], "asn": 8359}
{"organization": "OGERONET LIBANTELECOM", "name": "OGERONET LIBANTELECOM,LB", "id": null, "country_code": "LB", "local_pref": 100, "bgp_prefix": "94.187.120.0/21", "path": [7018, 174, 42020, 42003], "asn": 42003}
{"organization": "Fidelity Communication International Inc.", "name": "FIDN - Fidelity Communication International Inc.,US", "id": "FIDN", "country_code": "US", "local_pref": 110, "bgp_prefix": "64.251.148.0/22", "path": [6939, 11976, 11976, 11976, 11976, 11976, 11976, 11976], "asn": 11976}
{"organization": "Earthlink, Inc.", "name": "ITCDELTA - Earthlink, Inc.,US", "id": "ITCDELTA", "country_code": "US", "local_pref": 100, "bgp_prefix": "63.131.0.0/17", "path": [7018, 2828, 6983], "asn": 6983}
{"organization": "Charter Communications", "name": "CHARTER-NET-HKY-NC - Charter Communications,US", "id": "CHARTER-NET-HKY-NC", "country_code": "US", "local_pref": 110, "bgp_prefix": "68.186.144.0/21", "path": [6939, 20115], "asn": 20115}
{"organization": "JWA Japan Weather Association", "name": "JWA Japan Weather Association,JP", "id": null, "country_code": "JP", "local_pref": 110, "bgp_prefix": "133.105.0.0/17", "path": [6939, 4725, 17944], "asn": 17944}
{"organization": "JWA Japan Weather Association", "name": "JWA Japan Weather Association,JP", "id": null, "country_code": "JP", "local_pref": 110, "bgp_prefix": "133.105.0.0/16", "path": [6939, 4725, 17944], "asn": 17944}
{"organization": "RAROM-AS Registrul Auto Roman RA", "name": "RAROM-AS Registrul Auto Roman RA,RO", "id": null, "country_code": "RO", "local_pref": 110, "bgp_prefix": "194.50.44.0/24", "path": [2914, 9050, 9050, 9050, 9050, 39516], "asn": 39516}
{"organization": "VOCUS-BACKBONE-AS Vocus Connect International Backbone", "name": "VOCUS-BACKBONE-AS Vocus Connect International Backbone,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "175.45.109.0/24", "path": [6939, 4826], "asn": 4826}
{"organization": "AUSTOCKEXCHANGE-AU AUSTRALIAN STOCK EXCHANGE LIMITED", "name": "AUSTOCKEXCHANGE-AU AUSTRALIAN STOCK EXCHANGE LIMITED,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "203.15.144.0/23", "path": [11164, 7473, 7474, 10223, 18361, 18361, 18361, 18361], "asn": 18361}
{"organization": "Cox Communications Inc.", "name": "ASN-CXA-ALL-CCI-22773-RDC - Cox Communications Inc.,US", "id": "ASN-CXA-ALL-CCI-22773-RDC", "country_code": "US", "local_pref": 110, "bgp_prefix": "68.105.32.0/20", "path": [6939, 22773], "asn": 22773}
{"organization": "NCIC-TW New Century InfoComm Tech Co., Ltd.", "name": "NCIC-TW New Century InfoComm Tech Co., Ltd.,TW", "id": null, "country_code": "TW", "local_pref": 110, "bgp_prefix": "123.51.128.0/17", "path": [2914, 4780, 9919], "asn": 9919}
{"organization": "ER-TELECOM-AS CJSC ER-Telecom Holding", "name": "ER-TELECOM-AS CJSC ER-Telecom Holding,RU", "id": null, "country_code": "RU", "local_pref": 110, "bgp_prefix": "46.146.204.0/22", "path": [2914, 9002, 9049, 12768], "asn": 12768}
{"organization": "Ernst & Young LLP", "name": "EY-AS-SG - Ernst & Young LLP,US", "id": "EY-AS-SG", "country_code": "US", "local_pref": 110, "bgp_prefix": "199.49.14.0/24", "path": [2914, 4657, 4657, 40810], "asn": 40810}
{"organization": "Fire2Wire", "name": "F2W-AS - Fire2Wire,US", "id": "F2W-AS", "country_code": "US", "local_pref": 110, "bgp_prefix": "66.42.64.0/24", "path": [6939, 11191], "asn": 11191}
{"organization": "ITG Canada Corp.", "name": "ITG-CANADA - ITG Canada Corp.,CA", "id": "ITG-CANADA", "country_code": "CA", "local_pref": 110, "bgp_prefix": "45.40.19.0/24", "path": [15290, 63411], "asn": 63411}
{"organization": "PLUSLINE Plus.Line AG", "name": "PLUSLINE Plus.Line AG,DE", "id": null, "country_code": "DE", "local_pref": 110, "bgp_prefix": "193.99.144.0/24", "path": [2914, 12306], "asn": 12306}
{"organization": "Telemar Norte Leste S.A.", "name": "Telemar Norte Leste S.A.,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "189.24.0.0/18", "path": [7018, 701, 7738], "asn": 7738}
{"organization": "ColdRack, Inc", "name": "COLDRACK - ColdRack, Inc,US", "id": "COLDRACK", "country_code": "US", "local_pref": 110, "bgp_prefix": "64.209.56.0/21", "path": [6939, 25643], "asn": 25643}
{"organization": "BBIL-AP BHARTI Airtel Ltd.", "name": "BBIL-AP BHARTI Airtel Ltd.,IN", "id": null, "country_code": "IN", "local_pref": 110, "bgp_prefix": "182.72.208.0/24", "path": [2914, 9498], "asn": 9498}
{"organization": "NCIC-TW New Century InfoComm Tech Co., Ltd.", "name": "NCIC-TW New Century InfoComm Tech Co., Ltd.,TW", "id": null, "country_code": "TW", "local_pref": 110, "bgp_prefix": "123.51.128.0/18", "path": [2914, 4780, 9919], "asn": 9919}
{"organization": "SONICDUO-AS PJSC MegaFon", "name": "SONICDUO-AS PJSC MegaFon,RU", "id": null, "country_code": "RU", "local_pref": 100, "bgp_prefix": "83.222.216.0/21", "path": [7018, 1299, 31133, 25159], "asn": 25159}
{"organization": "FairPoint Communications", "name": "TACONIC - FairPoint Communications,US", "id": "TACONIC", "country_code": "US", "local_pref": 100, "bgp_prefix": "74.209.26.0/23", "path": [7018, 174, 14671], "asn": 14671}
{"organization": "AICHYNA-AS Additional Liability Company Aichyna Plus", "name": "AICHYNA-AS Additional Liability Company Aichyna Plus,BY", "id": null, "country_code": "BY", "local_pref": 110, "bgp_prefix": "93.125.18.0/24", "path": [6939, 12389, 60280, 60330, 21236], "asn": 21236}
{"organization": "Web Werks", "name": "WEBWERKSAS1 - Web Werks,US", "id": "WEBWERKSAS1", "country_code": "US", "local_pref": 110, "bgp_prefix": "103.251.27.0/24", "path": [11164, 3491, 55410, 33480], "asn": 33480}
{"organization": "8x8, Inc.", "name": "8X8-AS - 8x8, Inc.,US", "id": "8X8-AS", "country_code": "US", "local_pref": 110, "bgp_prefix": "162.221.239.0/24", "path": [2914, 10913, 10913, 10913, 10913, 10913, 10913, 32308, 32308, 32308, 32308, 32308, 32308], "asn": 32308}
{"organization": "VTR BANDA ANCHA S.A.", "name": "VTR BANDA ANCHA S.A.,CL", "id": null, "country_code": "CL", "local_pref": 100, "bgp_prefix": "200.83.151.0/24", "path": [7018, 12956, 22047], "asn": 22047}
{"organization": "UNITED STATES CELLULAR TELEPHONE COMPANY (GREATER KNOXVILLE), L.P.", "name": "USCC-ASN - UNITED STATES CELLULAR TELEPHONE COMPANY (GREATER KNOXVILLE), L.P.,US", "id": "USCC-ASN", "country_code": "US", "local_pref": 100, "bgp_prefix": "166.232.192.0/19", "path": [7018, 6614], "asn": 6614}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "177.66.184.0/24", "path": [7018, 6762, 26615, 14840, 23456], "asn": 23456}
{"organization": "Netelligent Hosting Services Inc.", "name": "NETELLIGENT - Netelligent Hosting Services Inc.,CA", "id": "NETELLIGENT", "country_code": "CA", "local_pref": 110, "bgp_prefix": "205.151.108.0/22", "path": [3257, 10929], "asn": 10929}
{"organization": "INDOSATM2-ID INDOSATM2 ASN", "name": "INDOSATM2-ID INDOSATM2 ASN,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "202.155.110.0/23", "path": [2914, 4795], "asn": 4795}
{"organization": "TELKOMNET-AS2-AP PT Telekomunikasi Indonesia", "name": "TELKOMNET-AS2-AP PT Telekomunikasi Indonesia,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "36.68.4.0/22", "path": [2914, 7713, 17974], "asn": 17974}
{"organization": "NCS Technologies", "name": "KWIC-AS - NCS Technologies,CA", "id": "KWIC-AS", "country_code": "CA", "local_pref": 100, "bgp_prefix": "174.140.176.0/24", "path": [7018, 577, 33007], "asn": 33007}
{"organization": "SATATANET-ID Jl. Raya Pasar Minggu no 99D", "name": "SATATANET-ID Jl. Raya Pasar Minggu no 99D,ID", "id": null, "country_code": "ID", "local_pref": 100, "bgp_prefix": "202.149.80.0/21", "path": [7018, 1299, 18351, 17826], "asn": 17826}
{"organization": "CORBINA-AS OJSC Vimpelcom", "name": "CORBINA-AS OJSC Vimpelcom,RU", "id": null, "country_code": "RU", "local_pref": 100, "bgp_prefix": "128.73.173.0/24", "path": [7018, 3356, 3216, 3216, 3216, 8402], "asn": 8402}
{"organization": "ELAVON", "name": "ELAVON - ELAVON,US", "id": "ELAVON", "country_code": "US", "local_pref": 100, "bgp_prefix": "216.235.177.0/24", "path": [7018, 701, 11609], "asn": 11609}
{"organization": "Facebook, Inc.", "name": "FACEBOOK - Facebook, Inc.,US", "id": "FACEBOOK", "country_code": "US", "local_pref": 110, "bgp_prefix": "179.60.192.0/24", "path": [2914, 32934], "asn": 32934}
{"organization": "PRISM-AS Intellicenter", "name": "PRISM-AS Intellicenter,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "61.106.7.0/24", "path": [11164, 3786, 10160], "asn": 10160}
{"organization": "QUASAR DATA CENTER, LTD.", "name": "QUASAR-DATA-CENTER - QUASAR DATA CENTER, LTD.,US", "id": "QUASAR-DATA-CENTER", "country_code": "US", "local_pref": 110, "bgp_prefix": "204.2.220.0/24", "path": [2914, 46785], "asn": 46785}
{"organization": "INTERNEX-AS-AP InterNex Australia Pty Ltd", "name": "INTERNEX-AS-AP InterNex Australia Pty Ltd,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "203.122.173.0/24", "path": [6939, 7545, 2764, 38333, 38333, 38333, 38333, 7579], "asn": 7579}
{"organization": "E-money", "name": "E-money,CL", "id": null, "country_code": "CL", "local_pref": 100, "bgp_prefix": "200.3.214.0/24", "path": [7018, 12956, 7004, 17126], "asn": 17126}
{"organization": "CHINANET-BACKBONE No.31,Jin-rong Street", "name": "CHINANET-BACKBONE No.31,Jin-rong Street,CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "218.95.224.0/19", "path": [7018, 4134], "asn": 4134}
{"organization": "EARTHLINK-AS EarthLink Ltd. Communications&Internet Services", "name": "EARTHLINK-AS EarthLink Ltd. Communications&Internet Services,IQ", "id": null, "country_code": "IQ", "local_pref": 100, "bgp_prefix": "149.255.248.0/21", "path": [7018, 3356, 20771, 44217, 50710], "asn": 50710}
{"organization": "NESEBAR-LAN-AS Vision 2008 Ltd.", "name": "NESEBAR-LAN-AS Vision 2008 Ltd.,BG", "id": null, "country_code": "BG", "local_pref": 110, "bgp_prefix": "84.54.191.0/24", "path": [6939, 12615, 29084, 29084, 59463], "asn": 59463}
{"organization": "ZSN Shanghai Chenyi Network Technology Co.,Ltd", "name": "ZSN Shanghai Chenyi Network Technology Co.,Ltd,CN", "id": null, "country_code": "CN", "local_pref": 110, "bgp_prefix": "103.43.133.0/24", "path": [6939, 23456, 56001], "asn": 56001}
{"organization": "ALJAWWALSTC-AS Saudi Telecom Company JSC", "name": "ALJAWWALSTC-AS Saudi Telecom Company JSC,SA", "id": null, "country_code": "SA", "local_pref": 100, "bgp_prefix": "93.168.195.0/24", "path": [7018, 174, 39386, 25019, 39891], "asn": 39891}
{"organization": "SVYAZ-AS SpetsSvyaz Ltd", "name": "SVYAZ-AS SpetsSvyaz Ltd,RU", "id": null, "country_code": "RU", "local_pref": 100, "bgp_prefix": "91.230.65.0/24", "path": [7018, 3356, 20485, 39792, 57045], "asn": 57045}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "177.12.202.0/24", "path": [7018, 6762, 26615, 61848, 23456], "asn": 23456}
{"organization": "Cellco Partnership DBA Verizon Wireless", "name": "CELLCO - Cellco Partnership DBA Verizon Wireless,US", "id": "CELLCO", "country_code": "US", "local_pref": 100, "bgp_prefix": "70.220.192.0/18", "path": [7018, 3356, 6167, 22394, 22394, 22394], "asn": 22394}
{"organization": "SATCOM-TROYAN-NET Skynet Ltd", "name": "SATCOM-TROYAN-NET Skynet Ltd,BG", "id": null, "country_code": "BG", "local_pref": 110, "bgp_prefix": "46.35.180.0/24", "path": [2914, 41313, 29582, 58079], "asn": 58079}
{"organization": "Sharktech", "name": "ST-BGP - Sharktech,US", "id": "ST-BGP", "country_code": "US", "local_pref": 110, "bgp_prefix": "170.178.171.0/24", "path": [3257, 46844], "asn": 46844}
{"organization": "SUPERONLAYN-AS SUPERONLAYN LTD", "name": "SUPERONLAYN-AS SUPERONLAYN LTD,AZ", "id": null, "country_code": "AZ", "local_pref": 110, "bgp_prefix": "5.134.57.0/24", "path": [2914, 29049, 39232, 57304], "asn": 57304}
{"organization": "Alascom, Inc.", "name": "ALASCOM-IP-MANAGED-NETWORK - Alascom, Inc.,US", "id": "ALASCOM-IP-MANAGED-NETWORK", "country_code": "US", "local_pref": 100, "bgp_prefix": "216.198.123.0/24", "path": [7018, 32328], "asn": 32328}
{"organization": "IDSC", "name": "IDSC,EG", "id": null, "country_code": "EG", "local_pref": 100, "bgp_prefix": "163.121.100.0/24", "path": [7018, 6762, 8452, 6127], "asn": 6127}
{"organization": "SPEEDY-NET-AS Speedy net AD", "name": "SPEEDY-NET-AS Speedy net AD,BG", "id": null, "country_code": "BG", "local_pref": 110, "bgp_prefix": "78.159.147.0/24", "path": [3257, 8262, 42081], "asn": 42081}
{"organization": "ASODERLAND ODERLAND Webbhotell AB", "name": "ASODERLAND ODERLAND Webbhotell AB,SE", "id": null, "country_code": "SE", "local_pref": 100, "bgp_prefix": "46.16.232.0/21", "path": [7018, 1299, 12552, 44136], "asn": 44136}
{"organization": "EMC Corporation", "name": "EMC-AS12257 - EMC Corporation,US", "id": "EMC-AS12257", "country_code": "US", "local_pref": 100, "bgp_prefix": "137.69.213.0/24", "path": [7018, 701, 12257], "asn": 12257}
{"organization": "TELIANET-SWEDEN TeliaSonera AB", "name": "TELIANET-SWEDEN TeliaSonera AB,SE", "id": null, "country_code": "SE", "local_pref": 100, "bgp_prefix": "193.180.241.0/24", "path": [7018, 1299, 3301], "asn": 3301}
{"organization": "Twin Rivers Valley Internet Services, Inc.", "name": "TRVNET - Twin Rivers Valley Internet Services, Inc.,US", "id": "TRVNET", "country_code": "US", "local_pref": 110, "bgp_prefix": "64.71.68.0/22", "path": [6939, 26652, 14814], "asn": 14814}
{"organization": "TDC TDC A/S", "name": "TDC TDC A/S,DK", "id": null, "country_code": "DK", "local_pref": 100, "bgp_prefix": "83.88.0.0/13", "path": [7018, 1239, 3292], "asn": 3292}
{"organization": "Charter Communications", "name": "CHARTER-NET-HKY-NC - Charter Communications,US", "id": "CHARTER-NET-HKY-NC", "country_code": "US", "local_pref": 110, "bgp_prefix": "192.236.16.0/21", "path": [6939, 20115], "asn": 20115}
{"organization": "CZUBYPL-NET Nette sp. z o.o. Autonomous System", "name": "CZUBYPL-NET Nette sp. z o.o. Autonomous System,PL", "id": null, "country_code": "PL", "local_pref": 110, "bgp_prefix": "46.21.216.0/21", "path": [11164, 9002, 39288, 39288, 39288], "asn": 39288}
{"organization": "SOFTNET-AS-AP Software Technology Parks of India - Bangalore", "name": "SOFTNET-AS-AP Software Technology Parks of India - Bangalore,IN", "id": null, "country_code": "IN", "local_pref": 110, "bgp_prefix": "203.129.248.0/22", "path": [3257, 9498, 7633], "asn": 7633}
{"organization": "BankUnited NA", "name": "BANKUNITED - BankUnited NA,US", "id": "BANKUNITED", "country_code": "US", "local_pref": 110, "bgp_prefix": "65.14.76.0/24", "path": [3257, 33132, 22276, 22276], "asn": 22276}
{"organization": "Dialnet de Colombia S.A. E.S.P.", "name": "Dialnet de Colombia S.A. E.S.P.,CO", "id": null, "country_code": "CO", "local_pref": 110, "bgp_prefix": "190.90.195.0/24", "path": [11164, 3491, 18678, 27837], "asn": 27837}
{"organization": "Florida Department of Management Services - Technology Program", "name": "STATE-OF-FLA - Florida Department of Management Services - Technology Program,US", "id": "STATE-OF-FLA", "country_code": "US", "local_pref": 100, "bgp_prefix": "205.176.73.0/24", "path": [7018, 10774, 8103], "asn": 8103}
{"organization": "DNC-AS IM Data Network Communication SRL", "name": "DNC-AS IM Data Network Communication SRL,MD", "id": null, "country_code": "MD", "local_pref": 110, "bgp_prefix": "93.115.48.0/22", "path": [3257, 6663, 6663, 6663, 6663, 6663, 6663, 6663, 31546, 61059, 41053], "asn": 41053}
{"organization": "Charter Communications", "name": "CHARTER-NET-HKY-NC - Charter Communications,US", "id": "CHARTER-NET-HKY-NC", "country_code": "US", "local_pref": 110, "bgp_prefix": "24.176.80.0/20", "path": [6939, 20115], "asn": 20115}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "103.60.111.0/24", "path": [7018, 3491, 23456], "asn": 23456}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "46.16.56.0/21", "path": [2914, 15699, 23456], "asn": 23456}
{"organization": "SMARTLINKNET-AS-ID PT. Smartlink Global Media.", "name": "SMARTLINKNET-AS-ID PT. Smartlink Global Media.,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "114.141.63.0/24", "path": [2914, 23947, 38772], "asn": 38772}
{"organization": "DTAG Deutsche Telekom AG", "name": "DTAG Deutsche Telekom AG,DE", "id": null, "country_code": "DE", "local_pref": 100, "bgp_prefix": "87.254.210.0/23", "path": [7018, 3320], "asn": 3320}
{"organization": "UNI2-AS France Telecom Espana SA", "name": "UNI2-AS France Telecom Espana SA,ES", "id": null, "country_code": "ES", "local_pref": 100, "bgp_prefix": "90.168.0.0/21", "path": [7018, 3356, 12479], "asn": 12479}
{"organization": "NORTECH", "name": "NORTECH,AR", "id": null, "country_code": "AR", "local_pref": 110, "bgp_prefix": "181.225.199.0/24", "path": [3257, 18747, 18747, 18747, 18747, 18747, 18747, 52251], "asn": 52251}
{"organization": "DOMINION ENTERPRISES", "name": "DOMIN-AS - DOMINION ENTERPRISES,US", "id": "DOMIN-AS", "country_code": "US", "local_pref": 100, "bgp_prefix": "64.78.132.0/24", "path": [7018, 22588], "asn": 22588}
{"organization": "TDN Tikona Digital Networks Pvt Ltd.", "name": "TDN Tikona Digital Networks Pvt Ltd.,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "1.23.65.0/24", "path": [7018, 6453, 4755, 45528], "asn": 45528}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "202.174.168.0/24", "path": [7018, 3356, 4648, 23655, 23456], "asn": 23456}
{"organization": "OPTIC", "name": "OPTIC,CL", "id": null, "country_code": "CL", "local_pref": 100, "bgp_prefix": "138.185.12.0/22", "path": [7018, 12956, 7004, 52439], "asn": 52439}
{"organization": "HITRON-AS-AP HITRON TECHNOLOGY INC.", "name": "HITRON-AS-AP HITRON TECHNOLOGY INC.,TW", "id": null, "country_code": "TW", "local_pref": 110, "bgp_prefix": "203.79.235.0/24", "path": [11164, 3491, 17709, 9311], "asn": 9311}
{"organization": "sixtelecoms-as", "name": "sixtelecoms-as,TZ", "id": null, "country_code": "TZ", "local_pref": 110, "bgp_prefix": "41.77.224.0/21", "path": [2914, 37100, 37149], "asn": 37149}
{"organization": "HKNET-VIPNET NTT Com Asia Limited", "name": "HKNET-VIPNET NTT Com Asia Limited,HK", "id": null, "country_code": "HK", "local_pref": 110, "bgp_prefix": "218.213.163.0/24", "path": [3257, 9293, 9293, 9293], "asn": 9293}
{"organization": "European Space Agency c/o Christoph Kroell Darmstadt, D-64293", "name": "European Space Agency c/o Christoph Kroell Darmstadt, D-64293,DE", "id": null, "country_code": "DE", "local_pref": 110, "bgp_prefix": "131.176.144.0/24", "path": [3257, 12874, 288], "asn": 288}
{"organization": "GOEGY-AS-KR Goyang Office of Education", "name": "GOEGY-AS-KR Goyang Office of Education,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "14.53.100.0/24", "path": [2914, 9318, 38390], "asn": 38390}
{"organization": "SPRINT, Business Serices Group", "name": "SPRINTLINK-HOSTING - SPRINT, Business Serices Group,US", "id": "SPRINTLINK-HOSTING", "country_code": "US", "local_pref": 100, "bgp_prefix": "208.18.24.0/21", "path": [7018, 1239, 6157], "asn": 6157}
{"organization": "EVRY-NO EVRY AS", "name": "EVRY-NO EVRY AS,NO", "id": null, "country_code": "NO", "local_pref": 100, "bgp_prefix": "139.112.0.0/13", "path": [7018, 3356, 2119, 5619], "asn": 5619}
{"organization": "HYROADPUSAN-AS-KR PUSAN CABLE TV SYSTEM CO., LTD.", "name": "HYROADPUSAN-AS-KR PUSAN CABLE TV SYSTEM CO., LTD.,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "203.227.224.0/23", "path": [6939, 4766, 7562, 23584], "asn": 23584}
{"organization": "ABAKS-AS ADAM DLUGOSZ ABAKS", "name": "ABAKS-AS ADAM DLUGOSZ ABAKS,PL", "id": null, "country_code": "PL", "local_pref": 110, "bgp_prefix": "195.74.91.0/24", "path": [3257, 12741, 12741, 12741, 41297, 41297, 41297, 41297], "asn": 41297}
{"organization": "Quality Technology Services Santa Clara, LLC", "name": "QTS-SJC-1 - Quality Technology Services Santa Clara, LLC,US", "id": "QTS-SJC-1", "country_code": "US", "local_pref": 110, "bgp_prefix": "205.234.24.0/21", "path": [2914, 40913], "asn": 40913}
{"organization": "YABESK-AS-KR YABESK", "name": "YABESK-AS-KR YABESK,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "119.196.179.0/24", "path": [6939, 4766, 46009], "asn": 46009}
{"organization": "EXTERNET-AS Externet Nyrt", "name": "EXTERNET-AS Externet Nyrt,HU", "id": null, "country_code": "HU", "local_pref": 110, "bgp_prefix": "217.173.42.0/24", "path": [2914, 9002, 12594, 12594, 12594, 12594], "asn": 12594}
{"organization": "INAR-VOLOGDA-AS PJSC MegaFon", "name": "INAR-VOLOGDA-AS PJSC MegaFon,RU", "id": null, "country_code": "RU", "local_pref": 100, "bgp_prefix": "213.154.189.0/24", "path": [7018, 1299, 31133, 20632, 20663], "asn": 20663}
{"organization": "Instituto Costarricense de Electricidad y Telecom.", "name": "Instituto Costarricense de Electricidad y Telecom.,CR", "id": null, "country_code": "CR", "local_pref": 100, "bgp_prefix": "201.202.120.0/23", "path": [7018, 1239, 11830], "asn": 11830}
{"organization": "Instituto Costarricense de Electricidad y Telecom.", "name": "Instituto Costarricense de Electricidad y Telecom.,CR", "id": null, "country_code": "CR", "local_pref": 100, "bgp_prefix": "201.202.120.0/22", "path": [7018, 1239, 11830], "asn": 11830}
{"organization": "ASN-ICCNET International Computer Company, Ltd.", "name": "ASN-ICCNET International Computer Company, Ltd.,SA", "id": null, "country_code": "SA", "local_pref": 100, "bgp_prefix": "77.232.117.0/24", "path": [7018, 3356, 39386, 25438], "asn": 25438}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "103.243.53.0/24", "path": [7018, 1299, 9498, 23456], "asn": 23456}
{"organization": "Fisher Communications", "name": "FISHERCOMM - Fisher Communications,US", "id": "FISHERCOMM", "country_code": "US", "local_pref": 110, "bgp_prefix": "208.73.28.0/22", "path": [2914, 21519], "asn": 21519}
{"organization": "SINET-AS Research Organization of Information and Systems, National Institute of Informatics", "name": "SINET-AS Research Organization of Information and Systems, National Institute of Informatics,JP", "id": null, "country_code": "JP", "local_pref": 110, "bgp_prefix": "202.250.238.0/23", "path": [6939, 4725, 4725, 4725, 4725, 2907], "asn": 2907}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "81.163.96.0/23", "path": [7018, 1299, 31133, 23456], "asn": 23456}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "81.163.96.0/20", "path": [7018, 3356, 20485, 23456], "asn": 23456}
{"organization": "Intelletrace", "name": "INTELLETRACE - Intelletrace,US", "id": "INTELLETRACE", "country_code": "US", "local_pref": 110, "bgp_prefix": "216.211.161.0/24", "path": [6939, 22667, 22667, 22667, 22667, 22667, 32504, 32504, 32504], "asn": 32504}
{"organization": "PKTELECOM-AS-PK Pakistan Telecom Company Limited", "name": "PKTELECOM-AS-PK Pakistan Telecom Company Limited,PK", "id": null, "country_code": "PK", "local_pref": 100, "bgp_prefix": "182.179.64.0/18", "path": [7018, 174, 17557, 45595], "asn": 45595}
{"organization": "BINUS Bina Nusantara University", "name": "BINUS Bina Nusantara University,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "202.58.183.0/24", "path": [2914, 7713, 24526, 24526], "asn": 24526}
{"organization": "GRT-AS Railway Telecom, Ltd", "name": "GRT-AS Railway Telecom, Ltd,GE", "id": null, "country_code": "GE", "local_pref": 100, "bgp_prefix": "80.92.176.0/20", "path": [7018, 3356, 41877], "asn": 41877}
{"organization": "Nobis Technology Group, LLC", "name": "NOBIS-TECH - Nobis Technology Group, LLC,US", "id": "NOBIS-TECH", "country_code": "US", "local_pref": 110, "bgp_prefix": "69.174.60.0/22", "path": [3257, 15003], "asn": 15003}
{"organization": "Telefonica del Sur S.A.", "name": "Telefonica del Sur S.A.,CL", "id": null, "country_code": "CL", "local_pref": 100, "bgp_prefix": "181.226.52.0/22", "path": [7018, 6762, 14259, 14117], "asn": 14117}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "177.44.220.0/23", "path": [7018, 3549, 11835, 23456], "asn": 23456}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "177.44.220.0/22", "path": [11164, 3549, 14868, 23456], "asn": 23456}
{"organization": "DIVINETWORKS DiViNetworks LTD.", "name": "DIVINETWORKS DiViNetworks LTD.,IL", "id": null, "country_code": "IL", "local_pref": 110, "bgp_prefix": "37.61.224.0/24", "path": [2914, 57731], "asn": 57731}
{"organization": "SADECEHOSTING-COM Hosting Internet Hizmetleri Sanayi ve Ticaret Anonim Sirketi", "name": "SADECEHOSTING-COM Hosting Internet Hizmetleri Sanayi ve Ticaret Anonim Sirketi,TR", "id": null, "country_code": "TR", "local_pref": 100, "bgp_prefix": "77.92.138.0/24", "path": [7018, 1299, 9121, 9121, 42910], "asn": 42910}
{"organization": "SKYNET-CY-AS MTN Cyprus Limited", "name": "SKYNET-CY-AS MTN Cyprus Limited,CY", "id": null, "country_code": "CY", "local_pref": 110, "bgp_prefix": "213.207.128.0/18", "path": [3257, 15805], "asn": 15805}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "177.44.220.0/24", "path": [7018, 3549, 14868, 23456], "asn": 23456}
{"organization": "Ver Tv S.A.", "name": "Ver Tv S.A.,AR", "id": null, "country_code": "AR", "local_pref": 100, "bgp_prefix": "190.105.122.0/24", "path": [7018, 3549, 27984, 27984], "asn": 27984}
{"organization": "Charter Communications", "name": "CHARTER-NET-HKY-NC - Charter Communications,US", "id": "CHARTER-NET-HKY-NC", "country_code": "US", "local_pref": 110, "bgp_prefix": "71.86.232.0/21", "path": [6939, 20115], "asn": 20115}
{"organization": "BEAMTELE-AS-AP Beam Telecom Pvt Ltd", "name": "BEAMTELE-AS-AP Beam Telecom Pvt Ltd,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "49.206.128.0/19", "path": [7018, 6453, 4755, 18209, 18209, 18209, 18209, 18209, 18209, 55577], "asn": 55577}
{"organization": "BANGLALION-WIMAX-BD Banglalion Communications Ltd", "name": "BANGLALION-WIMAX-BD Banglalion Communications Ltd,BD", "id": null, "country_code": "BD", "local_pref": 110, "bgp_prefix": "58.97.146.0/24", "path": [2914, 23456, 23456, 23456, 23456, 23456, 58672, 45904], "asn": 45904}
{"organization": "DWL-AS-IN Dishnet Wireless Limited. Broadband Wireless", "name": "DWL-AS-IN Dishnet Wireless Limited. Broadband Wireless,IN", "id": null, "country_code": "IN", "local_pref": 110, "bgp_prefix": "27.251.247.0/24", "path": [3257, 9498, 10201], "asn": 10201}
{"organization": "UPH-AS-ID Universitas Pelita Harapan", "name": "UPH-AS-ID Universitas Pelita Harapan,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "122.200.11.0/24", "path": [3257, 7632, 9905, 38153], "asn": 38153}
{"organization": "Batelco", "name": "Batelco,BH", "id": null, "country_code": "BH", "local_pref": 110, "bgp_prefix": "88.201.39.0/24", "path": [2914, 5416], "asn": 5416}
{"organization": "Cogent Communications", "name": "COGENT-174 - Cogent Communications,US", "id": "COGENT-174", "country_code": "US", "local_pref": 100, "bgp_prefix": "38.118.158.0/24", "path": [7018, 174], "asn": 174}
{"organization": "Alchemy Communications, Inc.", "name": "ALCHEMYNET - Alchemy Communications, Inc.,US", "id": "ALCHEMYNET", "country_code": "US", "local_pref": 110, "bgp_prefix": "38.118.158.0/23", "path": [2914, 2914, 2914, 7296], "asn": 7296}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "177.13.40.0/22", "path": [7018, 6762, 26615, 23456], "asn": 23456}
{"organization": "GARANT Garant ISP", "name": "GARANT Garant ISP,BY", "id": null, "country_code": "BY", "local_pref": 110, "bgp_prefix": "178.172.248.0/24", "path": [6939, 12389, 60280, 60330, 12406, 50334], "asn": 50334}
{"organization": "Maryland Department of Transportation", "name": "MDDOT - Maryland Department of Transportation,US", "id": "MDDOT", "country_code": "US", "local_pref": 100, "bgp_prefix": "170.93.0.0/16", "path": [7018, 3356, 27026, 15196], "asn": 15196}
{"organization": "GTP-AS-KR Gyeonggi Technopark", "name": "GTP-AS-KR Gyeonggi Technopark,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "110.93.29.0/24", "path": [6939, 4766, 17845], "asn": 17845}
{"organization": "TPG-INTERNET-AP TPG Telecom Limited", "name": "TPG-INTERNET-AP TPG Telecom Limited,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "123.243.3.0/24", "path": [6939, 7545, 7545, 7545, 7545], "asn": 7545}
{"organization": "James Cable, LLC", "name": "JCP - James Cable, LLC,US", "id": "JCP", "country_code": "US", "local_pref": 100, "bgp_prefix": "24.143.25.0/24", "path": [7018, 209, 13368, 13368, 13368, 13368], "asn": 13368}
{"organization": "MICRONET Micronet LTD", "name": "MICRONET Micronet LTD,GE", "id": null, "country_code": "GE", "local_pref": 100, "bgp_prefix": "5.187.13.0/24", "path": [7018, 1299, 51167, 57768], "asn": 57768}
{"organization": "ENTEL CHILE S.A.", "name": "ENTEL CHILE S.A.,CL", "id": null, "country_code": "CL", "local_pref": 100, "bgp_prefix": "200.111.169.0/24", "path": [7018, 6762, 27986, 6471], "asn": 6471}
{"organization": "ACCENTUREFSSC Accenture UK Limited", "name": "ACCENTUREFSSC Accenture UK Limited,GB", "id": null, "country_code": "GB", "local_pref": 100, "bgp_prefix": "170.248.168.0/23", "path": [7018, 1299, 9498, 21433], "asn": 21433}
{"organization": "ACCENTUREFSSC Accenture UK Limited", "name": "ACCENTUREFSSC Accenture UK Limited,GB", "id": null, "country_code": "GB", "local_pref": 100, "bgp_prefix": "170.248.168.0/24", "path": [7018, 1299, 9498, 21433], "asn": 21433}
{"organization": "Frontier Communications of America, Inc.", "name": "FRONTIER-FRTR - Frontier Communications of America, Inc.,US", "id": "FRONTIER-FRTR", "country_code": "US", "local_pref": 100, "bgp_prefix": "216.227.34.0/24", "path": [7018, 5650], "asn": 5650}
{"organization": "UQ-COMMERCIAL-AP The University of Queensland", "name": "UQ-COMMERCIAL-AP The University of Queensland,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "192.150.139.0/24", "path": [6939, 7545, 2764, 7475, 7475], "asn": 7475}
{"organization": "Navy Network Information Center (NNIC)", "name": "DNIC-AS-00768 - Navy Network Information Center (NNIC),US", "id": "DNIC-AS-00768", "country_code": "US", "local_pref": 100, "bgp_prefix": "143.69.2.0/24", "path": [7018, 209, 6022, 768], "asn": 768}
{"organization": "EMOME-TW Long Distance & Mobile Business Group", "name": "EMOME-TW Long Distance & Mobile Business Group,TW", "id": null, "country_code": "TW", "local_pref": 100, "bgp_prefix": "111.71.193.0/24", "path": [7018, 9680, 3462, 17421], "asn": 17421}
{"organization": "DDITS-AS DuoDecad IT Services Luxembourg S.a r.l.", "name": "DDITS-AS DuoDecad IT Services Luxembourg S.a r.l.,LU", "id": null, "country_code": "LU", "local_pref": 110, "bgp_prefix": "185.13.88.0/24", "path": [2914, 34655, 50144], "asn": 50144}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "191.5.48.0/22", "path": [7018, 3549, 14868, 23456], "asn": 23456}
{"organization": "EXTRALAN-TW Extra-Lan Technologies Co., LTD", "name": "EXTRALAN-TW Extra-Lan Technologies Co., LTD,TW", "id": null, "country_code": "TW", "local_pref": 110, "bgp_prefix": "123.50.55.0/24", "path": [11164, 3491, 4780, 18429], "asn": 18429}
{"organization": "tw telecom holdings, inc.", "name": "TWTC - tw telecom holdings, inc.,US", "id": "TWTC", "country_code": "US", "local_pref": 100, "bgp_prefix": "64.128.0.0/20", "path": [7018, 3356, 4323], "asn": 4323}
{"organization": "Mid Pacific Communications, Inc.", "name": "MPC - Mid Pacific Communications, Inc.,US", "id": "MPC", "country_code": "US", "local_pref": 100, "bgp_prefix": "64.128.0.0/24", "path": [7018, 3356, 4323, 40838], "asn": 40838}
{"organization": "SKYBB-AS-AP SKYBroadband SKYCable Corporation", "name": "SKYBB-AS-AP SKYBroadband SKYCable Corporation,PH", "id": null, "country_code": "PH", "local_pref": 99, "bgp_prefix": "111.68.50.0/24", "path": [6939, 23944], "asn": 23944}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "138.0.173.0/24", "path": [2914, 28329, 28250, 23456], "asn": 23456}
{"organization": "TDN Tikona Digital Networks Pvt Ltd.", "name": "TDN Tikona Digital Networks Pvt Ltd.,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "1.22.204.0/24", "path": [7018, 6453, 4755, 45528], "asn": 45528}
{"organization": "CORE NTT", "name": "CORE NTT,JP", "id": null, "country_code": "JP", "local_pref": 110, "bgp_prefix": "163.138.128.0/19", "path": [2914, 2518, 173, 173, 2511], "asn": 2511}
{"organization": "STMICROELECTRONICS-AS STMicroelectronics International NV", "name": "STMICROELECTRONICS-AS STMicroelectronics International NV,FR", "id": null, "country_code": "FR", "local_pref": 100, "bgp_prefix": "164.129.1.0/24", "path": [7018, 5511, 6853, 51964, 41020, 41020], "asn": 41020}
{"organization": "TDN Tikona Digital Networks Pvt Ltd.", "name": "TDN Tikona Digital Networks Pvt Ltd.,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "1.22.204.0/23", "path": [7018, 6453, 4755, 45528], "asn": 45528}
{"organization": "Cable and Wireless, Turks and Caicos", "name": "TCIGATEWAY - Cable and Wireless, Turks and Caicos,TC", "id": "TCIGATEWAY", "country_code": "TC", "local_pref": 100, "bgp_prefix": "204.13.106.0/24", "path": [7018, 174, 23456, 22933], "asn": 22933}
{"organization": "INVITEL Invitel Tavkozlesi Zrt.", "name": "INVITEL Invitel Tavkozlesi Zrt.,HU", "id": null, "country_code": "HU", "local_pref": 100, "bgp_prefix": "91.147.192.0/21", "path": [7018, 174, 12301], "asn": 12301}
{"organization": "ETISALAT-MISR", "name": "ETISALAT-MISR,EG", "id": null, "country_code": "EG", "local_pref": 100, "bgp_prefix": "41.152.128.0/17", "path": [7018, 174, 8452, 36992, 36992, 36992, 36992, 36992, 36992], "asn": 36992}
{"organization": "Winn Telecom", "name": "WINNTELECOM - Winn Telecom,US", "id": "WINNTELECOM", "country_code": "US", "local_pref": 110, "bgp_prefix": "216.111.204.0/22", "path": [6939, 17143], "asn": 17143}
{"organization": "INTERNODE-AS Internode Pty Ltd", "name": "INTERNODE-AS Internode Pty Ltd,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "203.18.130.0/24", "path": [11164, 4739], "asn": 4739}
{"organization": "ETISALAT-MISR", "name": "ETISALAT-MISR,EG", "id": null, "country_code": "EG", "local_pref": 100, "bgp_prefix": "41.152.128.0/19", "path": [7018, 6453, 36992], "asn": 36992}
{"organization": "LIONLINK NETWORKS", "name": "LIONLINK-NETWORKS - LIONLINK NETWORKS,US", "id": "LIONLINK-NETWORKS", "country_code": "US", "local_pref": 110, "bgp_prefix": "199.83.96.0/22", "path": [6939, 54098, 54098], "asn": 54098}
{"organization": "QUANTUM Quantum CJSC", "name": "QUANTUM Quantum CJSC,RU", "id": null, "country_code": "RU", "local_pref": 110, "bgp_prefix": "77.235.202.0/24", "path": [6939, 12389, 29071, 12418], "asn": 12418}
{"organization": "TDN Tikona Digital Networks Pvt Ltd.", "name": "TDN Tikona Digital Networks Pvt Ltd.,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "1.22.47.0/24", "path": [7018, 6453, 4755, 45528], "asn": 45528}
{"organization": "KOMTELEKOM-AS Metropolitan Telecommunications Company Komtelekom LLC", "name": "KOMTELEKOM-AS Metropolitan Telecommunications Company Komtelekom LLC,RU", "id": null, "country_code": "RU", "local_pref": 110, "bgp_prefix": "91.237.189.0/24", "path": [6939, 12389, 59687], "asn": 59687}
{"organization": "MTNNS-AS", "name": "MTNNS-AS,ZA", "id": null, "country_code": "ZA", "local_pref": 100, "bgp_prefix": "167.229.212.0/24", "path": [7018, 174, 16637], "asn": 16637}
{"organization": "Neotel-AS", "name": "Neotel-AS,ZA", "id": null, "country_code": "ZA", "local_pref": 100, "bgp_prefix": "41.160.212.0/22", "path": [7018, 6453, 36937], "asn": 36937}
{"organization": "Cable & Wireless Dominica", "name": "CWDOM - Cable & Wireless Dominica,DM", "id": "CWDOM", "country_code": "DM", "local_pref": 110, "bgp_prefix": "192.64.123.0/24", "path": [2914, 23520, 23456, 11139], "asn": 11139}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "177.152.204.0/22", "path": [2914, 36351, 23456], "asn": 23456}
{"organization": "NET-CRYSTONE-STHLM Crystone AB", "name": "NET-CRYSTONE-STHLM Crystone AB,SE", "id": null, "country_code": "SE", "local_pref": 100, "bgp_prefix": "193.181.242.0/24", "path": [7018, 3356, 2119, 35041], "asn": 35041}
{"organization": "CNNIC-TENCENT-NET-AP Shenzhen Tencent Computer Systems Company Limited", "name": "CNNIC-TENCENT-NET-AP Shenzhen Tencent Computer Systems Company Limited,CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "182.254.22.0/24", "path": [7018, 4134, 4812, 4811, 45090, 45090], "asn": 45090}
{"organization": "ROUTELINK-AS-ID Internet Service Provider", "name": "ROUTELINK-AS-ID Internet Service Provider,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "203.190.115.0/24", "path": [2914, 7713, 38506, 38506, 38506, 38156], "asn": 38156}
{"organization": "PAVUTYNA-AS Pavutina.Net Ltd", "name": "PAVUTYNA-AS Pavutina.Net Ltd,UA", "id": null, "country_code": "UA", "local_pref": 100, "bgp_prefix": "195.69.76.0/22", "path": [7018, 174, 3252, 29107, 57422], "asn": 57422}
{"organization": "Fiberax Networking&Cloud LTD", "name": "Fiberax Networking&Cloud LTD,GB", "id": null, "country_code": "GB", "local_pref": 100, "bgp_prefix": "185.112.40.0/22", "path": [7018, 174, 3252, 31445], "asn": 31445}
{"organization": "BEHDASHT-IT Ministry Of Health and Medical Education", "name": "BEHDASHT-IT Ministry Of Health and Medical Education,IR", "id": null, "country_code": "IR", "local_pref": 110, "bgp_prefix": "212.95.152.0/21", "path": [2914, 9498, 8529, 12880, 60562], "asn": 60562}
{"organization": "AS3215 Orange S.A.", "name": "AS3215 Orange S.A.,FR", "id": null, "country_code": "FR", "local_pref": 100, "bgp_prefix": "90.63.128.0/17", "path": [7018, 5511, 3215], "asn": 3215}
{"organization": "City of San Jose", "name": "CSJ-INTERNET - City of San Jose,US", "id": "CSJ-INTERNET", "country_code": "US", "local_pref": 110, "bgp_prefix": "156.39.5.0/24", "path": [6939, 21589], "asn": 21589}
{"organization": "SPECTRUMNET MOBILTEL EAD", "name": "SPECTRUMNET MOBILTEL EAD,BG", "id": null, "country_code": "BG", "local_pref": 99, "bgp_prefix": "212.91.184.0/24", "path": [6939, 8717], "asn": 8717}
{"organization": "Abastecedora de Conectividad, S.A. de C.V.", "name": "Abastecedora de Conectividad, S.A. de C.V.,MX", "id": null, "country_code": "MX", "local_pref": 100, "bgp_prefix": "201.158.1.0/24", "path": [7018, 3549, 28438, 28514], "asn": 28514}
{"organization": "BYTERA Bytera Telekomunikasyon Bilisim ve Iletisim Teknolojileri San. Tic. Ltd. Sti.", "name": "BYTERA Bytera Telekomunikasyon Bilisim ve Iletisim Teknolojileri San. Tic. Ltd. Sti.,TR", "id": null, "country_code": "TR", "local_pref": 100, "bgp_prefix": "185.108.126.0/23", "path": [7018, 6453, 34984, 24692], "asn": 24692}
{"organization": "NETSTANDARD INC", "name": "NSINOC-KC1 - NETSTANDARD INC,US", "id": "NSINOC-KC1", "country_code": "US", "local_pref": 100, "bgp_prefix": "139.146.139.0/24", "path": [7018, 21591], "asn": 21591}
{"organization": "UNI2-AS France Telecom Espana SA", "name": "UNI2-AS France Telecom Espana SA,ES", "id": null, "country_code": "ES", "local_pref": 100, "bgp_prefix": "90.163.232.0/21", "path": [7018, 3356, 12479], "asn": 12479}
{"organization": "Frontier Communications of America, Inc.", "name": "FRONTIER-AND-CITIZENS - Frontier Communications of America, Inc.,US", "id": "FRONTIER-AND-CITIZENS", "country_code": "US", "local_pref": 100, "bgp_prefix": "74.45.207.0/24", "path": [7018, 5650, 7011], "asn": 7011}
{"organization": "Open Mobile", "name": "OPEN-MOBILE-PUERTO-RICO - Open Mobile,US", "id": "OPEN-MOBILE-PUERTO-RICO", "country_code": "US", "local_pref": 110, "bgp_prefix": "23.18.192.0/20", "path": [3257, 23520, 25877], "asn": 25877}
{"organization": "AKAMAI-ASN1 Akamai International B.V.", "name": "AKAMAI-ASN1 Akamai International B.V.,US", "id": null, "country_code": "US", "local_pref": 100, "bgp_prefix": "184.51.58.0/23", "path": [7018, 4466, 20940, 20940], "asn": 20940}
{"organization": "TOWERCOM-SK-AS Towercom A.S.", "name": "TOWERCOM-SK-AS Towercom A.S.,SK", "id": null, "country_code": "SK", "local_pref": 100, "bgp_prefix": "185.14.116.0/22", "path": [7018, 3356, 5588, 5578, 48473], "asn": 48473}
{"organization": "NTL Virgin Media Limited", "name": "NTL Virgin Media Limited,GB", "id": null, "country_code": "GB", "local_pref": 110, "bgp_prefix": "213.81.0.0/17", "path": [3257, 5089], "asn": 5089}
{"organization": "Nobis Technology Group, LLC", "name": "NOBIS-TECH - Nobis Technology Group, LLC,US", "id": "NOBIS-TECH", "country_code": "US", "local_pref": 110, "bgp_prefix": "108.62.247.0/24", "path": [3257, 15003], "asn": 15003}
{"organization": "Reseau d'informations scientifiques du Quebec (RISQ)", "name": "RISQ-AS - Reseau d'informations scientifiques du Quebec (RISQ),CA", "id": "RISQ-AS", "country_code": "CA", "local_pref": 110, "bgp_prefix": "206.167.76.0/23", "path": [3257, 376], "asn": 376}
{"organization": "Iowa Network Services", "name": "INS-NET-2 - Iowa Network Services,US", "id": "INS-NET-2", "country_code": "US", "local_pref": 110, "bgp_prefix": "192.171.208.0/20", "path": [6939, 5056], "asn": 5056}
{"organization": "C&S WHOLESALE GROCERS INC.", "name": "FLEMING - C&S WHOLESALE GROCERS INC.,US", "id": "FLEMING", "country_code": "US", "local_pref": 110, "bgp_prefix": "198.185.96.0/24", "path": [7922, 7016, 14437], "asn": 14437}
{"organization": "TATACOMM-AS TATA Communications formerly VSNL is Leading ISP", "name": "TATACOMM-AS TATA Communications formerly VSNL is Leading ISP,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "59.160.209.0/24", "path": [7018, 6453, 4755], "asn": 4755}
{"organization": "California Education and Research Federation Network", "name": "CERNET-ASN-BLOCK - California Education and Research Federation Network,US", "id": "CERNET-ASN-BLOCK", "country_code": "US", "local_pref": 100, "bgp_prefix": "216.148.208.0/20", "path": [7018, 4265], "asn": 4265}
{"organization": "COMIMSA", "name": "COMIMSA,MX", "id": null, "country_code": "MX", "local_pref": 110, "bgp_prefix": "200.23.101.0/24", "path": [2914, 8151, 7408], "asn": 7408}
{"organization": "BITEK-AS-ID PT. Bit Technology Nusantara", "name": "BITEK-AS-ID PT. Bit Technology Nusantara,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "114.110.23.0/24", "path": [11164, 7473, 18059, 38769], "asn": 38769}
{"organization": "F J Management Inc.", "name": "FLYINGJ - F J Management Inc.,US", "id": "FLYINGJ", "country_code": "US", "local_pref": 100, "bgp_prefix": "204.110.236.0/24", "path": [7018, 2828, 19477], "asn": 19477}
{"organization": "MTS Allstream Inc.", "name": "MTS-ASN - MTS Allstream Inc.,CA", "id": "MTS-ASN", "country_code": "CA", "local_pref": 110, "bgp_prefix": "198.163.9.0/24", "path": [15290, 7122], "asn": 7122}
{"organization": "NetCracker Technology, Corporation", "name": "NETCRACKER - NetCracker Technology, Corporation,US", "id": "NETCRACKER", "country_code": "US", "local_pref": 100, "bgp_prefix": "162.255.140.0/24", "path": [7018, 3356, 30023, 26716], "asn": 26716}
{"organization": "WVVA.net Inc.", "name": "WVVANET - WVVA.net Inc.,US", "id": "WVVANET", "country_code": "US", "local_pref": 110, "bgp_prefix": "76.9.234.0/24", "path": [2914, 19108, 40091], "asn": 40091}
{"organization": "Baylor University", "name": "BAYLORU - Baylor University,US", "id": "BAYLORU", "country_code": "US", "local_pref": 119, "bgp_prefix": "129.62.80.0/20", "path": [11537, 14085, 30674], "asn": 30674}
{"organization": "Robert Half International", "name": "ROBERT-H - Robert Half International,US", "id": "ROBERT-H", "country_code": "US", "local_pref": 110, "bgp_prefix": "204.75.123.0/24", "path": [7922, 33667, 26245], "asn": 26245}
{"organization": "RELIANCE-COMMUNICATIONS-IN Reliance Communications Ltd.DAKC MUMBAI", "name": "RELIANCE-COMMUNICATIONS-IN Reliance Communications Ltd.DAKC MUMBAI,IN", "id": null, "country_code": "IN", "local_pref": 110, "bgp_prefix": "115.248.0.0/22", "path": [11164, 15412, 18101], "asn": 18101}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "37.123.248.0/21", "path": [7018, 174, 23456], "asn": 23456}
{"organization": "SoftLayer Technologies Inc.", "name": "SOFTLAYER - SoftLayer Technologies Inc.,US", "id": "SOFTLAYER", "country_code": "US", "local_pref": 110, "bgp_prefix": "206.190.157.0/24", "path": [2914, 36351], "asn": 36351}
{"organization": "HYROADPUSAN-AS-KR PUSAN CABLE TV SYSTEM CO., LTD.", "name": "HYROADPUSAN-AS-KR PUSAN CABLE TV SYSTEM CO., LTD.,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "61.109.158.0/24", "path": [6939, 4766, 7562, 23584], "asn": 23584}
{"organization": "QTLTELECOM-AS-AP Quadrant Televentures Limited", "name": "QTLTELECOM-AS-AP Quadrant Televentures Limited,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "112.196.32.0/21", "path": [7018, 6453, 4755, 17917], "asn": 17917}
{"organization": "QTLTELECOM-AS-AP Quadrant Televentures Limited", "name": "QTLTELECOM-AS-AP Quadrant Televentures Limited,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "112.196.32.0/20", "path": [7018, 1299, 9498, 17917], "asn": 17917}
{"organization": "TE-AS TE-AS", "name": "TE-AS TE-AS,EG", "id": null, "country_code": "EG", "local_pref": 100, "bgp_prefix": "197.33.96.0/19", "path": [7018, 6762, 8452], "asn": 8452}
{"organization": "AAPT AAPT Limited", "name": "AAPT AAPT Limited,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "203.111.134.0/23", "path": [6939, 7545, 2764], "asn": 2764}
{"organization": "ROUTERGATE DGN TEKNOLOJI BILISIM YAYINCILIK SANAYI VE LIMITED SIRKETI", "name": "ROUTERGATE DGN TEKNOLOJI BILISIM YAYINCILIK SANAYI VE LIMITED SIRKETI,TR", "id": null, "country_code": "TR", "local_pref": 100, "bgp_prefix": "185.46.52.0/24", "path": [7018, 1299, 9121, 9121, 43260], "asn": 43260}
{"organization": "LDN-AS-PK LINKdotNET Telecom Limited", "name": "LDN-AS-PK LINKdotNET Telecom Limited,PK", "id": null, "country_code": "PK", "local_pref": 100, "bgp_prefix": "210.2.186.0/24", "path": [7018, 174, 38193, 58470, 23966], "asn": 23966}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "177.75.81.0/24", "path": [2914, 2914, 2914, 28303, 23456], "asn": 23456}
{"organization": "Limelight Networks, Inc.", "name": "LLNW - Limelight Networks, Inc.,US", "id": "LLNW", "country_code": "US", "local_pref": 110, "bgp_prefix": "207.218.166.0/24", "path": [22822], "asn": 22822}
{"organization": "TekSavvy Solutions, Inc.", "name": "TEKSAVVY - TekSavvy Solutions, Inc.,CA", "id": "TEKSAVVY", "country_code": "CA", "local_pref": 110, "bgp_prefix": "108.175.224.0/20", "path": [6939, 5645], "asn": 5645}
{"organization": "Telecel S.A.", "name": "Telecel S.A.,PY", "id": null, "country_code": "PY", "local_pref": 100, "bgp_prefix": "186.17.160.0/20", "path": [7018, 12956, 23201], "asn": 23201}
{"organization": "LINKdotNET-AS", "name": "LINKdotNET-AS,EG", "id": null, "country_code": "EG", "local_pref": 100, "bgp_prefix": "82.201.242.0/23", "path": [7018, 3356, 24863], "asn": 24863}
{"organization": "FPT-AS-AP The Corporation for Financing & Promoting Technology", "name": "FPT-AS-AP The Corporation for Financing & Promoting Technology,VN", "id": null, "country_code": "VN", "local_pref": 100, "bgp_prefix": "42.116.30.0/24", "path": [7018, 6453, 18403], "asn": 18403}
{"organization": "NYNEX NYNEX satellite OHG", "name": "NYNEX NYNEX satellite OHG,DE", "id": null, "country_code": "DE", "local_pref": 110, "bgp_prefix": "217.26.255.0/24", "path": [3257, 48039, 62023], "asn": 62023}
{"organization": "PESAT1-AS-AP PT. Pasifik Satelit Nusantara", "name": "PESAT1-AS-AP PT. Pasifik Satelit Nusantara,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "202.95.136.0/24", "path": [2914, 38154, 38154, 9875], "asn": 9875}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "185.49.233.0/24", "path": [7018, 1299, 23456], "asn": 23456}
{"organization": "Universidad Verecruzana", "name": "Universidad Verecruzana,MX", "id": null, "country_code": "MX", "local_pref": 110, "bgp_prefix": "148.226.143.0/24", "path": [11164, 3491, 18734, 17072, 7184], "asn": 7184}
{"organization": "NETSEC-HK Unit 1205-1207", "name": "NETSEC-HK Unit 1205-1207,HK", "id": null, "country_code": "HK", "local_pref": 110, "bgp_prefix": "112.121.189.0/24", "path": [11164, 10026, 45753, 45753, 45753, 45753, 45753, 45753, 45753], "asn": 45753}
{"organization": "IDK-NETWORK JSCC Interdnestrcom", "name": "IDK-NETWORK JSCC Interdnestrcom,MD", "id": null, "country_code": "MD", "local_pref": 100, "bgp_prefix": "217.19.222.0/24", "path": [7018, 1299, 1547], "asn": 1547}
{"organization": "TELIANET-SWEDEN TeliaSonera AB", "name": "TELIANET-SWEDEN TeliaSonera AB,SE", "id": null, "country_code": "SE", "local_pref": 100, "bgp_prefix": "194.132.128.0/24", "path": [7018, 1299, 3301], "asn": 3301}
{"organization": "TELIANET-SWEDEN TeliaSonera AB", "name": "TELIANET-SWEDEN TeliaSonera AB,SE", "id": null, "country_code": "SE", "local_pref": 100, "bgp_prefix": "194.132.128.0/22", "path": [7018, 1299, 3301], "asn": 3301}
{"organization": "Logix", "name": "LOGIXCOMM-AS - Logix,US", "id": "LOGIXCOMM-AS", "country_code": "US", "local_pref": 100, "bgp_prefix": "216.201.230.0/23", "path": [7018, 3356, 3356, 11215], "asn": 11215}
{"organization": "AT&T Services, Inc.", "name": "ATT-IPFR - AT&T Services, Inc.,US", "id": "ATT-IPFR", "country_code": "US", "local_pref": 100, "bgp_prefix": "192.151.46.0/24", "path": [7018, 71, 13979], "asn": 13979}
{"organization": "Fidelity Communication International Inc.", "name": "FIDN - Fidelity Communication International Inc.,US", "id": "FIDN", "country_code": "US", "local_pref": 110, "bgp_prefix": "24.35.228.0/22", "path": [6939, 11976, 11976, 11976, 11976, 11976, 11976, 11976], "asn": 11976}
{"organization": "Internap Network Services Corporation", "name": "AS-INAPCDN-OCY - Internap Network Services Corporation,US", "id": "AS-INAPCDN-OCY", "country_code": "US", "local_pref": 110, "bgp_prefix": "95.172.90.0/23", "path": [2914, 30282, 30282], "asn": 30282}
{"organization": "ERTH-NCHLN-AS CJSC ER-Telecom Holding", "name": "ERTH-NCHLN-AS CJSC ER-Telecom Holding,RU", "id": null, "country_code": "RU", "local_pref": 110, "bgp_prefix": "95.78.20.0/22", "path": [2914, 9002, 9049, 42116], "asn": 42116}
{"organization": "OPTICNET OPTICNET - SERV S.R.L.", "name": "OPTICNET OPTICNET - SERV S.R.L.,RO", "id": null, "country_code": "RO", "local_pref": 110, "bgp_prefix": "37.148.78.0/24", "path": [2914, 5541, 34714], "asn": 34714}
{"organization": "Tim Celular S.A.", "name": "Tim Celular S.A.,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "177.122.0.0/19", "path": [7018, 6762, 26615], "asn": 26615}
{"organization": "SUNHK-DATA-AS-AP Sun Network (Hong Kong) Limited", "name": "SUNHK-DATA-AS-AP Sun Network (Hong Kong) Limited,HK", "id": null, "country_code": "HK", "local_pref": 110, "bgp_prefix": "45.116.213.0/24", "path": [2914, 4809, 38197], "asn": 38197}
{"organization": "DELTALIS Deltalis SA", "name": "DELTALIS Deltalis SA,CH", "id": null, "country_code": "CH", "local_pref": 110, "bgp_prefix": "176.126.80.0/23", "path": [6830, 61144], "asn": 61144}
{"organization": "Regence Blue Cross Blue Shield of Oregon", "name": "CAMBIAHEALTH - Regence Blue Cross Blue Shield of Oregon,US", "id": "CAMBIAHEALTH", "country_code": "US", "local_pref": 110, "bgp_prefix": "161.208.25.0/24", "path": [11164, 7385, 23496], "asn": 23496}
{"organization": "TA Toos-Ashena Co. Ltd.", "name": "TA Toos-Ashena Co. Ltd.,IR", "id": null, "country_code": "IR", "local_pref": 100, "bgp_prefix": "188.253.127.0/24", "path": [7018, 1299, 12880, 41881, 51411], "asn": 51411}
{"organization": "NexG", "name": "NEXG-NOC - NexG,US", "id": "NEXG-NOC", "country_code": "US", "local_pref": 100, "bgp_prefix": "208.72.216.0/21", "path": [7018, 174, 16848], "asn": 16848}
{"organization": "Telmex Colombia S.A.", "name": "Telmex Colombia S.A.,CO", "id": null, "country_code": "CO", "local_pref": 110, "bgp_prefix": "186.81.204.0/22", "path": [2914, 14080, 10620], "asn": 10620}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "69.162.55.0/24", "path": [22822, 22911, 16667], "asn": 16667}
{"organization": "Tim Celular S.A.", "name": "Tim Celular S.A.,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "177.122.0.0/15", "path": [7018, 6762, 26615, 26615, 26615], "asn": 26615}
{"organization": "MOST-AS-AP Information Center, Ministry of Sci and Tech", "name": "MOST-AS-AP Information Center, Ministry of Sci and Tech,CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "168.160.92.0/23", "path": [7018, 4837, 4808, 38027], "asn": 38027}
{"organization": "Atlantic.net, Inc.", "name": "ATLANTIC-NET - Atlantic.net, Inc.,US", "id": "ATLANTIC-NET", "country_code": "US", "local_pref": 100, "bgp_prefix": "104.245.38.0/23", "path": [7018, 174, 6364], "asn": 6364}
{"organization": "GOEYI-AS-KR Yongin office of education", "name": "GOEYI-AS-KR Yongin office of education,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "1.238.12.0/24", "path": [2914, 9318, 38411], "asn": 38411}
{"organization": "CORPORACION NACIONAL DE TELECOMUNICACIONES - CNT EP", "name": "CORPORACION NACIONAL DE TELECOMUNICACIONES - CNT EP,EC", "id": null, "country_code": "EC", "local_pref": 110, "bgp_prefix": "181.211.8.0/21", "path": [2914, 23520, 27757, 27757, 27757, 27757, 27757, 27757, 27757, 27757, 27757, 27757, 27757, 14420], "asn": 14420}
{"organization": "YTLCOMMS-AS-AP YTL COMMUNICATIONS SDN BHD", "name": "YTLCOMMS-AS-AP YTL COMMUNICATIONS SDN BHD,MY", "id": null, "country_code": "MY", "local_pref": 110, "bgp_prefix": "183.78.0.0/18", "path": [2914, 45960], "asn": 45960}
{"organization": "Ver Tv S.A.", "name": "Ver Tv S.A.,AR", "id": null, "country_code": "AR", "local_pref": 100, "bgp_prefix": "190.105.89.0/24", "path": [7018, 12956, 22927, 27984, 27984, 27984], "asn": 27984}
{"organization": "YTLCOMMS-AS-AP YTL COMMUNICATIONS SDN BHD", "name": "YTLCOMMS-AS-AP YTL COMMUNICATIONS SDN BHD,MY", "id": null, "country_code": "MY", "local_pref": 110, "bgp_prefix": "183.78.0.0/17", "path": [2914, 45960], "asn": 45960}
{"organization": "Host Virtual, Inc", "name": "VR-HOSTED - Host Virtual, Inc,US", "id": "VR-HOSTED", "country_code": "US", "local_pref": 110, "bgp_prefix": "148.163.223.0/24", "path": [2914, 36236], "asn": 36236}
{"organization": "TEHILA-AS Government of Israel", "name": "TEHILA-AS Government of Israel,IL", "id": null, "country_code": "IL", "local_pref": 110, "bgp_prefix": "147.237.5.0/24", "path": [3257, 8551, 8867, 8867], "asn": 8867}
{"organization": "ANTRATSIT-UA-NET PP SKS-ANTRASIT", "name": "ANTRATSIT-UA-NET PP SKS-ANTRASIT,UA", "id": null, "country_code": "UA", "local_pref": 110, "bgp_prefix": "192.166.128.0/22", "path": [11164, 9002, 39728, 50106], "asn": 50106}
{"organization": "Valor Economico S.A. - SO PAULO", "name": "Valor Economico S.A. - SO PAULO,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "186.208.169.0/24", "path": [7018, 174, 7162, 18479, 53151], "asn": 53151}
{"organization": "EVERGY-AS TELLAS Telecommunication Services S.A.", "name": "EVERGY-AS TELLAS Telecommunication Services S.A.,GR", "id": null, "country_code": "GR", "local_pref": 100, "bgp_prefix": "176.58.248.0/22", "path": [7018, 3491, 25472, 25472], "asn": 25472}
{"organization": "IZHEVSK-AS CJSC ER-Telecom Holding", "name": "IZHEVSK-AS CJSC ER-Telecom Holding,RU", "id": null, "country_code": "RU", "local_pref": 110, "bgp_prefix": "94.181.104.0/22", "path": [2914, 9002, 9002, 9049, 34590], "asn": 34590}
{"organization": "Horry Telephone Cooperative, Inc.", "name": "AS21565 - Horry Telephone Cooperative, Inc.,US", "id": "AS21565", "country_code": "US", "local_pref": 110, "bgp_prefix": "66.153.235.0/24", "path": [6939, 2711, 21565], "asn": 21565}
{"organization": "TPG-INTERNET-AP TPG Telecom Limited", "name": "TPG-INTERNET-AP TPG Telecom Limited,AU", "id": null, "country_code": "AU", "local_pref": 100, "bgp_prefix": "14.201.16.0/24", "path": [7018, 174, 7545, 7545, 7545, 7545], "asn": 7545}
{"organization": "ThoughtWave Technologies LLC", "name": "THOUGHTWAVE - ThoughtWave Technologies LLC,US", "id": "THOUGHTWAVE", "country_code": "US", "local_pref": 110, "bgp_prefix": "199.188.96.0/22", "path": [6939, 17139, 54380], "asn": 54380}
{"organization": "LORAL-SKYNET-ASN Loral Skynet Network Services (Europe) Ltd", "name": "LORAL-SKYNET-ASN Loral Skynet Network Services (Europe) Ltd,DE", "id": null, "country_code": "DE", "local_pref": 110, "bgp_prefix": "217.68.206.0/24", "path": [3257, 8447, 16212], "asn": 16212}
{"organization": "MCI", "name": "MCI-ASN - MCI,US", "id": "MCI-ASN", "country_code": "US", "local_pref": 100, "bgp_prefix": "166.47.160.0/20", "path": [7018, 701, 3378, 3372], "asn": 3372}
{"organization": "NetAccess Systems Inc", "name": "NETACCESS-SYSTEMS - NetAccess Systems Inc,CA", "id": "NETACCESS-SYSTEMS", "country_code": "CA", "local_pref": 100, "bgp_prefix": "199.243.225.0/24", "path": [7018, 577, 25946], "asn": 25946}
{"organization": "Binghamton University", "name": "BINGHAMTON-U - Binghamton University,US", "id": "BINGHAMTON-U", "country_code": "US", "local_pref": 100, "bgp_prefix": "149.125.84.0/22", "path": [7018, 3356, 4323, 4190], "asn": 4190}
{"organization": "Telefonica del Peru S.A.A.", "name": "Telefonica del Peru S.A.A.,PE", "id": null, "country_code": "PE", "local_pref": 100, "bgp_prefix": "200.48.32.0/19", "path": [7018, 12956, 6147], "asn": 6147}
{"organization": "Telemar Norte Leste S.A.", "name": "Telemar Norte Leste S.A.,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "186.240.160.0/19", "path": [7018, 701, 7738], "asn": 7738}
{"organization": "Columbus Communications Trinidad Limited.", "name": "Columbus Communications Trinidad Limited.,TT", "id": null, "country_code": "TT", "local_pref": 100, "bgp_prefix": "190.213.64.0/20", "path": [7018, 701, 23520, 27665], "asn": 27665}
{"organization": "UKRTELNET JSC UKRTELECOM", "name": "UKRTELNET JSC UKRTELECOM,UA", "id": null, "country_code": "UA", "local_pref": 100, "bgp_prefix": "37.55.72.0/21", "path": [7018, 3356, 6849], "asn": 6849}
{"organization": "FPT-AS-AP The Corporation for Financing & Promoting Technology", "name": "FPT-AS-AP The Corporation for Financing & Promoting Technology,VN", "id": null, "country_code": "VN", "local_pref": 100, "bgp_prefix": "113.22.29.0/24", "path": [7018, 6453, 18403], "asn": 18403}
{"organization": "MULTINET-AFG-AS MULTINET", "name": "MULTINET-AFG-AS MULTINET,AF", "id": null, "country_code": "AF", "local_pref": 100, "bgp_prefix": "202.86.25.0/24", "path": [7018, 6762, 38193, 55330, 24244], "asn": 24244}
{"organization": "POBOX2-AS Veber Limited", "name": "POBOX2-AS Veber Limited,GB", "id": null, "country_code": "GB", "local_pref": 110, "bgp_prefix": "5.45.16.0/23", "path": [2914, 29006, 59705], "asn": 59705}
{"organization": "BANKINFORM-AS CONTENT DELIVERY NETWORK LTD", "name": "BANKINFORM-AS CONTENT DELIVERY NETWORK LTD,UA", "id": null, "country_code": "UA", "local_pref": 110, "bgp_prefix": "109.86.213.0/24", "path": [11164, 9002, 13188, 13188, 13188, 13188], "asn": 13188}
{"organization": "Hargray Communications Group, Inc.", "name": "HARCOM1 - Hargray Communications Group, Inc.,US", "id": "HARCOM1", "country_code": "US", "local_pref": 100, "bgp_prefix": "67.20.152.0/21", "path": [7018, 3356, 22646], "asn": 22646}
{"organization": "Telefonica del Peru S.A.A.", "name": "Telefonica del Peru S.A.A.,PE", "id": null, "country_code": "PE", "local_pref": 100, "bgp_prefix": "190.42.22.0/24", "path": [7018, 12956, 6147], "asn": 6147}
{"organization": "NZIX-2 Global-Gateway Internet", "name": "NZIX-2 Global-Gateway Internet,NZ", "id": null, "country_code": "NZ", "local_pref": 110, "bgp_prefix": "166.179.10.0/24", "path": [11164, 4648], "asn": 4648}
{"organization": "Telebec", "name": "BNQ-1 - Telebec,CA", "id": "BNQ-1", "country_code": "CA", "local_pref": 110, "bgp_prefix": "142.217.140.0/22", "path": [3257, 855, 35911], "asn": 35911}
{"organization": "CMNET-JIANGSU-AP China Mobile communications corporation", "name": "CMNET-JIANGSU-AP China Mobile communications corporation,CN", "id": null, "country_code": "CN", "local_pref": 110, "bgp_prefix": "221.131.132.0/22", "path": [2914, 58453, 58453, 9808, 56046], "asn": 56046}
{"organization": "Modulis", "name": "MODULIS - Modulis,CA", "id": "MODULIS", "country_code": "CA", "local_pref": 110, "bgp_prefix": "199.182.134.0/24", "path": [2914, 13768, 54110], "asn": 54110}
{"organization": "VIETEL-AS-AP Viettel Corporation", "name": "VIETEL-AS-AP Viettel Corporation,VN", "id": null, "country_code": "VN", "local_pref": 110, "bgp_prefix": "27.73.192.0/20", "path": [2914, 7552], "asn": 7552}
{"organization": "TCT West, Inc.", "name": "TCT-AS - TCT West, Inc.,US", "id": "TCT-AS", "country_code": "US", "local_pref": 110, "bgp_prefix": "104.36.40.0/22", "path": [6939, 4474], "asn": 4474}
{"organization": "AT&T Enhanced Network Services", "name": "ATT-CERFNET-BLOCK - AT&T Enhanced Network Services,US", "id": "ATT-CERFNET-BLOCK", "country_code": "US", "local_pref": 100, "bgp_prefix": "206.16.9.0/24", "path": [7018, 17231], "asn": 17231}
{"organization": "BELPAK-AS Republican Unitary Telecommunication Enterprise Beltelecom", "name": "BELPAK-AS Republican Unitary Telecommunication Enterprise Beltelecom,BY", "id": null, "country_code": "BY", "local_pref": 110, "bgp_prefix": "194.226.124.0/23", "path": [6939, 12389, 6697], "asn": 6697}
{"organization": "IFX Corporation", "name": "IFX18747 - IFX Corporation,US", "id": "IFX18747", "country_code": "US", "local_pref": 110, "bgp_prefix": "190.94.224.0/19", "path": [3257, 18747], "asn": 18747}
{"organization": "CHINATELECOM-GUANGDONG-IDC Guangdong", "name": "CHINATELECOM-GUANGDONG-IDC Guangdong,CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "113.107.174.0/23", "path": [7018, 4134, 58543], "asn": 58543}
{"organization": "PULSANT-AS Pulsant (Scotland) Ltd", "name": "PULSANT-AS Pulsant (Scotland) Ltd,GB", "id": null, "country_code": "GB", "local_pref": 110, "bgp_prefix": "185.64.88.0/22", "path": [3257, 12703], "asn": 12703}
{"organization": "NETPLAZA-AS Netplaza Oy", "name": "NETPLAZA-AS Netplaza Oy,FI", "id": null, "country_code": "FI", "local_pref": 100, "bgp_prefix": "149.126.180.0/24", "path": [7018, 1299, 1759, 20904], "asn": 20904}
{"organization": "COGECODATA", "name": "CDSI - COGECODATA,CA", "id": "CDSI", "country_code": "CA", "local_pref": 110, "bgp_prefix": "206.130.187.0/24", "path": [3257, 23498], "asn": 23498}
{"organization": "TELKOMNET-AS2-AP PT Telekomunikasi Indonesia", "name": "TELKOMNET-AS2-AP PT Telekomunikasi Indonesia,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "180.242.154.0/24", "path": [2914, 7713, 17974], "asn": 17974}
{"organization": "Sharktech", "name": "ST-BGP - Sharktech,US", "id": "ST-BGP", "country_code": "US", "local_pref": 100, "bgp_prefix": "174.128.245.0/24", "path": [7018, 6461, 6461, 46844], "asn": 46844}
{"organization": "NANO-AS Sia Nano IT", "name": "NANO-AS Sia Nano IT,LV", "id": null, "country_code": "LV", "local_pref": 110, "bgp_prefix": "85.254.24.0/22", "path": [11164, 9002, 9002, 9002, 9002, 9002, 42979, 2588, 43513], "asn": 43513}
{"organization": "SMARTBRO-PH-AP Smart Broadband, Inc.", "name": "SMARTBRO-PH-AP Smart Broadband, Inc.,PH", "id": null, "country_code": "PH", "local_pref": 110, "bgp_prefix": "203.84.184.0/21", "path": [2914, 9299, 10139], "asn": 10139}
{"organization": "BNP-AS BNP Paribas Partners for Innovation (Suisse) Sarl", "name": "BNP-AS BNP Paribas Partners for Innovation (Suisse) Sarl,CH", "id": null, "country_code": "CH", "local_pref": 110, "bgp_prefix": "193.8.150.0/24", "path": [3303, 25289], "asn": 25289}
{"organization": "TELKOMNET-AS2-AP PT Telekomunikasi Indonesia", "name": "TELKOMNET-AS2-AP PT Telekomunikasi Indonesia,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "180.245.92.0/23", "path": [2914, 7713, 17974], "asn": 17974}
{"organization": "TELKOMNET-AS-AP PT Telekomunikasi Indonesia", "name": "TELKOMNET-AS-AP PT Telekomunikasi Indonesia,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "180.240.196.0/24", "path": [11164, 7473, 7713], "asn": 7713}
{"organization": "ASTURKNET TurkNet Iletisim Hizmetleri A.S", "name": "ASTURKNET TurkNet Iletisim Hizmetleri A.S,TR", "id": null, "country_code": "TR", "local_pref": 100, "bgp_prefix": "212.154.1.0/24", "path": [7018, 6762, 12735], "asn": 12735}
{"organization": "BENINTELECOM", "name": "BENINTELECOM,BJ", "id": null, "country_code": "BJ", "local_pref": 100, "bgp_prefix": "41.216.39.0/24", "path": [7018, 3491, 28683], "asn": 28683}
{"organization": "CWASIA Cable & Wireless UK P.U.C.", "name": "CWASIA Cable & Wireless UK P.U.C.,GB", "id": null, "country_code": "GB", "local_pref": 110, "bgp_prefix": "175.176.168.0/23", "path": [2914, 6660], "asn": 6660}
{"organization": "Cable & Wireless Panama", "name": "Cable & Wireless Panama,PA", "id": null, "country_code": "PA", "local_pref": 100, "bgp_prefix": "190.32.0.0/15", "path": [7018, 3491, 11556], "asn": 11556}
{"organization": "AOL Transit Data Network", "name": "AOL-ATDN - AOL Transit Data Network,US", "id": "AOL-ATDN", "country_code": "US", "local_pref": 100, "bgp_prefix": "172.169.0.0/16", "path": [7018, 1668], "asn": 1668}
{"organization": "Cable & Wireless Panama", "name": "Cable & Wireless Panama,PA", "id": null, "country_code": "PA", "local_pref": 110, "bgp_prefix": "190.32.0.0/17", "path": [2914, 23520, 11556], "asn": 11556}
{"organization": "ICONZ-WEBVISIONS-AP Iconz-Webvisions Pte. Ltd.", "name": "ICONZ-WEBVISIONS-AP Iconz-Webvisions Pte. Ltd.,MY", "id": null, "country_code": "MY", "local_pref": 100, "bgp_prefix": "203.142.0.0/22", "path": [7018, 6453, 38182, 55405], "asn": 55405}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "177.67.212.0/24", "path": [3257, 4230, 23456, 23456], "asn": 23456}
{"organization": "HIGE NTT Communications Corporation", "name": "HIGE NTT Communications Corporation,JP", "id": null, "country_code": "JP", "local_pref": 110, "bgp_prefix": "202.178.96.0/21", "path": [2914, 18259], "asn": 18259}
{"organization": "BSNL-NIB National Internet Backbone", "name": "BSNL-NIB National Internet Backbone,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "117.217.192.0/18", "path": [7018, 6453, 9829], "asn": 9829}
{"organization": "DoD Network Information Center", "name": "DNIC-ASBLK-27032-27159 - DoD Network Information Center,US", "id": "DNIC-ASBLK-27032-27159", "country_code": "US", "local_pref": 100, "bgp_prefix": "214.40.41.0/24", "path": [7018, 209, 721, 27064], "asn": 27064}
{"organization": "SMTLB-AS Smart Telecom S.A.R.L", "name": "SMTLB-AS Smart Telecom S.A.R.L,LB", "id": null, "country_code": "LB", "local_pref": 100, "bgp_prefix": "46.20.108.0/24", "path": [7018, 6453, 42020, 51558], "asn": 51558}
{"organization": "Telefonica del Peru S.A.A.", "name": "Telefonica del Peru S.A.A.,PE", "id": null, "country_code": "PE", "local_pref": 100, "bgp_prefix": "200.37.124.0/24", "path": [7018, 12956, 6147], "asn": 6147}
{"organization": "CNNIC-TENCENT-NET-AP Shenzhen Tencent Computer Systems Company Limited", "name": "CNNIC-TENCENT-NET-AP Shenzhen Tencent Computer Systems Company Limited,CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "119.29.126.0/23", "path": [7018, 4134, 58466, 45090], "asn": 45090}
{"organization": "Digiware S.A.", "name": "Digiware S.A.,CO", "id": null, "country_code": "CO", "local_pref": 110, "bgp_prefix": "200.81.58.0/24", "path": [2914, 14080, 52258], "asn": 52258}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "199.218.112.0/24", "path": [6939, 600, 600, 600, 54726], "asn": 54726}
{"organization": "Telefonica del Sur S.A.", "name": "Telefonica del Sur S.A.,CL", "id": null, "country_code": "CL", "local_pref": 100, "bgp_prefix": "190.217.176.0/22", "path": [7018, 6762, 14259, 14117], "asn": 14117}
{"organization": "Alentus Corporation", "name": "ALENT-ASN-1 - Alentus Corporation,US", "id": "ALENT-ASN-1", "country_code": "US", "local_pref": 110, "bgp_prefix": "216.177.139.0/24", "path": [6939, 40715, 4250], "asn": 4250}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "202.151.5.0/24", "path": [6939, 4651, 4651, 4651, 9931, 17425, 17425, 17425, 17425, 17425, 17425, 23456], "asn": 23456}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "204.126.201.0/24", "path": [7018, 33417, 33417, 33417, 33417], "asn": 33417}
{"organization": "Earthlink, Inc.", "name": "ITCDELTA - Earthlink, Inc.,US", "id": "ITCDELTA", "country_code": "US", "local_pref": 100, "bgp_prefix": "64.65.239.0/24", "path": [7018, 2828, 6983], "asn": 6983}
{"organization": "SPT-AS-VN Saigon Postel Corporation", "name": "SPT-AS-VN Saigon Postel Corporation,VN", "id": null, "country_code": "VN", "local_pref": 110, "bgp_prefix": "116.118.108.0/23", "path": [2914, 7602], "asn": 7602}
{"organization": "Summit Energy Tech LLC", "name": "SETL-1-AS-00 - Summit Energy Tech LLC,US", "id": "SETL-1-AS-00", "country_code": "US", "local_pref": 100, "bgp_prefix": "205.236.0.0/24", "path": [7018, 174, 7381, 19707], "asn": 19707}
{"organization": "ERX-STAR PCCW IMSBiz", "name": "ERX-STAR PCCW IMSBiz,HK", "id": null, "country_code": "HK", "local_pref": 100, "bgp_prefix": "223.197.32.0/19", "path": [7018, 3491, 4515], "asn": 4515}
{"organization": "ASN-PROSERVE ProServe B.V.", "name": "ASN-PROSERVE ProServe B.V.,NL", "id": null, "country_code": "NL", "local_pref": 110, "bgp_prefix": "193.93.172.0/22", "path": [2914, 8455, 49685, 21155], "asn": 21155}
{"organization": "SWISSCOM Swisscom (Switzerland) Ltd", "name": "SWISSCOM Swisscom (Switzerland) Ltd,CH", "id": null, "country_code": "CH", "local_pref": 110, "bgp_prefix": "195.250.44.0/24", "path": [3303], "asn": 3303}
{"organization": "ATC Communications", "name": "ATCCOMMICATIONS - ATC Communications,US", "id": "ATCCOMMICATIONS", "country_code": "US", "local_pref": 110, "bgp_prefix": "216.180.176.0/20", "path": [6939, 15305, 32922], "asn": 32922}
{"organization": "Associao Antnio Vieira - Unisinos", "name": "Associao Antnio Vieira - Unisinos,BR", "id": null, "country_code": "BR", "local_pref": 110, "bgp_prefix": "200.188.171.0/24", "path": [2914, 20080, 20080, 20080, 20080, 1916, 2716, 19611], "asn": 19611}
{"organization": "Cablemas Telecomunicaciones SA de CV", "name": "Cablemas Telecomunicaciones SA de CV,MX", "id": null, "country_code": "MX", "local_pref": 100, "bgp_prefix": "189.220.230.0/24", "path": [7018, 1299, 18734, 28509], "asn": 28509}
{"organization": "AT&T Global Network Services, LLC", "name": "ATGS-MMD-AS - AT&T Global Network Services, LLC,US", "id": "ATGS-MMD-AS", "country_code": "US", "local_pref": 100, "bgp_prefix": "161.19.0.0/17", "path": [7018, 2685], "asn": 2685}
{"organization": "QUICK-NET-AS QUICK NET SRL", "name": "QUICK-NET-AS QUICK NET SRL,RO", "id": null, "country_code": "RO", "local_pref": 110, "bgp_prefix": "89.33.4.0/24", "path": [2914, 8708, 34538], "asn": 34538}
{"organization": "HyperSurf Internet Services, Inc.", "name": "HSIS-AS - HyperSurf Internet Services, Inc.,US", "id": "HSIS-AS", "country_code": "US", "local_pref": 100, "bgp_prefix": "65.200.96.0/21", "path": [7018, 174, 17403], "asn": 17403}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "103.58.233.0/24", "path": [7018, 6453, 4755, 23456], "asn": 23456}
{"organization": "CITelecom-AS", "name": "CITelecom-AS,CI", "id": null, "country_code": "CI", "local_pref": 100, "bgp_prefix": "41.66.8.0/23", "path": [7018, 3491, 29571], "asn": 29571}
{"organization": "Akamai Technologies, Inc.", "name": "AKAMAI-AS - Akamai Technologies, Inc.,US", "id": "AKAMAI-AS", "country_code": "US", "local_pref": 100, "bgp_prefix": "184.85.64.0/20", "path": [7018, 3491, 20940, 20940, 16625], "asn": 16625}
{"organization": "NCIC-TW New Century InfoComm Tech Co., Ltd.", "name": "NCIC-TW New Century InfoComm Tech Co., Ltd.,TW", "id": null, "country_code": "TW", "local_pref": 110, "bgp_prefix": "220.229.208.0/20", "path": [2914, 4780, 9919], "asn": 9919}
{"organization": "MTNNS-AS", "name": "MTNNS-AS,ZA", "id": null, "country_code": "ZA", "local_pref": 100, "bgp_prefix": "197.78.128.0/17", "path": [7018, 174, 16637, 12091], "asn": 12091}
{"organization": "Escuela Superior Politecnica del Litoral", "name": "Escuela Superior Politecnica del Litoral,EC", "id": null, "country_code": "EC", "local_pref": 100, "bgp_prefix": "200.10.151.0/24", "path": [7018, 1299, 19169, 27947, 28027], "asn": 28027}
{"organization": "Colosseum Online, Inc.", "name": "COLOSSEUM-ONL - Colosseum Online, Inc.,CA", "id": "COLOSSEUM-ONL", "country_code": "CA", "local_pref": 110, "bgp_prefix": "38.64.172.0/23", "path": [3257, 19842], "asn": 19842}
{"organization": "TINET-BACKBONE Tinet SpA", "name": "TINET-BACKBONE Tinet SpA,DE", "id": null, "country_code": "DE", "local_pref": 110, "bgp_prefix": "216.246.87.0/24", "path": [3257], "asn": 3257}
{"organization": "Telmex Colombia S.A.", "name": "Telmex Colombia S.A.,CO", "id": null, "country_code": "CO", "local_pref": 110, "bgp_prefix": "190.159.128.0/22", "path": [2914, 14080, 10620], "asn": 10620}
{"organization": "KOSEF-AS-KR Korea Science and Engineering Foundation", "name": "KOSEF-AS-KR Korea Science and Engineering Foundation,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "221.158.73.0/24", "path": [6939, 4766, 17576], "asn": 17576}
{"organization": "CSLOX-IDC-AS-AP CS LOXINFO Public Company Limited.", "name": "CSLOX-IDC-AS-AP CS LOXINFO Public Company Limited.,TH", "id": null, "country_code": "TH", "local_pref": 100, "bgp_prefix": "203.146.26.0/24", "path": [7018, 6453, 7568, 9891], "asn": 9891}
{"organization": "APBT-AS-TW Asia Pacific Broadband Fixed Lines Co., Ltd.", "name": "APBT-AS-TW Asia Pacific Broadband Fixed Lines Co., Ltd.,TW", "id": null, "country_code": "TW", "local_pref": 110, "bgp_prefix": "210.200.85.0/24", "path": [2914, 17709, 24154], "asn": 24154}
{"organization": "NET1-AS NET1 Ltd.", "name": "NET1-AS NET1 Ltd.,BG", "id": null, "country_code": "BG", "local_pref": 100, "bgp_prefix": "87.121.146.0/24", "path": [7018, 1299, 43561], "asn": 43561}
{"organization": "NET-CRYSTONE-STHLM Crystone AB", "name": "NET-CRYSTONE-STHLM Crystone AB,SE", "id": null, "country_code": "SE", "local_pref": 100, "bgp_prefix": "192.36.240.0/24", "path": [7018, 3356, 2119, 35041], "asn": 35041}
{"organization": "CMNET-GD Guangdong Mobile Communication Co.Ltd.", "name": "CMNET-GD Guangdong Mobile Communication Co.Ltd.,CN", "id": null, "country_code": "CN", "local_pref": 110, "bgp_prefix": "211.137.40.0/24", "path": [2914, 58453, 58453, 9808], "asn": 9808}
{"organization": "PUKNET", "name": "PUKNET,ZA", "id": null, "country_code": "ZA", "local_pref": 100, "bgp_prefix": "143.160.216.0/22", "path": [7018, 174, 36944, 2018, 8094], "asn": 8094}
{"organization": "ULTRANET-AS ", "name": "ULTRANET-AS ,BG", "id": null, "country_code": "BG", "local_pref": 110, "bgp_prefix": "213.149.128.0/24", "path": [2914, 6663, 39184, 39184, 39184, 39184], "asn": 39184}
{"organization": "Earthlink, Inc.", "name": "ITCDELTA - Earthlink, Inc.,US", "id": "ITCDELTA", "country_code": "US", "local_pref": 100, "bgp_prefix": "63.131.44.0/24", "path": [7018, 2828, 6983], "asn": 6983}
{"organization": "ASN-SSC IP Group AS", "name": "ASN-SSC IP Group AS,NO", "id": null, "country_code": "NO", "local_pref": 100, "bgp_prefix": "213.179.48.0/20", "path": [7018, 1299, 16186], "asn": 16186}
{"organization": "SERVERIUS-AS Serverius Holding B.V.", "name": "SERVERIUS-AS Serverius Holding B.V.,NL", "id": null, "country_code": "NL", "local_pref": 110, "bgp_prefix": "91.217.235.0/24", "path": [3257, 50673], "asn": 50673}
{"organization": "Frontier Communications of America, Inc.", "name": "FRONTIER-AND-CITIZENS - Frontier Communications of America, Inc.,US", "id": "FRONTIER-AND-CITIZENS", "country_code": "US", "local_pref": 100, "bgp_prefix": "74.47.156.0/22", "path": [7018, 5650, 7011], "asn": 7011}
{"organization": "MAXNET Lukasz Rafal Hamerski trading as Maxnet", "name": "MAXNET Lukasz Rafal Hamerski trading as Maxnet,PL", "id": null, "country_code": "PL", "local_pref": 110, "bgp_prefix": "155.133.22.0/23", "path": [3257, 43171], "asn": 43171}
{"organization": "EMOME-TW Long Distance & Mobile Business Group", "name": "EMOME-TW Long Distance & Mobile Business Group,TW", "id": null, "country_code": "TW", "local_pref": 100, "bgp_prefix": "111.71.218.0/24", "path": [7018, 9680, 3462, 17421], "asn": 17421}
{"organization": "AT&T Enhanced Network Services", "name": "ATT-CERFNET-BLOCK - AT&T Enhanced Network Services,US", "id": "ATT-CERFNET-BLOCK", "country_code": "US", "local_pref": 100, "bgp_prefix": "170.185.84.0/23", "path": [7018, 17228], "asn": 17228}
{"organization": "TOPNET TOP NET PJSC", "name": "TOPNET TOP NET PJSC,UA", "id": null, "country_code": "UA", "local_pref": 110, "bgp_prefix": "77.88.210.0/24", "path": [6939, 21011], "asn": 21011}
{"organization": "KKTCELL-AS KIBRIS MOBILE TELEKOMUNIKASYON LTD.", "name": "KKTCELL-AS KIBRIS MOBILE TELEKOMUNIKASYON LTD.,TR", "id": null, "country_code": "TR", "local_pref": 110, "bgp_prefix": "37.34.24.0/24", "path": [3257, 9121, 9121, 47883], "asn": 47883}
{"organization": "TATACOMM-AS TATA Communications formerly VSNL is Leading ISP", "name": "TATACOMM-AS TATA Communications formerly VSNL is Leading ISP,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "203.200.13.0/24", "path": [7018, 6453, 4755], "asn": 4755}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "177.190.176.0/22", "path": [2914, 28329, 23456], "asn": 23456}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "177.190.176.0/23", "path": [2914, 28329, 28250, 23456], "asn": 23456}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "177.190.176.0/21", "path": [2914, 28329, 23456], "asn": 23456}
{"organization": "JARDIKNAS-AS-AP Pustekkom", "name": "JARDIKNAS-AS-AP Pustekkom,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "118.98.184.0/21", "path": [6939, 10026, 10026, 4809, 7713, 18051, 18051], "asn": 18051}
{"organization": "AT&T Data Communications Services", "name": "INS-AS - AT&T Data Communications Services,US", "id": "INS-AS", "country_code": "US", "local_pref": 100, "bgp_prefix": "12.52.182.0/24", "path": [7018, 2386], "asn": 2386}
{"organization": "JARDIKNAS-AS-AP Pustekkom", "name": "JARDIKNAS-AS-AP Pustekkom,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "118.98.184.0/24", "path": [6939, 10026, 10026, 4809, 7713, 18051, 18051], "asn": 18051}
{"organization": "Spanish Fork City", "name": "SPANISHFORK-COMMUNITY-NETWORK - Spanish Fork City,US", "id": "SPANISHFORK-COMMUNITY-NETWORK", "country_code": "US", "local_pref": 110, "bgp_prefix": "67.199.175.0/24", "path": [11164, 7385, 36223], "asn": 36223}
{"organization": "EAGLE-Net Alliance", "name": "EAGLE-NET-ALLIANCE - EAGLE-Net Alliance,US", "id": "EAGLE-NET-ALLIANCE", "country_code": "US", "local_pref": 100, "bgp_prefix": "129.19.151.0/24", "path": [7018, 3356, 4323, 13555, 13555, 13555, 13555], "asn": 13555}
{"organization": "ASN-ICCNET International Computer Company, Ltd.", "name": "ASN-ICCNET International Computer Company, Ltd.,SA", "id": null, "country_code": "SA", "local_pref": 100, "bgp_prefix": "93.178.16.0/24", "path": [7018, 3356, 39386, 25438], "asn": 25438}
{"organization": "DAIMLER-AS Daimler Autonomous System", "name": "DAIMLER-AS Daimler Autonomous System,DE", "id": null, "country_code": "DE", "local_pref": 100, "bgp_prefix": "141.113.64.0/19", "path": [7018, 3320, 3320, 8220, 31399], "asn": 31399}
{"organization": "EDICOM INTERCAMBIO ELECTRONICO DE DATOS Y COMUNICACIONES S.L.", "name": "EDICOM INTERCAMBIO ELECTRONICO DE DATOS Y COMUNICACIONES S.L.,ES", "id": null, "country_code": "ES", "local_pref": 110, "bgp_prefix": "212.49.145.0/24", "path": [11164, 5400, 31262], "asn": 31262}
{"organization": "AT&T Enhanced Network Services", "name": "ATT-CERFNET-BLOCK - AT&T Enhanced Network Services,US", "id": "ATT-CERFNET-BLOCK", "country_code": "US", "local_pref": 110, "bgp_prefix": "199.107.120.0/21", "path": [2914, 12179, 17227, 17227, 17227], "asn": 17227}
{"organization": "WideOpenWest Finance LLC", "name": "WOW-INTERNET - WideOpenWest Finance LLC,US", "id": "WOW-INTERNET", "country_code": "US", "local_pref": 100, "bgp_prefix": "209.159.229.0/24", "path": [7018, 1299, 20412, 12083], "asn": 12083}
{"organization": "PROINTERNET-AS Pro-internet Sp. z o.o.", "name": "PROINTERNET-AS Pro-internet Sp. z o.o.,PL", "id": null, "country_code": "PL", "local_pref": 110, "bgp_prefix": "188.124.160.0/24", "path": [2914, 20804, 34999, 34999], "asn": 34999}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "91.233.192.0/24", "path": [2914, 51474, 23456], "asn": 23456}
{"organization": "TELEFNICA CHILE S.A.", "name": "TELEFNICA CHILE S.A.,CL", "id": null, "country_code": "CL", "local_pref": 100, "bgp_prefix": "200.10.226.0/24", "path": [7018, 12956, 7004, 7418], "asn": 7418}
{"organization": "Sudatel", "name": "Sudatel,SD", "id": null, "country_code": "SD", "local_pref": 100, "bgp_prefix": "196.202.128.0/20", "path": [7018, 6453, 8452, 15706], "asn": 15706}
{"organization": "INETCOM INETCOM LLC", "name": "INETCOM INETCOM LLC,RU", "id": null, "country_code": "RU", "local_pref": 110, "bgp_prefix": "194.187.206.0/24", "path": [11164, 9002, 35598], "asn": 35598}
{"organization": "IT-CONSULTING-AS IT consulting group Ltd.", "name": "IT-CONSULTING-AS IT consulting group Ltd.,RU", "id": null, "country_code": "RU", "local_pref": 110, "bgp_prefix": "195.191.88.0/24", "path": [2914, 8732, 8595, 50513], "asn": 50513}
{"organization": "Reseau d'informations scientifiques du Quebec (RISQ)", "name": "RISQ-AS - Reseau d'informations scientifiques du Quebec (RISQ),CA", "id": "RISQ-AS", "country_code": "CA", "local_pref": 119, "bgp_prefix": "206.167.139.0/24", "path": [11537, 6509, 376], "asn": 376}
{"organization": "AKAMAI-ASN1 Akamai International B.V.", "name": "AKAMAI-ASN1 Akamai International B.V.,US", "id": null, "country_code": "US", "local_pref": 100, "bgp_prefix": "172.232.32.0/20", "path": [7018, 1239, 20940, 20940], "asn": 20940}
{"organization": "Level 3 Communications, Inc.", "name": "LVLT-10753 - Level 3 Communications, Inc.,US", "id": "LVLT-10753", "country_code": "US", "local_pref": 100, "bgp_prefix": "208.50.118.0/24", "path": [7018, 3549, 10753], "asn": 10753}
{"organization": "Sonoma Interconnect", "name": "SONOMA - Sonoma Interconnect,US", "id": "SONOMA", "country_code": "US", "local_pref": 110, "bgp_prefix": "75.101.120.0/21", "path": [2914, 8121, 7065], "asn": 7065}
{"organization": "Workday, Inc.", "name": "WORKD-IT - Workday, Inc.,US", "id": "WORKD-IT", "country_code": "US", "local_pref": 110, "bgp_prefix": "75.101.120.0/23", "path": [11164, 4323, 46864], "asn": 46864}
{"organization": "VNPT-AS-VN VNPT Corp", "name": "VNPT-AS-VN VNPT Corp,VN", "id": null, "country_code": "VN", "local_pref": 100, "bgp_prefix": "113.184.224.0/19", "path": [7018, 701, 45899, 45899], "asn": 45899}
{"organization": "ASIATECH Asiatech Data Transfer Inc. PLC", "name": "ASIATECH Asiatech Data Transfer Inc. PLC,IR", "id": null, "country_code": "IR", "local_pref": 100, "bgp_prefix": "185.109.248.0/23", "path": [7018, 6762, 12880, 43754], "asn": 43754}
{"organization": "Axtel, S.A.B. de C.V.", "name": "Axtel, S.A.B. de C.V.,MX", "id": null, "country_code": "MX", "local_pref": 100, "bgp_prefix": "189.209.82.0/24", "path": [7018, 174, 6503], "asn": 6503}
{"organization": "ASIATECH Asiatech Data Transfer Inc. PLC", "name": "ASIATECH Asiatech Data Transfer Inc. PLC,IR", "id": null, "country_code": "IR", "local_pref": 110, "bgp_prefix": "185.109.248.0/22", "path": [2914, 9498, 8529, 12880, 12880, 12880, 12880, 12880, 12880, 12880, 12880, 12880, 12880, 12880, 43754], "asn": 43754}
{"organization": "CMNET-V4HEBEI-AS-AP Hebei Mobile Communication Company Limited", "name": "CMNET-V4HEBEI-AS-AP Hebei Mobile Communication Company Limited,CN", "id": null, "country_code": "CN", "local_pref": 110, "bgp_prefix": "111.11.82.0/24", "path": [2914, 58453, 58453, 9808, 24547], "asn": 24547}
{"organization": "SAUDINETSTC-AS Saudi Telecom Company JSC", "name": "SAUDINETSTC-AS Saudi Telecom Company JSC,SA", "id": null, "country_code": "SA", "local_pref": 100, "bgp_prefix": "128.234.128.0/18", "path": [7018, 1299, 9498, 39386, 25019], "asn": 25019}
{"organization": "SAUDINETSTC-AS Saudi Telecom Company JSC", "name": "SAUDINETSTC-AS Saudi Telecom Company JSC,SA", "id": null, "country_code": "SA", "local_pref": 100, "bgp_prefix": "128.234.128.0/17", "path": [7018, 1299, 9498, 39386, 25019], "asn": 25019}
{"organization": "SPT-AS-VN Saigon Postel Corporation", "name": "SPT-AS-VN Saigon Postel Corporation,VN", "id": null, "country_code": "VN", "local_pref": 110, "bgp_prefix": "116.118.0.0/22", "path": [2914, 7602], "asn": 7602}
{"organization": "DIGITAL DESIGN - SERVICOS DE INFORMATICA LTDA", "name": "DIGITAL DESIGN - SERVICOS DE INFORMATICA LTDA,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "187.49.83.0/24", "path": [7018, 3549, 18881, 28142], "asn": 28142}
{"organization": "VACATION EXPRESS", "name": "VACATION-EXPRESS - VACATION EXPRESS,US", "id": "VACATION-EXPRESS", "country_code": "US", "local_pref": 100, "bgp_prefix": "208.81.255.0/24", "path": [7018, 1299, 577, 19652], "asn": 19652}
{"organization": "INPL-IN-AP Ishan's Network", "name": "INPL-IN-AP Ishan's Network,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "27.54.165.0/24", "path": [7018, 6453, 4755, 45117], "asn": 45117}
{"organization": "CABLE ONE, INC.", "name": "CABLEONE - CABLE ONE, INC.,US", "id": "CABLEONE", "country_code": "US", "local_pref": 100, "bgp_prefix": "173.47.184.0/24", "path": [7018, 3356, 11492], "asn": 11492}
{"organization": "ASAHI-NET Asahi Net", "name": "ASAHI-NET Asahi Net,JP", "id": null, "country_code": "JP", "local_pref": 110, "bgp_prefix": "203.181.0.0/18", "path": [2914, 4685, 4685], "asn": 4685}
{"organization": "AKAMAI-ASN1 Akamai International B.V.", "name": "AKAMAI-ASN1 Akamai International B.V.,US", "id": null, "country_code": "US", "local_pref": 110, "bgp_prefix": "104.83.8.0/22", "path": [2914, 20940, 20940], "asn": 20940}
{"organization": "DoD Network Information Center", "name": "DNIC-ASBLK-27032-27159 - DoD Network Information Center,US", "id": "DNIC-ASBLK-27032-27159", "country_code": "US", "local_pref": 100, "bgp_prefix": "130.22.17.0/24", "path": [7018, 209, 721, 27064], "asn": 27064}
{"organization": "MAINSTREAM-AS Mainloop Solutions AB", "name": "MAINSTREAM-AS Mainloop Solutions AB,SE", "id": null, "country_code": "SE", "local_pref": 100, "bgp_prefix": "194.68.55.0/24", "path": [7018, 1299, 43948, 30893], "asn": 30893}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "128.65.156.0/24", "path": [2914, 15704, 23456, 23456], "asn": 23456}
{"organization": "ICLNET-AS-AP Idea Cellular Limited", "name": "ICLNET-AS-AP Idea Cellular Limited,IN", "id": null, "country_code": "IN", "local_pref": 110, "bgp_prefix": "49.14.0.0/19", "path": [2914, 9498, 55644, 45271], "asn": 45271}
{"organization": "Eagle Investment Systems LLC", "name": "EIS - Eagle Investment Systems LLC,US", "id": "EIS", "country_code": "US", "local_pref": 100, "bgp_prefix": "192.81.144.0/24", "path": [7018, 701, 23500], "asn": 23500}
{"organization": "The State Insurance Fund", "name": "NYSIF - The State Insurance Fund,US", "id": "NYSIF", "country_code": "US", "local_pref": 100, "bgp_prefix": "168.141.128.0/17", "path": [7018, 701, 53585], "asn": 53585}
{"organization": "KIXS-AS-KR Korea Telecom", "name": "KIXS-AS-KR Korea Telecom,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "210.107.201.0/24", "path": [6939, 4766], "asn": 4766}
{"organization": "US Internet Corp", "name": "USINTERNET - US Internet Corp,US", "id": "USINTERNET", "country_code": "US", "local_pref": 110, "bgp_prefix": "50.93.248.0/21", "path": [6939, 10242], "asn": 10242}
{"organization": "Cable Onda", "name": "Cable Onda,PA", "id": null, "country_code": "PA", "local_pref": 100, "bgp_prefix": "181.197.64.0/18", "path": [7018, 3356, 18809], "asn": 18809}
{"organization": "RELIANCE-COMMUNICATIONS-IN Reliance Communications Ltd.DAKC MUMBAI", "name": "RELIANCE-COMMUNICATIONS-IN Reliance Communications Ltd.DAKC MUMBAI,IN", "id": null, "country_code": "IN", "local_pref": 110, "bgp_prefix": "115.250.32.0/19", "path": [11164, 15412, 18101], "asn": 18101}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "46.174.174.0/23", "path": [3257, 50607, 50607, 23456, 23456, 23456], "asn": 23456}
{"organization": "KAZTELECOM-AS JSC Kazakhtelecom", "name": "KAZTELECOM-AS JSC Kazakhtelecom,KZ", "id": null, "country_code": "KZ", "local_pref": 110, "bgp_prefix": "5.76.96.0/22", "path": [6939, 12389, 9198], "asn": 9198}
{"organization": "Gabon-Telecom", "name": "Gabon-Telecom,GA", "id": null, "country_code": "GA", "local_pref": 110, "bgp_prefix": "41.158.128.0/24", "path": [3257, 6713, 16058], "asn": 16058}
{"organization": "ZAIN-JO Linkdotnet-Jordan", "name": "ZAIN-JO Linkdotnet-Jordan,JO", "id": null, "country_code": "JO", "local_pref": 110, "bgp_prefix": "94.142.40.0/24", "path": [3257, 48832], "asn": 48832}
{"organization": "Healthsense INC", "name": "HSMNDC2-1 - Healthsense INC,US", "id": "HSMNDC2-1", "country_code": "US", "local_pref": 100, "bgp_prefix": "68.65.0.0/22", "path": [7018, 174, 12042, 46911], "asn": 46911}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "186.225.10.0/24", "path": [7018, 3549, 28343, 23456], "asn": 23456}
{"organization": "Akamai Technologies, Inc.", "name": "AKAMAI-AS - Akamai Technologies, Inc.,US", "id": "AKAMAI-AS", "country_code": "US", "local_pref": 110, "bgp_prefix": "23.222.144.0/20", "path": [3257, 26769, 20940, 20940, 16625], "asn": 16625}
{"organization": "ALSATIS-AS alsatis wisp network AS", "name": "ALSATIS-AS alsatis wisp network AS,FR", "id": null, "country_code": "FR", "local_pref": 110, "bgp_prefix": "92.245.143.0/24", "path": [3257, 25540, 48072], "asn": 48072}
{"organization": "Cengage Learning Inc", "name": "MASONDC - Cengage Learning Inc,US", "id": "MASONDC", "country_code": "US", "local_pref": 100, "bgp_prefix": "69.32.172.0/24", "path": [7018, 3356, 27365], "asn": 27365}
{"organization": "FAIRPOINT COMMUNICATIONS, INC.", "name": "FAIRPO-3 - FAIRPOINT COMMUNICATIONS, INC.,US", "id": "FAIRPO-3", "country_code": "US", "local_pref": 100, "bgp_prefix": "64.223.133.0/24", "path": [7018, 174, 13977, 13672], "asn": 13672}
{"organization": "PT KPN B.V.", "name": "PT KPN B.V.,NL", "id": null, "country_code": "NL", "local_pref": 100, "bgp_prefix": "213.75.20.0/22", "path": [7018, 286, 1136, 8737], "asn": 8737}
{"organization": "AT&T Data Communications Services", "name": "INS-AS - AT&T Data Communications Services,US", "id": "INS-AS", "country_code": "US", "local_pref": 100, "bgp_prefix": "12.25.118.0/23", "path": [7018, 2386], "asn": 2386}
{"organization": "CLOUDDDOS TECHNOLOGY CO.,LIMITED", "name": "CLOUDDDOS - CLOUDDDOS TECHNOLOGY CO.,LIMITED,US", "id": "CLOUDDDOS", "country_code": "US", "local_pref": 110, "bgp_prefix": "168.235.248.0/23", "path": [6939, 53587], "asn": 53587}
{"organization": "Home Telephone Company, Inc.", "name": "HOMESC - Home Telephone Company, Inc.,US", "id": "HOMESC", "country_code": "US", "local_pref": 110, "bgp_prefix": "204.116.180.0/23", "path": [6939, 2711, 16863], "asn": 16863}
{"organization": "HIGHBRIDGELDN Highbridge Capital Management (UK), Ltd.", "name": "HIGHBRIDGELDN Highbridge Capital Management (UK), Ltd.,GB", "id": null, "country_code": "GB", "local_pref": 110, "bgp_prefix": "91.213.81.0/24", "path": [2914, 21371, 24910], "asn": 24910}
{"organization": "OVERTHEWIRE-AS-AP Over The Wire Pty Ltd", "name": "OVERTHEWIRE-AS-AP Over The Wire Pty Ltd,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "210.56.152.0/21", "path": [2914, 9268], "asn": 9268}
{"organization": "GOEPC-AS-KR Pocheon Office of Education", "name": "GOEPC-AS-KR Pocheon Office of Education,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "14.53.149.0/24", "path": [2914, 9318, 38410], "asn": 38410}
{"organization": "EXTREMEBB-AS-MY Extreme Broadband - Total Broadband Experience", "name": "EXTREMEBB-AS-MY Extreme Broadband - Total Broadband Experience,MY", "id": null, "country_code": "MY", "local_pref": 100, "bgp_prefix": "113.23.145.0/24", "path": [7018, 6453, 38182], "asn": 38182}
{"organization": "OSINET-COMMS-AS-AP OSINet Communications Pte Ltd", "name": "OSINET-COMMS-AS-AP OSINet Communications Pte Ltd,SG", "id": null, "country_code": "SG", "local_pref": 110, "bgp_prefix": "182.23.157.0/24", "path": [6939, 10026, 45166], "asn": 45166}
{"organization": "ELISA-AS Elisa Oyj", "name": "ELISA-AS Elisa Oyj,FI", "id": null, "country_code": "FI", "local_pref": 110, "bgp_prefix": "193.184.18.0/24", "path": [3257, 6667, 719], "asn": 719}
{"organization": "CHINA169-BJ CNCGROUP IP network China169 Beijing Province Network", "name": "CHINA169-BJ CNCGROUP IP network China169 Beijing Province Network,CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "202.108.44.0/24", "path": [7018, 4837, 4808], "asn": 4808}
{"organization": "Weld County School District Six", "name": "WCSD6 - Weld County School District Six,US", "id": "WCSD6", "country_code": "US", "local_pref": 110, "bgp_prefix": "69.2.128.0/19", "path": [11164, 6461, 54304], "asn": 54304}
{"organization": "Buckeye Cablevision, Inc.", "name": "BUCKEYECABLEVISION - Buckeye Cablevision, Inc.,US", "id": "BUCKEYECABLEVISION", "country_code": "US", "local_pref": 100, "bgp_prefix": "24.52.120.0/24", "path": [7018, 1239, 13490], "asn": 13490}
{"organization": "Cox Communications Inc.", "name": "ASN-CXA-ALL-CCI-22773-RDC - Cox Communications Inc.,US", "id": "ASN-CXA-ALL-CCI-22773-RDC", "country_code": "US", "local_pref": 110, "bgp_prefix": "68.99.36.0/22", "path": [6939, 22773], "asn": 22773}
{"organization": "INTERNUXNET-AS-ID PT. iNterNUX", "name": "INTERNUXNET-AS-ID PT. iNterNUX,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "202.62.16.0/20", "path": [3257, 7632, 4832], "asn": 4832}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "138.94.196.0/23", "path": [2914, 28329, 23456], "asn": 23456}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "138.94.196.0/22", "path": [2914, 28329, 23456], "asn": 23456}
{"organization": "EXTREMEBB-AS-MY Extreme Broadband - Total Broadband Experience", "name": "EXTREMEBB-AS-MY Extreme Broadband - Total Broadband Experience,MY", "id": null, "country_code": "MY", "local_pref": 110, "bgp_prefix": "113.23.225.0/24", "path": [2914, 9304, 38182], "asn": 38182}
{"organization": "ACTURIS-EU Acturis Ltd", "name": "ACTURIS-EU Acturis Ltd,GB", "id": null, "country_code": "GB", "local_pref": 100, "bgp_prefix": "89.107.79.0/24", "path": [7018, 174, 44226], "asn": 44226}
{"organization": "SWWC Service Cooperatives", "name": "SWTELCOOP - SWWC Service Cooperatives,US", "id": "SWTELCOOP", "country_code": "US", "local_pref": 121, "bgp_prefix": "66.172.183.0/24", "path": [57, 30220], "asn": 30220}
{"organization": "CYBERNET-AP Cyber Internet Services (Pvt) Ltd.", "name": "CYBERNET-AP Cyber Internet Services (Pvt) Ltd.,PK", "id": null, "country_code": "PK", "local_pref": 110, "bgp_prefix": "202.163.75.0/24", "path": [11164, 4788, 17557, 9541], "asn": 9541}
{"organization": "BBSS", "name": "BBSS,BI", "id": null, "country_code": "BI", "local_pref": 110, "bgp_prefix": "41.79.227.0/24", "path": [6939, 30844, 37545, 37545, 37545, 37545], "asn": 37545}
{"organization": "ADRIA-AS Adria Airways Slovenski letalski prevoznik d.d.", "name": "ADRIA-AS Adria Airways Slovenski letalski prevoznik d.d.,SI", "id": null, "country_code": "SI", "local_pref": 100, "bgp_prefix": "91.199.124.0/24", "path": [7018, 1299, 34779, 34779, 34779, 34779, 44455], "asn": 44455}
{"organization": "Satnet", "name": "Satnet,EC", "id": null, "country_code": "EC", "local_pref": 100, "bgp_prefix": "186.69.228.0/22", "path": [7018, 12956, 14522], "asn": 14522}
{"organization": "The Reynolds and Reynolds Company", "name": "DKM2-ARIN - The Reynolds and Reynolds Company,US", "id": "DKM2-ARIN", "country_code": "US", "local_pref": 110, "bgp_prefix": "206.180.24.0/24", "path": [7922, 33662, 63344], "asn": 63344}
{"organization": "BIZNET-AS-AP BIZNET NETWORKS", "name": "BIZNET-AS-AP BIZNET NETWORKS,ID", "id": null, "country_code": "ID", "local_pref": 99, "bgp_prefix": "182.253.109.0/24", "path": [6939, 17451], "asn": 17451}
{"organization": "ASN-ISKON ISKON INTERNET d.d. za informatiku i telekomunikacije", "name": "ASN-ISKON ISKON INTERNET d.d. za informatiku i telekomunikacije,HR", "id": null, "country_code": "HR", "local_pref": 110, "bgp_prefix": "89.164.192.0/18", "path": [3257, 5391, 13046, 13046, 13046], "asn": 13046}
{"organization": "PAYTEL-AS PAYTEL S.A.", "name": "PAYTEL-AS PAYTEL S.A.,PL", "id": null, "country_code": "PL", "local_pref": 100, "bgp_prefix": "91.213.137.0/24", "path": [7018, 1299, 5588, 35060], "asn": 35060}
{"organization": "CenturyTel Internet Holdings, Inc.", "name": "CENTURYLINK-VARIOUS-ISLANDS - CenturyTel Internet Holdings, Inc.,US", "id": "CENTURYLINK-VARIOUS-ISLANDS", "country_code": "US", "local_pref": 100, "bgp_prefix": "207.230.212.0/24", "path": [7018, 209, 22561, 5668], "asn": 5668}
{"organization": "LISTER-TECHNOLOGIES Lister Technologies (P) Ltd.", "name": "LISTER-TECHNOLOGIES Lister Technologies (P) Ltd.,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "203.89.151.0/24", "path": [7018, 3356, 55410, 24309, 45825], "asn": 45825}
{"organization": "Fannie Mae", "name": "FANNIEMAE - Fannie Mae,US", "id": "FANNIEMAE", "country_code": "US", "local_pref": 110, "bgp_prefix": "198.204.141.0/24", "path": [3257, 10913, 10913, 10913, 11313], "asn": 11313}
{"organization": "University of Massachusetts - Lowell", "name": "UMASS-LOWELL - University of Massachusetts - Lowell,US", "id": "UMASS-LOWELL", "country_code": "US", "local_pref": 100, "bgp_prefix": "129.63.246.0/24", "path": [7018, 209, 1968, 46905, 46905], "asn": 46905}
{"organization": "Krypt Technologies", "name": "VPLSNET - Krypt Technologies,US", "id": "VPLSNET", "country_code": "US", "local_pref": 110, "bgp_prefix": "98.126.23.0/24", "path": [6939, 35908], "asn": 35908}
{"organization": "HANA-AS-KR Hana Broadcasting Co, Ltd", "name": "HANA-AS-KR Hana Broadcasting Co, Ltd,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "125.57.171.0/24", "path": [6939, 4766, 9457, 55600], "asn": 55600}
{"organization": "ISH Tecnologia SA", "name": "ISH Tecnologia SA,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "177.39.234.0/24", "path": [7018, 1299, 55002, 52797], "asn": 52797}
{"organization": "Creatividad Internet Enlaces, S.A. de C.V.", "name": "Creatividad Internet Enlaces, S.A. de C.V.,MX", "id": null, "country_code": "MX", "local_pref": 110, "bgp_prefix": "201.159.105.0/24", "path": [3257, 32098, 28539], "asn": 28539}
{"organization": "GVM S.C. GVM SISTEM 2003 S.R.L.", "name": "GVM S.C. GVM SISTEM 2003 S.R.L.,RO", "id": null, "country_code": "RO", "local_pref": 110, "bgp_prefix": "91.239.220.0/24", "path": [2914, 34744, 51445], "asn": 51445}
{"organization": "Telemar Norte Leste S.A.", "name": "Telemar Norte Leste S.A.,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "187.12.224.0/19", "path": [7018, 701, 7738], "asn": 7738}
{"organization": "GMP Cable TV", "name": "GMP-METROCAST - GMP Cable TV,US", "id": "GMP-METROCAST", "country_code": "US", "local_pref": 110, "bgp_prefix": "24.153.52.0/22", "path": [2914, 21688], "asn": 21688}
{"organization": "NETCOM-KASSEL Netcom Kassel", "name": "NETCOM-KASSEL Netcom Kassel,DE", "id": null, "country_code": "DE", "local_pref": 110, "bgp_prefix": "80.69.192.0/20", "path": [6939, 20810], "asn": 20810}
{"organization": "SMARTONE-MB-AS-AP SmarTone Mobile Communications Ltd", "name": "SMARTONE-MB-AS-AP SmarTone Mobile Communications Ltd,HK", "id": null, "country_code": "HK", "local_pref": 110, "bgp_prefix": "180.219.128.0/20", "path": [3257, 17924, 17924], "asn": 17924}
{"organization": "SOCIETE-GENERALE Societe Generale", "name": "SOCIETE-GENERALE Societe Generale,FR", "id": null, "country_code": "FR", "local_pref": 110, "bgp_prefix": "194.119.82.0/24", "path": [3257, 15557, 3296], "asn": 3296}
{"organization": "CORBINA-AS OJSC Vimpelcom", "name": "CORBINA-AS OJSC Vimpelcom,RU", "id": null, "country_code": "RU", "local_pref": 100, "bgp_prefix": "2.94.172.0/24", "path": [7018, 3356, 3216, 3216, 3216, 8402], "asn": 8402}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "156.80.0.0/16", "path": [7018, 174, 23456], "asn": 23456}
{"organization": "Joe's Datacenter, LLC", "name": "JOESDATACENTER - Joe's Datacenter, LLC,US", "id": "JOESDATACENTER", "country_code": "US", "local_pref": 110, "bgp_prefix": "204.27.56.0/21", "path": [6939, 19969, 19969], "asn": 19969}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "119.161.55.0/24", "path": [6939, 23456], "asn": 23456}
{"organization": "TOTAL PLAY TELECOMUNICACIONES SA DE CV", "name": "TOTAL PLAY TELECOMUNICACIONES SA DE CV,MX", "id": null, "country_code": "MX", "local_pref": 100, "bgp_prefix": "189.203.44.0/24", "path": [7018, 3356, 17072], "asn": 17072}
{"organization": "AUFEMININ AUFEMININ COM", "name": "AUFEMININ AUFEMININ COM,FR", "id": null, "country_code": "FR", "local_pref": 100, "bgp_prefix": "185.86.136.0/22", "path": [7018, 3356, 39894], "asn": 39894}
{"organization": "SureWest Kansas Operations, LLC", "name": "SUREWEST-KANSAS - SureWest Kansas Operations, LLC,US", "id": "SUREWEST-KANSAS", "country_code": "US", "local_pref": 110, "bgp_prefix": "64.151.32.0/19", "path": [2914, 18712], "asn": 18712}
{"organization": "Data-Tronics Corp", "name": "DATA-TRONICS - Data-Tronics Corp,US", "id": "DATA-TRONICS", "country_code": "US", "local_pref": 100, "bgp_prefix": "159.204.51.0/24", "path": [7018, 16793], "asn": 16793}
{"organization": "INFOKOM-AS MNC Playmedia", "name": "INFOKOM-AS MNC Playmedia,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "202.80.211.0/24", "path": [2914, 23947, 17670, 17670], "asn": 17670}
{"organization": "AS3215 Orange S.A.", "name": "AS3215 Orange S.A.,FR", "id": null, "country_code": "FR", "local_pref": 100, "bgp_prefix": "194.51.0.0/16", "path": [7018, 5511, 3215], "asn": 3215}
{"organization": "UWA-AS-AP University of Western Australia", "name": "UWA-AS-AP University of Western Australia,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "134.7.183.0/24", "path": [2914, 2914, 7575, 7575, 24437], "asn": 24437}
{"organization": "CDNetworks Inc.", "name": "CDNETWORKSUS-02 - CDNetworks Inc.,US", "id": "CDNETWORKSUS-02", "country_code": "US", "local_pref": 100, "bgp_prefix": "119.31.251.0/24", "path": [7018, 6453, 4755, 36408], "asn": 36408}
{"organization": "APNIC-FIBERLINK-PK Fiberlink Pvt.Ltd", "name": "APNIC-FIBERLINK-PK Fiberlink Pvt.Ltd,PK", "id": null, "country_code": "PK", "local_pref": 100, "bgp_prefix": "27.255.53.0/24", "path": [7018, 174, 38193, 55714], "asn": 55714}
{"organization": "Qwest Communications Company, LLC", "name": "CENTURYLINK-US-LEGACY-QWEST - Qwest Communications Company, LLC,US", "id": "CENTURYLINK-US-LEGACY-QWEST", "country_code": "US", "local_pref": 100, "bgp_prefix": "198.50.0.0/22", "path": [7018, 209], "asn": 209}
{"organization": "SECURITAS-DIRECT-AS SECURITAS DIRECT ESPANA S.A.U.", "name": "SECURITAS-DIRECT-AS SECURITAS DIRECT ESPANA S.A.U.,ES", "id": null, "country_code": "ES", "local_pref": 100, "bgp_prefix": "188.94.56.0/22", "path": [7018, 12956, 3352, 25356], "asn": 25356}
{"organization": "TDS TDS Informationstechnologie AG", "name": "TDS TDS Informationstechnologie AG,DE", "id": null, "country_code": "DE", "local_pref": 100, "bgp_prefix": "193.28.96.0/21", "path": [7018, 1299, 3209, 12857, 12857, 12857, 12857], "asn": 12857}
{"organization": "COLOMBIA TELECOMUNICACIONES S.A. ESP", "name": "COLOMBIA TELECOMUNICACIONES S.A. ESP,CO", "id": null, "country_code": "CO", "local_pref": 100, "bgp_prefix": "186.115.212.0/22", "path": [7018, 12956, 3816], "asn": 3816}
{"organization": "BRIGHT HOUSE NETWORKS, LLC", "name": "BHN-TAMPA - BRIGHT HOUSE NETWORKS, LLC,US", "id": "BHN-TAMPA", "country_code": "US", "local_pref": 100, "bgp_prefix": "24.227.65.0/24", "path": [7018, 2828, 33363], "asn": 33363}
{"organization": "AAPT AAPT Limited", "name": "AAPT AAPT Limited,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "203.55.9.0/24", "path": [6939, 7545, 2764], "asn": 2764}
{"organization": "TELKOMNET-AS2-AP PT Telekomunikasi Indonesia", "name": "TELKOMNET-AS2-AP PT Telekomunikasi Indonesia,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "180.254.176.0/20", "path": [2914, 7713, 17974], "asn": 17974}
{"organization": "CLINK-AS Agrosvyaz-M Ltd", "name": "CLINK-AS Agrosvyaz-M Ltd,RU", "id": null, "country_code": "RU", "local_pref": 100, "bgp_prefix": "193.106.88.0/22", "path": [7018, 3356, 20485, 28745, 48725], "asn": 48725}
{"organization": "KDDI KDDI CORPORATION", "name": "KDDI KDDI CORPORATION,JP", "id": null, "country_code": "JP", "local_pref": 110, "bgp_prefix": "210.141.232.0/24", "path": [3257, 2516], "asn": 2516}
{"organization": "CABLEVISION S.A.", "name": "CABLEVISION S.A.,AR", "id": null, "country_code": "AR", "local_pref": 100, "bgp_prefix": "181.166.224.0/19", "path": [7018, 6762, 10481, 10318], "asn": 10318}
{"organization": "CHINATELECOM-TJ-AS-AP ASN for TIANJIN Provincial Net of CT", "name": "CHINATELECOM-TJ-AS-AP ASN for TIANJIN Provincial Net of CT,CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "221.238.40.0/24", "path": [7018, 4134, 17638], "asn": 17638}
{"organization": "GOEDY-AS-KR Dongducheonyangju office of Education", "name": "GOEDY-AS-KR Dongducheonyangju office of Education,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "122.153.255.0/24", "path": [2914, 9318, 38409], "asn": 38409}
{"organization": "Ver Tv S.A.", "name": "Ver Tv S.A.,AR", "id": null, "country_code": "AR", "local_pref": 100, "bgp_prefix": "190.105.66.0/23", "path": [7018, 12956, 22927, 27984, 27984, 27984], "asn": 27984}
{"organization": "Internap Network Services Corporation", "name": "INTERNAP-BLK - Internap Network Services Corporation,US", "id": "INTERNAP-BLK", "country_code": "US", "local_pref": 110, "bgp_prefix": "162.210.174.0/24", "path": [3257, 10913, 10913, 10913], "asn": 10913}
{"organization": "FAIRPOINT COMMUNICATIONS, INC.", "name": "CTELCO - FAIRPOINT COMMUNICATIONS, INC.,US", "id": "CTELCO", "country_code": "US", "local_pref": 100, "bgp_prefix": "64.222.228.0/24", "path": [7018, 174, 13977], "asn": 13977}
{"organization": "CABLE ONE, INC.", "name": "CABLEONE - CABLE ONE, INC.,US", "id": "CABLEONE", "country_code": "US", "local_pref": 100, "bgp_prefix": "173.207.80.0/21", "path": [7018, 3356, 11492], "asn": 11492}
{"organization": "MPX-AS Microplex PTY LTD", "name": "MPX-AS Microplex PTY LTD,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "114.76.128.0/19", "path": [11164, 7473, 4804], "asn": 4804}
{"organization": "Soluciones en Telecomunicaciones, S.A.", "name": "Soluciones en Telecomunicaciones, S.A.,GT", "id": null, "country_code": "GT", "local_pref": 110, "bgp_prefix": "168.234.52.0/24", "path": [2914, 23520, 52286], "asn": 52286}
{"organization": "RADIOSHACK CORP", "name": "RADIOSHACKAS - RADIOSHACK CORP,US", "id": "RADIOSHACKAS", "country_code": "US", "local_pref": 100, "bgp_prefix": "139.60.227.0/24", "path": [7018, 10899, 10899], "asn": 10899}
{"organization": "IS-AP iAdvantage Limited", "name": "IS-AP iAdvantage Limited,HK", "id": null, "country_code": "HK", "local_pref": 110, "bgp_prefix": "203.194.146.0/24", "path": [6939, 4766, 9381, 9381, 9729, 9729], "asn": 9729}
{"organization": "Athabasca University", "name": "ATHABASCA-U - Athabasca University,CA", "id": "ATHABASCA-U", "country_code": "CA", "local_pref": 110, "bgp_prefix": "131.232.22.0/24", "path": [11164, 852, 16580, 16580, 16580], "asn": 16580}
{"organization": "754th Electronic Systems Group", "name": "AFCONC-BLOCK1-AS - 754th Electronic Systems Group,US", "id": "AFCONC-BLOCK1-AS", "country_code": "US", "local_pref": 100, "bgp_prefix": "132.13.168.0/24", "path": [7018, 209, 721, 27064, 391], "asn": 391}
{"organization": "NOS_COMUNICACOES NOS COMUNICACOES, S.A.", "name": "NOS_COMUNICACOES NOS COMUNICACOES, S.A.,PT", "id": null, "country_code": "PT", "local_pref": 100, "bgp_prefix": "87.196.0.0/16", "path": [7018, 174, 2860], "asn": 2860}
{"organization": "ConXioN Corporation", "name": "CONXION-A - ConXioN Corporation,US", "id": "CONXION-A", "country_code": "US", "local_pref": 110, "bgp_prefix": "207.113.128.0/17", "path": [11164, 7843, 4544], "asn": 4544}
{"organization": "SNR-RO S.N. Radiocomunicatii S.A.", "name": "SNR-RO S.N. Radiocomunicatii S.A.,RO", "id": null, "country_code": "RO", "local_pref": 100, "bgp_prefix": "88.158.54.0/24", "path": [7018, 1299, 39737, 15471], "asn": 15471}
{"organization": "GTPL-AS-AP Gujarat Telelik Pvt Ltd", "name": "GTPL-AS-AP Gujarat Telelik Pvt Ltd,IN", "id": null, "country_code": "IN", "local_pref": 110, "bgp_prefix": "150.107.189.0/24", "path": [11164, 15412, 18101, 45916, 45916, 45916, 45916, 45916, 45916], "asn": 45916}
{"organization": "CCNEP-AS-NP Communications & Communicate Nepal Pvt Ltd", "name": "CCNEP-AS-NP Communications & Communicate Nepal Pvt Ltd,NP", "id": null, "country_code": "NP", "local_pref": 110, "bgp_prefix": "202.51.70.0/24", "path": [2914, 45845, 23647], "asn": 23647}
{"organization": "SUBISU-CABLENET-AS-AP Subisu Cablenet (Pvt) Ltd, Baluwatar, Kathmandu, Nepal", "name": "SUBISU-CABLENET-AS-AP Subisu Cablenet (Pvt) Ltd, Baluwatar, Kathmandu, Nepal,NP", "id": null, "country_code": "NP", "local_pref": 110, "bgp_prefix": "202.51.69.0/24", "path": [2914, 9498, 45845, 4007], "asn": 4007}
{"organization": "WideOpenWest Finance LLC", "name": "WOW-INTERNET - WideOpenWest Finance LLC,US", "id": "WOW-INTERNET", "country_code": "US", "local_pref": 110, "bgp_prefix": "68.179.181.0/24", "path": [6939, 12083], "asn": 12083}
{"organization": "United Sources of America Inc.", "name": "USA-53 - United Sources of America Inc.,US", "id": "USA-53", "country_code": "US", "local_pref": 100, "bgp_prefix": "204.124.87.0/24", "path": [7018, 6461, 11339], "asn": 11339}
{"organization": "KIXS-AS-KR Korea Telecom", "name": "KIXS-AS-KR Korea Telecom,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "220.66.86.0/24", "path": [6939, 4766], "asn": 4766}
{"organization": "Corporate Colocation Inc.", "name": "NETRANGE - Corporate Colocation Inc.,US", "id": "NETRANGE", "country_code": "US", "local_pref": 110, "bgp_prefix": "216.179.172.0/24", "path": [6939, 17139], "asn": 17139}
{"organization": "Charter Communications", "name": "CHARTER-NET-HKY-NC - Charter Communications,US", "id": "CHARTER-NET-HKY-NC", "country_code": "US", "local_pref": 110, "bgp_prefix": "97.92.112.0/20", "path": [6939, 20115], "asn": 20115}
{"organization": "AAPT AAPT Limited", "name": "AAPT AAPT Limited,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "203.33.168.0/24", "path": [6939, 7545, 2764], "asn": 2764}
{"organization": "New Wave Communications", "name": "NEWWAVECOMM - New Wave Communications,US", "id": "NEWWAVECOMM", "country_code": "US", "local_pref": 110, "bgp_prefix": "76.11.197.0/24", "path": [6939, 23404, 18812], "asn": 18812}
{"organization": "CERVEJARIA PETROPOLIS S/A", "name": "CERVEJARIA PETROPOLIS S/A,BR", "id": null, "country_code": "BR", "local_pref": 110, "bgp_prefix": "177.91.68.0/24", "path": [3257, 4230, 61899], "asn": 61899}
{"organization": "Federal State Institution Russian Scientific Center Kurchatovsky institute", "name": "Federal State Institution Russian Scientific Center Kurchatovsky institute,RU", "id": null, "country_code": "RU", "local_pref": 110, "bgp_prefix": "144.206.160.0/19", "path": [2914, 28917, 39134, 15835, 6801], "asn": 6801}
{"organization": "Cox Communications Inc.", "name": "ASN-CXA-ALL-CCI-22773-RDC - Cox Communications Inc.,US", "id": "ASN-CXA-ALL-CCI-22773-RDC", "country_code": "US", "local_pref": 110, "bgp_prefix": "98.173.144.0/20", "path": [6939, 22773], "asn": 22773}
{"organization": "360Networks (USA) Inc.", "name": "360NETWORKS-US - 360Networks (USA) Inc.,US", "id": "360NETWORKS-US", "country_code": "US", "local_pref": 100, "bgp_prefix": "66.62.16.0/21", "path": [7018, 6461, 19092], "asn": 19092}
{"organization": "CERVEJARIA PETROPOLIS S/A", "name": "CERVEJARIA PETROPOLIS S/A,BR", "id": null, "country_code": "BR", "local_pref": 110, "bgp_prefix": "177.91.68.0/22", "path": [3257, 4230, 61899], "asn": 61899}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "43.230.120.0/24", "path": [7018, 6453, 58601, 23456], "asn": 23456}
{"organization": "FasoNet-AS", "name": "FasoNet-AS,BF", "id": null, "country_code": "BF", "local_pref": 100, "bgp_prefix": "41.138.32.0/19", "path": [7018, 5511, 29571, 25543], "asn": 25543}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "43.230.120.0/22", "path": [11164, 7473, 23456, 58923, 23456], "asn": 23456}
{"organization": "ASCNCAZ CNC.AZ MMC", "name": "ASCNCAZ CNC.AZ MMC,AZ", "id": null, "country_code": "AZ", "local_pref": 110, "bgp_prefix": "91.242.30.0/24", "path": [6939, 12389, 29049, 59523], "asn": 59523}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "186.176.186.0/23", "path": [7018, 3549, 23456, 23456], "asn": 23456}
{"organization": "PIRANHA-AS-KR Piranha Systems", "name": "PIRANHA-AS-KR Piranha Systems,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "14.206.24.0/21", "path": [11164, 9318, 38701], "asn": 38701}
{"organization": "STARHUBINTERNET-AS-NGNBN Starhub Internet Pte Ltd", "name": "STARHUBINTERNET-AS-NGNBN Starhub Internet Pte Ltd,SG", "id": null, "country_code": "SG", "local_pref": 110, "bgp_prefix": "101.127.40.0/24", "path": [2914, 38861, 55430], "asn": 55430}
{"organization": "ATOMNET T-Mobile Polska S.A.", "name": "ATOMNET T-Mobile Polska S.A.,PL", "id": null, "country_code": "PL", "local_pref": 100, "bgp_prefix": "78.133.128.0/17", "path": [7018, 1299, 5588, 8246, 6714], "asn": 6714}
{"organization": "Compass Group USA Inc", "name": "COMPASSGROUP-USA - Compass Group USA Inc,US", "id": "COMPASSGROUP-USA", "country_code": "US", "local_pref": 100, "bgp_prefix": "208.82.3.0/24", "path": [7018, 3356, 16674], "asn": 16674}
{"organization": "Krypt Technologies", "name": "VPLSNET - Krypt Technologies,US", "id": "VPLSNET", "country_code": "US", "local_pref": 110, "bgp_prefix": "98.126.183.0/24", "path": [11164, 5580, 35908], "asn": 35908}
{"organization": "STARHUBINTERNET-AS-NGNBN Starhub Internet Pte Ltd", "name": "STARHUBINTERNET-AS-NGNBN Starhub Internet Pte Ltd,SG", "id": null, "country_code": "SG", "local_pref": 110, "bgp_prefix": "101.127.40.0/21", "path": [2914, 38861, 55430], "asn": 55430}
{"organization": "TDN Tikona Digital Networks Pvt Ltd.", "name": "TDN Tikona Digital Networks Pvt Ltd.,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "1.23.139.0/24", "path": [7018, 6453, 4755, 45528], "asn": 45528}
{"organization": "TeraGo Networks Inc.", "name": "TRGO - TeraGo Networks Inc.,CA", "id": "TRGO", "country_code": "CA", "local_pref": 110, "bgp_prefix": "207.54.105.0/24", "path": [6939, 20161], "asn": 20161}
{"organization": "Globalwave Telecom", "name": "Globalwave Telecom,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "189.90.56.0/21", "path": [7018, 3549, 28343, 28192], "asn": 28192}
{"organization": "CABLE ONE, INC.", "name": "CABLEONE - CABLE ONE, INC.,US", "id": "CABLEONE", "country_code": "US", "local_pref": 100, "bgp_prefix": "66.164.143.0/24", "path": [7018, 3356, 11492], "asn": 11492}
{"organization": "DoD Network Information Center", "name": "DNIC-ASBLK-05800-06055 - DoD Network Information Center,US", "id": "DNIC-ASBLK-05800-06055", "country_code": "US", "local_pref": 100, "bgp_prefix": "204.222.188.0/22", "path": [7018, 209, 721, 27064, 5972], "asn": 5972}
{"organization": "Fundacao de Amparo a Pesquisa/RJ", "name": "Fundacao de Amparo a Pesquisa/RJ,BR", "id": null, "country_code": "BR", "local_pref": 110, "bgp_prefix": "152.84.247.0/24", "path": [2914, 20080, 20080, 20080, 20080, 1916, 2715], "asn": 2715}
{"organization": "SYNAPSECOM-AS SYNAPSECOM S.A", "name": "SYNAPSECOM-AS SYNAPSECOM S.A,GR", "id": null, "country_code": "GR", "local_pref": 100, "bgp_prefix": "78.108.43.0/24", "path": [7018, 174, 8280], "asn": 8280}
{"organization": "MegaPath Corporation", "name": "MEGAPATH5-US - MegaPath Corporation,US", "id": "MEGAPATH5-US", "country_code": "US", "local_pref": 110, "bgp_prefix": "74.3.110.0/23", "path": [3257, 4565, 18566], "asn": 18566}
{"organization": "Orange County Department of Education", "name": "OCDE - Orange County Department of Education,US", "id": "OCDE", "country_code": "US", "local_pref": 100, "bgp_prefix": "104.249.66.0/24", "path": [7018, 3356, 3356, 2152, 2152, 2152, 23024], "asn": 23024}
{"organization": "BEE-AS Public Joint Stock Company Vimpel-Communications", "name": "BEE-AS Public Joint Stock Company Vimpel-Communications,RU", "id": null, "country_code": "RU", "local_pref": 100, "bgp_prefix": "83.220.227.0/24", "path": [7018, 3356, 3216, 16345], "asn": 16345}
{"organization": "GloboTech Communications", "name": "GTCOMM - GloboTech Communications,CA", "id": "GTCOMM", "country_code": "CA", "local_pref": 100, "bgp_prefix": "194.28.158.0/24", "path": [7018, 174, 36666], "asn": 36666}
{"organization": "AOL Transit Data Network", "name": "AOL-ATDN - AOL Transit Data Network,US", "id": "AOL-ATDN", "country_code": "US", "local_pref": 100, "bgp_prefix": "62.78.0.0/19", "path": [7018, 1668], "asn": 1668}
{"organization": "TPG-INTERNET-AP TPG Telecom Limited", "name": "TPG-INTERNET-AP TPG Telecom Limited,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "60.240.96.0/23", "path": [6939, 7545, 7545, 7545, 7545], "asn": 7545}
{"organization": "MIVITEC-AS MIVITEC GmbH", "name": "MIVITEC-AS MIVITEC GmbH,DE", "id": null, "country_code": "DE", "local_pref": 100, "bgp_prefix": "109.70.216.0/24", "path": [7018, 3356, 41412], "asn": 41412}
{"organization": "ROSTELECOM-AS PJSC Rostelecom", "name": "ROSTELECOM-AS PJSC Rostelecom,RU", "id": null, "country_code": "RU", "local_pref": 110, "bgp_prefix": "176.50.64.0/18", "path": [2914, 12389], "asn": 12389}
{"organization": "PHOENIX-AS PHOENIX group IT GmbH", "name": "PHOENIX-AS PHOENIX group IT GmbH,DE", "id": null, "country_code": "DE", "local_pref": 110, "bgp_prefix": "193.142.104.0/22", "path": [11164, 5400, 34460], "asn": 34460}
{"organization": "ARQIVA Arqiva Communications Ltd", "name": "ARQIVA Arqiva Communications Ltd,GB", "id": null, "country_code": "GB", "local_pref": 100, "bgp_prefix": "87.249.73.0/24", "path": [7018, 3549, 15641], "asn": 15641}
{"organization": "TRANSTEL S.A.", "name": "TRANSTEL S.A.,CO", "id": null, "country_code": "CO", "local_pref": 100, "bgp_prefix": "200.24.124.0/24", "path": [7018, 1239, 19429, 11581], "asn": 11581}
{"organization": "Savvis", "name": "CENTURYLINK-LEGACY-SAVVIS - Savvis,US", "id": "CENTURYLINK-LEGACY-SAVVIS", "country_code": "US", "local_pref": 100, "bgp_prefix": "206.99.152.0/21", "path": [7018, 3561, 3561, 3561, 3561, 3561], "asn": 3561}
{"organization": "DTAG Deutsche Telekom AG", "name": "DTAG Deutsche Telekom AG,DE", "id": null, "country_code": "DE", "local_pref": 100, "bgp_prefix": "194.49.119.0/24", "path": [7018, 3320], "asn": 3320}
{"organization": "DVOIS-IN D-Vois Broadband Pvt Ltd", "name": "DVOIS-IN D-Vois Broadband Pvt Ltd,IN", "id": null, "country_code": "IN", "local_pref": 110, "bgp_prefix": "182.48.232.0/24", "path": [2914, 9498, 55644, 55644, 55644, 55644, 55644, 55644, 55644, 55644, 55644, 55644, 55644, 55644, 55644, 55644, 55644, 55644, 45769], "asn": 45769}
{"organization": "Citrix Online, LLC", "name": "CITRIX-ONLINE-PRIMARY-AS - Citrix Online, LLC,US", "id": "CITRIX-ONLINE-PRIMARY-AS", "country_code": "US", "local_pref": 110, "bgp_prefix": "67.217.95.0/24", "path": [22822, 22911, 16815], "asn": 16815}
{"organization": "CANTV Servicios, Venezuela", "name": "CANTV Servicios, Venezuela,VE", "id": null, "country_code": "VE", "local_pref": 110, "bgp_prefix": "186.94.160.0/19", "path": [6939, 52320, 8048], "asn": 8048}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "193.150.128.0/22", "path": [7018, 1299, 21219, 42655, 23456], "asn": 23456}
{"organization": "CHINATELECOM-TJ-AS-AP ASN for TIANJIN Provincial Net of CT", "name": "CHINATELECOM-TJ-AS-AP ASN for TIANJIN Provincial Net of CT,CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "180.212.140.0/24", "path": [7018, 4134, 17638], "asn": 17638}
{"organization": "TURKSAT-AS Turksat Uydu Haberlesme ve Kablo TV Isletme A.S.", "name": "TURKSAT-AS Turksat Uydu Haberlesme ve Kablo TV Isletme A.S.,TR", "id": null, "country_code": "TR", "local_pref": 110, "bgp_prefix": "46.197.170.0/24", "path": [2914, 9121, 9121, 47524], "asn": 47524}
{"organization": "PATRICIA-COMPANI-SRL PATRICIA COMPANI SRL", "name": "PATRICIA-COMPANI-SRL PATRICIA COMPANI SRL,RO", "id": null, "country_code": "RO", "local_pref": 110, "bgp_prefix": "195.80.142.0/24", "path": [2914, 51474, 57217, 59731], "asn": 59731}
{"organization": "SUNY Institute of Technology", "name": "SUNYPOLY-ASN - SUNY Institute of Technology,US", "id": "SUNYPOLY-ASN", "country_code": "US", "local_pref": 110, "bgp_prefix": "205.232.28.0/23", "path": [6939, 13536, 20337], "asn": 20337}
{"organization": "SUNY Institute of Technology", "name": "SUNYPOLY-ASN - SUNY Institute of Technology,US", "id": "SUNYPOLY-ASN", "country_code": "US", "local_pref": 110, "bgp_prefix": "205.232.28.0/24", "path": [6939, 13536, 20337], "asn": 20337}
{"organization": "MF-CTIF Agentia Nationala de Administrare Fiscala", "name": "MF-CTIF Agentia Nationala de Administrare Fiscala,RO", "id": null, "country_code": "RO", "local_pref": 110, "bgp_prefix": "217.156.52.0/24", "path": [2914, 31313, 20929], "asn": 20929}
{"organization": "EASYHOST-COLO-AS Easyhost BVBA", "name": "EASYHOST-COLO-AS Easyhost BVBA,BE", "id": null, "country_code": "BE", "local_pref": 110, "bgp_prefix": "217.22.48.0/20", "path": [3257, 34762, 28747], "asn": 28747}
{"organization": "Embarq Corporation", "name": "EMBARQ-CLTN - Embarq Corporation,US", "id": "EMBARQ-CLTN", "country_code": "US", "local_pref": 100, "bgp_prefix": "71.1.56.0/21", "path": [7018, 209, 22561, 6222], "asn": 6222}
{"organization": "BSNL-NIB National Internet Backbone", "name": "BSNL-NIB National Internet Backbone,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "117.213.16.0/20", "path": [7018, 1299, 9829], "asn": 9829}
{"organization": "LL Bean", "name": "LL-BEAN - LL Bean,US", "id": "LL-BEAN", "country_code": "US", "local_pref": 100, "bgp_prefix": "216.151.49.0/24", "path": [7018, 2828, 7843, 11351, 31869], "asn": 31869}
{"organization": "CNIX-AP China Networks Inter-Exchange", "name": "CNIX-AP China Networks Inter-Exchange,CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "124.254.32.0/19", "path": [7018, 4134, 4847], "asn": 4847}
{"organization": "Wayport, Inc.", "name": "WAYPORT - Wayport, Inc.,US", "id": "WAYPORT", "country_code": "US", "local_pref": 100, "bgp_prefix": "100.46.128.0/19", "path": [7018, 14654], "asn": 14654}
{"organization": "BRENNERCOM-AS Brennercom S.p.A.", "name": "BRENNERCOM-AS Brennercom S.p.A.,IT", "id": null, "country_code": "IT", "local_pref": 110, "bgp_prefix": "95.171.32.0/19", "path": [3257, 20811], "asn": 20811}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "177.52.60.0/23", "path": [7018, 3549, 23456, 23456], "asn": 23456}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "177.52.60.0/22", "path": [7018, 3549, 23456, 23456], "asn": 23456}
{"organization": "AT&T Data Communications Services", "name": "INS-AS - AT&T Data Communications Services,US", "id": "INS-AS", "country_code": "US", "local_pref": 100, "bgp_prefix": "66.142.5.0/24", "path": [7018, 2386], "asn": 2386}
{"organization": "NETSPEED-AS-AP Netspeed Internet Communications", "name": "NETSPEED-AS-AP Netspeed Internet Communications,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "203.31.48.0/24", "path": [11164, 4739, 18111], "asn": 18111}
{"organization": "CHINANET-JS-AS-AP AS Number for CHINANET jiangsu province backbone", "name": "CHINANET-JS-AS-AP AS Number for CHINANET jiangsu province backbone,CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "58.216.24.0/24", "path": [7018, 4134, 23650], "asn": 23650}
{"organization": "GAYANET-AS-KR CJ-CABLENET", "name": "GAYANET-AS-KR CJ-CABLENET,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "1.176.244.0/22", "path": [11164, 9318, 38091, 38091, 9845, 10066], "asn": 10066}
{"organization": "ROSINTEL-AS Locked Joint Stock Company OGANER-SERVICE", "name": "ROSINTEL-AS Locked Joint Stock Company OGANER-SERVICE,RU", "id": null, "country_code": "RU", "local_pref": 110, "bgp_prefix": "95.138.242.0/24", "path": [6939, 12389, 15757, 29520], "asn": 29520}
{"organization": "SUNNYVISION-AS-AP SunnyVision Limited", "name": "SUNNYVISION-AS-AP SunnyVision Limited,HK", "id": null, "country_code": "HK", "local_pref": 110, "bgp_prefix": "117.18.68.0/24", "path": [11164, 10026, 38478], "asn": 38478}
{"organization": "SMARTLINK-POWAI-IN SmartLink Broadband Services Pvt Ltd", "name": "SMARTLINK-POWAI-IN SmartLink Broadband Services Pvt Ltd,IN", "id": null, "country_code": "IN", "local_pref": 110, "bgp_prefix": "103.5.186.0/24", "path": [6939, 10026, 55879], "asn": 55879}
{"organization": "CachedNet LLC", "name": "CACHED - CachedNet LLC,US", "id": "CACHED", "country_code": "US", "local_pref": 110, "bgp_prefix": "107.150.85.0/24", "path": [3257, 22653, 46805], "asn": 46805}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "65.200.235.0/24", "path": [7018, 701, 27174], "asn": 27174}
{"organization": "Global Village Telecom", "name": "Global Village Telecom,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "177.157.0.0/19", "path": [7018, 3549, 18881], "asn": 18881}
{"organization": "CSTNET-AS-AP Computer Network Information Center", "name": "CSTNET-AS-AP Computer Network Information Center,CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "115.175.128.0/17", "path": [7018, 3320, 7497], "asn": 7497}
{"organization": "BellSouth.net Inc.", "name": "BELLSOUTH-NET-BLK - BellSouth.net Inc.,US", "id": "BELLSOUTH-NET-BLK", "country_code": "US", "local_pref": 100, "bgp_prefix": "65.14.143.0/24", "path": [7018, 6389], "asn": 6389}
{"organization": "Axtel, S.A.B. de C.V.", "name": "Axtel, S.A.B. de C.V.,MX", "id": null, "country_code": "MX", "local_pref": 100, "bgp_prefix": "148.243.240.0/24", "path": [7018, 701, 6503], "asn": 6503}
{"organization": "ASN-NUMERICABLE NC Numericable S.A.", "name": "ASN-NUMERICABLE NC Numericable S.A.,FR", "id": null, "country_code": "FR", "local_pref": 100, "bgp_prefix": "212.198.254.0/23", "path": [7018, 6461, 20776, 21502], "asn": 21502}
{"organization": "ELEKTA-AS LTD Elekta", "name": "ELEKTA-AS LTD Elekta,LT", "id": null, "country_code": "LT", "local_pref": 100, "bgp_prefix": "91.187.160.0/19", "path": [7018, 3320, 13194, 29625], "asn": 29625}
{"organization": "Fluke Electronics", "name": "FLUKE-ELECTRONICS - Fluke Electronics,US", "id": "FLUKE-ELECTRONICS", "country_code": "US", "local_pref": 100, "bgp_prefix": "129.196.231.0/24", "path": [7018, 3356, 4323, 16435], "asn": 16435}
{"organization": "HPM Networks", "name": "PRODCUTION-AS - HPM Networks,US", "id": "PRODCUTION-AS", "country_code": "US", "local_pref": 100, "bgp_prefix": "204.29.171.0/24", "path": [7018, 12246], "asn": 12246}
{"organization": "DHECYBER-AS-ID Dhecyber Flow Indonesia, PT", "name": "DHECYBER-AS-ID Dhecyber Flow Indonesia, PT,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "202.67.12.0/24", "path": [2914, 23947, 24195, 24195, 24195, 24195, 24195], "asn": 24195}
{"organization": "DHECYBER-AS-ID Dhecyber Flow Indonesia, PT", "name": "DHECYBER-AS-ID Dhecyber Flow Indonesia, PT,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "202.67.12.0/23", "path": [2914, 23947, 24195, 24195, 24195], "asn": 24195}
{"organization": "Broad-Connect Telecom Inc.", "name": "SUMMADOM - Broad-Connect Telecom Inc.,CA", "id": "SUMMADOM", "country_code": "CA", "local_pref": 110, "bgp_prefix": "208.82.88.0/21", "path": [11164, 852, 23419], "asn": 23419}
{"organization": "SEEDNET Digital United Inc.", "name": "SEEDNET Digital United Inc.,TW", "id": null, "country_code": "TW", "local_pref": 110, "bgp_prefix": "210.66.64.0/18", "path": [2914, 4780], "asn": 4780}
{"organization": "SMARTONE-MB-AS-AP SmarTone Mobile Communications Ltd", "name": "SMARTONE-MB-AS-AP SmarTone Mobile Communications Ltd,HK", "id": null, "country_code": "HK", "local_pref": 110, "bgp_prefix": "180.219.96.0/20", "path": [6939, 10026, 17924, 17924], "asn": 17924}
{"organization": "ColoCrossing", "name": "AS-COLOCROSSING - ColoCrossing,US", "id": "AS-COLOCROSSING", "country_code": "US", "local_pref": 110, "bgp_prefix": "23.94.143.0/24", "path": [3257, 36352], "asn": 36352}
{"organization": "Windstream Communications Inc", "name": "WINDSTREAM - Windstream Communications Inc,US", "id": "WINDSTREAM", "country_code": "US", "local_pref": 110, "bgp_prefix": "216.172.86.0/24", "path": [2914, 7029], "asn": 7029}
{"organization": "Telmex Colombia S.A.", "name": "Telmex Colombia S.A.,CO", "id": null, "country_code": "CO", "local_pref": 110, "bgp_prefix": "181.63.254.0/24", "path": [2914, 14080, 14080, 14080, 14080, 14080, 14080, 10620], "asn": 10620}
{"organization": "DARKGROUP Dark Group Ltd", "name": "DARKGROUP Dark Group Ltd,GB", "id": null, "country_code": "GB", "local_pref": 110, "bgp_prefix": "78.143.254.0/24", "path": [2914, 39326, 41659, 41659, 44955], "asn": 44955}
{"organization": "Embarq Corporation", "name": "EMBARQ-CHSK - Embarq Corporation,US", "id": "EMBARQ-CHSK", "country_code": "US", "local_pref": 100, "bgp_prefix": "69.68.196.0/22", "path": [7018, 209, 17402], "asn": 17402}
{"organization": "SITA-AS", "name": "SITA-AS,ZA", "id": null, "country_code": "ZA", "local_pref": 100, "bgp_prefix": "164.146.0.0/15", "path": [7018, 6453, 36937, 37130], "asn": 37130}
{"organization": "Powerhouse Management, Inc.", "name": "PHMGMT-AS1 - Powerhouse Management, Inc.,US", "id": "PHMGMT-AS1", "country_code": "US", "local_pref": 110, "bgp_prefix": "103.27.227.0/24", "path": [6939, 4826, 17819, 22363], "asn": 22363}
{"organization": "tw telecom holdings, inc.", "name": "TWTC - tw telecom holdings, inc.,US", "id": "TWTC", "country_code": "US", "local_pref": 100, "bgp_prefix": "168.215.48.0/24", "path": [7018, 3356, 4323], "asn": 4323}
{"organization": "University of Puerto Rico", "name": "UPRENET - University of Puerto Rico,PR", "id": "UPRENET", "country_code": "PR", "local_pref": 100, "bgp_prefix": "136.145.101.0/24", "path": [7018, 11992, 5786], "asn": 5786}
{"organization": "tw telecom holdings, inc.", "name": "TWTC - tw telecom holdings, inc.,US", "id": "TWTC", "country_code": "US", "local_pref": 100, "bgp_prefix": "168.215.48.0/20", "path": [7018, 3356, 4323], "asn": 4323}
{"organization": "NEWSKIES-AS-AP New Skies Satellites, Hong Kong Teleport", "name": "NEWSKIES-AS-AP New Skies Satellites, Hong Kong Teleport,NL", "id": null, "country_code": "NL", "local_pref": 110, "bgp_prefix": "210.5.248.0/21", "path": [6939, 4826, 9398, 9822, 17659, 23649], "asn": 23649}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "64.213.178.0/23", "path": [7018, 3549, 23456], "asn": 23456}
{"organization": "CABLE ONE, INC.", "name": "CABLEONE - CABLE ONE, INC.,US", "id": "CABLEONE", "country_code": "US", "local_pref": 100, "bgp_prefix": "66.164.33.0/24", "path": [7018, 6461, 11492], "asn": 11492}
{"organization": "GIGAINFRA Softbank BB Corp.", "name": "GIGAINFRA Softbank BB Corp.,JP", "id": null, "country_code": "JP", "local_pref": 110, "bgp_prefix": "210.239.63.0/24", "path": [6939, 17676], "asn": 17676}
{"organization": "DU-AS1 Emirates Integrated Telecommunications Company PJSC (EITC-DU)", "name": "DU-AS1 Emirates Integrated Telecommunications Company PJSC (EITC-DU),AE", "id": null, "country_code": "AE", "local_pref": 100, "bgp_prefix": "94.206.192.0/19", "path": [7018, 3356, 15802], "asn": 15802}
{"organization": "RCP", "name": "ATRIA - RCP,CA", "id": "ATRIA", "country_code": "CA", "local_pref": 110, "bgp_prefix": "216.16.224.0/19", "path": [11164, 812, 14472], "asn": 14472}
{"organization": "JCN-AS-KR Ulsan Jung-Ang Broadcasting Network", "name": "JCN-AS-KR Ulsan Jung-Ang Broadcasting Network,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "124.216.160.0/19", "path": [6939, 4766, 9457, 45361], "asn": 45361}
{"organization": "Telecom Argentina S.A.", "name": "Telecom Argentina S.A.,AR", "id": null, "country_code": "AR", "local_pref": 100, "bgp_prefix": "190.137.16.0/21", "path": [7018, 6762, 7303], "asn": 7303}
{"organization": "RACK59 Partners, LLC", "name": "RACK59 - RACK59 Partners, LLC,US", "id": "RACK59", "country_code": "US", "local_pref": 100, "bgp_prefix": "199.182.168.0/21", "path": [7018, 174, 22898, 54945], "asn": 54945}
{"organization": "CHINANET-SH-AP China Telecom (Group)", "name": "CHINANET-SH-AP China Telecom (Group),CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "222.67.0.0/16", "path": [7018, 4134, 4812], "asn": 4812}
{"organization": "AT&T Data Communications Services", "name": "INS-AS - AT&T Data Communications Services,US", "id": "INS-AS", "country_code": "US", "local_pref": 100, "bgp_prefix": "146.91.48.0/21", "path": [7018, 2386], "asn": 2386}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "95.141.253.0/24", "path": [3257, 48237, 48237, 43852, 21050, 23456], "asn": 23456}
{"organization": "HELLONET-AS-KR CJ-CABLENET", "name": "HELLONET-AS-KR CJ-CABLENET,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "121.53.144.0/20", "path": [11164, 3786, 38091], "asn": 38091}
{"organization": "CNBTV-AS-KR ChungNam Broadcastin Co.", "name": "CNBTV-AS-KR ChungNam Broadcastin Co.,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "121.53.144.0/22", "path": [11164, 3786, 38091, 38669], "asn": 38669}
{"organization": "Whidbey Internet Services", "name": "WHIDBEY1 - Whidbey Internet Services,US", "id": "WHIDBEY1", "country_code": "US", "local_pref": 100, "bgp_prefix": "66.235.70.0/24", "path": [7018, 174, 6295], "asn": 6295}
{"organization": "Excel Telecommunications", "name": "AS25674 - Excel Telecommunications,US", "id": "AS25674", "country_code": "US", "local_pref": 100, "bgp_prefix": "72.249.120.0/24", "path": [7018, 3356, 25674], "asn": 25674}
{"organization": "MEGADATOS S.A.", "name": "MEGADATOS S.A.,EC", "id": null, "country_code": "EC", "local_pref": 100, "bgp_prefix": "157.100.177.0/24", "path": [7018, 3356, 26613, 27757, 23216], "asn": 23216}
{"organization": "TE-AS TE-AS", "name": "TE-AS TE-AS,EG", "id": null, "country_code": "EG", "local_pref": 99, "bgp_prefix": "163.121.183.0/24", "path": [6939, 8452], "asn": 8452}
{"organization": "New York Daily News, L.P.", "name": "NYDN-33 - New York Daily News, L.P.,US", "id": "NYDN-33", "country_code": "US", "local_pref": 100, "bgp_prefix": "208.64.108.0/24", "path": [7018, 6461, 33535], "asn": 33535}
{"organization": "Unknown", "name": "Unknown AS (ASN:55592)", "id": "UNKNOWN-55592", "local_pref": 110, "bgp_prefix": "101.55.60.0/24", "path": [6939, 4766, 55592, 55592, 55592], "asn": 55592}
{"organization": "Telmex Colombia S.A.", "name": "Telmex Colombia S.A.,CO", "id": null, "country_code": "CO", "local_pref": 110, "bgp_prefix": "200.71.56.0/24", "path": [3257, 14080, 14080, 14080, 14080, 14080, 14080, 14080, 14080, 14080, 14080, 14080, 14080, 14080, 10620], "asn": 10620}
{"organization": "CrossBridge Solutions Inc.", "name": "CROSSBRDG-ASN01 - CrossBridge Solutions Inc.,US", "id": "CROSSBRDG-ASN01", "country_code": "US", "local_pref": 110, "bgp_prefix": "63.84.142.0/24", "path": [4181, 14414], "asn": 14414}
{"organization": "Vegas Telecom Informtica Ltda.", "name": "Vegas Telecom Informtica Ltda.,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "177.155.162.0/24", "path": [7018, 6762, 23456, 52752], "asn": 52752}
{"organization": "754th Electronic Systems Group", "name": "AFCONC-BLOCK1-AS - 754th Electronic Systems Group,US", "id": "AFCONC-BLOCK1-AS", "country_code": "US", "local_pref": 100, "bgp_prefix": "132.48.245.0/24", "path": [7018, 209, 721, 27064, 440], "asn": 440}
{"organization": "TELCOINABOX-AU Level 10, 9 Hunter Street", "name": "TELCOINABOX-AU Level 10, 9 Hunter Street,AU", "id": null, "country_code": "AU", "local_pref": 100, "bgp_prefix": "155.143.80.0/24", "path": [7018, 1239, 4637, 4637, 4637, 4637, 1221, 45510], "asn": 45510}
{"organization": "Netcelerate Corporation", "name": "NETCEL - Netcelerate Corporation,CA", "id": "NETCEL", "country_code": "CA", "local_pref": 110, "bgp_prefix": "208.87.20.0/22", "path": [15290, 40571], "asn": 40571}
{"organization": "Jordan Data Communications Company LLC", "name": "Jordan Data Communications Company LLC,JO", "id": null, "country_code": "JO", "local_pref": 100, "bgp_prefix": "149.200.136.0/24", "path": [7018, 5511, 8697, 8376], "asn": 8376}
{"organization": "Instituto Costarricense de Electricidad y Telecom.", "name": "Instituto Costarricense de Electricidad y Telecom.,CR", "id": null, "country_code": "CR", "local_pref": 100, "bgp_prefix": "201.195.101.0/24", "path": [7018, 174, 11830, 11830, 11830, 11830, 11830, 11830, 11830, 11830, 11830, 11830, 11830, 11830, 11830, 11830, 11830, 11830], "asn": 11830}
{"organization": "INTERNODE-AS Internode Pty Ltd", "name": "INTERNODE-AS Internode Pty Ltd,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "203.0.139.0/24", "path": [2914, 4739], "asn": 4739}
{"organization": "CTRLS-AS-IN CtrlS Datacenters Ltd.", "name": "CTRLS-AS-IN CtrlS Datacenters Ltd.,IN", "id": null, "country_code": "IN", "local_pref": 110, "bgp_prefix": "103.1.115.0/24", "path": [11164, 15412, 18101, 18229], "asn": 18229}
{"organization": "MOBILY-AS Etihad Etisalat Company (Mobily)", "name": "MOBILY-AS Etihad Etisalat Company (Mobily),SA", "id": null, "country_code": "SA", "local_pref": 99, "bgp_prefix": "31.166.64.0/19", "path": [6939, 35819, 48237, 35819], "asn": 35819}
{"organization": "ATMAN-POLAND-AS ATM S.A.", "name": "ATMAN-POLAND-AS ATM S.A.,PL", "id": null, "country_code": "PL", "local_pref": 99, "bgp_prefix": "193.111.36.0/24", "path": [6939, 24748], "asn": 24748}
{"organization": "VIPNET", "name": "VIPNET,CI", "id": null, "country_code": "CI", "local_pref": 100, "bgp_prefix": "197.159.205.0/24", "path": [7018, 5511, 29571, 37381], "asn": 37381}
{"organization": "Krypt Technologies", "name": "VPLSNET - Krypt Technologies,US", "id": "VPLSNET", "country_code": "US", "local_pref": 110, "bgp_prefix": "100.43.154.0/24", "path": [11164, 5580, 35908], "asn": 35908}
{"organization": "BSNL-NIB National Internet Backbone", "name": "BSNL-NIB National Internet Backbone,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "117.247.48.0/20", "path": [7018, 6762, 9829], "asn": 9829}
{"organization": "Allstream Corp.", "name": "ALLST-15290 - Allstream Corp.,CA", "id": "ALLST-15290", "country_code": "CA", "local_pref": 110, "bgp_prefix": "198.96.187.0/24", "path": [15290], "asn": 15290}
{"organization": "Tim Celular S.A.", "name": "Tim Celular S.A.,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "177.167.224.0/19", "path": [7018, 6762, 26615], "asn": 26615}
{"organization": "BRUNET-ASN BruNet - Telekom Brunei Berhad", "name": "BRUNET-ASN BruNet - Telekom Brunei Berhad,BN", "id": null, "country_code": "BN", "local_pref": 110, "bgp_prefix": "202.160.42.0/23", "path": [11164, 3491, 10094], "asn": 10094}
{"organization": "IVANELNET IVANEL.NET DOO", "name": "IVANELNET IVANEL.NET DOO,RS", "id": null, "country_code": "RS", "local_pref": 110, "bgp_prefix": "91.228.252.0/23", "path": [3257, 31042, 44301], "asn": 44301}
{"organization": "KDDI-AS-AP KDDI Australia Pty. Ltd.", "name": "KDDI-AS-AP KDDI Australia Pty. Ltd.,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "203.29.114.0/24", "path": [6939, 7545, 9942, 18385, 18385], "asn": 18385}
{"organization": "IPNEXT S.A.", "name": "IPNEXT S.A.,AR", "id": null, "country_code": "AR", "local_pref": 100, "bgp_prefix": "190.7.234.0/24", "path": [7018, 3549, 27881], "asn": 27881}
{"organization": "PSAFE TECNOLOGIA S/A", "name": "PSAFE TECNOLOGIA S/A,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "177.72.207.0/24", "path": [7018, 6762, 26615, 16397, 52691], "asn": 52691}
{"organization": "ALFANUMERIC", "name": "ALFANUMERIC,NI", "id": null, "country_code": "NI", "local_pref": 100, "bgp_prefix": "191.98.226.0/24", "path": [7018, 1299, 23520, 23456, 27742, 19447], "asn": 19447}
{"organization": "RETIUNITE-AS RetiUnite SRL", "name": "RETIUNITE-AS RetiUnite SRL,IT", "id": null, "country_code": "IT", "local_pref": 110, "bgp_prefix": "92.63.227.0/24", "path": [3257, 8928, 44942], "asn": 44942}
{"organization": "Instituto Costarricense de Electricidad y Telecom.", "name": "Instituto Costarricense de Electricidad y Telecom.,CR", "id": null, "country_code": "CR", "local_pref": 100, "bgp_prefix": "201.198.238.0/23", "path": [7018, 1239, 11830], "asn": 11830}
{"organization": "Network for Education and Research in Oregon (NERO)", "name": "NERONET - Network for Education and Research in Oregon (NERO),US", "id": "NERONET", "country_code": "US", "local_pref": 100, "bgp_prefix": "198.237.64.0/19", "path": [7018, 3356, 3701], "asn": 3701}
{"organization": "The Bank of New York Mellon Corporation", "name": "BANKOFNEWYORK-AS - The Bank of New York Mellon Corporation,US", "id": "BANKOFNEWYORK-AS", "country_code": "US", "local_pref": 100, "bgp_prefix": "160.254.110.0/23", "path": [7018, 3356, 11911], "asn": 11911}
{"organization": "NCONNECT-AS Mir Telematiki Ltd.", "name": "NCONNECT-AS Mir Telematiki Ltd.,RU", "id": null, "country_code": "RU", "local_pref": 110, "bgp_prefix": "141.105.67.0/24", "path": [11164, 9002, 29053, 49335], "asn": 49335}
{"organization": "INTELSAT GLOBAL SERVICE CORPORATION", "name": "INTELSAT-1 - INTELSAT GLOBAL SERVICE CORPORATION,US", "id": "INTELSAT-1", "country_code": "US", "local_pref": 100, "bgp_prefix": "213.185.102.0/24", "path": [7018, 701, 22351], "asn": 22351}
{"organization": "Embarq Corporation", "name": "EMBARQ-LVGS - Embarq Corporation,US", "id": "EMBARQ-LVGS", "country_code": "US", "local_pref": 100, "bgp_prefix": "206.228.96.0/20", "path": [7018, 209, 22561, 11398], "asn": 11398}
{"organization": "INTERACTIVEHOSTING-AS-AP 437 Williamstown Road", "name": "INTERACTIVEHOSTING-AS-AP 437 Williamstown Road,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "203.25.234.0/24", "path": [2914, 38809, 55422], "asn": 55422}
{"organization": "PARAOPEBANET PROVEDOR LTDA", "name": "PARAOPEBANET PROVEDOR LTDA,BR", "id": null, "country_code": "BR", "local_pref": 110, "bgp_prefix": "177.38.136.0/24", "path": [2914, 4230, 52947], "asn": 52947}
{"organization": "Fidelity Communication International Inc.", "name": "FIDN - Fidelity Communication International Inc.,US", "id": "FIDN", "country_code": "US", "local_pref": 110, "bgp_prefix": "24.139.32.0/20", "path": [6939, 11976, 11976, 11976, 11976, 11976, 11976, 11976], "asn": 11976}
{"organization": "Vulcan Materials Company", "name": "VMCNET - Vulcan Materials Company,US", "id": "VMCNET", "country_code": "US", "local_pref": 100, "bgp_prefix": "205.235.127.0/24", "path": [7018, 3356, 4323, 14951], "asn": 14951}
{"organization": "MegaPath Corporation", "name": "MEGAPATH5-US - MegaPath Corporation,US", "id": "MEGAPATH5-US", "country_code": "US", "local_pref": 100, "bgp_prefix": "216.254.70.0/24", "path": [7018, 2828, 18566], "asn": 18566}
{"organization": "BNY Brokerage", "name": "BNYB-SONIC - BNY Brokerage,US", "id": "BNYB-SONIC", "country_code": "US", "local_pref": 110, "bgp_prefix": "67.43.84.0/24", "path": [3257, 13789, 33359], "asn": 33359}
{"organization": "VERSATEL Versatel Deutschland GmbH", "name": "VERSATEL Versatel Deutschland GmbH,DE", "id": null, "country_code": "DE", "local_pref": 100, "bgp_prefix": "84.19.192.0/19", "path": [7018, 3320, 8881, 8881], "asn": 8881}
{"organization": "INTERNEX-AS-AP InterNex Australia Pty Ltd", "name": "INTERNEX-AS-AP InterNex Australia Pty Ltd,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "203.122.175.0/24", "path": [6939, 7545, 2764, 38333, 38333, 38333, 38333, 7579], "asn": 7579}
{"organization": "HCNSEOCHO-AS-KR DCC", "name": "HCNSEOCHO-AS-KR DCC,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "59.187.220.0/22", "path": [6939, 4766, 7562], "asn": 7562}
{"organization": "Mountain Cablevision LTD.", "name": "MTNCABLE - Mountain Cablevision LTD.,CA", "id": "MTNCABLE", "country_code": "CA", "local_pref": 110, "bgp_prefix": "71.19.0.0/17", "path": [11164, 812, 14366, 14366], "asn": 14366}
{"organization": "BDNET SOLUCOES TECNOLOGICAS LTDA ME", "name": "BDNET SOLUCOES TECNOLOGICAS LTDA ME,BR", "id": null, "country_code": "BR", "local_pref": 110, "bgp_prefix": "177.184.48.0/24", "path": [2914, 28329, 52896], "asn": 52896}
{"organization": "BSNL-NIB National Internet Backbone", "name": "BSNL-NIB National Internet Backbone,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "117.249.240.0/20", "path": [7018, 1299, 9829], "asn": 9829}
{"organization": "TOT-NET TOT Public Company Limited", "name": "TOT-NET TOT Public Company Limited,TH", "id": null, "country_code": "TH", "local_pref": 100, "bgp_prefix": "125.26.208.0/20", "path": [7018, 701, 38040, 9737, 23969], "asn": 23969}
{"organization": "ALJAWWALSTC-AS Saudi Telecom Company JSC", "name": "ALJAWWALSTC-AS Saudi Telecom Company JSC,SA", "id": null, "country_code": "SA", "local_pref": 110, "bgp_prefix": "95.187.110.0/24", "path": [3257, 39386, 25019, 39891], "asn": 39891}
{"organization": "Hydro One Telecom Inc.", "name": "HYDROONETELECOM - Hydro One Telecom Inc.,CA", "id": "HYDROONETELECOM", "country_code": "CA", "local_pref": 110, "bgp_prefix": "142.47.249.0/24", "path": [3257, 19752], "asn": 19752}
{"organization": "GHXTNET Beijing GuanghuanXuntong Digital Technology Co.,LTD.", "name": "GHXTNET Beijing GuanghuanXuntong Digital Technology Co.,LTD.,CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "106.50.16.0/20", "path": [7018, 4837, 4808, 9298, 9298, 9298], "asn": 9298}
{"organization": "Gannett Co. Inc.", "name": "GANNETT5-NET - Gannett Co. Inc.,US", "id": "GANNETT5-NET", "country_code": "US", "local_pref": 100, "bgp_prefix": "159.54.224.0/19", "path": [7018, 2828, 21735], "asn": 21735}
{"organization": "Uninet S.A. de C.V.", "name": "Uninet S.A. de C.V.,MX", "id": null, "country_code": "MX", "local_pref": 110, "bgp_prefix": "148.208.181.0/24", "path": [2914, 8151], "asn": 8151}
{"organization": "EXETEL-AS-AP Exetel Pty Ltd", "name": "EXETEL-AS-AP Exetel Pty Ltd,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "115.70.0.0/18", "path": [6939, 7545, 2764, 10143], "asn": 10143}
{"organization": "AAPT AAPT Limited", "name": "AAPT AAPT Limited,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "59.101.57.0/24", "path": [6939, 7545, 2764], "asn": 2764}
{"organization": "RELCOM-AS OOO NPO Relcom", "name": "RELCOM-AS OOO NPO Relcom,RU", "id": null, "country_code": "RU", "local_pref": 110, "bgp_prefix": "194.58.87.0/24", "path": [11164, 9002, 60926, 2118], "asn": 2118}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "185.15.48.0/24", "path": [7018, 174, 23456], "asn": 23456}
{"organization": "NS3ASN NS3 s.r.l.", "name": "NS3ASN NS3 s.r.l.,IT", "id": null, "country_code": "IT", "local_pref": 100, "bgp_prefix": "213.187.10.0/23", "path": [7018, 174, 50316, 39479], "asn": 39479}
{"organization": "ASN-IBSNAZ Telecom Italia S.p.a.", "name": "ASN-IBSNAZ Telecom Italia S.p.a.,IT", "id": null, "country_code": "IT", "local_pref": 100, "bgp_prefix": "194.243.93.0/24", "path": [7018, 6762, 3269], "asn": 3269}
{"organization": "Telnet Worldwide, Inc.", "name": "TELNET - Telnet Worldwide, Inc.,US", "id": "TELNET", "country_code": "US", "local_pref": 110, "bgp_prefix": "69.54.216.0/24", "path": [6939, 46208, 27553], "asn": 27553}
{"organization": "Tim Celular S.A.", "name": "Tim Celular S.A.,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "177.51.144.0/21", "path": [7018, 6762, 26615], "asn": 26615}
{"organization": "COMINDICO-AP SOUL Converged Communications Australia", "name": "COMINDICO-AP SOUL Converged Communications Australia,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "202.168.34.0/24", "path": [6939, 7545, 9942], "asn": 9942}
{"organization": "Blue Hill Data Services", "name": "BLUE-HILL-DATA-SERVICES-AS - Blue Hill Data Services,US", "id": "BLUE-HILL-DATA-SERVICES-AS", "country_code": "US", "local_pref": 110, "bgp_prefix": "216.25.192.0/20", "path": [6939, 46887, 32674], "asn": 32674}
{"organization": "GABIA-AS-KR GABIA Inc.", "name": "GABIA-AS-KR GABIA Inc.,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "183.86.222.0/24", "path": [6939, 4766, 9457, 17589, 17589, 17589], "asn": 17589}
{"organization": "MARIN MEDICAL PRACTICE CONCEPTS, INC.", "name": "MMPC-4 - MARIN MEDICAL PRACTICE CONCEPTS, INC.,US", "id": "MMPC-4", "country_code": "US", "local_pref": 110, "bgp_prefix": "204.8.171.0/24", "path": [7922, 33667, 55006], "asn": 55006}
{"organization": "CITNSO Center of Information Technologies Novosibirsk area", "name": "CITNSO Center of Information Technologies Novosibirsk area,RU", "id": null, "country_code": "RU", "local_pref": 100, "bgp_prefix": "195.208.191.0/24", "path": [7018, 3356, 20485, 21127, 25231], "asn": 25231}
{"organization": "COSMOSTV-AS JCLL Cosmos TV", "name": "COSMOSTV-AS JCLL Cosmos TV,BY", "id": null, "country_code": "BY", "local_pref": 110, "bgp_prefix": "93.125.104.0/22", "path": [6939, 12389, 6697, 31143], "asn": 31143}
{"organization": "FIBRLINK Beijing FibrLINK Networks Co.,Ltd.", "name": "FIBRLINK Beijing FibrLINK Networks Co.,Ltd.,CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "125.96.0.0/16", "path": [7018, 4134, 4847, 9814], "asn": 9814}
{"organization": "CHINANET-BACKBONE No.31,Jin-rong Street", "name": "CHINANET-BACKBONE No.31,Jin-rong Street,CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "125.96.0.0/14", "path": [7018, 4134], "asn": 4134}
{"organization": "OCN NTT Communications Corporation", "name": "OCN NTT Communications Corporation,JP", "id": null, "country_code": "JP", "local_pref": 110, "bgp_prefix": "219.164.0.0/15", "path": [2914, 4713], "asn": 4713}
{"organization": "Anonymizer Inc.", "name": "ANONYMIZER - Anonymizer Inc.,US", "id": "ANONYMIZER", "country_code": "US", "local_pref": 100, "bgp_prefix": "209.112.242.0/23", "path": [7018, 701, 6130, 53559], "asn": 53559}
{"organization": "MegaLink", "name": "MegaLink,BO", "id": null, "country_code": "BO", "local_pref": 110, "bgp_prefix": "200.75.165.0/24", "path": [2914, 6568, 22541, 22541], "asn": 22541}
{"organization": "FIBRLINK Beijing FibrLINK Networks Co.,Ltd.", "name": "FIBRLINK Beijing FibrLINK Networks Co.,Ltd.,CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "125.96.0.0/19", "path": [7018, 4134, 4847, 9814], "asn": 9814}
{"organization": "BANKINFORM-AS CONTENT DELIVERY NETWORK LTD", "name": "BANKINFORM-AS CONTENT DELIVERY NETWORK LTD,UA", "id": null, "country_code": "UA", "local_pref": 110, "bgp_prefix": "178.151.255.0/24", "path": [11164, 9002, 13188, 13188, 13188, 13188, 13188, 13188], "asn": 13188}
{"organization": "DU-AS1 Emirates Integrated Telecommunications Company PJSC (EITC-DU)", "name": "DU-AS1 Emirates Integrated Telecommunications Company PJSC (EITC-DU),AE", "id": null, "country_code": "AE", "local_pref": 110, "bgp_prefix": "94.200.32.0/19", "path": [2914, 15802], "asn": 15802}
{"organization": "Locaweb Servios de Internet S/A", "name": "Locaweb Servios de Internet S/A,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "200.234.208.0/20", "path": [7018, 3549, 18881, 27715], "asn": 27715}
{"organization": "WANXP-AS-ID PT. Wanriau Indoxp", "name": "WANXP-AS-ID PT. Wanriau Indoxp,ID", "id": null, "country_code": "ID", "local_pref": 100, "bgp_prefix": "45.64.252.0/24", "path": [7018, 1299, 7713, 45294], "asn": 45294}
{"organization": "Oklahoma Network for Education Enrichment and", "name": "ONENET-AS-1 - Oklahoma Network for Education Enrichment and,US", "id": "ONENET-AS-1", "country_code": "US", "local_pref": 110, "bgp_prefix": "198.204.126.0/24", "path": [6939, 2381, 2381, 5078], "asn": 5078}
{"organization": "EPH-AS EuropaPress Holding d.o.o.", "name": "EPH-AS EuropaPress Holding d.o.o.,HR", "id": null, "country_code": "HR", "local_pref": 110, "bgp_prefix": "213.202.78.0/24", "path": [3257, 5391, 13046, 25045], "asn": 25045}
{"organization": "LINKdotNET-AS", "name": "LINKdotNET-AS,EG", "id": null, "country_code": "EG", "local_pref": 100, "bgp_prefix": "197.160.92.0/22", "path": [7018, 6762, 24863], "asn": 24863}
{"organization": "TTM 23Media GmbH", "name": "TTM 23Media GmbH,DE", "id": null, "country_code": "DE", "local_pref": 110, "bgp_prefix": "45.59.135.0/24", "path": [2914, 47447], "asn": 47447}
{"organization": "Uninet S.A. de C.V.", "name": "Uninet S.A. de C.V.,MX", "id": null, "country_code": "MX", "local_pref": 100, "bgp_prefix": "189.234.224.0/19", "path": [7018, 1239, 8151], "asn": 8151}
{"organization": "DTS-ISP-CORE1-AP DTS LTD", "name": "DTS-ISP-CORE1-AP DTS LTD,NZ", "id": null, "country_code": "NZ", "local_pref": 110, "bgp_prefix": "202.174.190.0/23", "path": [3257, 45177, 24183], "asn": 24183}
{"organization": "Yahoo!", "name": "YAHOO-3 - Yahoo!,US", "id": "YAHOO-3", "country_code": "US", "local_pref": 100, "bgp_prefix": "72.30.0.0/19", "path": [7018, 1299, 10310, 10310, 10310, 10310, 26101], "asn": 26101}
{"organization": "New Source Broadband", "name": "NSB1-NET - New Source Broadband,US", "id": "NSB1-NET", "country_code": "US", "local_pref": 110, "bgp_prefix": "198.186.12.0/24", "path": [6939, 21777, 10392], "asn": 10392}
{"organization": "CENTRALONLINE-ID-AS-AP PT. Total Info Kharisma", "name": "CENTRALONLINE-ID-AS-AP PT. Total Info Kharisma,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "203.77.253.0/24", "path": [2914, 7713, 45300, 9228], "asn": 9228}
{"organization": "COMCEL S.A.", "name": "COMCEL S.A.,CO", "id": null, "country_code": "CO", "local_pref": 110, "bgp_prefix": "191.76.0.0/17", "path": [2914, 28513, 14080, 14080, 14080, 14080, 14080, 14080, 14080, 14080, 26611], "asn": 26611}
{"organization": "NCIC-TW New Century InfoComm Tech Co., Ltd.", "name": "NCIC-TW New Century InfoComm Tech Co., Ltd.,TW", "id": null, "country_code": "TW", "local_pref": 110, "bgp_prefix": "123.51.128.0/19", "path": [2914, 4780, 9919], "asn": 9919}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "142.147.72.0/24", "path": [6939, 27467, 23456], "asn": 23456}
{"organization": "AFNI, Inc.", "name": "AFNI-INTERNET - AFNI, Inc.,US", "id": "AFNI-INTERNET", "country_code": "US", "local_pref": 110, "bgp_prefix": "208.4.155.0/24", "path": [7922, 33491, 54246], "asn": 54246}
{"organization": "GIGAINFRA Softbank BB Corp.", "name": "GIGAINFRA Softbank BB Corp.,JP", "id": null, "country_code": "JP", "local_pref": 110, "bgp_prefix": "126.73.0.0/16", "path": [2914, 17676], "asn": 17676}
{"organization": "Cogent Communications", "name": "COGENT-174 - Cogent Communications,US", "id": "COGENT-174", "country_code": "US", "local_pref": 100, "bgp_prefix": "209.69.117.0/24", "path": [7018, 174], "asn": 174}
{"organization": "Mobilenetics Corporation", "name": "MOBILENETICS-LA-GW1 - Mobilenetics Corporation,US", "id": "MOBILENETICS-LA-GW1", "country_code": "US", "local_pref": 100, "bgp_prefix": "216.174.90.0/24", "path": [7018, 209, 13649, 11769], "asn": 11769}
{"organization": "TINET-BACKBONE Tinet SpA", "name": "TINET-BACKBONE Tinet SpA,DE", "id": null, "country_code": "DE", "local_pref": 110, "bgp_prefix": "107.155.17.0/24", "path": [3257], "asn": 3257}
{"organization": "AMX Argentina S.A.", "name": "AMX Argentina S.A.,AR", "id": null, "country_code": "AR", "local_pref": 100, "bgp_prefix": "186.12.248.0/22", "path": [7018, 1299, 19037], "asn": 19037}
{"organization": "EBONE1-PK Ebone Network (PVT.) Limited", "name": "EBONE1-PK Ebone Network (PVT.) Limited,PK", "id": null, "country_code": "PK", "local_pref": 100, "bgp_prefix": "43.248.15.0/24", "path": [7018, 6762, 38193, 58895], "asn": 58895}
{"organization": "Vodafone-EG", "name": "Vodafone-EG,EG", "id": null, "country_code": "EG", "local_pref": 100, "bgp_prefix": "197.132.0.0/19", "path": [7018, 174, 8452, 24835, 36935], "asn": 36935}
{"organization": "FiberNet Communications L.C.", "name": "FIBERNET-NETWORK-OPERATIONS-CENTER - FiberNet Communications L.C.,US", "id": "FIBERNET-NETWORK-OPERATIONS-CENTER", "country_code": "US", "local_pref": 110, "bgp_prefix": "67.55.224.0/23", "path": [6939, 5056, 18883], "asn": 18883}
{"organization": "PORT80-GLOBALTRANSIT Availo Networks AB", "name": "PORT80-GLOBALTRANSIT Availo Networks AB,SE", "id": null, "country_code": "SE", "local_pref": 100, "bgp_prefix": "176.52.178.0/24", "path": [7018, 1299, 12552, 16150], "asn": 16150}
{"organization": "HTIL-TTML-IN-AP Tata Teleservices Maharashtra Ltd", "name": "HTIL-TTML-IN-AP Tata Teleservices Maharashtra Ltd,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "114.143.3.0/24", "path": [7018, 6453, 4755, 45820, 17762], "asn": 17762}
{"organization": "Axtel, S.A.B. de C.V.", "name": "Axtel, S.A.B. de C.V.,MX", "id": null, "country_code": "MX", "local_pref": 100, "bgp_prefix": "148.240.158.0/24", "path": [7018, 174, 6503], "asn": 6503}
{"organization": "JANET Jisc Services Limited", "name": "JANET Jisc Services Limited,GB", "id": null, "country_code": "GB", "local_pref": 110, "bgp_prefix": "192.41.104.0/21", "path": [3257, 786], "asn": 786}
{"organization": "Uninet S.A. de C.V.", "name": "Uninet S.A. de C.V.,MX", "id": null, "country_code": "MX", "local_pref": 110, "bgp_prefix": "189.178.0.0/19", "path": [2914, 8151], "asn": 8151}
{"organization": "DU-AS1 Emirates Integrated Telecommunications Company PJSC (EITC-DU)", "name": "DU-AS1 Emirates Integrated Telecommunications Company PJSC (EITC-DU),AE", "id": null, "country_code": "AE", "local_pref": 110, "bgp_prefix": "91.74.64.0/19", "path": [2914, 15802], "asn": 15802}
{"organization": "Recol", "name": "RECOL-CT - Recol,US", "id": "RECOL-CT", "country_code": "US", "local_pref": 110, "bgp_prefix": "205.139.9.0/24", "path": [11164, 5650, 11598], "asn": 11598}
{"organization": "ALJAWWALSTC-AS Saudi Telecom Company JSC", "name": "ALJAWWALSTC-AS Saudi Telecom Company JSC,SA", "id": null, "country_code": "SA", "local_pref": 100, "bgp_prefix": "95.186.150.0/24", "path": [7018, 174, 39386, 25019, 39891], "asn": 39891}
{"organization": "TELKOMNET-AS2-AP PT Telekomunikasi Indonesia", "name": "TELKOMNET-AS2-AP PT Telekomunikasi Indonesia,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "110.138.217.0/24", "path": [2914, 7713, 17974], "asn": 17974}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "201.7.164.0/24", "path": [7018, 1299, 4809, 28666, 23456], "asn": 23456}
{"organization": "BellSouth.net Inc.", "name": "BELLSOUTH-NET-BLK - BellSouth.net Inc.,US", "id": "BELLSOUTH-NET-BLK", "country_code": "US", "local_pref": 100, "bgp_prefix": "65.5.78.0/24", "path": [7018, 6389], "asn": 6389}
{"organization": "CABLENET-AS-KR KCTV JEJU BROADCASTING", "name": "CABLENET-AS-KR KCTV JEJU BROADCASTING,KR", "id": null, "country_code": "KR", "local_pref": 100, "bgp_prefix": "112.133.104.0/22", "path": [7018, 701, 3786, 9946], "asn": 9946}
{"organization": "AIRCEL-IN Aircel Ltd.", "name": "AIRCEL-IN Aircel Ltd.,IN", "id": null, "country_code": "IN", "local_pref": 110, "bgp_prefix": "101.208.96.0/19", "path": [11164, 15412, 18101, 55713, 55831], "asn": 55831}
{"organization": "FORTHNET-GR Forthnet", "name": "FORTHNET-GR Forthnet,GR", "id": null, "country_code": "GR", "local_pref": 110, "bgp_prefix": "62.1.248.0/21", "path": [3257, 8928, 1241], "asn": 1241}
{"organization": "Krypt Technologies", "name": "VPLSNET - Krypt Technologies,US", "id": "VPLSNET", "country_code": "US", "local_pref": 100, "bgp_prefix": "67.229.61.0/24", "path": [7018, 3491, 35908], "asn": 35908}
{"organization": "SUPERNET-AS-ID PT. Supernet Advance Teknologi", "name": "SUPERNET-AS-ID PT. Supernet Advance Teknologi,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "203.81.250.0/24", "path": [2914, 7713, 58514], "asn": 58514}
{"organization": "Telefonica del Sur S.A.", "name": "Telefonica del Sur S.A.,CL", "id": null, "country_code": "CL", "local_pref": 100, "bgp_prefix": "201.187.116.0/22", "path": [7018, 6762, 14259, 14117], "asn": 14117}
{"organization": "PhoenixNAP LLC", "name": "CCBILL-ASH - PhoenixNAP LLC,US", "id": "CCBILL-ASH", "country_code": "US", "local_pref": 110, "bgp_prefix": "131.153.24.0/21", "path": [3257, 12189, 11572], "asn": 11572}
{"organization": "RADORE Radore Veri Merkezi Hizmetleri A.S.", "name": "RADORE Radore Veri Merkezi Hizmetleri A.S.,TR", "id": null, "country_code": "TR", "local_pref": 110, "bgp_prefix": "46.45.189.0/24", "path": [2914, 9121, 9121, 9121, 9121, 9121, 42926, 42926], "asn": 42926}
{"organization": "Staminus Communications", "name": "STAMINUS-COMM - Staminus Communications,US", "id": "STAMINUS-COMM", "country_code": "US", "local_pref": 110, "bgp_prefix": "69.197.0.0/18", "path": [3257, 25761], "asn": 25761}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "162.44.242.0/24", "path": [7018, 6453, 4755, 23456, 23456], "asn": 23456}
{"organization": "ERX-ERNET-AS Education and Research Network", "name": "ERX-ERNET-AS Education and Research Network,IN", "id": null, "country_code": "IN", "local_pref": 110, "bgp_prefix": "144.16.116.0/24", "path": [11164, 15412, 18101, 2697], "asn": 2697}
{"organization": "CTTNET China TieTong Telecommunications Corporation", "name": "CTTNET China TieTong Telecommunications Corporation,CN", "id": null, "country_code": "CN", "local_pref": 99, "bgp_prefix": "61.235.216.0/21", "path": [6939, 9394], "asn": 9394}
{"organization": "Time Warner Cable Internet LLC", "name": "ROADRUNNER-WEST - Time Warner Cable Internet LLC,US", "id": "ROADRUNNER-WEST", "country_code": "US", "local_pref": 100, "bgp_prefix": "72.134.192.0/18", "path": [7018, 2828, 7843, 20001], "asn": 20001}
{"organization": "ASN-COLTEL JSC Columbia-Telecom", "name": "ASN-COLTEL JSC Columbia-Telecom,RU", "id": null, "country_code": "RU", "local_pref": 110, "bgp_prefix": "212.103.96.0/19", "path": [11164, 3491, 31133, 31585], "asn": 31585}
{"organization": "KCELL-AS KCell JSC", "name": "KCELL-AS KCell JSC,KZ", "id": null, "country_code": "KZ", "local_pref": 110, "bgp_prefix": "2.78.45.0/24", "path": [6939, 12389, 9198, 29355], "asn": 29355}
{"organization": "S-Net, Inc.", "name": "S-NETCOM - S-Net, Inc.,US", "id": "S-NETCOM", "country_code": "US", "local_pref": 100, "bgp_prefix": "162.251.128.0/21", "path": [7018, 174, 16816], "asn": 16816}
{"organization": "ASN-IPX-RO Impromex S.R.L.", "name": "ASN-IPX-RO Impromex S.R.L.,RO", "id": null, "country_code": "RO", "local_pref": 110, "bgp_prefix": "193.41.246.0/24", "path": [2914, 5541, 12439], "asn": 12439}
{"organization": "CYBERLINK Cyberlink AG", "name": "CYBERLINK Cyberlink AG,CH", "id": null, "country_code": "CH", "local_pref": 110, "bgp_prefix": "193.5.123.0/24", "path": [11164, 13030, 15623], "asn": 15623}
{"organization": "Universo Online S.A.", "name": "Universo Online S.A.,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "201.85.123.0/24", "path": [7018, 6762, 26615, 7162], "asn": 7162}
{"organization": "KAVKAZ-TRANSTELECOM-AS Closed Joint Stock Company TransTeleCom", "name": "KAVKAZ-TRANSTELECOM-AS Closed Joint Stock Company TransTeleCom,RU", "id": null, "country_code": "RU", "local_pref": 100, "bgp_prefix": "83.69.72.0/24", "path": [7018, 3356, 20485, 20870], "asn": 20870}
{"organization": "GOEKM-AS-KR Gwang Myeong Office of Education", "name": "GOEKM-AS-KR Gwang Myeong Office of Education,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "124.138.160.0/24", "path": [2914, 9318, 38405], "asn": 38405}
{"organization": "FANAVADP-AS JSC Dadeh Pardazi Fanava", "name": "FANAVADP-AS JSC Dadeh Pardazi Fanava,IR", "id": null, "country_code": "IR", "local_pref": 100, "bgp_prefix": "95.38.6.0/24", "path": [7018, 1299, 12880, 41881, 61036], "asn": 61036}
{"organization": "Gigawire Informatica Ltda", "name": "Gigawire Informatica Ltda,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "189.127.16.0/23", "path": [7018, 6762, 23456, 23456, 28231], "asn": 28231}
{"organization": "TELEFONICA_DE_ESPANA TELEFONICA DE ESPANA", "name": "TELEFONICA_DE_ESPANA TELEFONICA DE ESPANA,ES", "id": null, "country_code": "ES", "local_pref": 100, "bgp_prefix": "195.254.149.0/24", "path": [7018, 12956, 3352], "asn": 3352}
{"organization": "EVANZOAS EVANZO e-commerce GmbH", "name": "EVANZOAS EVANZO e-commerce GmbH,DE", "id": null, "country_code": "DE", "local_pref": 110, "bgp_prefix": "178.254.0.0/19", "path": [2914, 25394, 42730], "asn": 42730}
{"organization": "ALJAWWALSTC-AS Saudi Telecom Company JSC", "name": "ALJAWWALSTC-AS Saudi Telecom Company JSC,SA", "id": null, "country_code": "SA", "local_pref": 110, "bgp_prefix": "95.185.187.0/24", "path": [3257, 39386, 25019, 39891], "asn": 39891}
{"organization": "CTTNET China TieTong Telecommunications Corporation", "name": "CTTNET China TieTong Telecommunications Corporation,CN", "id": null, "country_code": "CN", "local_pref": 99, "bgp_prefix": "122.90.96.0/19", "path": [6939, 9394], "asn": 9394}
{"organization": "AS57858 Inter Connects Inc", "name": "AS57858 Inter Connects Inc,EE", "id": null, "country_code": "EE", "local_pref": 110, "bgp_prefix": "5.153.238.0/24", "path": [2914, 63119, 57858], "asn": 57858}
{"organization": "Vangent Inc.", "name": "VANGENT-INC - Vangent Inc.,US", "id": "VANGENT-INC", "country_code": "US", "local_pref": 100, "bgp_prefix": "208.81.184.0/23", "path": [7018, 701, 11486, 19559], "asn": 19559}
{"organization": "SDI-AS-ID PT Sumber Data Indonesia", "name": "SDI-AS-ID PT Sumber Data Indonesia,ID", "id": null, "country_code": "ID", "local_pref": 100, "bgp_prefix": "103.12.222.0/24", "path": [7018, 1299, 9505, 58552, 58552, 58552, 58552, 56246], "asn": 56246}
{"organization": "VTR BANDA ANCHA S.A.", "name": "VTR BANDA ANCHA S.A.,CL", "id": null, "country_code": "CL", "local_pref": 100, "bgp_prefix": "190.44.240.0/20", "path": [7018, 3549, 22047], "asn": 22047}
{"organization": "TPODLASIE Telekomunikacja Podlasie Sp. z o.o.", "name": "TPODLASIE Telekomunikacja Podlasie Sp. z o.o.,PL", "id": null, "country_code": "PL", "local_pref": 110, "bgp_prefix": "89.161.60.0/22", "path": [11164, 9002, 39375], "asn": 39375}
{"organization": "BSES-AS-AP BSES TeleCom Limited", "name": "BSES-AS-AP BSES TeleCom Limited,IN", "id": null, "country_code": "IN", "local_pref": 110, "bgp_prefix": "220.224.203.0/24", "path": [11164, 15412, 18101, 17803], "asn": 17803}
{"organization": "LINKdotNET-AS", "name": "LINKdotNET-AS,EG", "id": null, "country_code": "EG", "local_pref": 100, "bgp_prefix": "41.205.104.0/24", "path": [7018, 6762, 24863], "asn": 24863}
{"organization": "BLIZOO Blizoo DOOEL Skopje", "name": "BLIZOO Blizoo DOOEL Skopje,MK", "id": null, "country_code": "MK", "local_pref": 100, "bgp_prefix": "185.2.188.0/22", "path": [7018, 1299, 8447, 43612], "asn": 43612}
{"organization": "DOCOMO NTT DOCOMO, INC.", "name": "DOCOMO NTT DOCOMO, INC.,JP", "id": null, "country_code": "JP", "local_pref": 110, "bgp_prefix": "49.97.99.0/24", "path": [2914, 9605], "asn": 9605}
{"organization": "Contato Internet Ltda EPP", "name": "Contato Internet Ltda EPP,BR", "id": null, "country_code": "BR", "local_pref": 110, "bgp_prefix": "179.108.160.0/22", "path": [11164, 286, 7738, 8167, 14840, 28642], "asn": 28642}
{"organization": "Telecom Argentina S.A.", "name": "Telecom Argentina S.A.,AR", "id": null, "country_code": "AR", "local_pref": 100, "bgp_prefix": "190.228.124.0/24", "path": [7018, 6762, 7303], "asn": 7303}
{"organization": "RADORE Radore Veri Merkezi Hizmetleri A.S.", "name": "RADORE Radore Veri Merkezi Hizmetleri A.S.,TR", "id": null, "country_code": "TR", "local_pref": 110, "bgp_prefix": "85.95.237.0/24", "path": [2914, 9121, 9121, 9121, 9121, 9121, 42926, 42926], "asn": 42926}
{"organization": "Grupo G1 Telecom Ltda", "name": "Grupo G1 Telecom Ltda,BR", "id": null, "country_code": "BR", "local_pref": 110, "bgp_prefix": "177.38.234.0/24", "path": [2914, 23456, 23456, 52760], "asn": 52760}
{"organization": "DOCOMO NTT DOCOMO, INC.", "name": "DOCOMO NTT DOCOMO, INC.,JP", "id": null, "country_code": "JP", "local_pref": 110, "bgp_prefix": "110.158.192.0/18", "path": [2914, 9605], "asn": 9605}
{"organization": "NexG", "name": "NEXG-NOC - NexG,US", "id": "NEXG-NOC", "country_code": "US", "local_pref": 100, "bgp_prefix": "208.72.221.0/24", "path": [7018, 174, 16848], "asn": 16848}
{"organization": "Cable Onda", "name": "Cable Onda,PA", "id": null, "country_code": "PA", "local_pref": 100, "bgp_prefix": "201.218.80.0/20", "path": [7018, 701, 23520, 18809, 18809, 18809], "asn": 18809}
{"organization": "SAT-TRAKT-AS SAT-TRAKT D.O.O. Autonomous System", "name": "SAT-TRAKT-AS SAT-TRAKT D.O.O. Autonomous System,RS", "id": null, "country_code": "RS", "local_pref": 100, "bgp_prefix": "217.17.96.0/24", "path": [7018, 1299, 41897], "asn": 41897}
{"organization": "REY-SVYAZ-AS Rey-Svyaz Ltd.", "name": "REY-SVYAZ-AS Rey-Svyaz Ltd.,RU", "id": null, "country_code": "RU", "local_pref": 110, "bgp_prefix": "31.135.32.0/23", "path": [11164, 9002, 48858, 48327], "asn": 48327}
{"organization": "Blueridge Capital", "name": "BLUERIDGE-CAPITAL - Blueridge Capital,US", "id": "BLUERIDGE-CAPITAL", "country_code": "US", "local_pref": 100, "bgp_prefix": "38.94.165.0/24", "path": [7018, 174, 27335], "asn": 27335}
{"organization": "BSNL-NIB National Internet Backbone", "name": "BSNL-NIB National Internet Backbone,IN", "id": null, "country_code": "IN", "local_pref": 110, "bgp_prefix": "117.236.96.0/20", "path": [2914, 9498, 9829], "asn": 9829}
{"organization": "KABELDEUTSCHLAND-AS Kabel Deutschland Vertrieb und Service GmbH", "name": "KABELDEUTSCHLAND-AS Kabel Deutschland Vertrieb und Service GmbH,DE", "id": null, "country_code": "DE", "local_pref": 100, "bgp_prefix": "95.91.0.0/16", "path": [7018, 1299, 31334], "asn": 31334}
{"organization": "DoD Network Information Center", "name": "DNIC-ASBLK-05800-06055 - DoD Network Information Center,US", "id": "DNIC-ASBLK-05800-06055", "country_code": "US", "local_pref": 100, "bgp_prefix": "205.115.6.0/24", "path": [7018, 209, 721, 27064, 5972], "asn": 5972}
{"organization": "SPARKNZ Spark New Zealand Trading Ltd.", "name": "SPARKNZ Spark New Zealand Trading Ltd.,NZ", "id": null, "country_code": "NZ", "local_pref": 110, "bgp_prefix": "222.155.224.0/19", "path": [11164, 4648, 4771], "asn": 4771}
{"organization": "QNET QualityNet General Trading & Contracting Co.", "name": "QNET QualityNet General Trading & Contracting Co.,KW", "id": null, "country_code": "KW", "local_pref": 100, "bgp_prefix": "94.29.143.0/24", "path": [7018, 1299, 48237, 9155], "asn": 9155}
{"organization": "CITRA-AS-ID PT JEMBATAN CITRA NUSANTARA", "name": "CITRA-AS-ID PT JEMBATAN CITRA NUSANTARA,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "202.152.128.0/23", "path": [2914, 7713, 23951, 23951, 23951], "asn": 23951}
{"organization": "TURKCELL-AS TURKCELL ILETISIM HIZMETLERI A.S.", "name": "TURKCELL-AS TURKCELL ILETISIM HIZMETLERI A.S.,TR", "id": null, "country_code": "TR", "local_pref": 110, "bgp_prefix": "213.43.245.0/24", "path": [3257, 34984, 34984, 34984, 34984, 16135], "asn": 16135}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "89.46.216.0/22", "path": [2914, 15412, 48159, 48159, 48159, 48159, 48159, 48159, 48159, 23456], "asn": 23456}
{"organization": "ANCHNET Shanghai Anchang Network Security Technology Co.,Ltd.", "name": "ANCHNET Shanghai Anchang Network Security Technology Co.,Ltd.,CN", "id": null, "country_code": "CN", "local_pref": 110, "bgp_prefix": "118.193.155.0/24", "path": [11164, 10026, 58879], "asn": 58879}
{"organization": "Fibertech Networks, LLC", "name": "FIBERTECH-NETWORKS-AS-ROC-NY-US - Fibertech Networks, LLC,US", "id": "FIBERTECH-NETWORKS-AS-ROC-NY-US", "country_code": "US", "local_pref": 100, "bgp_prefix": "208.99.244.0/24", "path": [7018, 174, 16657], "asn": 16657}
{"organization": "MKNET-AS BUKO LTD", "name": "MKNET-AS BUKO LTD,CZ", "id": null, "country_code": "CZ", "local_pref": 110, "bgp_prefix": "91.211.52.0/22", "path": [2914, 28917, 48494], "asn": 48494}
{"organization": "west central wireless", "name": "WCENTRALN - west central wireless,US", "id": "WCENTRALN", "country_code": "US", "local_pref": 100, "bgp_prefix": "69.7.93.0/24", "path": [7018, 209, 46849, 18618], "asn": 18618}
{"organization": "Sprint", "name": "SPRINT-BB6 - Sprint,US", "id": "SPRINT-BB6", "country_code": "US", "local_pref": 100, "bgp_prefix": "174.151.128.0/17", "path": [7018, 1239, 10507, 3651], "asn": 3651}
{"organization": "CNNIC-TIETONG-AP CHINA TIETONG SHANGHAI", "name": "CNNIC-TIETONG-AP CHINA TIETONG SHANGHAI,CN", "id": null, "country_code": "CN", "local_pref": 99, "bgp_prefix": "120.90.128.0/19", "path": [6939, 9394, 45057], "asn": 45057}
{"organization": "Cox Communications Inc.", "name": "ASN-CXA-ALL-CCI-22773-RDC - Cox Communications Inc.,US", "id": "ASN-CXA-ALL-CCI-22773-RDC", "country_code": "US", "local_pref": 110, "bgp_prefix": "98.184.238.0/23", "path": [6939, 22773], "asn": 22773}
{"organization": "MT-MPLS", "name": "MT-MPLS,MA", "id": null, "country_code": "MA", "local_pref": 100, "bgp_prefix": "41.141.104.0/21", "path": [7018, 174, 6713, 36903], "asn": 36903}
{"organization": "INTERTELCO TELECOMUNICAES MULTIMDIA LTDA", "name": "INTERTELCO TELECOMUNICAES MULTIMDIA LTDA,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "189.76.168.0/23", "path": [7018, 12956, 10429, 28166, 28358], "asn": 28358}
{"organization": "Buckeye Cablevision, Inc.", "name": "BUCKEYECABLEVISION - Buckeye Cablevision, Inc.,US", "id": "BUCKEYECABLEVISION", "country_code": "US", "local_pref": 110, "bgp_prefix": "131.183.224.0/19", "path": [2914, 13490], "asn": 13490}
{"organization": "TENET-1", "name": "TENET-1,ZA", "id": null, "country_code": "ZA", "local_pref": 100, "bgp_prefix": "198.54.174.0/24", "path": [7018, 174, 36944, 2018], "asn": 2018}
{"organization": "IDEAR4BUSINESS-INTERNATIONAL-LTD idear4business international LTD", "name": "IDEAR4BUSINESS-INTERNATIONAL-LTD idear4business international LTD,EU", "id": null, "country_code": "EU", "local_pref": 100, "bgp_prefix": "31.222.200.0/21", "path": [7018, 286, 12327], "asn": 12327}
{"organization": "YHKR3 Yahoo! Korea, Corp.", "name": "YHKR3 Yahoo! Korea, Corp.,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "202.93.6.0/23", "path": [6939, 10026, 10310, 10310, 10310, 10310, 38689], "asn": 38689}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "177.154.114.0/24", "path": [7018, 12956, 28220, 23456], "asn": 23456}
{"organization": "NET Servios de Comunicao S.A.", "name": "NET Servios de Comunicao S.A.,BR", "id": null, "country_code": "BR", "local_pref": 110, "bgp_prefix": "189.7.90.0/23", "path": [2914, 4230, 28573], "asn": 28573}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 110, "bgp_prefix": "192.251.46.0/23", "path": [6939, 2711, 2722, 23456], "asn": 23456}
{"organization": "SIOL-NET Telekom Slovenije d.d.", "name": "SIOL-NET Telekom Slovenije d.d.,SI", "id": null, "country_code": "SI", "local_pref": 100, "bgp_prefix": "193.77.64.0/18", "path": [7018, 1299, 5603], "asn": 5603}
{"organization": "KAZTELECOM-AS JSC Kazakhtelecom", "name": "KAZTELECOM-AS JSC Kazakhtelecom,KZ", "id": null, "country_code": "KZ", "local_pref": 110, "bgp_prefix": "178.90.96.0/20", "path": [6939, 12389, 9198], "asn": 9198}
{"organization": "HELLAS_SAT-ASN Hellas Sat Consortium", "name": "HELLAS_SAT-ASN Hellas Sat Consortium,CY", "id": null, "country_code": "CY", "local_pref": 100, "bgp_prefix": "80.85.18.0/24", "path": [7018, 1299, 12713, 41697], "asn": 41697}
{"organization": "NSFCNET-CN-AS NSFC High Speed Testbed", "name": "NSFCNET-CN-AS NSFC High Speed Testbed,CN", "id": null, "country_code": "CN", "local_pref": 110, "bgp_prefix": "210.25.191.0/24", "path": [3257, 10026, 4538, 9406], "asn": 9406}
{"organization": "tw telecom holdings, inc.", "name": "TWTC - tw telecom holdings, inc.,US", "id": "TWTC", "country_code": "US", "local_pref": 100, "bgp_prefix": "66.194.144.0/20", "path": [7018, 3356, 4323], "asn": 4323}
{"organization": "Media Commerce Partners S.A", "name": "Media Commerce Partners S.A,CO", "id": null, "country_code": "CO", "local_pref": 100, "bgp_prefix": "190.121.145.0/24", "path": [7018, 3549, 27951], "asn": 27951}
{"organization": "ANTIDOT Pryama Mova TOV", "name": "ANTIDOT Pryama Mova TOV,UA", "id": null, "country_code": "UA", "local_pref": 110, "bgp_prefix": "87.76.71.0/24", "path": [2914, 2914, 35320, 43418, 43418, 43418, 43418], "asn": 43418}
{"organization": "Akamai Technologies, Inc.", "name": "AKAMAI-AS - Akamai Technologies, Inc.,US", "id": "AKAMAI-AS", "country_code": "US", "local_pref": 110, "bgp_prefix": "96.6.116.0/24", "path": [7922, 35994, 35994], "asn": 35994}
{"organization": "THREE-AS-ID Hutchison CP Telecommunications, PT", "name": "THREE-AS-ID Hutchison CP Telecommunications, PT,ID", "id": null, "country_code": "ID", "local_pref": 110, "bgp_prefix": "180.214.232.0/24", "path": [2914, 7713, 45727, 45727, 45727, 45727, 45727], "asn": 45727}
{"organization": "CLARANET-AS ClaraNET LTD", "name": "CLARANET-AS ClaraNET LTD,GB", "id": null, "country_code": "GB", "local_pref": 100, "bgp_prefix": "62.173.64.0/18", "path": [7018, 3356, 8426], "asn": 8426}
{"organization": "PKNU-AS Pukyong National University", "name": "PKNU-AS Pukyong National University,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "210.119.22.0/24", "path": [6939, 4766, 9708, 9708, 9708], "asn": 9708}
{"organization": "ALLEGRO NETWORKS LIMITED", "name": "ALLEGRO NETWORKS LIMITED,GB", "id": null, "country_code": "GB", "local_pref": 100, "bgp_prefix": "199.87.242.0/24", "path": [7018, 6461, 12536], "asn": 12536}
{"organization": "Telconet S.A", "name": "Telconet S.A,EC", "id": null, "country_code": "EC", "local_pref": 100, "bgp_prefix": "200.10.148.0/24", "path": [7018, 1299, 19169, 27947], "asn": 27947}
{"organization": "ViaSat,Inc.", "name": "WB-DEN2 - ViaSat,Inc.,US", "id": "WB-DEN2", "country_code": "US", "local_pref": 100, "bgp_prefix": "162.72.160.0/21", "path": [7018, 209, 7155], "asn": 7155}
{"organization": "LS Networks", "name": "LSNET - LS Networks,US", "id": "LSNET", "country_code": "US", "local_pref": 110, "bgp_prefix": "206.192.230.0/24", "path": [2914, 25899], "asn": 25899}
{"organization": "INTEGRA Integra Zrt.", "name": "INTEGRA Integra Zrt.,HU", "id": null, "country_code": "HU", "local_pref": 100, "bgp_prefix": "193.9.124.0/22", "path": [7018, 174, 12301, 5554], "asn": 5554}
{"organization": "WAVEZONE-AS WAVEZONE SRL", "name": "WAVEZONE-AS WAVEZONE SRL,RO", "id": null, "country_code": "RO", "local_pref": 110, "bgp_prefix": "188.212.131.0/24", "path": [2914, 9050, 48161, 62448, 62448, 62448], "asn": 62448}
{"organization": "Telmex Colombia S.A.", "name": "Telmex Colombia S.A.,CO", "id": null, "country_code": "CO", "local_pref": 110, "bgp_prefix": "181.52.239.0/24", "path": [3257, 14080, 14080, 14080, 14080, 10620], "asn": 10620}
{"organization": "KIXS-AS-KR Korea Telecom", "name": "KIXS-AS-KR Korea Telecom,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "211.253.5.0/24", "path": [6939, 4766], "asn": 4766}
{"organization": "SECURED SERVERS LLC", "name": "SSASN2 - SECURED SERVERS LLC,US", "id": "SSASN2", "country_code": "US", "local_pref": 110, "bgp_prefix": "23.251.32.0/24", "path": [3257, 12189, 20454], "asn": 20454}
{"organization": "HNS-AS-AP Honesty Net Solution (I) Pvt Ltd", "name": "HNS-AS-AP Honesty Net Solution (I) Pvt Ltd,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "111.91.32.0/24", "path": [7018, 3356, 9498, 38457], "asn": 38457}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "179.0.226.0/24", "path": [7018, 3549, 23456], "asn": 23456}
{"organization": "OUTREMER-AS Outremer Telecom", "name": "OUTREMER-AS Outremer Telecom,FR", "id": null, "country_code": "FR", "local_pref": 100, "bgp_prefix": "217.175.170.0/24", "path": [7018, 6453, 20776], "asn": 20776}
{"organization": "GRADWELL Gradwell dot com Limited", "name": "GRADWELL Gradwell dot com Limited,GB", "id": null, "country_code": "GB", "local_pref": 110, "bgp_prefix": "109.236.161.0/24", "path": [2914, 39326, 29676], "asn": 29676}
{"organization": "Telemar Norte Leste S.A.", "name": "Telemar Norte Leste S.A.,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "189.49.0.0/18", "path": [7018, 701, 7738], "asn": 7738}
{"organization": "Telemar Norte Leste S.A.", "name": "Telemar Norte Leste S.A.,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "189.49.0.0/19", "path": [7018, 701, 7738], "asn": 7738}
{"organization": "MONAD-TW-AP Monad Digitnamic Corp.", "name": "MONAD-TW-AP Monad Digitnamic Corp.,TW", "id": null, "country_code": "TW", "local_pref": 110, "bgp_prefix": "119.15.224.0/21", "path": [2914, 4780, 9919, 17809], "asn": 17809}
{"organization": "MP-ELEKTRONIKA-AS SIA MP ELEKTRONIKA", "name": "MP-ELEKTRONIKA-AS SIA MP ELEKTRONIKA,LV", "id": null, "country_code": "LV", "local_pref": 110, "bgp_prefix": "83.241.24.0/21", "path": [11164, 9002, 35254, 24589, 20662], "asn": 20662}
{"organization": "GOEYC-AS-KR Gyeonggi Yeoncheon Office of Education", "name": "GOEYC-AS-KR Gyeonggi Yeoncheon Office of Education,KR", "id": null, "country_code": "KR", "local_pref": 110, "bgp_prefix": "14.53.61.0/24", "path": [2914, 9318, 38416], "asn": 38416}
{"organization": "SECRELNET INFORMATICA LTDA", "name": "SECRELNET INFORMATICA LTDA,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "200.194.108.0/23", "path": [7018, 3549, 11921], "asn": 11921}
{"organization": "Verso Networks, Inc.", "name": "VERSO-NETWORKS - Verso Networks, Inc.,US", "id": "VERSO-NETWORKS", "country_code": "US", "local_pref": 100, "bgp_prefix": "192.154.0.0/24", "path": [7018, 174, 62695], "asn": 62695}
{"organization": "CHINATELECOM-TJ-AS-AP ASN for TIANJIN Provincial Net of CT", "name": "CHINATELECOM-TJ-AS-AP ASN for TIANJIN Provincial Net of CT,CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "221.239.53.0/24", "path": [7018, 4134, 17638], "asn": 17638}
{"organization": "MegaPath Corporation", "name": "MEGAPATH5-US - MegaPath Corporation,US", "id": "MEGAPATH5-US", "country_code": "US", "local_pref": 100, "bgp_prefix": "74.3.86.0/23", "path": [7018, 3356, 18566], "asn": 18566}
{"organization": "NCR Corporation", "name": "NCRCORP - NCR Corporation,US", "id": "NCRCORP", "country_code": "US", "local_pref": 100, "bgp_prefix": "153.69.212.0/24", "path": [7018, 13806], "asn": 13806}
{"organization": "Coop. Popular de Elec., Obras y Servicios Pub. de Santa Rosa LTDA", "name": "Coop. Popular de Elec., Obras y Servicios Pub. de Santa Rosa LTDA,AR", "id": null, "country_code": "AR", "local_pref": 100, "bgp_prefix": "190.11.121.0/24", "path": [7018, 12956, 22927, 27927], "asn": 27927}
{"organization": "KURSKNET-RU-AS PJSC Rostelecom", "name": "KURSKNET-RU-AS PJSC Rostelecom,RU", "id": null, "country_code": "RU", "local_pref": 110, "bgp_prefix": "188.113.41.0/24", "path": [6939, 12389, 35516], "asn": 35516}
{"organization": "AZZURRI-AU Suite 2, Level 9", "name": "AZZURRI-AU Suite 2, Level 9,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "103.231.168.0/23", "path": [6939, 7545, 9942, 55567], "asn": 55567}
{"organization": "Raytheon Company", "name": "RAYASN - Raytheon Company,US", "id": "RAYASN", "country_code": "US", "local_pref": 100, "bgp_prefix": "199.46.196.0/24", "path": [7018, 12007], "asn": 12007}
{"organization": "TELEBUCARAMANGA S.A. E.S.P.", "name": "TELEBUCARAMANGA S.A. E.S.P.,CO", "id": null, "country_code": "CO", "local_pref": 100, "bgp_prefix": "190.184.146.0/23", "path": [7018, 12956, 3816, 22368], "asn": 22368}
{"organization": "BRACK-AS Brack.ch AG", "name": "BRACK-AS Brack.ch AG,CH", "id": null, "country_code": "CH", "local_pref": 110, "bgp_prefix": "91.213.100.0/24", "path": [2914, 32787, 12342], "asn": 12342}
{"organization": "NTT America, Inc.", "name": "NTT-COMMUNICATIONS-2914 - NTT America, Inc.,US", "id": "NTT-COMMUNICATIONS-2914", "country_code": "US", "local_pref": 110, "bgp_prefix": "207.150.0.0/17", "path": [2914], "asn": 2914}
{"organization": "NTL Virgin Media Limited", "name": "NTL Virgin Media Limited,GB", "id": null, "country_code": "GB", "local_pref": 110, "bgp_prefix": "163.164.76.0/24", "path": [3257, 5089], "asn": 5089}
{"organization": "SPTEL-AP Soul Pattinson Telecommunications Pty Ltd", "name": "SPTEL-AP Soul Pattinson Telecommunications Pty Ltd,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "203.220.12.0/23", "path": [6939, 7545, 9942, 17668], "asn": 17668}
{"organization": "INFOMAC SOLUES EM INFORMTICA LTDA", "name": "INFOMAC SOLUES EM INFORMTICA LTDA,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "201.150.12.0/24", "path": [7018, 3549, 18881, 61948, 61948, 61948, 61948, 61948, 61948, 61948, 61948, 61948, 61948, 61948, 61948, 61948, 61948, 61948, 61948], "asn": 61948}
{"organization": "Nextweb, Inc", "name": "ASN-NEXTWEB-R2 - Nextweb, Inc,US", "id": "ASN-NEXTWEB-R2", "country_code": "US", "local_pref": 100, "bgp_prefix": "67.203.140.0/24", "path": [7018, 3356, 7829, 7829, 7829, 7829], "asn": 7829}
{"organization": "JANET Jisc Services Limited", "name": "JANET Jisc Services Limited,GB", "id": null, "country_code": "GB", "local_pref": 110, "bgp_prefix": "134.36.0.0/16", "path": [3257, 786], "asn": 786}
{"organization": "CTRLS-AS-IN CtrlS Datacenters Ltd.", "name": "CTRLS-AS-IN CtrlS Datacenters Ltd.,IN", "id": null, "country_code": "IN", "local_pref": 110, "bgp_prefix": "103.239.36.0/24", "path": [11164, 15412, 18101, 18229], "asn": 18229}
{"organization": "-Reserved AS-", "name": "-Reserved AS-,ZZ", "id": null, "country_code": "ZZ", "local_pref": 100, "bgp_prefix": "45.120.54.0/24", "path": [7018, 3491, 23456], "asn": 23456}
{"organization": "HINET Data Communication Business Group", "name": "HINET Data Communication Business Group,TW", "id": null, "country_code": "TW", "local_pref": 100, "bgp_prefix": "1.162.0.0/16", "path": [7018, 701, 9680, 3462], "asn": 3462}
{"organization": "TRICOM", "name": "TRICOM,DO", "id": null, "country_code": "DO", "local_pref": 110, "bgp_prefix": "148.103.65.0/24", "path": [2914, 23520, 28118, 12066], "asn": 12066}
{"organization": "CUSTDC Custodian Ltd.", "name": "CUSTDC Custodian Ltd.,GB", "id": null, "country_code": "GB", "local_pref": 110, "bgp_prefix": "109.74.254.0/24", "path": [2914, 50300], "asn": 50300}
{"organization": "ISInternetSolutions", "name": "ISInternetSolutions,NG", "id": null, "country_code": "NG", "local_pref": 110, "bgp_prefix": "196.200.117.0/24", "path": [2914, 3741, 30988], "asn": 30988}
{"organization": "Los Angeles County Office of Education", "name": "LACOE - Los Angeles County Office of Education,US", "id": "LACOE", "country_code": "US", "local_pref": 100, "bgp_prefix": "204.102.61.0/24", "path": [7018, 3356, 3356, 2152, 2152, 2152, 2920], "asn": 2920}
{"organization": "Micro Source, Inc.", "name": "CRITIGEN - Micro Source, Inc.,US", "id": "CRITIGEN", "country_code": "US", "local_pref": 110, "bgp_prefix": "206.247.240.0/21", "path": [7922, 29863, 23537], "asn": 23537}
{"organization": "ASN-CATCHCOM Broadnet AS", "name": "ASN-CATCHCOM Broadnet AS,NO", "id": null, "country_code": "NO", "local_pref": 100, "bgp_prefix": "192.190.191.0/24", "path": [7018, 1299, 2116], "asn": 2116}
{"organization": "WEBZILLA Webzilla B.V.", "name": "WEBZILLA Webzilla B.V.,NL", "id": null, "country_code": "NL", "local_pref": 110, "bgp_prefix": "78.140.184.0/21", "path": [2914, 35415], "asn": 35415}
{"organization": "Global Telecom Brokers", "name": "GTBAS - Global Telecom Brokers,US", "id": "GTBAS", "country_code": "US", "local_pref": 100, "bgp_prefix": "69.85.53.0/24", "path": [7018, 3356, 30497], "asn": 30497}
{"organization": "ASGHOSTNET GHOSTnet GmbH", "name": "ASGHOSTNET GHOSTnet GmbH,DE", "id": null, "country_code": "DE", "local_pref": 110, "bgp_prefix": "191.101.209.0/24", "path": [3257, 12586, 12586], "asn": 12586}
{"organization": "ASN-TELSTRA Telstra Pty Ltd", "name": "ASN-TELSTRA Telstra Pty Ltd,AU", "id": null, "country_code": "AU", "local_pref": 100, "bgp_prefix": "149.176.253.0/24", "path": [7018, 3561, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 1221], "asn": 1221}
{"organization": "CNCGROUP-SZ China Unicom Shenzen network", "name": "CNCGROUP-SZ China Unicom Shenzen network,CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "163.177.59.0/24", "path": [7018, 4837, 17623], "asn": 17623}
{"organization": "MegaPath Corporation", "name": "MEGAPATH5-US - MegaPath Corporation,US", "id": "MEGAPATH5-US", "country_code": "US", "local_pref": 100, "bgp_prefix": "68.164.248.0/21", "path": [7018, 2828, 18566], "asn": 18566}
{"organization": "TPG-INTERNET-AP TPG Telecom Limited", "name": "TPG-INTERNET-AP TPG Telecom Limited,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "60.240.202.0/23", "path": [6939, 7545, 7545, 7545, 7545], "asn": 7545}
{"organization": "Lizitec Informtica Ltda - ME", "name": "Lizitec Informtica Ltda - ME,BR", "id": null, "country_code": "BR", "local_pref": 110, "bgp_prefix": "187.63.210.0/23", "path": [11164, 3549, 28347, 53097], "asn": 53097}
{"organization": "Apple Inc.", "name": "APPLE-ENGINEERING - Apple Inc.,US", "id": "APPLE-ENGINEERING", "country_code": "US", "local_pref": 110, "bgp_prefix": "17.138.0.0/15", "path": [714], "asn": 714}
{"organization": "BTEL-BG-AS Bulgartel EAD", "name": "BTEL-BG-AS Bulgartel EAD,BG", "id": null, "country_code": "BG", "local_pref": 110, "bgp_prefix": "213.145.112.0/24", "path": [3257, 44814], "asn": 44814}
{"organization": "Multidata S.A.", "name": "Multidata S.A.,HN", "id": null, "country_code": "HN", "local_pref": 100, "bgp_prefix": "181.189.236.0/24", "path": [7018, 3356, 23520, 27696], "asn": 27696}
{"organization": "CNNIC-ALIBABA-CN-NET-AP Hangzhou Alibaba Advertising Co.,Ltd.", "name": "CNNIC-ALIBABA-CN-NET-AP Hangzhou Alibaba Advertising Co.,Ltd.,CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "121.42.192.0/19", "path": [7018, 4837, 37963], "asn": 37963}
{"organization": "TELLCOM-AS TELLCOM ILETISIM HIZMETLERI A.S.", "name": "TELLCOM-AS TELLCOM ILETISIM HIZMETLERI A.S.,TR", "id": null, "country_code": "TR", "local_pref": 100, "bgp_prefix": "212.253.124.0/23", "path": [7018, 6453, 34984], "asn": 34984}
{"organization": "I3B-AS oja.at GmbH", "name": "I3B-AS oja.at GmbH,AT", "id": null, "country_code": "AT", "local_pref": 100, "bgp_prefix": "195.137.238.0/23", "path": [7018, 6762, 39912], "asn": 39912}
{"organization": "EURO-WEB-AS SAS CTS Computers and Telecommunications Systems", "name": "EURO-WEB-AS SAS CTS Computers and Telecommunications Systems,FR", "id": null, "country_code": "FR", "local_pref": 110, "bgp_prefix": "62.100.128.0/19", "path": [3257, 35393], "asn": 35393}
{"organization": "Telmex Colombia S.A.", "name": "Telmex Colombia S.A.,CO", "id": null, "country_code": "CO", "local_pref": 110, "bgp_prefix": "181.61.192.0/22", "path": [3257, 14080, 14080, 14080, 14080, 14080, 14080, 14080, 14080, 14080, 14080, 14080, 14080, 14080, 10620], "asn": 10620}
{"organization": "Comteco Ltda", "name": "Comteco Ltda,BO", "id": null, "country_code": "BO", "local_pref": 100, "bgp_prefix": "190.102.48.0/21", "path": [7018, 12956, 27839], "asn": 27839}
{"organization": "TOTALWEBSOLUTIONS TotalWeb", "name": "TOTALWEBSOLUTIONS TotalWeb,GB", "id": null, "country_code": "GB", "local_pref": 110, "bgp_prefix": "195.206.160.0/24", "path": [3257, 5089, 8669], "asn": 8669}
{"organization": "Level 3 Communications, Inc.", "name": "LEVEL3 - Level 3 Communications, Inc.,US", "id": "LEVEL3", "country_code": "US", "local_pref": 100, "bgp_prefix": "192.234.212.0/24", "path": [7018, 3356], "asn": 3356}
{"organization": "T-Mobile USA, Inc.", "name": "T-MOBILE-AS21928 - T-Mobile USA, Inc.,US", "id": "T-MOBILE-AS21928", "country_code": "US", "local_pref": 100, "bgp_prefix": "208.54.70.0/24", "path": [7018, 6461, 21928], "asn": 21928}
{"organization": "SACA Technologies, Inc.", "name": "SACATECH - SACA Technologies, Inc.,US", "id": "SACATECH", "country_code": "US", "local_pref": 100, "bgp_prefix": "199.122.113.0/24", "path": [7018, 174, 54381], "asn": 54381}
{"organization": "AOL Transit Data Network", "name": "AOL-ATDN - AOL Transit Data Network,US", "id": "AOL-ATDN", "country_code": "US", "local_pref": 100, "bgp_prefix": "172.181.0.0/16", "path": [7018, 1668], "asn": 1668}
{"organization": "ERX-RADNET1-AS PT Rahajasa Media Internet", "name": "ERX-RADNET1-AS PT Rahajasa Media Internet,ID", "id": null, "country_code": "ID", "local_pref": 100, "bgp_prefix": "202.154.26.0/24", "path": [7018, 1299, 9505, 58552, 4434], "asn": 4434}
{"organization": "TPA TELECOMUNICACOES LTDA", "name": "TPA TELECOMUNICACOES LTDA,BR", "id": null, "country_code": "BR", "local_pref": 100, "bgp_prefix": "179.190.110.0/23", "path": [7018, 3549, 28343], "asn": 28343}
{"organization": "Telecommunication Services of Trinidad and Tobago", "name": "Telecommunication Services of Trinidad and Tobago,TT", "id": null, "country_code": "TT", "local_pref": 100, "bgp_prefix": "196.3.145.0/24", "path": [7018, 701, 5639], "asn": 5639}
{"organization": "Vision Airlines", "name": "NO - Vision Airlines,US", "id": "NO", "country_code": "US", "local_pref": 100, "bgp_prefix": "63.165.26.0/24", "path": [7018, 209, 22561, 11398, 40870], "asn": 40870}
{"organization": "BAKST-AS-AU Level 16, 55 Hunter Street", "name": "BAKST-AS-AU Level 16, 55 Hunter Street,AU", "id": null, "country_code": "AU", "local_pref": 110, "bgp_prefix": "202.124.200.0/24", "path": [11164, 7473, 7474, 55443], "asn": 55443}
{"organization": "OARnet", "name": "OARNET-AS - OARnet,US", "id": "OARNET-AS", "country_code": "US", "local_pref": 110, "bgp_prefix": "192.153.31.0/24", "path": [6939, 600, 600, 600], "asn": 600}
{"organization": "NL-BIT BIT BV", "name": "NL-BIT BIT BV,NL", "id": null, "country_code": "NL", "local_pref": 110, "bgp_prefix": "194.9.84.0/24", "path": [3257, 12859], "asn": 12859}
{"organization": "Charter Communications", "name": "CHARTER-NET-HKY-NC - Charter Communications,US", "id": "CHARTER-NET-HKY-NC", "country_code": "US", "local_pref": 110, "bgp_prefix": "96.40.224.0/20", "path": [6939, 20115], "asn": 20115}
{"organization": "TOLEDO-AS IP NEXIA N.V.", "name": "TOLEDO-AS IP NEXIA N.V.,BE", "id": null, "country_code": "BE", "local_pref": 110, "bgp_prefix": "217.145.39.0/24", "path": [3257, 20650], "asn": 20650}
{"organization": "ERX-ERNET-AS Education and Research Network", "name": "ERX-ERNET-AS Education and Research Network,IN", "id": null, "country_code": "IN", "local_pref": 110, "bgp_prefix": "202.141.54.0/24", "path": [11164, 15412, 18101, 2697], "asn": 2697}
{"organization": "CHINANET-SH-AP China Telecom (Group)", "name": "CHINANET-SH-AP China Telecom (Group),CN", "id": null, "country_code": "CN", "local_pref": 100, "bgp_prefix": "160.83.110.0/24", "path": [7018, 4134, 4812], "asn": 4812}
{"organization": "Incero LLC", "name": "INCERO - Incero LLC,US", "id": "INCERO", "country_code": "US", "local_pref": 110, "bgp_prefix": "107.155.93.0/24", "path": [3257, 4436, 54540], "asn": 54540}
{"organization": "OnX Enterprise Solutions Inc.", "name": "ONX - OnX Enterprise Solutions Inc.,CA", "id": "ONX", "country_code": "CA", "local_pref": 110, "bgp_prefix": "64.130.212.0/24", "path": [3257, 13768, 23136], "asn": 23136}
{"organization": "ASIAWEB-SERVICE-HK Asia Web Service Ltd", "name": "ASIAWEB-SERVICE-HK Asia Web Service Ltd,HK", "id": null, "country_code": "HK", "local_pref": 110, "bgp_prefix": "111.90.157.0/24", "path": [11164, 10026, 17819, 17819, 17819, 55639], "asn": 55639}
{"organization": "globacom-as", "name": "globacom-as,NG", "id": null, "country_code": "NG", "local_pref": 100, "bgp_prefix": "197.211.49.0/24", "path": [7018, 1299, 1273, 37148], "asn": 37148}
{"organization": "TATACOMM-AS TATA Communications formerly VSNL is Leading ISP", "name": "TATACOMM-AS TATA Communications formerly VSNL is Leading ISP,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "121.244.100.0/23", "path": [7018, 6453, 4755], "asn": 4755}
{"organization": "Atlantic Broadband Finance, LLC", "name": "ATLANTICBB-JOHNSTOWN - Atlantic Broadband Finance, LLC,US", "id": "ATLANTICBB-JOHNSTOWN", "country_code": "US", "local_pref": 110, "bgp_prefix": "207.255.224.0/20", "path": [3257, 11776, 11776, 11776, 11776, 11776, 11776], "asn": 11776}
{"organization": "NETMAGIC-AP Netmagic Datacenter Mumbai", "name": "NETMAGIC-AP Netmagic Datacenter Mumbai,IN", "id": null, "country_code": "IN", "local_pref": 100, "bgp_prefix": "180.179.174.0/24", "path": [7018, 6453, 4755, 17439], "asn": 17439}
{"organization": "WANSecurity, Inc.", "name": "WANSECURITY - WANSecurity, Inc.,US", "id": "WANSECURITY", "country_code": "US", "local_pref": 110, "bgp_prefix": "69.64.242.0/23", "path": [6939, 1421], "asn": 1421}
{"organization": "Comcast Cable Communications Holdings, Inc", "name": "COMCAST-7015 - Comcast Cable Communications Holdings, Inc,US", "id": "COMCAST-7015", "country_code": "US", "local_pref": 110, "bgp_prefix": "198.212.229.0/24", "path": [7922, 7015], "asn": 7015}
{"organization": "ASGARR Consortium GARR", "name": "ASGARR Consortium GARR,IT", "id": null, "country_code": "IT", "local_pref": 100, "bgp_prefix": "192.150.194.0/23", "path": [7018, 174, 137, 137, 137], "asn": 137}
{"organization": "BEE-AS Public Joint Stock Company Vimpel-Communications", "name": "BEE-AS Public Joint Stock Company Vimpel-Communications,RU", "id": null, "country_code": "RU", "local_pref": 100, "bgp_prefix": "217.118.82.0/24", "path": [7018, 3356, 3216, 16345], "asn": 16345}