forked from c-amr/camr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwiki.jsons
6094 lines (6094 loc) · 417 KB
/
wiki.jsons
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
["country", "\"Moldova\"", " :op1 \"Moldova\""]
["country", "\"Fiji\"", " :op1 \"Fiji\""]
["country", "\"Czech_Republic\"", " :op1 \"Czech\" :op2 \"Republic\""]
["country", "\"The_Gambia\"", " :op1 \"Gambia\""]
["country", "\"Belgium\"", " :op1 \"Belgium\""]
["country", "\"New_Zealand\"", " :op1 \"New\" :op2 \"Zealand\""]
["country", "\"Brunei\"", " :op1 \"Brunei\""]
["country", "\"United_Arab_Emirates\"", " :op1 \"United\" :op2 \"Arab\" :op3 \"Emirates\""]
["country", "\"Burundi\"", " :op1 \"Burundi\""]
["country", "\"Costa_Rica\"", " :op1 \"Costa\" :op2 \"Rica\""]
["country", "\"Guatemala\"", " :op1 \"Guatemala\""]
["country", "\"Eritrea\"", " :op1 \"Eritrea\""]
["country", "\"Togo\"", " :op1 \"Togo\""]
["country", "\"Mali\"", " :op1 \"Mali\""]
["country", "\"Republic_of_Macedonia\"", " :op1 \"Macedonia\""]
["country", "\"Thailand\"", " :op1 \"Thailand\""]
["country", "\"Tanzania\"", " :op1 \"Tanzania\""]
["country", "\"Bhutan\"", " :op1 \"Bhutan\""]
["country", "\"Brazil\"", " :op1 \"Brazil\""]
["country", "\"Denmark\"", " :op1 \"Denmark\""]
["country", "\"Netherlands\"", " :op1 \"Netherlands\""]
["country", "\"Uzbekistan\"", " :op1 \"Uzbekistan\""]
["country", "\"Panama\"", " :op1 \"Panama\""]
["country", "\"Zimbabwe\"", " :op1 \"Zimbabwe\""]
["country", "\"Senegal\"", " :op1 \"Senegal\""]
["country", "\"Sudan\"", " :op1 \"Sudan\""]
["country", "\"Croatia\"", " :op1 \"Croatia\""]
["country", "\"Egypt\"", " :op1 \"Egypt\""]
["country", "\"Zaire\"", " :op1 \"Zaire\""]
["country", "\"Austria\"", " :op1 \"Austria\""]
["country", "\"Mexico\"", " :op1 \"Mexico\""]
["country", "\"Papua_New_Guinea\"", " :op1 \"Papua\" :op2 \"New\" :op3 \"Guinea\""]
["country", "\"Rwanda\"", " :op1 \"Rwanda\""]
["country", "\"Finland\"", " :op1 \"Finland\""]
["country", "\"Burma\"", " :op1 \"Burma\""]
["country", "\"Yemen\"", " :op1 \"Yemen\""]
["country", "\"Venezuela\"", " :op1 \"Venezuela\""]
["country", "\"Benin\"", " :op1 \"Benin\""]
["country", "\"Somalia\"", " :op1 \"Somalia\""]
["country", "\"Burkina\"", " :op1 \"Burkina\""]
["country", "\"Monaco\"", " :op1 \"Monaco\""]
["country", "\"Bolivia\"", " :op1 \"Bolivia\""]
["country", "\"Canada\"", " :op1 \"Canada\""]
["country", "\"Azerbaijan\"", " :op1 \"Azerbaijan\""]
["country", "\"Turkey\"", " :op1 \"Turkey\""]
["country", "\"Niger\"", " :op1 \"Niger\""]
["country", "\"Iceland\"", " :op1 \"Iceland\""]
["country", "\"Saudi_Arabia\"", " :op1 \"Saudi\" :op2 \"Arabia\""]
["country", "\"Lithuania\"", " :op1 \"Lithuania\""]
["country", "\"Ukraine\"", " :op1 \"Ukraine\""]
["country", "\"Barbados\"", " :op1 \"Barbados\""]
["country", "\"Jamaica\"", " :op1 \"Jamaica\""]
["country", "\"Mongolia\"", " :op1 \"Mongolia\""]
["country", "\"Vietnam\"", " :op1 \"Vietnam\""]
["country", "\"Sierra_Leone\"", " :op1 \"Sierra\" :op2 \"Leone\""]
["country", "\"Armenia\"", " :op1 \"Armenia\""]
["country", "\"France\"", " :op1 \"France\""]
["country", "\"Romania\"", " :op1 \"Romania\""]
["country", "\"Sweden\"", " :op1 \"Sweden\""]
["country", "\"Djibouti\"", " :op1 \"Djibouti\""]
["country", "\"Ethiopia\"", " :op1 \"Ethiopia\""]
["country", "\"Nigeria\"", " :op1 \"Nigeria\""]
["country", "\"Chile\"", " :op1 \"Chile\""]
["country", "\"Vanuatu\"", " :op1 \"Vanuatu\""]
["country", "\"Georgia_(country)\"", " :op1 \"Georgia\""]
["country", "\"Scotland\"", " :op1 \"Scotland\""]
["country", "\"Estonia\"", " :op1 \"Estonia\""]
["country", "\"Namibia\"", " :op1 \"Namibia\""]
["country", "\"Jordan\"", " :op1 \"Jordan\""]
["country", "\"Kuwait\"", " :op1 \"Kuwait\""]
["country", "\"Uganda\"", " :op1 \"Uganda\""]
["country", "\"Angola\"", " :op1 \"Angola\""]
["country", "\"Liberia\"", " :op1 \"Liberia\""]
["country", "\"Hungary\"", " :op1 \"Hungary\""]
["country", "\"Uruguay\"", " :op1 \"Uruguay\""]
["country", "\"Gabon\"", " :op1 \"Gabon\""]
["country", "\"New_Zealand\"", " :op1 \"New\" :op2 \"Zealand\""]
["country", "\"Libya\"", " :op1 \"Libya\""]
["country", "\"Oman\"", " :op1 \"Oman\""]
["country", "\"Bangladesh\"", " :op1 \"Bangladesh\""]
["country", "\"Mauritius\"", " :op1 \"Mauritius\""]
["country", "\"Iraq\"", " :op1 \"Iraq\""]
["country", "\"Latvia\"", " :op1 \"Latvia\""]
["country", "\"Cyprus\"", " :op1 \"Cyprus\""]
["country", "\"Kenya\"", " :op1 \"Kenya\""]
["country", "\"Nepal\"", " :op1 \"Nepal\""]
["country", "\"Bulgaria\"", " :op1 \"Bulgaria\""]
["country", "\"South_Korea\"", " :op1 \"South\" :op2 \"Korea\""]
["country", "\"Ecuador\"", " :op1 \"Ecuador\""]
["country", "\"China\"", " :op1 \"China\""]
["country", "\"Laos\"", " :op1 \"Laos\""]
["country", "\"Cape_Verde\"", " :op1 \"Cape\" :op2 \"Verde\""]
["country", "\"Cambodia\"", " :op1 \"Cambodia\""]
["country", "\"Iran\"", " :op1 \"Iran\""]
["country", "\"Ecuador\"", " :op1 \"Ecuador\""]
["country", "\"Slovakia\"", " :op1 \"Slovakia\""]
["country", "\"Honduras\"", " :op1 \"Honduras\""]
["country", "\"Colombia\"", " :op1 \"Colombia\""]
["country", "\"Algeria\"", " :op1 \"Algeria\""]
["country", "\"Malaysia\"", " :op1 \"Malaysia\""]
["country", "\"Argentina\"", " :op1 \"Argentina\""]
["country", "\"Afghanistan\"", " :op1 \"Afghanistan\""]
["country", "\"North_Korea\"", " :op1 \"North\" :op2 \"Korea\""]
["country", "\"Saudi_Arabia\"", " :op1 \"Saudi\" :op2 \"Arabia\""]
["country", "\"Wales\"", " :op1 \"Wales\""]
["country", "\"Serbia\"", " :op1 \"Serbia\""]
["country", "\"Indonesia\"", " :op1 \"Indonesia\""]
["country", "\"El_Salvador\"", " :op1 \"El\" :op2 \"Salvador\""]
["country", "\"Philippines\"", " :op1 \"Philippines\""]
["country", "\"Korea\"", " :op1 \"Korea\""]
["country", "\"Bosnia_and_Herzegovina\"", " :op1 \"Bosnia-Herzegovina\""]
["country", "\"Italy\"", " :op1 \"Italy\""]
["country", "\"Swaziland\"", " :op1 \"Swaziland\""]
["country", "\"Trinidad_and_Tobago\"", " :op1 \"Trinidad\" :op2 \"and\" :op3 \"Tobago\""]
["country", "\"Mozambique\"", " :op1 \"Mozambique\""]
["country", "\"Puerto_Rico\"", " :op1 \"Puerto\" :op2 \"Rico\""]
["country", "\"South_Africa\"", " :op1 \"South\" :op2 \"Africa\""]
["country", "\"Israel\"", " :op1 \"Israel\""]
["country", "\"Singapore\"", " :op1 \"Singapore\""]
["country", "\"Qatar\"", " :op1 \"Qatar\""]
["country", "\"Dominican_Republic\"", " :op1 \"Dominican\" :op2 \"Republic\""]
["country", "\"Madagascar\"", " :op1 \"Madagascar\""]
["country", "\"Pakistan\"", " :op1 \"Pakistan\""]
["country", "\"Samoa\"", " :op1 \"Western\" :op2 \"Samoa\""]
["country", "\"Peru\"", " :op1 \"Peru\""]
["country", "\"Malawi\"", " :op1 \"Malawi\""]
["country", "\"Bahamas\"", " :op1 \"Bahamas\""]
["country", "\"Lebanon\"", " :op1 \"Lebanon\""]
["country", "\"Sri_Lanka\"", " :op1 \"Sri\" :op2 \"Lanka\""]
["country", "\"Nicaragua\"", " :op1 \"Nicaragua\""]
["country", "\"Chad\"", " :op1 \"Chad\""]
["country", "\"Cuba\"", " :op1 \"Cuba\""]
["country", "\"Belize\"", " :op1 \"Belize\""]
["country", "\"Taiwan\"", " :op1 \"Taiwan\""]
["country", "\"Tunisia\"", " :op1 \"Tunisia\""]
["country", "\"Spain\"", " :op1 \"Spain\""]
["country", "\"Ghana\"", " :op1 \"Ghana\""]
["country", "\"Japan\"", " :op1 \"Japan\""]
["country", "\"Botswana\"", " :op1 \"Botswana\""]
["country", "\"India\"", " :op1 \"India\""]
["country", "\"Ireland\"", " :op1 \"Ireland\""]
["country", "\"Tajikistan\"", " :op1 \"Tajikistan\""]
["country", "\"Democratic_Republic_of_the_Congo\"", " :op1 \"Congo\""]
["country", "\"Switzerland\"", " :op1 \"Switzerland\""]
["country", "\"Cameroon\"", " :op1 \"Cameroon\""]
["country", "\"Mauritania\"", " :op1 \"Mauritania\""]
["country", "\"United_Kingdom\"", " :op1 \"Britain\""]
["country", "\"Guinea\"", " :op1 \"Guinea\""]
["country", "\"Germany\"", " :op1 \"Germany\""]
["country", "\"Malta\"", " :op1 \"Malta\""]
["country", "\"Albania\"", " :op1 \"Albania\""]
["country", "\"Tuvalu\"", " :op1 \"Tuvalu\""]
["country", "\"United_Kingdom\"", " :op1 \"United\" :op2 \"Kingdom\""]
["country", "\"Morocco\"", " :op1 \"Morocco\""]
["country", "\"Montenegro\"", " :op1 \"Montenegro\""]
["country", "\"Maldives\"", " :op1 \"Maldives\""]
["country", "\"Haiti\"", " :op1 \"Haiti\""]
["country", "\"Slovenia\"", " :op1 \"Slovenia\""]
["country", "\"Paraguay\"", " :op1 \"Paraguay\""]
["country", "\"England\"", " :op1 \"England\""]
["country", "\"Belarus\"", " :op1 \"Belarus\""]
["country", "\"United_States\"", " :op1 \"United\" :op2 \"States\""]
["country", "\"Grenada\"", " :op1 \"Grenada\""]
["country", "\"Australia\"", " :op1 \"Australia\""]
["country", "\"Suriname\"", " :op1 \"Suriname\""]
["country", "\"Denmark\"", " :op1 \"Denmark\""]
["country", "\"Guyana\"", " :op1 \"Guyana\""]
["country", "\"Norway\"", " :op1 \"Norway\""]
["country", "\"Bahrain\"", " :op1 \"Bahrain\""]
["country", "\"Andorra\"", " :op1 \"Andorra\""]
["country", "\"Portugal\"", " :op1 \"Portugal\""]
["country", "\"Seychelles\"", " :op1 \"Seychelles\""]
["country", "\"Greece\"", " :op1 \"Greece\""]
["country", "\"Turkmenistan\"", " :op1 \"Turkmenistan\""]
["country", "\"Russia\"", " :op1 \"Russia\""]
["country", "\"Syria\"", " :op1 \"Syria\""]
["country", "\"Poland\"", " :op1 \"Poland\""]
["country", "\"El_Salvador\"", " :op1 \"El\" :op2 \"Salvador\""]
["country", "\"Yugoslavia\"", " :op1 \"Yugoslavia\""]
["country", "\"Kazakhstan\"", " :op1 \"Kazakhstan\""]
["country", "\"Zambia\"", " :op1 \"Zambia\""]
["accomplice", "-", " :op1 \"Pham\" :op2 \"Dai\" :op3 \"Nhon\""]
["activist", "-", " :op1 \"Walter\" :op2 \"Odhiambo\""]
["activity-06", "\"Full_Gospel_Business_Men's_Fellowship_International\"", " :op1 \"Full\" :op2 \"Gospel\" :op3 \"Business\" :op4 \"Men's\" :op5 \"Fellowship\" :op6 \"International\""]
["address", "\"Blackle\"", " :op1 \"Blackle.com\""]
["agency", "\"Agence_France-Presse\"", " :op1 \"AFP\""]
["agency", "\"Agenzia_Nazionale_Stampa_Associata\"", " :op1 \"ANSA\""]
["agency", "\"Bernama\"", " :op1 \"Bernama\""]
["agency", "\"Direction_de_la_surveillance_du_territoire\"", " :op1 \"DST\""]
["agency", "\"Interfax\"", " :op1 \"Interfax\""]
["agency", "\"Iranian_Students_News_Agency\"", " :op1 \"ISNA\""]
["agency", "\"Islamic_Republic_News_Agency\"", " :op1 \"IRNA\""]
["agency", "\"Korean_Central_News_Agency\"", " :op1 \"KCNA\""]
["agency", "\"Petra\"", " :op1 \"Petra\""]
["agency", "\"Press_Trust_of_India\"", " :op1 \"Press\" :op2 \"Trust\" :op3 \"of\" :op4 \"India\""]
["agency", "\"RIA_Novosti\"", " :op1 \"RIA\" :op2 \"Novosti\""]
["agency", "\"Research_and_Analysis_Wing\"", " :op1 \"Research\" :op2 \"and\" :op3 \"Analysis\" :op4 \"Wing\""]
["agency", "\"Reuters\"", " :op1 \"Reuters\""]
["agency", "\"Russian_News_Agency_%22TASS%22\"", " :op1 \"ITAR-TASS\""]
["agency", "\"Saudi_Press_Agency\"", " :op1 \"SPA\""]
["agency", "\"Syrian_Arab_News_Agency\"", " :op1 \"SANA\""]
["agency", "\"United_Nations_High_Commissioner_for_Refugees\"", " :op1 \"UNHCR\""]
["agency", "\"Yonhap\"", " :op1 \"Yonhap\""]
["aircraft", "\"Boeing_747\"", " :op1 747"]
["aircraft", "\"Spirit_of_St._Louis\"", " :op1 \"Spirit\" :op2 \"of\" :op3 \"St.\" :op4 \"Louis\""]
["aircraft-type", "-", " :op1 \"F-15C\""]
["aircraft-type", "-", " :op1 \"F-15K\""]
["aircraft-type", "-", " :op1 \"Mirage\" :op2 \"2000-5\""]
["aircraft-type", "\"Airbus\"", " :op1 \"Airbus\""]
["aircraft-type", "\"Airbus_A380\"", " :op1 \"Airbus\" :op2 \"A380\""]
["aircraft-type", "\"Airbus_Helicopters_EC175\"", " :op1 \"EC175\""]
["aircraft-type", "\"Boeing_CH-47_Chinook\"", " :op1 \"Chinook\""]
["aircraft-type", "\"Chengdu_J-10\"", " :op1 \"J-10\""]
["aircraft-type", "\"Chengdu_J-20\"", " :op1 \"J20\""]
["aircraft-type", "\"Dassault_Mirage_2000\"", " :op1 \"Mirage\" :op2 \"2000-5\" :op3 \"BR\""]
["aircraft-type", "\"Dassault_Mirage_2000\"", " :op1 \"Mirage\""]
["aircraft-type", "\"Dassault_Rafale\"", " :op1 \"Rafale\""]
["aircraft-type", "\"Eurofighter_GmbH\"", " :op1 \"Eurofighter\""]
["aircraft-type", "\"Eurofighter_Typhoon\"", " :op1 \"Typhoon\" :op2 2000"]
["aircraft-type", "\"Eurofighter_Typhoon\"", " :op1 \"Typhoon\""]
["aircraft-type", "\"General_Dynamics_F-16_Fighting_Falcon\"", " :op1 \"F-16\" :op2 \"C\""]
["aircraft-type", "\"HAL_Dhruv\"", " :op1 \"ALH\""]
["aircraft-type", "\"HAL_Dhruv\"", " :op1 \"Advanced\" :op2 \"Light\" :op3 \"Helicopter\""]
["aircraft-type", "\"Lockheed_Martin_F-22_Raptor\"", " :op1 \"F-22\" :op2 \"Raptor\""]
["aircraft-type", "\"Lockheed_Martin_F-22_Raptor\"", " :op1 \"F22\""]
["aircraft-type", "\"Lockheed_P-3_Orion\"", " :op1 \"P-3\" :op2 \"C\""]
["aircraft-type", "\"Mikoyan-Gurevich_MiG-21\"", " :op1 \"MiG-21\""]
["aircraft-type", "\"Mikoyan\"", " :op1 \"MiG\""]
["aircraft-type", "\"Mikoyan_MiG-27\"", " :op1 \"MiG-27M\""]
["aircraft-type", "\"Mikoyan_MiG-29\"", " :op1 \"MiG-29\""]
["aircraft-type", "\"Saab_JAS_39_Gripen\"", " :op1 \"JAS-39\" :op2 \"Gripen\""]
["aircraft-type", "\"Sukhoi_PAK_FA\"", " :op1 \"T50\""]
["aircraft-type", "\"Sukhoi_Su-27\"", " :op1 \"Su-27\""]
["aircraft-type", "\"Sukhoi_Su-34\"", " :op1 \"Su-32\""]
["aircraft-type", "\"Sukhoi_Su-35\"", " :op1 \"Su-35\""]
["aircraft-type", "\"Sukhoi_Su-35\"", " :op1 \"Sukhoi\""]
["aircraft-type", "\"Trident\"", " :op1 \"Trident\""]
["aircraft-type", "\"Tupolev_Tu-160\"", " :op1 \"TU-160\" :op2 \"Bomber\""]
["aircraft-type", "\"Tupolev_Tu-95\"", " :op1 \"TU-95\" :op2 \"MS\" :op3 \"Bomber\""]
["airliner", "\"Airbus_A320_family\"", " :op1 \"A320\""]
["airport", "\"Air_Force_Base_Waterkloof\"", " :op1 \"Waterkloof\" :op2 \"Air\" :op3 \"Force\""]
["airport", "\"Baghdad_International_Airport\"", " :op1 \"Baghdad\" :op2 \"International\" :op3 \"Airport\""]
["airport", "\"Hong_Kong_International_Airport\"", " :op1 \"Hong\" :op2 \"Kong\" :op3 \"International\" :op4 \"Airport\""]
["airport", "\"London_Heathrow_Airport\"", " :op1 \"Heathrow\""]
["airport", "\"Mitiga_International_Airport\"", " :op1 \"Maatiga\""]
["airport", "\"Orly_Airport\"", " :op1 \"Orly\""]
["airport", "\"Paya_Lebar_Air_Base\"", " :op1 \"Paya\" :op2 \"Lebar\" :op3 \"Air\" :op4 \"Base\""]
["airport", "\"Ronald_Reagan_Washington_National_Airport\"", " :op1 \"Reagan\" :op2 \"National\" :op3 \"Airport\""]
["airport", "\"Singapore_Changi_Airport\"", " :op1 \"Changi\" :op2 \"Airport\""]
["airport", "\"Washington_Dulles_International_Airport\"", " :op1 \"Dulles\""]
["airport", "\"Wuhan_Tianhe_International_Airport\"", " :op1 \"Wuhan\" :op2 \"Tianhe\" :op3 \"Airport\""]
["alias", "\"Mario_Monti\"", " :op1 \"Super\" :op2 \"Mario\""]
["amusement-park", "\"Disneyland\"", " :op1 \"Disneyland\""]
["amusement-park", "\"Hong_Kong_Disneyland\"", " :op1 \"Disney\""]
["amusement-park", "\"Hong_Kong_Disneyland\"", " :op1 \"Disneyland\""]
["amusement-park", "\"Hong_Kong_Disneyland\"", " :op1 \"Hong\" :op2 \"Kong\" :op3 \"Disneyland\""]
["amusement-park", "\"Ocean_Park_Hong_Kong\"", " :op1 \"Ocean\" :op2 \"Park\""]
["animal", "\"Mickey_Mouse\"", " :op1 \"Mickey\""]
["area", "\"Gavi\u00e3o_Peixoto\"", " :op1 \"Gaviao\" :op2 \"Peixoto\""]
["area", "\"Tikapur\"", " :op1 \"Tikapur\""]
["athlete", "-", " :op1 \"Bao\" :op2 \"Lizuo\""]
["attorney", "-", " :op1 \"Yonghua\" :op2 \"Kang\""]
["award", "-", " :op1 \"Air\" :op2 \"Medal\" :op3 \"for\" :op4 \"Heroism\""]
["award", "\"Academy_Award_for_Best_Picture\"", " :op1 \"Best\" :op2 \"Film\""]
["award", "\"Academy_Awards\"", " :op1 \"Oscar\""]
["award", "\"Academy_Awards\"", " :op1 \"The\" :op2 \"Oscars\""]
["award", "\"Grammy_Award\"", " :op1 \"Grammy's\""]
["award", "\"Nobel_Peace_Prize\"", " :op1 \"Nobel\" :op2 \"Peace\" :op3 \"Prize\""]
["award", "\"Nobel_Prize\"", " :op1 \"Nobel\""]
["ballroom", "-", " :op1 \"Indiana\" :op2 \"Roof\""]
["band", "\"Take_That\"", " :op1 \"Take\" :op2 \"That\""]
["band", "\"The_Carpenters\"", " :op1 \"The\" :op2 \"Carpenters\""]
["bank", "\"SEB_Pank\"", " :op1 \"Seb\" :op2 \"Eesti\" :op3 \"Uhispank\""]
["bank", "\"Skandinaviska_Enskilda_Banken\"", " :op1 \"Seb\" :op2 \"Bank\""]
["bank", "\"UBS\"", " :op1 \"UBS\""]
["base", "-", " :op1 \"Chiupeng\""]
["base", "-", " :op1 \"GreenKel\" :op2 \"Coolant\" :op3 \"China\" :op4 \"Limited\" :op5 \"Company\""]
["base", "\"Guantanamo_Bay_Naval_Base\"", " :op1 \"Guantanamo\""]
["battery", "-", " :op1 \"Patriot\" :op2 \"PAC\" :op3 \"III\""]
["battery", "\"S-300_(missile)\"", " :op1 \"S-300\""]
["battle-01", "\"Teutoburg_Forest\"", " :op1 \"Teutoburg\" :op2 \"Forest\""]
["bay", "\"Guant\u00e1namo_Bay\"", " :op1 \"Guantanamo\" :op2 \"Bay\""]
["bay", "\"Repulse_Bay\"", " :op1 \"Repulse\" :op2 \"Bay\""]
["benchmark", "\"BSE_SENSEX\"", " :op1 \"Bombay\" :op2 \"Stock\" :op3 \"Exchange\" :op4 \"Sensitive\" :op5 \"Index\""]
["bill", "\"United_States_Bill_of_Rights\"", " :op1 \"Bill\" :op2 \"of\" :op3 \"Rights\""]
["bloc", "\"Muslim_Brotherhood\"", " :op1 \"Brotherhood\""]
["blog", "-", " :op1 \"Specialist\" :op2 \"Professor\""]
["blog", "\"Sina_Weibo\"", " :op1 \"Sina\""]
["body", "\"FIFA\"", " :op1 \"FIFA\""]
["bomb", "\"Blue_Danube_(nuclear_weapon)\"", " :op1 \"Blue\" :op2 \"Danube\""]
["book", "-", " :op1 \"Surrealism\" :op2 \"and\" :op3 \"the\" :op4 \"Cinema\""]
["book", "-", " :op1 \"The\" :op2 \"Economy\" :op3 \"of\" :op4 \"Cities\""]
["book", "-", " :op1 \"The\" :op2 \"Foundation\" :op3 \"of\" :op4 \"Mathematics\" :op5 \"and\" :op6 \"Physics\" :op7 \"in\" :op8 \"Numerical\" :op9 \"Weather\" :op10 \"Forecast\""]
["book", "-", " :op1 \"The\" :op2 \"Great\" :op3 \"Olympic\" :op4 \"Swindle\""]
["book", "-", " :op1 \"The\" :op2 \"Plan\" :op3 \":\" :op4 \"Big\" :op5 \"Ideas\" :op6 \"For\" :op7 \"America\""]
["book", "-", " :op1 \"Yaa\" :op2 \"BAA\""]
["book", "\"Bible\"", " :op1 \"Bible\""]
["book", "\"Book_of_Genesis\"", " :op1 \"Genesis\""]
["book", "\"Harry_Potter\"", " :op1 \"HP\""]
["book", "\"Harry_Potter\"", " :op1 \"Harry\" :op2 \"Potter\""]
["book", "\"Last_Child_in_the_Woods\"", " :op1 \"Last\" :op2 \"Child\" :op3 \"in\" :op4 \"the\" :op5 \"Woods\""]
["book", "\"Northern_Lights_(novel)\"", " :op1 \"Northern\" :op2 \"Lights\""]
["book", "\"Quran\"", " :op1 \"Koran\""]
["book", "\"Quran\"", " :op1 \"Quran\""]
["book", "\"Quran\"", " :op1 \"The\" :op2 \"Koran\""]
["book", "\"Rules_for_Radicals\"", " :op1 \"Rules\" :op2 \"for\" :op3 \"Radicals\""]
["book", "\"The_Communist_Manifesto\"", " :op1 \"Communist\" :op2 \"Manifesto\""]
["book", "\"The_Death_and_Life_of_Great_American_Cities\"", " :op1 \"Life\" :op2 \"and\" :op3 \"Death\""]
["book", "\"The_End_of_History_and_the_Last_Man\"", " :op1 \"End\" :op2 \"of\" :op3 \"History\""]
["book", "\"The_Godfather_(novel)\"", " :op1 \"The\" :op2 \"Godfather\""]
["book", "\"The_Subtle_Knife\"", " :op1 \"The\" :op2 \"Subtle\" :op3 \"Knife\""]
["book", "\"The_Tin_Drum\"", " :op1 \"The\" :op2 \"Tin\" :op3 \"Drum\""]
["book", "\"Twilight_(series)\"", " :op1 \"Twighlight\""]
["boy", "-", " :op1 \"Anvar\""]
["brand", "-", " :op1 \"Hollandia\""]
["brand", "\"L'Or\u00e9al\"", " :op1 \"Loreal\""]
["brand", "\"Nivea\"", " :op1 \"Nivea\""]
["bridge", "\"Golden_Gate_Bridge\"", " :op1 \"Golden\" :op2 \"Gate\" :op3 \"Bridge\""]
["bridge", "\"Hong_Kong\u2013Zhuhai\u2013Macau_Bridge\"", " :op1 \"Zhuhai\" :op2 \"Hong-Kong\" :op3 \"Macao\" :op4 \"Bridge\""]
["bridge", "\"Old_North_Bridge\"", " :op1 \"Concord\" :op2 \"Bridge\""]
["broadcast-program", "-", " :op1 \"Cross\" :op2 \"Strait\""]
["broadcast-program", "-", " :op1 \"Five\" :op2 \"Questions\""]
["broadcast-program", "-", " :op1 \"Hong\" :op2 \"Kong:\" :op3 \"A\" :op4 \"Shopping\" :op5 \"Paradise\""]
["broadcast-program", "-", " :op1 \"Hot\" :op2 \"Topic\" :op3 \"Analysis\""]
["broadcast-program", "-", " :op1 \"New\" :op2 \"World\" :op3 \"Travel\""]
["broadcast-program", "-", " :op1 \"News\" :op2 \"Night\" :op3 \"Banquet\""]
["broadcast-program", "-", " :op1 \"Top\" :op2 \"Twenty\""]
["broadcast-program", "\"AcrossChina\"", " :op1 \"Across\" :op2 \"China\""]
["broadcast-program", "\"Anderson_Cooper_360\u00b0\"", " :op1 \"Anderson\" :op2 360"]
["broadcast-program", "\"Big_Brother_(TV_series)\"", " :op1 \"Big\" :op2 \"Brother\""]
["broadcast-program", "\"Bill_O'Reilly_(political_commentator)\"", " :op1 \"O'Riley\""]
["broadcast-program", "\"Commander_in_Chief_(TV_series)\"", " :op1 \"Commander\" :op2 \"in\" :op3 \"Chief\""]
["broadcast-program", "\"Fox_News_Channel\"", " :op1 \"Fox\" :op2 \"News\""]
["broadcast-program", "\"Glenn_Beck\"", " :op1 \"Beck\""]
["broadcast-program", "\"GloboNews\"", " :op1 \"TV\" :op2 \"Globo\" :op3 \"News\""]
["broadcast-program", "\"Home_Improvement_(TV_series)\"", " :op1 \"Home\" :op2 \"Improvement\""]
["broadcast-program", "\"Jay_Leno\"", " :op1 \"Leno\""]
["broadcast-program", "\"Keith_Olbermann\"", " :op1 \"Olberman\""]
["broadcast-program", "\"Miami_Animal_Police\"", " :op1 \"Florida\" :op2 \"Animal\" :op3 \"Cops\""]
["broadcast-program", "\"Question_time\"", " :op1 \"QT\""]
["broadcast-program", "\"Question_time\"", " :op1 \"Question\" :op2 \"Time\""]
["broadcast-program", "\"Saturday_Night_Live\"", " :op1 \"SNL\""]
["broadcast-program", "\"Saturday_Night_Live\"", " :op1 \"Saturday\" :op2 \"Night\" :op3 \"Live\""]
["broadcast-program", "\"Scrubs_(TV_series)\"", " :op1 \"Scrubs\""]
["broadcast-program", "\"Sex_and_the_City_(film)\"", " :op1 \"Sex\" :op2 \"and\" :op3 \"the\" :op4 \"City\""]
["broadcast-program", "\"Sex_and_the_City_2\"", " :op1 \"Sex\" :op2 \"and\" :op3 \"the\" :op4 \"City\" :op5 \"2\""]
["broadcast-program", "\"Sky_News\"", " :op1 \"SKY\" :op2 \"news\""]
["broadcast-program", "\"The_Andy_Griffith_Show\"", " :op1 \"Andy\" :op2 \"Griffith\" :op3 \"Show\""]
["broadcast-program", "\"The_Colbert_Report\"", " :op1 \"The\" :op2 \"Colbert\" :op3 \"Report\""]
["broadcast-program", "\"The_Daily_Show\"", " :op1 \"Daily\" :op2 \"Show\""]
["broadcast-program", "\"The_Daily_Show\"", " :op1 \"The\" :op2 \"Daily\" :op3 \"Show\""]
["broadcast-program", "\"The_Golden_Compass_(film)\"", " :op1 \"The\" :op2 \"Golden\" :op3 \"Compass\""]
["broadcast-program", "\"The_Lord_of_the_Rings\"", " :op1 \"Lord\" :op2 \"of\" :op3 \"the\" :op4 \"Rings\""]
["broadcast-program", "\"The_Mickey_Mouse_Club\"", " :op1 \"Mickey\" :op2 \"Mouse\" :op3 \"Club\""]
["broadcast-program", "\"The_X_Factor_(UK_TV_series)\"", " :op1 \"X-Factor\""]
["broadcast-program", "\"Xinwen_Lianbo\"", " :op1 \"Xinwen\" :op2 \"Lianbo\""]
["building", "-", " :op1 \"Pengxinlidu\" :op2 \"Building\" :op3 \"No.\" :op4 14"]
["building", "-", " :op1 \"Shenzhen's\" :op2 \"Great\" :op3 \"Theater\""]
["building", "\"Alfred_P._Murrah_Federal_Building\"", " :op1 \"Oklahoma\" :op2 \"City\" :op3 \"Federal\" :op4 \"Building\""]
["building", "\"Burj_Khalifa\"", " :op1 \"Burj\" :op2 \"Dubai\" :op3 \"Tower\""]
["building", "\"Great_Hall_of_the_People\"", " :op1 \"Great\" :op2 \"People's\" :op3 \"Hall\""]
["building", "\"Palace_of_Westminster\"", " :op1 \"Houses\" :op2 \"of\" :op3 \"Parliament\""]
["building", "\"Yongbyon_Nuclear_Scientific_Research_Center\"", " :op1 \"Yongbyon\""]
["businessman", "-", " :op1 \"Abdel-Rahman\" :op2 \"Saudi\""]
["businessman", "-", " :op1 \"Abdul-Aziz\" :op2 \"Al-Khereiji\""]
["businessman", "-", " :op1 \"Ahmed\" :op2 \"Omar\""]
["businessman", "-", " :op1 \"Zhen\" :op2 \"Wang\""]
["businessman", "\"Youssef_Nada\"", " :op1 \"Youssef\" :op2 \"M.\" :op3 \"Nada\""]
["camp", "\"Nahr_al-Bared\"", " :op1 \"Nahr\" :op2 \"al-Bared\""]
["campaign", "-", " :op1 \"Discover\" :op2 \"Hong\" :op3 \"Kong\" :op4 \"Year\""]
["canvas", "-", " :op1 \"A\" :op2 \"Happy\" :op3 \"Night\""]
["canyon", "\"Grand_Canyon\"", " :op1 \"Grand\" :op2 \"Canyon\""]
["car", "\"Ngong_Ping_360\"", " :op1 \"Ngong\" :op2 \"Ping\" :op3 360"]
["car-make", "\"Audi\"", " :op1 \"Audi\""]
["car-make", "\"BMW\"", " :op1 \"BMW\""]
["car-make", "\"Buick\"", " :op1 \"Buick\""]
["car-make", "\"Chang'an_Automobile_Group\"", " :op1 \"Chang'an\" :op2 \"Auto\""]
["car-make", "\"Fiat_S.p.A.\"", " :op1 \"Fiat\""]
["car-make", "\"Ford_Motor_Company\"", " :op1 \"Ford\""]
["car-make", "\"Honda\"", " :op1 \"Honda\""]
["car-make", "\"Jeep\"", " :op1 \"Jeep\""]
["car-make", "\"Land_Rover\"", " :op1 \"Land\" :op2 \"Rover\""]
["car-make", "\"Mercedes-Benz\"", " :op1 \"Mercedes\""]
["car-make", "\"Peugeot\"", " :op1 \"Peugeot\""]
["car-make", "\"Renault\"", " :op1 \"Renault\""]
["car-make", "\"Volkswagen\"", " :op1 \"Volkswagen\""]
["car-make", "\"Volkswagen_Santana\"", " :op1 \"Santana\""]
["card", "-", " :op1 \"Great\" :op2 \"Wall\""]
["cartel", "\"Sinaloa_Cartel\"", " :op1 \"Sinaloa\""]
["case", "-", " :op1 \"touch\" :op2 \"porcelain\""]
["castle", "\"Sch\u00f6nbrunn_Palace\"", " :op1 \"Schonbrunn\""]
["category", "\"Academy_Award_for_Best_Picture\"", " :op1 \"Best\" :op2 \"Film\""]
["cell-line", "-", " :op1 \"CHO-K1\""]
["center", "\"Bhabha_Atomic_Research_Centre\"", " :op1 \"Bhabha\" :op2 \"Atomic\""]
["center", "\"Titov_Main_Test_and_Space_Systems_Control_Centre\"", " :op1 \"Titov\""]
["center", "\"Xichang\"", " :op1 \"Xichang\""]
["channel", "\"ABS-CBN_Corporation\"", " :op1 \"ABS-CBN\""]
["channel", "\"ABS-CBN_News_and_Current_Affairs\"", " :op1 \"ABS-CBN\" :op2 \"News\""]
["channel", "\"Al-Aqsa_TV\"", " :op1 \"Al-Aqsa\""]
["channel", "\"Al-Zawraa_TV\"", " :op1 \"Al\" :op2 \"Zawraa\" :op3 \"TV\""]
["channel", "\"Al_Jazeera\"", " :op1 \"Al-Jazeera\""]
["channel", "\"American_Broadcasting_Company\"", " :op1 \"ABC\""]
["channel", "\"CCTV_Channels\"", " :op1 \"CCTV\" :op2 \"International\" :op3 \"Channel\""]
["channel", "\"Fox_Broadcasting_Company\"", " :op1 \"Fox\""]
["channel", "\"NBC\"", " :op1 \"NBC\""]
["child", "\"Michael_Jackson\"", " :op1 \"Michael\" :op2 \"Jackson\""]
["cigarette", "\"Craven_A\"", " :op1 \"Craven\" :op2 \"A\""]
["cigarette", "\"Kent_(cigarette)\"", " :op1 \"Kent\""]
["city", "-", " :op1 \"Habolonei\""]
["city", "-", " :op1 \"Minakh\""]
["city", "-", " :op1 \"Obolensk\""]
["city", "-", " :op1 \"Okubahal\""]
["city", "-", " :op1 \"Onishchenko\""]
["city", "-", " :op1 \"Pgh\""]
["city", "-", " :op1 \"Shantou\""]
["city", "-", " :op1 \"Square\" :op2 \"Mile\""]
["city", "-", " :op1 \"West\" :op2 \"Groton\""]
["city", "-", " :op1 \"Yangcheng\" :op2 \"Township\""]
["city", "-", " :op1 \"Yelinia\""]
["city", "-", " :op1 \"ZG\""]
["city", "\"Abidjan\"", " :op1 \"Abidjan\""]
["city", "\"Abu_Dhabi\"", " :op1 \"Abu\" :op2 \"Dhabi\""]
["city", "\"Abu_Ghraib\"", " :op1 \"Abu\" :op2 \"Ghraib\""]
["city", "\"Abuja\"", " :op1 \"Abuja\""]
["city", "\"Adrar,_Algeria\"", " :op1 \"Adrar\""]
["city", "\"Ajdabiya\"", " :op1 \"Ajdabiya\""]
["city", "\"Algiers\"", " :op1 \"Algiers\""]
["city", "\"Almaty\"", " :op1 \"Almaty\""]
["city", "\"Amman\"", " :op1 \"Amman\""]
["city", "\"Apia\"", " :op1 \"Apia\""]
["city", "\"Arak,_Iran\"", " :op1 \"Arak\""]
["city", "\"Arkhangelsk\"", " :op1 \"Arkhangelsk\""]
["city", "\"Arlington_County,_Virginia\"", " :op1 \"Arlington\""]
["city", "\"Arusha\"", " :op1 \"Arusha\""]
["city", "\"Astrakhan\"", " :op1 \"Astrakhan\""]
["city", "\"Athens\"", " :op1 \"Athens\""]
["city", "\"Atlanta\"", " :op1 \"Atlanta\""]
["city", "\"Auckland\"", " :op1 \"Auckland\""]
["city", "\"Austin,_Texas\"", " :op1 \"Austin\""]
["city", "\"Auvers-sur-Oise\"", " :op1 \"Auvers-sur-Oise\""]
["city", "\"Baghdad\"", " :op1 \"Baghdad\""]
["city", "\"Baltimore\"", " :op1 \"Baltimore\""]
["city", "\"Bandar_Abbas\"", " :op1 \"Bandar\" :op2 \"Abbas\""]
["city", "\"Bangalore\"", " :op1 \"Bangalore\""]
["city", "\"Bangkok\"", " :op1 \"Bangkok\""]
["city", "\"Baqubah\"", " :op1 \"Baqouba\""]
["city", "\"Beichuan_Qiang_Autonomous_County\"", " :op1 \"Beichuan\""]
["city", "\"Beijing\"", " :op1 \"Beijing\""]
["city", "\"Beirut\"", " :op1 \"Beirut\""]
["city", "\"Benghazi\"", " :op1 \"Benghazi\""]
["city", "\"Berkeley,_California\"", " :op1 \"Berkeley\""]
["city", "\"Berlin\"", " :op1 \"Berlin\""]
["city", "\"Bern\"", " :op1 \"Bern\""]
["city", "\"Bethesda,_Maryland\"", " :op1 \"Bethesda\""]
["city", "\"Bethlehem\"", " :op1 \"Bethlehem\""]
["city", "\"Birmingham,_Alabama\"", " :op1 \"Birmingham\""]
["city", "\"Birmingham\"", " :op1 \"Birmingham\""]
["city", "\"Birmingham\"", " :op1 \"Brum\""]
["city", "\"Bishkek\"", " :op1 \"Bishkek\""]
["city", "\"Bishkek\"", " :op1 \"Bishket\""]
["city", "\"Bishkek\"", " :op1 \"Biskech\""]
["city", "\"Boca_Raton,_Florida\"", " :op1 \"Boca\" :op2 \"Raton\""]
["city", "\"Boca_Raton,_Florida\"", " :op1 \"Boca\""]
["city", "\"Bocholt,_Germany\"", " :op1 \"Bocholt\""]
["city", "\"Bogot\u00e1\"", " :op1 \"Bogota\""]
["city", "\"Bojnord\"", " :op1 \"Bojnourd\""]
["city", "\"Bonn\"", " :op1 \"Bonn\""]
["city", "\"Boston\"", " :op1 \"Boston\""]
["city", "\"Bras\u00edlia\"", " :op1 \"Brasilia\""]
["city", "\"Brisbane\"", " :op1 \"Brisbane\""]
["city", "\"Brussels\"", " :op1 \"Brussels\""]
["city", "\"Buffalo,_New_York\"", " :op1 \"Buffalo\""]
["city", "\"Busan\"", " :op1 \"Busan\""]
["city", "\"Busan\"", " :op1 \"Fushan\""]
["city", "\"Bushehr\"", " :op1 \"Bushehr\""]
["city", "\"Cairo\"", " :op1 \"Cairo\""]
["city", "\"Calanda,_Spain\"", " :op1 \"Calanda\""]
["city", "\"Canberra\"", " :op1 \"Canberra\""]
["city", "\"Cannes\"", " :op1 \"Cannes\""]
["city", "\"Cape_Town\"", " :op1 \"Cape\" :op2 \"Town\""]
["city", "\"Cape_Town\"", " :op1 \"Capetown\""]
["city", "\"Carthage\"", " :op1 \"Carthage\""]
["city", "\"Changchun\"", " :op1 \"Changchun\""]
["city", "\"Changsha\"", " :op1 \"Changsha\""]
["city", "\"Chashma,_Pakistan\"", " :op1 \"Chashma\""]
["city", "\"Chengdu\"", " :op1 \"Chengdu\""]
["city", "\"Chennai\"", " :op1 \"Chennai\""]
["city", "\"Chiang_Mai\"", " :op1 \"Chiang\" :op2 \"Mai\""]
["city", "\"Chongqing\"", " :op1 \"Chongqing\""]
["city", "\"Christchurch\"", " :op1 \"Christchurch\""]
["city", "\"City_of_London\"", " :op1 \"City\""]
["city", "\"Corleone\"", " :op1 \"Corleone\""]
["city", "\"Crystal_City,_Arlington,_Virginia\"", " :op1 \"Crystal\" :op2 \"City\""]
["city", "\"Da_Lat\"", " :op1 \"Dalat\""]
["city", "\"Damascus\"", " :op1 \"Damascus\""]
["city", "\"Dandong\"", " :op1 \"Dandong\" :op2 \"City\""]
["city", "\"Dayton,_Ohio\"", " :op1 \"Dayton\""]
["city", "\"Denver\"", " :op1 \"Denver\""]
["city", "\"Detroit\"", " :op1 \"Detroit\""]
["city", "\"Doha\"", " :op1 \"Doha\""]
["city", "\"Dongguan\"", " :op1 \"Dongguan\""]
["city", "\"Dubai\"", " :op1 \"Dubai\""]
["city", "\"Dublin\"", " :op1 \"Dublin\""]
["city", "\"Durban\"", " :op1 \"Durban\""]
["city", "\"Dushanbe\"", " :op1 \"Dushanbe\""]
["city", "\"East_London\"", " :op1 \"East\" :op2 \"London\""]
["city", "\"Edinburgh\"", " :op1 \"Edinburgh\""]
["city", "\"Fairfax,_Virginia\"", " :op1 \"Fairfax\""]
["city", "\"Fallujah\"", " :op1 \"Fallujah\""]
["city", "\"Fortaleza\"", " :op1 \"Fortaleza\""]
["city", "\"Frankfurt\"", " :op1 \"Frankfurt\""]
["city", "\"Fresno,_California\"", " :op1 \"Fresno\""]
["city", "\"Fukuoka\"", " :op1 \"Fukuoka\""]
["city", "\"Gannan_Tibetan_Autonomous_Prefecture\"", " :op1 \"Gannan\""]
["city", "\"Ganzhou\"", " :op1 \"Ganzhou\" :op2 \"City\""]
["city", "\"Ganzhou\"", " :op1 \"Ganzhou\""]
["city", "\"Gavi\u00e3o_Peixoto\"", " :op1 \"Gaviao\" :op2 \"Peixoto\""]
["city", "\"Geneva\"", " :op1 \"Geneva\""]
["city", "\"Genoa\"", " :op1 \"Genoa\""]
["city", "\"Glasgow\"", " :op1 \"Glasgow\""]
["city", "\"Gora\u017ede\"", " :op1 \"Gorazde\""]
["city", "\"Gori,_Georgia\"", " :op1 \"Gori\""]
["city", "\"Government_of_China\"", " :op1 \"Beijing\""]
["city", "\"Government_of_North_Korea\"", " :op1 \"Pyongyang\""]
["city", "\"Government_of_South_Korea\"", " :op1 \"Seoul\""]
["city", "\"Guangzhou\"", " :op1 \"Guangzhou\""]
["city", "\"Haditha\"", " :op1 \"Haditha\""]
["city", "\"Haiphong\"", " :op1 \"Haiphong\""]
["city", "\"Hamoukar\"", " :op1 \"Tell\" :op2 \"Hamoukar\""]
["city", "\"Hanau\"", " :op1 \"Hanau\""]
["city", "\"Hanoi\"", " :op1 \"Hanoi\""]
["city", "\"Harardhere\"", " :op1 \"Xarardheere\""]
["city", "\"Harbin\"", " :op1 \"Harbin\""]
["city", "\"Helsinki\"", " :op1 \"Helsinki\""]
["city", "\"Hengyang\"", " :op1 \"Hengyang\""]
["city", "\"Hiroshima\"", " :op1 \"Hiroshima\""]
["city", "\"Ho_Chi_Minh_City\"", " :op1 \"Ho\" :op2 \"Chi\" :op3 \"Minh\" :op4 \"City\""]
["city", "\"Ho_Chi_Minh_City\"", " :op1 \"Ho\" :op2 \"Chi\" :op3 \"Minh\""]
["city", "\"Hong_Kong\"", " :op1 \"Hong\" :op2 \"Kong\""]
["city", "\"Hot_Springs,_Arkansas\"", " :op1 \"Hot\" :op2 \"Springs\""]
["city", "\"Houston\"", " :op1 \"Houston\""]
["city", "\"Humen_(town)\"", " :op1 \"Humen\""]
["city", "\"Hyderabad\"", " :op1 \"Hyderabad\""]
["city", "\"Indianapolis\"", " :op1 \"Indianapolis\""]
["city", "\"Innsbruck\"", " :op1 \"Innsbruck\""]
["city", "\"Isfahan\"", " :op1 \"Isfahan\""]
["city", "\"Islamabad\"", " :op1 \"Islamabad\""]
["city", "\"Islamic_Consultative_Assembly\"", " :op1 \"Tehran\""]
["city", "\"Istanbul\"", " :op1 \"Istanbul\""]
["city", "\"Jakarta\"", " :op1 \"Jakarta\""]
["city", "\"Jammu\"", " :op1 \"Jammu\""]
["city", "\"Jeddah\"", " :op1 \"Jiddah\""]
["city", "\"Jerusalem\"", " :op1 \"Jerusalem\""]
["city", "\"Johannesburg\"", " :op1 \"Johannesburg\""]
["city", "\"Jonesport,_Maine\"", " :op1 \"Jonesport\""]
["city", "\"Kabul\"", " :op1 \"Kabul\""]
["city", "\"Kamp-Lintfort\"", " :op1 \"Kamp-Lintfort\""]
["city", "\"Kandla\"", " :op1 \"Kandla\""]
["city", "\"Karachi\"", " :op1 \"Karachi\""]
["city", "\"Kashan\"", " :op1 \"Kashan\""]
["city", "\"Kathmandu\"", " :op1 \"Kathmandu\""]
["city", "\"Khabarovsk\"", " :op1 \"Khabarovsk\""]
["city", "\"Khorramabad\"", " :op1 \"Khoramabad\""]
["city", "\"Khorramabad\"", " :op1 \"Khoramabadon\""]
["city", "\"Khulna\"", " :op1 \"Khulna\""]
["city", "\"Kiev\"", " :op1 \"Kiev\""]
["city", "\"Koronadal\"", " :op1 \"Koronadal\""]
["city", "\"Kourou\"", " :op1 \"Kourou\""]
["city", "\"Kowloon\"", " :op1 \"Kowloon\""]
["city", "\"Krasnoznamensk,_Moscow_Oblast\"", " :op1 \"Krasnoznamernsk\""]
["city", "\"Kuala_Lumpur\"", " :op1 \"Kuala\" :op2 \"Lumpur\""]
["city", "\"Kunming\"", " :op1 \"Kunming\""]
["city", "\"Kyoto\"", " :op1 \"Kyoto\""]
["city", "\"Lahore\"", " :op1 \"Lahore\""]
["city", "\"Las_Vegas\"", " :op1 \"Vegas\""]
["city", "\"Lashio\"", " :op1 \"Lashio\""]
["city", "\"Lashkar_Gah\"", " :op1 \"Lashkar\" :op2 \"Gah\""]
["city", "\"Laukkai\"", " :op1 \"Lauk\" :op2 \"Kai\""]
["city", "\"Lima\"", " :op1 \"Lima\""]
["city", "\"Liverpool\"", " :op1 \"Liverpool\""]
["city", "\"Lockerbie\"", " :op1 \"Lockerbie\""]
["city", "\"London\"", " :op1 \"London\""]
["city", "\"Longnan\"", " :op1 \"Longnan\""]
["city", "\"Los_Angeles\"", " :op1 \"Los\" :op2 \"Angeles\""]
["city", "\"Luang_Prabang\"", " :op1 \"Luang\" :op2 \"Prabang\""]
["city", "\"Luton\"", " :op1 \"Luton\""]
["city", "\"Lyon\"", " :op1 \"Lyon\""]
["city", "\"Macau\"", " :op1 \"Macao\""]
["city", "\"Madrid\"", " :op1 \"Madrid\""]
["city", "\"Manchester\"", " :op1 \"Manchester\""]
["city", "\"Manila\"", " :op1 \"Manila\""]
["city", "\"Marseille\"", " :op1 \"Marseille\""]
["city", "\"Mashhad\"", " :op1 \"Mashbad\""]
["city", "\"Mashhad\"", " :op1 \"Mashhad\""]
["city", "\"Matn_District\"", " :op1 \"al-Matn\""]
["city", "\"Mecca\"", " :op1 \"Mecca\""]
["city", "\"Medina\"", " :op1 \"Medina\""]
["city", "\"Melbourne\"", " :op1 \"Melbourne\""]
["city", "\"Mexico_City\"", " :op1 \"Mexico\" :op2 \"City\""]
["city", "\"Milwaukee\"", " :op1 \"Milwaukee\""]
["city", "\"Misrata\"", " :op1 \"Misrata\""]
["city", "\"Mogadishu\"", " :op1 \"Mogadishu\""]
["city", "\"Montreal\"", " :op1 \"Montreal\""]
["city", "\"Moscow\"", " :op1 \"Moscow\""]
["city", "\"Mosul\"", " :op1 \"Mosul\""]
["city", "\"Mulhouse\"", " :op1 \"Mulhouse\""]
["city", "\"Mumbai\"", " :op1 \"Bombay\""]
["city", "\"Mumbai\"", " :op1 \"Mumbai\""]
["city", "\"Munich\"", " :op1 \"Munich\""]
["city", "\"Muzaffarabad\"", " :op1 \"Mazzafarabad\""]
["city", "\"Muzaffarabad\"", " :op1 \"Muzaffarabad\""]
["city", "\"Najaf\"", " :op1 \"Najaf\""]
["city", "\"Nanjing\"", " :op1 \"Nanjing\""]
["city", "\"Nanjing\"", " :op1 \"Nanking\""]
["city", "\"Natanz\"", " :op1 \"Natanz\""]
["city", "\"Nepalgunj\"", " :op1 \"Nepalgunj\""]
["city", "\"New_Delhi\"", " :op1 \"New\" :op2 \"Delhi\""]
["city", "\"New_Orleans\"", " :op1 \"New\" :op2 \"Orleans\""]
["city", "\"New_Westminster\"", " :op1 \"New\" :op2 \"Westminster\""]
["city", "\"New_York_City\"", " :op1 \"New\" :op2 \"York\""]
["city", "\"Newcastle_upon_Tyne\"", " :op1 \"Newcastle\""]
["city", "\"Nice\"", " :op1 \"Nice\""]
["city", "\"Ningxia\"", " :op1 \"Ningxia\""]
["city", "\"Nottingham\"", " :op1 \"Nottingham\""]
["city", "\"Nouakchott\"", " :op1 \"Nouakchott\""]
["city", "\"Novosibirsk\"", " :op1 \"Novosibirsk\""]
["city", "\"Orlando,_Florida\"", " :op1 \"Orlando\""]
["city", "\"Osaka\"", " :op1 \"Osaka\""]
["city", "\"Palermo\"", " :op1 \"Palermo\""]
["city", "\"Paris\"", " :op1 \"Paris\""]
["city", "\"Peshawar\"", " :op1 \"Peshawar\""]
["city", "\"Philadelphia\"", " :op1 \"Philadelphia\""]
["city", "\"Phnom_Penh\"", " :op1 \"Phnom\" :op2 \"Penh\""]
["city", "\"Phoenix,_Arizona\"", " :op1 \"Phoenix\""]
["city", "\"Pisa\"", " :op1 \"Pisa\""]
["city", "\"Pittsburgh\"", " :op1 \"Pittsburgh\""]
["city", "\"Ponchatoula,_Louisiana\"", " :op1 \"Ponchatoula\""]
["city", "\"Poza_Rica\"", " :op1 \"Poza\" :op2 \"Rica\""]
["city", "\"Pretoria\"", " :op1 \"Pretoria\""]
["city", "\"Putian\"", " :op1 \"Putian\""]
["city", "\"Pyongyang\"", " :op1 \"Pyongyang\""]
["city", "\"Qingchuan_County\"", " :op1 \"Qingchuan\""]
["city", "\"Qom\"", " :op1 \"Qom\""]
["city", "\"Quetta\"", " :op1 \"Quetta\""]
["city", "\"Rabat\"", " :op1 \"Rabat\""]
["city", "\"Ranchi\"", " :op1 \"Ranchi\""]
["city", "\"Reading,_Pennsylvania\"", " :op1 \"Reading\""]
["city", "\"Redmond,_Washington\"", " :op1 \"Redmond\""]
["city", "\"Richmond,_Virginia\"", " :op1 \"Richmond\""]
["city", "\"Riga\"", " :op1 \"Riga\""]
["city", "\"Rio_de_Janeiro\"", " :op1 \"Rio\" :op2 \"de\" :op3 \"Janeiro\""]
["city", "\"Riyadh\"", " :op1 \"Riyadh\""]
["city", "\"Rome\"", " :op1 \"Rome\""]
["city", "\"S\u00e3o_Paulo\"", " :op1 \"Sao\" :op2 \"Paolo\""]
["city", "\"S\u00e3o_Paulo\"", " :op1 \"Sao\" :op2 \"Paulo\""]
["city", "\"Sabha,_Libya\"", " :op1 \"Sebha\""]
["city", "\"Saint_Petersburg\"", " :op1 \"Saint\" :op2 \"Petersburg\""]
["city", "\"San_Diego\"", " :op1 \"San\" :op2 \"Diego\""]
["city", "\"San_Francisco\"", " :op1 \"San\" :op2 \"Francisco\""]
["city", "\"Sana'a\"", " :op1 \"Sanaa\""]
["city", "\"Sangin\"", " :op1 \"Sangin\""]
["city", "\"Sanya\"", " :op1 \"Sanya\""]
["city", "\"Seoul\"", " :op1 \"Seoul\""]
["city", "\"Shanghai\"", " :op1 \"Shanghai\""]
["city", "\"Shenyang\"", " :op1 \"Shenyang\""]
["city", "\"Shenzhen\"", " :op1 \"Shenzhen\""]
["city", "\"Shiraz\"", " :op1 \"Shiraz\""]
["city", "\"Siem_Reap\"", " :op1 \"Siem\" :op2 \"Reap\""]
["city", "\"Special_administrative_region\"", " :op1 \"Hong\" :op2 \"Kong\" :op3 \"SAR\""]
["city", "\"Spin_Boldak\"", " :op1 \"Spin\" :op2 \"Boldak\""]
["city", "\"Srinagar\"", " :op1 \"Srinagar\""]
["city", "\"Srinagar\"", " :op1 \"Sringar\""]
["city", "\"Stillwater,_Minnesota\"", " :op1 \"Stillwater\""]
["city", "\"Stockholm\"", " :op1 \"Stockholm\""]
["city", "\"Stratford-upon-Avon\"", " :op1 \"Stratford-upon-Avon\""]
["city", "\"Sundhara\"", " :op1 \"Sundhara\""]
["city", "\"Suzhou,_Anhui\"", " :op1 \"Suzhou\""]
["city", "\"Sydney\"", " :op1 \"Sydney\""]
["city", "\"T\u014dkai,_Ibaraki\"", " :op1 \"Tokaimura\""]
["city", "\"Tainan\"", " :op1 \"Tainan\""]
["city", "\"Taipei\"", " :op1 \"Taipei\""]
["city", "\"Taizhou,_Jiangsu\"", " :op1 \"Taizhou\" :op2 \"City\""]
["city", "\"Taizhou,_Zhejiang\"", " :op1 \"Taizhou\" :op2 \"City\""]
["city", "\"Taizhou,_Zhejiang\"", " :op1 \"Taizhou\""]
["city", "\"Tajura\"", " :op1 \"Tajura\""]
["city", "\"Tallinn\"", " :op1 \"Tallinn\""]
["city", "\"Tbilisi\"", " :op1 \"Tbilisi\""]
["city", "\"Tegucigalpa\"", " :op1 \"Tegucigalpa\""]
["city", "\"Tehran\"", " :op1 \"Teheran\""]
["city", "\"Tehran\"", " :op1 \"Tehran\""]
["city", "\"Tel_Aviv\"", " :op1 \"Tel\" :op2 \"Aviv\""]
["city", "\"Tell_Brak\"", " :op1 \"Tell\" :op2 \"Brak\""]
["city", "\"Teykovo\"", " :op1 \"Teikovo\""]
["city", "\"The_Hague\"", " :op1 \"The\" :op2 \"Hague\""]
["city", "\"Tianjin\"", " :op1 \"Tianjin\""]
["city", "\"Tikrit\"", " :op1 \"Tikrit\""]
["city", "\"Tipaza\"", " :op1 \"Tipaza\""]
["city", "\"Tirana\"", " :op1 \"Tirana\""]
["city", "\"Tokyo\"", " :op1 \"Tokyo\""]
["city", "\"Topeka,_Kansas\"", " :op1 \"Topeka\""]
["city", "\"Toronto\"", " :op1 \"Toronto\""]
["city", "\"Toulouse\"", " :op1 \"Toulouse\""]
["city", "\"Tripoli\"", " :op1 \"Tripoli\""]
["city", "\"Troy\"", " :op1 \"Troy\""]
["city", "\"Tskhinvali\"", " :op1 \"Tskhinvali\""]
["city", "\"Ur_Ka\u015bdim\"", " :op1 \"Ur\" :op2 \"of\" :op3 \"the\" :op4 \"Chaldees\""]
["city", "\"Veracruz\"", " :op1 \"Veracruz\""]
["city", "\"Vienna\"", " :op1 \"Vienna\""]
["city", "\"Warsaw\"", " :op1 \"Warsaw\""]
["city", "\"Washington,_D.C.\"", " :op1 \"DC\""]
["city", "\"Washington,_D.C.\"", " :op1 \"Washington\" :op2 \"D.C.\""]
["city", "\"Washington,_D.C.\"", " :op1 \"Washington\" :op2 \"DC\""]
["city", "\"Washington,_D.C.\"", " :op1 \"Washington\""]
["city", "\"Waumandee,_Wisconsin\"", " :op1 \"Waumandee\""]
["city", "\"Wenzhou\"", " :op1 \"Wenzhou\""]
["city", "\"Wickliffe,_Ohio\"", " :op1 \"Wickliffe\""]
["city", "\"Winnipeg\"", " :op1 \"Winnipeg\""]
["city", "\"Wuhan\"", " :op1 \"Wuhan\""]
["city", "\"Wuxi\"", " :op1 \"Wuxi\""]
["city", "\"Xiamen\"", " :op1 \"Xiamen\""]
["city", "\"Xining\"", " :op1 \"Xining\""]
["city", "\"Yakouren\"", " :op1 \"Yakouren\""]
["city", "\"Yangon\"", " :op1 \"Rangoon\""]
["city", "\"Yangon\"", " :op1 \"Yangon\""]
["city", "\"Yangzhou\"", " :op1 \"Yangzhou\""]
["city", "\"Yazd\"", " :op1 \"Yazd\""]
["city", "\"Yekaterinburg\"", " :op1 \"Yekaterinburg\""]
["city", "\"Yichang\"", " :op1 \"Yichang\""]
["city", "\"Yinchuan\"", " :op1 \"Yinchuan\""]
["city", "\"Yizheng\"", " :op1 \"Yizheng\""]
["city", "\"Yongzhou\"", " :op1 \"Yongzhou\""]
["city", "\"Yorktown,_Virginia\"", " :op1 \"Yorktown\""]
["city", "\"Z\u00fcrich\"", " :op1 \"Zurich\""]
["city", "\"Zabol\"", " :op1 \"Zabol\""]
["city", "\"Zahedan\"", " :op1 \"Zahedan\""]
["city", "\"Zaragoza\"", " :op1 \"Zaragoza\""]
["city", "\"Zhangzhou\"", " :op1 \"Zhangzhou\""]
["city", "\"Zhengzhou\"", " :op1 \"Zhengzhou\""]
["city", "\"Zhenjiang\"", " :op1 \"Zhenjiang\""]
["city", "\"Zhongshan\"", " :op1 \"Zhongshan\""]
["city", "\"Zhuhai\"", " :op1 \"Zhuhai\""]
["city", "\"\u00dcr\u00fcmqi\"", " :op1 \"Urumqi\""]
["city-district", "-", " :op1 \"New\" :op2 \"District\""]
["city-district", "-", " :op1 \"Old\" :op2 \"District\""]
["city-district", "-", " :op1 \"Zafaraniyah\""]
["city-district", "\"Brixton\"", " :op1 \"Brixton\""]
["city-district", "\"Changping_District\"", " :op1 \"Changping\""]
["city-district", "\"Chingford\"", " :op1 \"Chingford\""]
["city-district", "\"Dalston\"", " :op1 \"Dalston\""]
["city-district", "\"Daxing_District\"", " :op1 \"Daxing\""]
["city-district", "\"East_London\"", " :op1 \"East\" :op2 \"London\""]
["city-district", "\"Gloucester\"", " :op1 \"Gloucester\""]
["city-district", "\"Greenwich_Village\"", " :op1 \"Greenwich\" :op2 \"Village\""]
["city-district", "\"Hailing_District\"", " :op1 \"Hailing\" :op2 \"District\""]
["city-district", "\"Hollywood\"", " :op1 \"Hollywood\""]
["city-district", "\"Jingkou_District\"", " :op1 \"Jingkou\""]
["city-district", "\"Kowloon\"", " :op1 \"Kowloon\""]
["city-district", "\"London_Borough_of_Enfield\"", " :op1 \"Enfield\""]
["city-district", "\"Manhattan\"", " :op1 \"Manhattan\""]
["city-district", "\"Marrickville,_New_South_Wales\"", " :op1 \"Marrickville\""]
["city-district", "\"Mentougou_District\"", " :op1 \"Mentougou\""]
["city-district", "\"Mong_Kok\"", " :op1 \"Mong\" :op2 \"Kok\""]
["city-district", "\"Mong_Kok\"", " :op1 \"Mongkok\""]
["city-district", "\"North_Long_Beach,_Long_Beach,_California\"", " :op1 \"North\" :op2 \"Long\" :op3 \"Beach\""]
["city-district", "\"Palaiseau\"", " :op1 \"Palaiseau\""]
["city-district", "\"Pudong\"", " :op1 \"Pudong\""]
["city-district", "\"Sa'adat_Abad\"", " :op1 \"Sa'adatabad\""]
["city-district", "\"San_Juan_Bautista_Tuxtepec\"", " :op1 \"Tuxtepec\""]
["city-district", "\"Seibersdorf\"", " :op1 \"Seibersdorf\""]
["city-district", "\"Shuimogou_District\"", " :op1 \"Shuimogou\""]
["city-district", "\"Tianjin_Economic-Technological_Development_Area\"", " :op1 \"Development\" :op2 \"District\""]
["city-district", "\"Tianjin_Economic-Technological_Development_Area\"", " :op1 \"Tianjin\" :op2 \"Development\" :op3 \"District\""]
["city-district", "\"Tongzhou_District,_Beijing\"", " :op1 \"Tongzhou\" :op2 \"District\""]
["city-district", "\"Tottenham\"", " :op1 \"Tottenham\""]
["city-district", "\"Walthamstow\"", " :op1 \"Walthanstow\""]
["city-district", "\"Westminster_system\"", " :op1 \"Westminster\""]
["clan", "\"The_Jackson_5\"", " :op1 \"Jackson\""]
["class", "\"America-class_amphibious_assault_ship\"", " :op1 \"LHA(R)\""]
["class", "\"Borei-class_submarine\"", " :op1 \"Borei\""]
["class", "\"Magar-class_amphibious_warfare_vessel\"", " :op1 \"Magar\""]
["class", "\"USS_Austin_(LPD-4)\"", " :op1 \"LPD\" :op2 4 :op3 \"Austin\""]
["class", "\"USS_Tarawa_(LHA-1)\"", " :op1 \"LHA\" :op2 1"]
["class", "\"USS_Wasp_(LHD-1)\"", " :op1 \"LHD\" :op2 1 :op3 \"Wasp\""]
["class", "\"USS_Whidbey_Island_(LSD-41)\"", " :op1 \"LSD\" :op2 41 :op3 \"Whidbey\" :op4 \"Island\""]
["class", "\"USS_Whidbey_Island_(LSD-41)\"", " :op1 \"LSD\" :op2 41"]
["class", "\"Zumwalt-class_destroyer\"", " :op1 \"DDX\""]
["cleric", "-", " :op1 \"Sadiqui\""]
["club", "-", " :op1 \"Mapaches\""]
["club", "\"Marylebone_Cricket_Club\"", " :op1 \"MCC\""]
["code", "-", " :op1 \"CITIUS33\""]
["comedian", "\"Bill_Maher\"", " :op1 \"Bill\" :op2 \"Maher\""]
["comet", "\"Comet_Shoemaker\u2013Levy_9\"", " :op1 \"Shoemaker-Levy\" :op2 9"]
["committee", "-", " :op1 \"Joint\" :op2 \"Coordination\" :op3 \"and\" :op4 \"Monitoring\" :op5 \"Board\""]
["company", "-", " :op1 \"AA\""]
["company", "-", " :op1 \"ASE\""]
["company", "-", " :op1 \"Bailey\" :op2 \"Controls\""]
["company", "-", " :op1 \"Canadian\" :op2 \"Electricity\" :op3 \"Association\""]
["company", "-", " :op1 \"China\" :op2 \"Book\" :op3 \"Import\" :op4 \"and\" :op5 \"Export\" :op6 \"Corporation\""]
["company", "-", " :op1 \"China\" :op2 \"Electrical\" :op3 \"Import\" :op4 \"and\" :op5 \"Export\" :op6 \"Affiliation\" :op7 \"Company\""]
["company", "-", " :op1 \"China\" :op2 \"Electronics\" :op3 \"Import\" :op4 \"and\" :op5 \"Export\" :op6 \"Corporation\""]
["company", "-", " :op1 \"Craig\" :op2 \"Industries\""]
["company", "-", " :op1 \"Dingxin\" :op2 \"International\" :op3 \"Company\""]
["company", "-", " :op1 \"Dingyi\" :op2 \"Foods\""]
["company", "-", " :op1 \"Donoghue\" :op2 \"'s\""]
["company", "-", " :op1 \"Dragon\" :op2 \"Pharmaceuticals\" :op3 \"Inc.\""]
["company", "-", " :op1 \"Dynamics\" :op2 \"Branch\" :op3 \"Factory\""]
["company", "-", " :op1 \"EMTAC\" :op2 \"Technology\""]
["company", "-", " :op1 \"EMTAC\""]
["company", "-", " :op1 \"Elektrizitaets-Gesellschaft\" :op2 \"Laufenburg\""]
["company", "-", " :op1 \"Elektrizitaets\" :op2 \"Gesellschaft\" :op3 \"Laufenburg\""]
["company", "-", " :op1 \"Farmanguinhos\" :op2 \"Laboratories\""]
["company", "-", " :op1 \"First\" :op2 \"Automotive\" :op3 \"Manufacturing\" :op4 \"Factory\""]
["company", "-", " :op1 \"Formosa\" :op2 \"Heavy\" :op3 \"Industry\" :op4 \"Corp.\""]
["company", "-", " :op1 \"Fujin\" :op2 \"Carpentry\" :op3 \"Company\""]
["company", "-", " :op1 \"Fujin\" :op2 \"Carpentry\""]
["company", "-", " :op1 \"Genovate\" :op2 \"Biotechnology\""]
["company", "-", " :op1 \"Grace\" :op2 \"Energy\""]
["company", "-", " :op1 \"Great\" :op2 \"Wall\" :op3 \"Industry\" :op4 \"Corporation\""]
["company", "-", " :op1 \"GreenKel\" :op2 \"Coolant\" :op3 \"China\" :op4 \"Limited\" :op5 \"Company\""]
["company", "-", " :op1 \"GreenKel\" :op2 \"Group\""]
["company", "-", " :op1 \"GreenKel\""]
["company", "-", " :op1 \"Hollingsworth\" :op2 \"&\" :op3 \"Vose\" :op4 \"Co.\""]
["company", "-", " :op1 \"Hollingsworth\" :op2 \"&\" :op3 \"Vose\""]
["company", "-", " :op1 \"Hollingworth\" :op2 \"&\" :op3 \"Vose\""]
["company", "-", " :op1 \"IC\" :op2 \"Assembly\" :op3 \"Company\" :op4 \"Sigurd\" :op5 \"Corp.\""]
["company", "-", " :op1 \"IM\""]
["company", "-", " :op1 \"Internet\" :op2 \"Thailand\""]
["company", "-", " :op1 \"Investors\" :op2 \"Service\" :op3 \"Company\""]
["company", "-", " :op1 \"Kamchatenergo\" :op2 \"Power\" :op3 \"Company\""]
["company", "-", " :op1 \"Kamchatenergo\""]
["company", "-", " :op1 \"King\" :op2 \"Yuan\" :op3 \"Electronics\""]
["company", "-", " :op1 \"Lingsen\" :op2 \"Precision\" :op3 \"Industries\""]
["company", "-", " :op1 \"MAI\" :op2 \"Corp.\" :op3 \"of\" :op4 \"Canada\""]
["company", "-", " :op1 \"MacAfee\" :op2 \"Avert\" :op3 \"Labs\""]
["company", "-", " :op1 \"Maoye\" :op2 \"Developer\""]
["company", "-", " :op1 \"McDonnell\" :op2 \"Douglas\" :op3 \"Corporation\""]
["company", "-", " :op1 \"Medical\" :op2 \"Appliance\" :op3 \"Industry\" :op4 \"Company\""]
["company", "-", " :op1 \"Nanfang\" :op2 \"Securities\" :op3 \"Company\" :op4 \"Ltd.\""]
["company", "-", " :op1 \"National\" :op2 \"Food\" :op3 \"Industries\" :op4 \"Co.\""]
["company", "-", " :op1 \"Northern\" :op2 \"American\" :op3 \"Company\""]
["company", "-", " :op1 \"Pandora\""]
["company", "-", " :op1 \"Pharmaessentia\""]
["company", "-", " :op1 \"Promos\" :op2 \"Technologies\" :op3 \"Inc.\""]
["company", "-", " :op1 \"Promos\""]
["company", "-", " :op1 \"Qilu\" :op2 \"Ethylene\""]
["company", "-", " :op1 \"Ryss\" :op2 \"Laboratories\""]
["company", "-", " :op1 \"Shanghai\" :op2 \"Bell\""]
["company", "-", " :op1 \"Shanghai\" :op2 \"Number\" :op3 \"One\" :op4 \"Yiming\" :op5 \"Food\" :op6 \"Factory\""]
["company", "-", " :op1 \"Shanghai\" :op2 \"Soap\" :op3 \"Factory\""]
["company", "-", " :op1 \"Shenyang\" :op2 \"Dalian\" :op3 \"Highway\" :op4 \"Company\" :op5 \",\" :op6 \"Ltd.\""]
["company", "-", " :op1 \"Shenzhen\" :op2 \"Maoye\" :op3 \"Developer\""]
["company", "-", " :op1 \"Sky\" :op2 \"Internet\" :op3 \"Inc.\""]
["company", "-", " :op1 \"Southwest\" :op2 \"Medical\" :op3 \"Equipment\" :op4 \"Factory\""]
["company", "-", " :op1 \"Stalin\" :op2 \"Automotive\" :op3 \"Factory\""]
["company", "-", " :op1 \"Suwaidi\" :op2 \"Cable\" :op3 \"Company\""]
["company", "-", " :op1 \"Synmosa\" :op2 \"Biopharma\""]
["company", "-", " :op1 \"TSR\" :op2 \"Mod\""]
["company", "-", " :op1 \"Tiuta\""]
["company", "-", " :op1 \"Trojan\" :op2 \"Steel\""]
["company", "-", " :op1 \"Tulip\" :op2 \"Systems\" :op3 \"Inc\""]
["company", "-", " :op1 \"Tulip\""]
["company", "-", " :op1 \"UES\""]
["company", "-", " :op1 \"United\" :op2 \"Energy\" :op3 \"Services\""]
["company", "-", " :op1 \"Valley\" :op2 \"Queen\" :op3 \"Cheese\" :op4 \"Factory\""]
["company", "-", " :op1 \"Wanke\""]
["company", "-", " :op1 \"Wu\" :op2 \"Jia\" :op3 \"Economic\" :op4 \"Consulting\" :op5 \"Company\" :op6 \"Ltd.\""]
["company", "-", " :op1 \"Xian\" :op2 \"Ni\" :op3 \"Lei\" :op4 \"De\" :op5 \"Group\""]
["company", "-", " :op1 \"Xinbaotianyang\""]
["company", "-", " :op1 \"Xinghui\" :op2 \"Travel\" :op3 \"Agency\""]
["company", "-", " :op1 \"Xinghui\""]
["company", "-", " :op1 \"YM\" :op2 \"Biosciences\""]
["company", "-", " :op1 \"Zhenjiang\" :op2 \"Hotel\""]
["company", "-", " :op1 \"Zhigao\" :op2 \"Group\""]
["company", "-", " :op1 \"Zhongyi\" :op2 \"International\" :op3 \"Bidding\" :op4 \"Company\""]
["company", "-", " :op1 \"al-Suwaidi\" :op2 \"Cables\""]
["company", "\"ABB_Group\"", " :op1 \"ABB\""]
["company", "\"ABN_AMRO\"", " :op1 \"ABN\" :op2 \"Amro\""]
["company", "\"AT&T\"", " :op1 \"AT&T\""]
["company", "\"Abbott_Laboratories\"", " :op1 \"Abbot\""]
["company", "\"Abbott_Laboratories\"", " :op1 \"Abbott\" :op2 \"Laboratories\""]
["company", "\"Abbott_Laboratories\"", " :op1 \"Abbott\""]
["company", "\"Access_(company)\"", " :op1 \"ACCESS\""]
["company", "\"Airbus\"", " :op1 \"Airbus\""]
["company", "\"Airbus_Helicopters\"", " :op1 \"Eurocopter\""]
["company", "\"Alcatel-Lucent\"", " :op1 \"Alcatel\""]
["company", "\"Alstom\"", " :op1 \"Alstom\""]
["company", "\"American_Broadcasting_Company\"", " :op1 \"American\" :op2 \"Broadcasting\" :op3 \"Company\""]
["company", "\"American_International_Group\"", " :op1 \"AIG\""]
["company", "\"Amgen\"", " :op1 \"Amgen\" :op2 \"Inc.\""]
["company", "\"Amgen\"", " :op1 \"Amgen\""]
["company", "\"Anshan_Iron_&_Steel_Group_Corporation\"", " :op1 \"Anshan\" :op2 \"Iron\" :op3 \"and\" :op4 \"Steel\" :op5 \"Corporation\""]
["company", "\"Archstone\"", " :op1 \"Charles\" :op2 \"E.\" :op3 \"Smith\" :op4 \"Commercial\" :op5 \"Realty\""]
["company", "\"Areva\"", " :op1 \"Areva\""]
["company", "\"Argos_(retailer)\"", " :op1 \"Argos\""]
["company", "\"Asda\"", " :op1 \"Asda\""]
["company", "\"Asian_Development_Bank\"", " :op1 \"Development\" :op2 \"Bank\""]
["company", "\"Atomstroyexport\"", " :op1 \"Atomstroyexport\""]
["company", "\"Australian_Broadcasting_Corporation\"", " :op1 \"The\" :op2 \"Australian\" :op3 \"Broadcasting\" :op4 \"Corporation\""]
["company", "\"BAE_Systems\"", " :op1 \"BAE\" :op2 \"Systems\""]
["company", "\"BASF\"", " :op1 \"BASF\" :op2 \"Group\""]
["company", "\"BBC\"", " :op1 \"BBC\""]
["company", "\"BBC\"", " :op1 \"British\" :op2 \"Broadcasting\" :op3 \"Corporation\""]
["company", "\"BP\"", " :op1 \"BP\""]
["company", "\"Banco_Delta_Asia\"", " :op1 \"Banco\" :op2 \"Delta\" :op3 \"Asia\""]
["company", "\"Bank_of_America\"", " :op1 \"Bank\" :op2 \"of\" :op3 \"America\""]
["company", "\"Bank_of_China\"", " :op1 \"Bank\" :op2 \"of\" :op3 \"China\""]
["company", "\"Bell_Canada\"", " :op1 \"Bell\" :op2 \"Canada\""]
["company", "\"Benefit_Cosmetics\"", " :op1 \"Benefit\""]
["company", "\"Blockbuster_LLC\"", " :op1 \"Blockbuster\""]
["company", "\"Bloomberg_L.P.\"", " :op1 \"Bloomberg\""]
["company", "\"Boeing\"", " :op1 \"Boeing\" :op2 \"Corporation\""]
["company", "\"Boeing\"", " :op1 \"Boeing\""]
["company", "\"Boots_UK\"", " :op1 \"Boots\""]
["company", "\"CNN\"", " :op1 \"CNN\""]
["company", "\"CSBC_Corporation,_Taiwan\"", " :op1 \"CSBC\""]
["company", "\"CSBC_Corporation,_Taiwan\"", " :op1 \"China\" :op2 \"Shipbuilding\" :op3 \"Corp\""]
["company", "\"Canadian_Broadcasting_Corporation\"", " :op1 \"Canadian\" :op2 \"Broadcasting\" :op3 \"Company\""]
["company", "\"Central_Bank_of_Russia\"", " :op1 \"Central\" :op2 \"Bank\""]
["company", "\"Chang'an_Automobile_Group\"", " :op1 \"Chang'an\" :op2 \"Auto\" :op3 \"Stock\" :op4 \"Co.\" :op5 \"Ltd.\""]
["company", "\"Chang'an_Automobile_Group\"", " :op1 \"Chang'an\""]
["company", "\"China_Aerospace_Science_and_Technology_Corporation\"", " :op1 \"Chinese\" :op2 \"Aerospace\" :op3 \"Science\" :op4 \"and\" :op5 \"Technology\" :op6 \"Corp.\""]
["company", "\"China_Development_Bank\"", " :op1 \"China\" :op2 \"'s\" :op3 \"National\" :op4 \"Development\" :op5 \"Bank\""]
["company", "\"China_Development_Bank\"", " :op1 \"National\" :op2 \"Development\" :op3 \"Bank\""]
["company", "\"China_General_Nuclear_Power_Group\"", " :op1 \"CGNPC\""]
["company", "\"China_General_Nuclear_Power_Group\"", " :op1 \"China\" :op2 \"Guangdong\" :op3 \"Nuclear\" :op4 \"Power\" :op5 \"Corporation\""]
["company", "\"China_Mobile\"", " :op1 \"China\" :op2 \"Mobile\""]
["company", "\"China_National_Nuclear_Corporation\"", " :op1 \"China\" :op2 \"National\" :op3 \"Nuclear\" :op4 \"Corporation\""]
["company", "\"China_Precision_Machinery_Import-Export_Corporation\"", " :op1 \"CNPMIEC\""]
["company", "\"China_Precision_Machinery_Import-Export_Corporation\"", " :op1 \"China\" :op2 \"National\" :op3 \"Precision\" :op4 \"Machinery\" :op5 \"Import\" :op6 \"and\" :op7 \"Export\" :op8 \"Corp.\""]
["company", "\"China_Three_Gorges_Corporation\"", " :op1 \"The\" :op2 \"Three\" :op3 \"Gorges\" :op4 \"Project\" :op5 \"Development\" :op6 \"Corporation\" :op7 \"of\" :op8 \"China\""]
["company", "\"China_Three_Gorges_Corporation\"", " :op1 \"Yangtze\" :op2 \"River\" :op3 \"Three\" :op4 \"Gorges\" :op5 \"Project\" :op6 \"Development\" :op7 \"Corporation\""]
["company", "\"Chrysler\"", " :op1 \"Chrysler\" :op2 \"Corp.\""]
["company", "\"Chrysler\"", " :op1 \"Chrysler\""]
["company", "\"Chunghwa_Telecom\"", " :op1 \"Chunghwa\" :op2 \"Telecom\" :op3 \"Co.\" :op4 \"Ltd.\""]
["company", "\"Citibank\"", " :op1 \"Citibank\" :op2 \"USA\""]
["company", "\"Coca-Cola\"", " :op1 \"Coke\""]
["company", "\"Dai-Ichi_Kangyo_Bank\"", " :op1 \"Dai-Ichi\" :op2 \"Kangyo\" :op3 \"Bank\""]
["company", "\"Daimler_AG\"", " :op1 \"Daimler-Chrysler\""]
["company", "\"Dalian_Wanda_Group\"", " :op1 \"Dalian\" :op2 \"Wadian\" :op3 \"Group\""]
["company", "\"Dassault_Aviation\"", " :op1 \"Dassault\" :op2 \"Avaiation\""]
["company", "\"Dassault_Aviation\"", " :op1 \"Dassault\" :op2 \"Aviation\" :op3 \"SA\""]
["company", "\"Dassault_Aviation\"", " :op1 \"Dassault\""]
["company", "\"Digital_Equipment_Corporation\"", " :op1 \"Digital\" :op2 \"Equipment\" :op3 \"Corporation\""]
["company", "\"Douglas_and_McDonald_Railroad\"", " :op1 \"McDonald\" :op2 \"Douglas\""]
["company", "\"Dow_Jones_&_Company\"", " :op1 \"Dow-Jones\" :op2 \"Company\""]
["company", "\"Dow_Jones_&_Company\"", " :op1 \"Dow\" :op2 \"Jones\""]
["company", "\"DuPont\"", " :op1 \"Du\" :op2 \"Pont\""]
["company", "\"EBay\"", " :op1 \"EBay\""]
["company", "\"EBay\"", " :op1 \"Ebay\""]
["company", "\"EBay\"", " :op1 \"eBay\""]
["company", "\"EFG-Hermes\"", " :op1 \"Egyptian\" :op2 \"Financial\" :op3 \"Group\" :op4 \"Hermes\""]
["company", "\"East_Midlands_Trains\"", " :op1 \"East\" :op2 \"Midlands\" :op3 \"Trains\""]
["company", "\"Embraer\"", " :op1 \"Embraer\""]
["company", "\"Eurofighter_GmbH\"", " :op1 \"Eurofighter\" :op2 \"Consortium\""]
["company", "\"ExxonMobil\"", " :op1 \"Exxon\" :op2 \"Mobil\""]
["company", "\"FAW-Volkswagen\"", " :op1 \"Faw\" :op2 \"Volkswagen\" :op3 \"Automotive\" :op4 \"Company\""]
["company", "\"Facebook\"", " :op1 \"Facebook\""]
["company", "\"Federal_Reserve_Bank_of_New_York\"", " :op1 \"New\" :op2 \"York\" :op3 \"Federal\" :op4 \"Reserve\" :op5 \"Bank\""]
["company", "\"Fender_Musical_Instruments_Corporation\"", " :op1 \"Fender\""]
["company", "\"Fiat_S.p.A.\"", " :op1 \"Fiat\""]
["company", "\"Finmeccanica\"", " :op1 \"Finmeccanica\" :op2 \"S.p.A.\""]
["company", "\"Finmeccanica\"", " :op1 \"Finmeccanica\""]
["company", "\"Ford_Motor_Company\"", " :op1 \"Ford\""]
["company", "\"Formosa_Plastics_Group\"", " :op1 \"FPG\""]
["company", "\"Formosa_Plastics_Group\"", " :op1 \"Formosa\" :op2 \"Plastics\" :op3 \"Group\""]
["company", "\"Gamania\"", " :op1 \"Gamania\""]
["company", "\"Gaz_de_France\"", " :op1 \"Gaz\" :op2 \"de\" :op3 \"France\""]
["company", "\"General_Electric\"", " :op1 \"GE\""]
["company", "\"General_Electric\"", " :op1 \"General\" :op2 \"Electric\""]
["company", "\"General_Motors\"", " :op1 \"General\" :op2 \"Motor\""]
["company", "\"General_Motors\"", " :op1 \"General\" :op2 \"Motors\""]
["company", "\"GlaxoSmithKline\"", " :op1 \"GlaxoSmithKline\""]
["company", "\"Goldman_Sachs\"", " :op1 \"Goldman\" :op2 \"Sachs\""]
["company", "\"Google\"", " :op1 \"Google\""]
["company", "\"Halifax_(bank)\"", " :op1 \"Halifax\""]
["company", "\"Halliburton\"", " :op1 \"Haliburton\""]
["company", "\"Halliburton\"", " :op1 \"Halliburton\""]
["company", "\"Hallmark_Cards\"", " :op1 \"Hallmark\""]
["company", "\"Harrods\"", " :op1 \"Harrods\""]
["company", "\"Hejian_Technology_Corporation\"", " :op1 \"Hejian\" :op2 \"Technology\""]
["company", "\"Hejian_Technology_Corporation\"", " :op1 \"Hejian\""]
["company", "\"Hindustan_Aeronautics\"", " :op1 \"Hindustan\" :op2 \"Aeronautics\" :op3 \"Limited\""]
["company", "\"Hopewell_Holdings\"", " :op1 \"Hopewell\" :op2 \"Holdings\" :op3 \"Group\""]
["company", "\"IBM\"", " :op1 \"IBM\""]
["company", "\"IHOP\"", " :op1 \"IHOP\""]
["company", "\"Indian_(airline)\"", " :op1 \"Indian\" :op2 \"Airlines\""]
["company", "\"Industrial_Light_&_Magic\"", " :op1 \"ILM\""]
["company", "\"Intercity-Express\"", " :op1 \"Ice\""]
["company", "\"International_Data_Group\"", " :op1 \"IDG\""]
["company", "\"Itochu\"", " :op1 \"Itochu\""]
["company", "\"Johnson_&_Johnson\"", " :op1 \"Johnson\" :op2 \"&\" :op3 \"Johnson\""]
["company", "\"KBR_(company)\"", " :op1 \"Kellogg\" :op2 \"Brown\" :op3 \"and\" :op4 \"Root\""]
["company", "\"KTF\"", " :op1 \"KT\" :op2 \"Freetel\""]
["company", "\"KTF\"", " :op1 \"Korea\" :op2 \"Telecom\" :op3 \"Freetel\""]
["company", "\"Kawasaki_Heavy_Industries\"", " :op1 \"Kawaski\" :op2 \"Heavy\" :op3 \"Industries\""]
["company", "\"Kennedy_Fried_Chicken\"", " :op1 \"Kentucky\" :op2 \"Fried\" :op3 \"Chicken\""]
["company", "\"Kirin_Company\"", " :op1 \"Kirin\" :op2 \"Brewery\""]
["company", "\"Kirin_Company\"", " :op1 \"Kirin\""]
["company", "\"Kmart\"", " :op1 \"K-Mart\""]
["company", "\"Lhasa_Carpet_Factory\"", " :op1 \"Carpet\" :op2 \"Factory\""]