forked from duckgoduck/bgp-he-net.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAS10021.htm
1851 lines (1401 loc) · 70.4 KB
/
AS10021.htm
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<!-- rmosher 2010 - 2016 -->
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="/javascripts/jquery/jquery-1.3.2.js?1235084520" type="text/javascript"></script>
<script src="/javascripts/jquery/jquery.history.js?1364589087" type="text/javascript"></script>
<script src="/javascripts/jquery/jquery-ui.js?1269850573" type="text/javascript"></script>
<script src="/javascripts/jquery/jrails.js?1269850578" type="text/javascript"></script>
<script src="/javascripts/bgp.js?1260526324" type="text/javascript"></script>
<link href="/stylesheets/bgp.css?1455825849" media="all" rel="stylesheet" type="text/css" />
<script src="/javascripts/tabs.js?1364588335" type="text/javascript"></script>
<script src="/javascripts/sorttable.js?1283318963" type="text/javascript"></script>
<link href="/stylesheets/as.css?1263259109" media="all" rel="stylesheet" type="text/css" />
<title>AS10021 KVH Co.,Ltd - bgp.he.net</title>
<meta name="description" content="AS10021 KVH Co.,Ltd Network Information" />
</head>
<body>
<div id='header'>
<a href="http://www.he.net/"><img alt='Hurricane Electric' src='/helogo.gif' /></a>
<form action="/search" method="get">
<div class='search'>
<input id="search_search" name="search[search]" size="15" type="text" />
<input name="commit" type="submit" value="Search" />
</div>
</form>
<h1><a href="/AS10021" rel="bookmark" title="AS10021 KVH Co.,Ltd">AS10021 KVH Co.,Ltd</a></h1>
<div class='clear'></div>
<div class='floatleft'>
<div class='leftsidemenu'>
<div class='menuheader'>Quick Links</div>
<ul class='leftsidemenuitems'>
<li><a href='http://bgp.he.net/'>BGP Toolkit Home</a></li>
<li><a href="/report/prefixes">BGP Prefix Report</a></li>
<li><a href="/report/peers">BGP Peer Report</a></li>
<li><a href="/report/exchanges">Exchange Report</a></li>
<li><a href="/report/bogons">Bogon Routes</a></li>
<li><a href="/report/world">World Report</a></li>
<li><a href="/report/multi-origin-routes">Multi Origin Routes</a></li>
<li><a href="/report/dns">DNS Report</a></li>
<li><a href="/report/tophosts">Top Host Report</a></li>
<li><a href="/report/netstats">Internet Statistics</a></li>
<li><a href='http://lg.he.net/'>Looking Glass</a></li>
<li><a href='http://networktools.he.net/'>Network Tools App</a></li>
<li><a href='http://tunnelbroker.net/'>Free IPv6 Tunnel</a></li>
<li><a href='http://ipv6.he.net/certification/'>IPv6 Certification</a></li>
<li><a href='http://bgp.he.net/ipv6-progress-report.cgi'>IPv6 Progress</a></li>
<li><a href='http://bgp.he.net/going-native.pdf'>Going Native</a></li>
<li><a href='http://bgp.he.net/contact/'>Contact Us</a></li>
</ul>
</div>
<div class='clear'></div>
<div class='social'>
<a href="/r/Twitter" title="Hurricane Electric on Twitter"><img alt="Hurricane Electric on Twitter" src="/images/twitter.png?1215539178" /></a>
<a href="/r/Facebook" title="Hurricane Electric on Facebook"><img alt="Hurricane Electric on Facebook" src="/images/facebook.png?1215539178" /></a>
</div>
</div>
</div>
<div id='content'>
<ul class='tabmenu'>
<li id='tab_asinfo' class='tabmenuli'>AS Info</li>
<li id='tab_graph4' class='tabmenuli'>Graph v4</li>
<li id='tab_graph6' class='tabmenuli'>Graph v6</li>
<li id='tab_prefixes' class='tabmenuli'>Prefixes v4</li>
<li id='tab_prefixes6' class='tabmenuli'>Prefixes v6</li>
<li id='tab_peers' class='tabmenuli'>Peers v4</li>
<li id='tab_peers6' class='tabmenuli'>Peers v6</li>
<li id='tab_whois' class='tabmenuli'>Whois</li>
<li id='tab_irr' class='tabmenuli'>IRR</li>
<li id='tab_ix' class='tabmenuli'>IX</li>
<li id='tab_bogons' class='hidden tabmenuli'>Bogon</li>
</ul>
<div class='clear'></div>
<div id='asinfo' class='tabdata'>
<div class='bogon'><a href='#_bogons'>AS10021 announces bogons.</a></div>
<div class='asinfotext'>
<div class='asleft'>
Company Website:
</div>
<div class='asright'>
<a href="http://asia.colt.net/">http://asia.colt.net/</a>
</div>
<div class='clear'></div>
<br/>
<div class='asleft'>
Country of Origin:
</div>
<div class='asright'>
<a href="/country/JP">Japan</a>
<div class='flag floatright alignright'><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</div>
<div class='clear'></div>
<br/>
<div class='asleft'>
Internet Exchanges: 6<br/>
<br/>
Prefixes Originated (all): 75<br/>
Prefixes Originated (v4): 71<br/>
Prefixes Originated (v6): 4<br/>
<br/>
Prefixes Announced (all): 151<br/>
Prefixes Announced (v4): 145<br/>
Prefixes Announced (v6): 6<br/>
<br/>
BGP Peers Observed (all): 28<br/>
BGP Peers Observed (v4): 28<br/>
BGP Peers Observed (v6): 6<br/>
<br/>
IPs Originated (v4): 144,640<br/>
AS Paths Observed (v4): 632<br/>
AS Paths Observed (v6): 230<br/>
<br/>
Average AS Path Length (all): 3.705<br/>
Average AS Path Length (v4): 3.913<br/>
Average AS Path Length (v6): 3.135<br/>
</div>
<div class='asright'>
<div id='webthumbimg' class='webthumb'>
<img alt="Web Page Preview" src="/webthumbs/a/s/asia.colt.net_320.png?1465871220" />
</div>
<iframe src="http://www.facebook.com/plugins/like.php?href=http://bgp.he.net/AS10021" scrolling="no" frameborder="0" style="border:none; width:325px; height:80px"></iframe>
</div>
<div class='clear'></div>
</div>
<div class='clear'></div>
<br/>
<div class='floatleft'>
<img alt="AS10021 IPv4 Peer Chart" class="piechart" src="http://chart.googleapis.com/chart?cht=p&chtt=AS10021 IPv4 Peers&chs=350x200&chd=t:28,24,24,18,3,3.639240506329119&chl=AS2497+28%25|AS6453+24%25|AS2914+24%25|AS2516+18%25|AS6939+3%25|Other&chco=346090" />
</div>
<div class='floatright'>
<table class='toppeertable'><thead><tr><th>ASN</th><th>Name</th></tr></thead>
<tbody>
<tr>
<td><a href="/AS2497">AS2497</a></td>
<td><a href="/AS2497">Internet Initiative Japan Inc.</a></td>
</tr>
<tr>
<td><a href="/AS6453">AS6453</a></td>
<td><a href="/AS6453">TATA COMMUNICATIONS (AMERICA) INC</a></td>
</tr>
<tr>
<td><a href="/AS2914">AS2914</a></td>
<td><a href="/AS2914">NTT America, Inc.</a></td>
</tr>
<tr>
<td><a href="/AS2516">AS2516</a></td>
<td><a href="/AS2516">KDDI CORPORATION</a></td>
</tr>
<tr>
<td><a href="/AS6939">AS6939</a></td>
<td><a href="/AS6939">Hurricane Electric, Inc.</a></td>
</tr>
</tbody>
</table>
<div class='clear'></div>
</div>
<div class='clear'></div>
<br/>
<div class='floatleft'>
<img alt="AS10021 IPv6 Peer Chart" class="piechart" src="http://chart.googleapis.com/chart?cht=p&chtt=AS10021 IPv6 Peers&chs=350x200&chd=t:77,13,7,2,0.8695652173913062&chl=AS6939+77%25|AS2914+13%25|AS2497+7%25|AS2516+2%25|Other&chco=346090" />
</div>
<div class='floatright'>
<table class='toppeertable'><thead><tr><th>ASN</th><th>Name</th></tr></thead>
<tbody>
<tr>
<td><a href="/AS6939">AS6939</a></td>
<td><a href="/AS6939">Hurricane Electric, Inc.</a></td>
</tr>
<tr>
<td><a href="/AS2914">AS2914</a></td>
<td><a href="/AS2914">NTT America, Inc.</a></td>
</tr>
<tr>
<td><a href="/AS2497">AS2497</a></td>
<td><a href="/AS2497">Internet Initiative Japan Inc.</a></td>
</tr>
<tr>
<td><a href="/AS2516">AS2516</a></td>
<td><a href="/AS2516">KDDI CORPORATION</a></td>
</tr>
</tbody>
</table>
<div class='clear'></div>
</div>
<div class='clear'></div>
<img alt="AS10021 IPv4 Peer Count Chart" class="asgraph" src="http://chart.googleapis.com/chart?chxr=1,17,28,5&chxt=x,y,x&cht=lc&chtt=AS10021 IPv4 Peer Count (90 Days)&chs=360x150&chd=s:3333333333339999999999999999999999999999999999999999999999999999999999999999999999999999999&chl=12|18|24|30|06|12|18|24|30|05|11|17|23|29|05|11&chxl=2:|Apr|Jul&chco=346090&chds=17,28" />
<img alt="AS10021 IPv6 Peer Count Chart" class="asgraph" src="http://chart.googleapis.com/chart?chxr=1,0,11,5&chxt=x,y,x&cht=lc&chtt=AS10021 IPv6 Peer Count (90 Days)&chs=360x150&chd=s:hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh&chl=12|18|24|30|06|12|18|24|30|05|11|17|23|29|05|11&chxl=2:|Apr|Jul&chco=346090&chds=0,11" />
<img alt="AS10021 IPv4 Prefixes Announced Chart" class="asgraph" src="http://chart.googleapis.com/chart?chxr=1,132,145,6&chxt=x,y,x&cht=lc&chtt=AS10021 IPv4 Prefixes Announced (90 Days)&chs=360x150&chd=s:uuuuuuuuzzzz44444444444444444444444444444444zzzzzzzzzzzzzzzzzzzzzzzzz4444444444444444499999&chl=12|18|24|30|06|12|18|24|30|05|11|17|23|29|05|11&chxl=2:|Apr|Jul&chco=346090&chds=132,145" />
<img alt="AS10021 IPv6 Prefixes Announced Chart" class="asgraph" src="http://chart.googleapis.com/chart?chxr=1,0,11,5&chxt=x,y,x&cht=lc&chtt=AS10021 IPv6 Prefixes Announced (90 Days)&chs=360x150&chd=s:hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh&chl=12|18|24|30|06|12|18|24|30|05|11|17|23|29|05|11&chxl=2:|Apr|Jul&chco=346090&chds=0,11" />
<img alt="AS10021 IPv4 Prefixes Originated Chart" class="asgraph" src="http://chart.googleapis.com/chart?chxr=1,60,74,7&chxt=x,y,x&cht=lc&chtt=AS10021 IPv4 Prefixes Originated (90 Days)&chs=360x150&chd=s:rrrrrrrrrrrrrrrrrrrrrrr0rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr9999999rrrrrrvvvvv&chl=12|18|24|30|06|12|18|24|30|05|11|17|23|29|05|11&chxl=2:|Apr|Jul&chco=346090&chds=60,74" />
<img alt="AS10021 IPv6 Prefixes Originated Chart" class="asgraph" src="http://chart.googleapis.com/chart?chxr=1,0,11,5&chxt=x,y,x&cht=lc&chtt=AS10021 IPv6 Prefixes Originated (90 Days)&chs=360x150&chd=s:WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW&chl=12|18|24|30|06|12|18|24|30|05|11|17|23|29|05|11&chxl=2:|Apr|Jul&chco=346090&chds=0,11" />
<div class='clear'></div>
</div>
<div id='graph4' class='tabdata hidden'>
<h2>AS10021 IPv4 Route Propagation</h2>
<img alt="As10021-ipv4" src="/graphs/as10021-ipv4.svg?1468275956" usemap="#diag4" />
<map id="diag4" name="diag4">
<area shape="poly" id="node1" href="/AS10021#_graph4" title="AS10021 -- KVH Co.,Ltd " alt="" coords="94,371,91,365,85,361,75,357,63,354,49,353,35,354,23,357,13,361,7,365,5,371,7,376,13,381,23,385,35,387,49,388,63,387,75,385,85,381,91,376"/>
<area shape="poly" id="node2" href="/AS6453#_graph4" title="AS6453 -- TATA COMMUNICATIONS (AMERICA) INC " alt="" coords="339,173,337,167,331,163,322,159,311,156,299,155,287,156,275,159,267,163,261,167,259,173,261,178,267,183,275,187,287,189,299,190,311,189,322,187,331,183,337,178"/>
<area shape="poly" id="node3" href="/AS2497#_graph4" title="AS2497 -- Internet Initiative Japan Inc. " alt="" coords="216,340,214,334,209,329,200,326,189,323,176,322,164,323,153,326,144,329,139,334,137,340,139,345,144,350,153,354,164,356,176,357,189,356,200,354,209,350,214,345"/>
<area shape="poly" id="node4" href="/AS2914#_graph4" title="AS2914 -- NTT America, Inc. " alt="" coords="461,371,459,365,453,361,445,357,433,354,421,353,409,354,398,357,389,361,383,365,381,371,383,376,389,381,398,385,409,387,421,388,433,387,445,385,453,381,459,376"/>
<area shape="poly" id="node16" href="/AS2516#_graph4" title="AS2516 -- KDDI CORPORATION " alt="" coords="216,402,214,397,209,392,200,388,189,385,176,385,164,385,153,388,144,392,139,397,137,402,139,407,144,412,153,416,164,419,176,419,189,419,200,416,209,412,214,407"/>
<area shape="poly" id="node18" href="/AS6939#_graph4" title="AS6939 -- Hurricane Electric, Inc. " alt="" coords="216,445,214,440,209,435,200,431,189,429,176,428,164,429,153,431,144,435,139,440,137,445,139,451,144,455,153,459,164,462,176,463,189,462,200,459,209,455,214,451"/>
<area shape="poly" id="node5" href="/AS174#_graph4" title="AS174 -- Cogent Communications " alt="" coords="584,328,582,322,577,317,569,314,559,311,548,310,537,311,527,314,519,317,514,322,513,328,514,333,519,338,527,342,537,344,548,345,559,344,569,342,577,338,582,333"/>
<area shape="poly" id="node6" href="/AS1299#_graph4" title="AS1299 -- Telia Company AB " alt="" coords="588,151,586,146,581,141,572,137,561,135,548,134,536,135,525,137,516,141,511,146,509,151,511,157,516,161,525,165,536,168,548,169,561,168,572,165,581,161,586,157"/>
<area shape="poly" id="node7" href="/AS3356#_graph4" title="AS3356 -- Level 3 Communications, Inc. " alt="" coords="588,371,586,365,581,361,572,357,561,354,548,353,536,354,525,357,516,361,511,365,509,371,511,376,516,381,525,385,536,387,548,388,561,387,572,385,581,381,586,376"/>
<area shape="poly" id="node8" href="/AS6762#_graph4" title="AS6762 -- TELECOM ITALIA SPARKLE S.p.A. " alt="" coords="588,414,586,409,581,404,572,400,561,397,548,397,536,397,525,400,516,404,511,409,509,414,511,419,516,424,525,428,536,431,548,431,561,431,572,428,581,424,586,419"/>
<area shape="poly" id="node10" href="/AS12956#_graph4" title="AS12956 -- Telefonica International Wholesale Services, SL " alt="" coords="593,457,591,452,584,447,575,443,562,441,548,440,535,441,522,443,512,447,506,452,504,457,506,463,512,467,522,471,535,474,548,475,562,474,575,471,584,467,591,463"/>
<area shape="poly" id="node12" href="/AS5511#_graph4" title="AS5511 -- Orange S.A. " alt="" coords="588,284,586,279,581,274,572,270,561,268,548,267,536,268,525,270,516,274,511,279,509,284,511,290,516,295,525,298,536,301,548,302,561,301,572,298,581,295,586,290"/>
<area shape="poly" id="node13" href="/AS7018#_graph4" title="AS7018 -- AT&T Services, Inc. " alt="" coords="588,65,586,59,581,55,572,51,561,48,548,47,536,48,525,51,516,55,511,59,509,65,511,70,516,75,525,79,536,81,548,82,561,81,572,79,581,75,586,70"/>
<area shape="poly" id="node14" href="/AS3320#_graph4" title="AS3320 -- Deutsche Telekom AG " alt="" coords="588,108,586,103,581,98,572,94,561,91,548,91,536,91,525,94,516,98,511,103,509,108,511,113,516,118,525,122,536,125,548,125,561,125,572,122,581,118,586,113"/>
<area shape="poly" id="node20" href="/AS6461#_graph4" title="AS6461 -- Zayo Bandwidth Inc " alt="" coords="461,272,459,267,453,262,445,258,433,256,421,255,409,256,398,258,389,262,383,267,381,272,383,278,389,283,398,286,409,289,421,290,433,289,445,286,453,283,459,278"/>
<area shape="poly" id="node21" href="/AS701#_graph4" title="AS701 -- Verizon Business/UUnet " alt="" coords="457,66,455,61,450,56,442,52,432,49,421,49,410,49,400,52,392,56,387,61,385,66,387,71,392,76,400,80,410,83,421,83,432,83,442,80,450,76,455,71"/>
<area shape="poly" id="node9" href="/AS209#_graph4" title="AS209 -- Qwest Communications Company, LLC " alt="" coords="335,322,333,316,328,311,320,308,310,305,299,304,288,305,278,308,270,311,265,316,263,322,265,327,270,332,278,336,288,338,299,339,310,338,320,336,328,332,333,327"/>
<area shape="poly" id="node15" href="/AS3257#_graph4" title="AS3257 -- Tinet Spa " alt="" coords="588,500,586,495,581,490,572,486,561,484,548,483,536,484,525,486,516,490,511,495,509,500,511,506,516,511,525,514,536,517,548,518,561,517,572,514,581,511,586,506"/>
<area shape="poly" id="node17" href="/AS1239#_graph4" title="AS1239 -- Sprint " alt="" coords="339,216,337,211,331,206,322,202,311,199,299,199,287,199,275,202,267,206,261,211,259,216,261,221,267,226,275,230,287,233,299,233,311,233,322,230,331,226,337,221"/>
<area shape="poly" id="node19" href="/AS1273#_graph4" title="AS1273 -- Cable and Wireless Worldwide plc " alt="" coords="339,259,337,254,331,249,322,245,311,243,299,242,287,243,275,245,267,249,261,254,259,259,261,265,267,269,275,273,287,276,299,277,311,276,322,273,331,269,337,265"/>
<area shape="poly" id="node11" href="/AS3549#_graph4" title="AS3549 -- Level 3 Communications, Inc. (GBLX) " alt="" coords="715,532,713,526,708,521,699,518,688,515,676,514,663,515,652,518,643,521,638,526,636,532,638,537,643,542,652,546,663,548,676,549,688,548,699,546,708,542,713,537"/>
<area shape="poly" id="node22" href="/AS702#_graph4" title="AS702 -- Verizon Business/UUnet Europe " alt="" coords="584,22,582,16,577,11,569,8,559,5,548,4,537,5,527,8,519,11,514,16,513,22,514,27,519,32,527,36,537,38,548,39,559,38,569,36,577,32,582,27"/>
</map>
</div>
<div id='graph6' class='tabdata hidden'>
<h2>AS10021 IPv6 Route Propagation</h2>
<img alt="As10021-ipv6" src="/graphs/as10021-ipv6.svg?1468275956" usemap="#diag6" />
<map id="diag6" name="diag6">
<area shape="poly" id="node1" href="/AS10021#_graph6" title="AS10021 -- KVH Co.,Ltd " alt="" coords="104,312,102,306,95,301,84,296,70,294,55,293,39,294,26,296,15,301,8,306,5,312,8,318,15,323,26,328,39,330,55,331,70,330,84,328,95,323,102,318"/>
<area shape="poly" id="node2" href="/AS6939#_graph6" title="AS6939 -- Hurricane Electric, Inc. " alt="" coords="240,312,238,306,232,301,222,296,210,294,196,293,182,294,170,296,160,301,154,306,152,312,154,318,160,323,170,328,182,330,196,331,210,330,222,328,232,323,238,318"/>
<area shape="poly" id="node4" href="/AS2497#_graph6" title="AS2497 -- Internet Initiative Japan Inc. " alt="" coords="240,408,238,402,232,397,222,392,210,390,196,389,182,390,170,392,160,397,154,402,152,408,154,414,160,419,170,424,182,426,196,427,210,426,222,424,232,419,238,414"/>
<area shape="poly" id="node7" href="/AS2914#_graph6" title="AS2914 -- NTT America, Inc. " alt="" coords="240,264,238,258,232,253,222,248,210,246,196,245,182,246,170,248,160,253,154,258,152,264,154,270,160,275,170,280,182,282,196,283,210,282,222,280,232,275,238,270"/>
<area shape="poly" id="node11" href="/AS2516#_graph6" title="AS2516 -- KDDI CORPORATION " alt="" coords="240,360,238,354,232,349,222,344,210,342,196,341,182,342,170,344,160,349,154,354,152,360,154,366,160,371,170,376,182,378,196,379,210,378,222,376,232,371,238,366"/>
<area shape="poly" id="node3" href="/AS6453#_graph6" title="AS6453 -- TATA COMMUNICATIONS (AMERICA) INC " alt="" coords="376,216,374,210,368,205,358,200,346,198,332,197,318,198,306,200,296,205,290,210,288,216,290,222,296,227,306,232,318,234,332,235,346,234,358,232,368,227,374,222"/>
<area shape="poly" id="node6" href="/AS1273#_graph6" title="AS1273 -- Cable and Wireless Worldwide plc " alt="" coords="376,264,374,258,368,253,358,248,346,246,332,245,318,246,306,248,296,253,290,258,288,264,290,270,296,275,306,280,318,282,332,283,346,282,358,280,368,275,374,270"/>
<area shape="poly" id="node8" href="/AS1299#_graph6" title="AS1299 -- Telia Company AB " alt="" coords="376,312,374,306,368,301,358,296,346,294,332,293,318,294,306,296,296,301,290,306,288,312,290,318,296,323,306,328,318,330,332,331,346,330,358,328,368,323,374,318"/>
<area shape="poly" id="node12" href="/AS3356#_graph6" title="AS3356 -- Level 3 Communications, Inc. " alt="" coords="376,408,374,402,368,397,358,392,346,390,332,389,318,390,306,392,296,397,290,402,288,408,290,414,296,419,306,424,318,426,332,427,346,426,358,424,368,419,374,414"/>
<area shape="poly" id="node13" href="/AS5511#_graph6" title="AS5511 -- Orange S.A. " alt="" coords="376,72,374,66,368,61,358,56,346,54,332,53,318,54,306,56,296,61,290,66,288,72,290,78,296,83,306,88,318,90,332,91,346,90,358,88,368,83,374,78"/>
<area shape="poly" id="node14" href="/AS6762#_graph6" title="AS6762 -- TELECOM ITALIA SPARKLE S.p.A. " alt="" coords="376,360,374,354,368,349,358,344,346,342,332,341,318,342,306,344,296,349,290,354,288,360,290,366,296,371,306,376,318,378,332,379,346,378,358,376,368,371,374,366"/>
<area shape="poly" id="node15" href="/AS701#_graph6" title="AS701 -- Verizon Business/UUnet " alt="" coords="372,120,370,114,364,109,355,104,344,102,332,101,320,102,309,104,300,109,294,114,292,120,294,126,300,131,309,136,320,138,332,139,344,138,355,136,364,131,370,126"/>
<area shape="poly" id="node16" href="/AS7018#_graph6" title="AS7018 -- AT&T Services, Inc. " alt="" coords="376,168,374,162,368,157,358,152,346,150,332,149,318,150,306,152,296,157,290,162,288,168,290,174,296,179,306,184,318,186,332,187,346,186,358,184,368,179,374,174"/>
<area shape="poly" id="node5" href="/AS1239#_graph6" title="AS1239 -- Sprint " alt="" coords="376,504,374,498,368,493,358,488,346,486,332,485,318,486,306,488,296,493,290,498,288,504,290,510,296,515,306,520,318,522,332,523,346,522,358,520,368,515,374,510"/>
<area shape="poly" id="node9" href="/AS209#_graph6" title="AS209 -- Qwest Communications Company, LLC " alt="" coords="372,456,370,450,364,445,355,440,344,438,332,437,320,438,309,440,300,445,294,450,292,456,294,462,300,467,309,472,320,474,332,475,344,474,355,472,364,467,370,462"/>
<area shape="poly" id="node10" href="/AS3257#_graph6" title="AS3257 -- Tinet Spa " alt="" coords="376,24,374,18,368,13,358,8,346,6,332,5,318,6,306,8,296,13,290,18,288,24,290,30,296,35,306,40,318,42,332,43,346,42,358,40,368,35,374,30"/>
</map>
</div>
<div id='prefixes' class='tabdata hidden'>
<table id='table_prefixes4' class='sortable w100p'>
<thead><tr><th>Prefix</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td class='nowrap'>
<a href="/net/27.110.0.0/18">27.110.0.0/18</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/27.110.0.0/19">27.110.0.0/19</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/27.110.32.0/20">27.110.32.0/20</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/27.110.48.0/21">27.110.48.0/21</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/27.110.56.0/22">27.110.56.0/22</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/27.110.60.0/22">27.110.60.0/22</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/43.248.216.0/22">43.248.216.0/22</a>
</td>
<td>Send Networks, Inc.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/43.251.48.0/22">43.251.48.0/22</a>
</td>
<td>Uchina-Web, Inc.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/61.120.192.0/20">61.120.192.0/20</a>
</td>
<td>Japan Network Information Center
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/61.120.192.0/21">61.120.192.0/21</a>
</td>
<td>Japan Network Information Center
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/61.120.200.0/22">61.120.200.0/22</a>
</td>
<td>
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/61.120.204.0/23">61.120.204.0/23</a>
</td>
<td>
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/61.120.206.0/24">61.120.206.0/24</a>
</td>
<td>
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/61.120.207.0/24">61.120.207.0/24</a>
</td>
<td>
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.3.19.0/24">103.3.19.0/24</a>
</td>
<td>SocialMNet
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.6.60.0/24">103.6.60.0/24</a>
</td>
<td>SANDISOL
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.18.228.0/22">103.18.228.0/22</a>
</td>
<td>3-44-5 Kibou Bld., Shimorenjaku
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.23.220.0/24">103.23.220.0/24</a>
</td>
<td>IC-LABO-JP
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.23.222.0/24">103.23.222.0/24</a>
</td>
<td>IC-LABO-JP
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.30.60.0/22">103.30.60.0/22</a>
</td>
<td>Asia Pacific Network Information Centre
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.39.68.0/22">103.39.68.0/22</a>
</td>
<td>Room 1003-9, 10/F, Office Tower Two,
<div class="flag alignright floatright"><img alt="Hong Kong" src="/images/flags/hk.gif?1282328065" title="Hong Kong" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.39.72.0/22">103.39.72.0/22</a>
</td>
<td>Wah Hen Commercial Centre, 381-383 Hennessy Rd
<div class="flag alignright floatright"><img alt="Hong Kong" src="/images/flags/hk.gif?1282328065" title="Hong Kong" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.42.60.0/22">103.42.60.0/22</a>
</td>
<td>567, 1B , nam bin tsuen fanling wai , fanling NT
<div class="flag alignright floatright"><img alt="Hong Kong" src="/images/flags/hk.gif?1282328065" title="Hong Kong" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.43.60.0/22">103.43.60.0/22</a>
</td>
<td>1/F, Winner Mansion, 691A Nathan Road, MongKok
<div class="flag alignright floatright"><img alt="Hong Kong" src="/images/flags/hk.gif?1282328065" title="Hong Kong" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.48.160.0/22">103.48.160.0/22</a>
</td>
<td>8-17,Nishikigaoka,Kohoku-ku
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.53.28.0/22">103.53.28.0/22</a>
</td>
<td>Asia Pacific Network Information Centre
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.54.156.0/22">103.54.156.0/22</a>
</td>
<td>ONOCOMM Co.,Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.61.232.0/22">103.61.232.0/22</a>
</td>
<td>7-15-8, Ginza, Chuo-ku
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.197.208.0/22">103.197.208.0/22</a>
</td>
<td>2-2-3 RICHE Bld. UCF 4F, Nihombashi
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.221.64.0/22">103.221.64.0/22</a>
</td>
<td>
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.227.104.0/22">103.227.104.0/22</a>
</td>
<td>Room B, 14/F,Wah Hen Commercial Centre, 381-383 Hennessy Rd
<div class="flag alignright floatright"><img alt="Hong Kong" src="/images/flags/hk.gif?1282328065" title="Hong Kong" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.240.12.0/22">103.240.12.0/22</a>
</td>
<td>Okubo 2-4-1
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.240.20.0/22">103.240.20.0/22</a>
</td>
<td>Minato 1-1-16, Chuo-ku
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.241.64.0/23">103.241.64.0/23</a>
</td>
<td>AMBITIOUSINC-JP
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.245.228.0/22">103.245.228.0/22</a>
</td>
<td>1-4-14, Akasaka
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.248.77.0/24">103.248.77.0/24</a>
</td>
<td>nam bin tsuen, fanling wai Fanling NT
<div class="flag alignright floatright"><img alt="Hong Kong" src="/images/flags/hk.gif?1282328065" title="Hong Kong" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.248.78.0/23">103.248.78.0/23</a>
</td>
<td>nam bin tsuen, fanling wai Fanling NT
<div class="flag alignright floatright"><img alt="Hong Kong" src="/images/flags/hk.gif?1282328065" title="Hong Kong" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/103.253.16.0/22">103.253.16.0/22</a>
</td>
<td>8-17, Nishikigaoka, Kohoku-ku Yokohama-shi
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/110.50.64.0/20">110.50.64.0/20</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/114.31.80.0/20">114.31.80.0/20</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/117.55.208.0/20">117.55.208.0/20</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/157.120.224.0/21">157.120.224.0/21</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/157.120.240.0/20">157.120.240.0/20</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/160.185.0.0/16">160.185.0.0/16</a>
</td>
<td>Deloitte Touche Tohmatsu
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/180.87.89.0/24">180.87.89.0/24</a>
</td>
<td>Sumitomo Fudosan Tamachi Ekimae Bldg.3-1-35 Shibaura, Minato-ku, Tokyo 108-0023 Japan
<div class="flag alignright floatright"><img alt="India" src="/images/flags/in.gif?1282328066" title="India" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/192.51.55.0/24">192.51.55.0/24</a>
</td>
<td>TOYOBO CO., LTD
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/192.103.52.0/24">192.103.52.0/24</a>
</td>
<td>Wind River Systems, Inc.
<div class="flag alignright floatright"><img alt="United States" src="/images/flags/us.gif?1282328089" title="United States" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/202.7.96.0/20">202.7.96.0/20</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/202.7.96.0/23">202.7.96.0/23</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/202.7.98.0/24">202.7.98.0/24</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/202.7.99.0/24">202.7.99.0/24</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/202.7.100.0/23">202.7.100.0/23</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/202.7.102.0/23">202.7.102.0/23</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/202.7.105.0/24">202.7.105.0/24</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/202.7.106.0/23">202.7.106.0/23</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/202.7.108.0/22">202.7.108.0/22</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>
<td class='nowrap'>
<a href="/net/202.95.208.0/20">202.95.208.0/20</a>
</td>
<td>Colt Technology Services Co., Ltd.
<div class="flag alignright floatright"><img alt="Japan" src="/images/flags/jp.gif?1282328067" title="Japan" /></div>
</td>
</tr>
<tr>