-
Notifications
You must be signed in to change notification settings - Fork 2
/
labels_1000.nt
1000 lines (1000 loc) · 111 KB
/
labels_1000.nt
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
<http://dbpedia.org/resource/AccessibleComputing> <http://www.w3.org/2000/01/rdf-schema#label> "AccessibleComputing"@en .
<http://dbpedia.org/resource/AfghanistanHistory> <http://www.w3.org/2000/01/rdf-schema#label> "AfghanistanHistory"@en .
<http://dbpedia.org/resource/AfghanistanGeography> <http://www.w3.org/2000/01/rdf-schema#label> "AfghanistanGeography"@en .
<http://dbpedia.org/resource/AfghanistanPeople> <http://www.w3.org/2000/01/rdf-schema#label> "AfghanistanPeople"@en .
<http://dbpedia.org/resource/AfghanistanCommunications> <http://www.w3.org/2000/01/rdf-schema#label> "AfghanistanCommunications"@en .
<http://dbpedia.org/resource/AfghanistanTransportations> <http://www.w3.org/2000/01/rdf-schema#label> "AfghanistanTransportations"@en .
<http://dbpedia.org/resource/AfghanistanMilitary> <http://www.w3.org/2000/01/rdf-schema#label> "AfghanistanMilitary"@en .
<http://dbpedia.org/resource/AfghanistanTransnationalIssues> <http://www.w3.org/2000/01/rdf-schema#label> "AfghanistanTransnationalIssues"@en .
<http://dbpedia.org/resource/AssistiveTechnology> <http://www.w3.org/2000/01/rdf-schema#label> "AssistiveTechnology"@en .
<http://dbpedia.org/resource/AmoeboidTaxa> <http://www.w3.org/2000/01/rdf-schema#label> "AmoeboidTaxa"@en .
<http://dbpedia.org/resource/AlbaniaHistory> <http://www.w3.org/2000/01/rdf-schema#label> "AlbaniaHistory"@en .
<http://dbpedia.org/resource/AlbaniaPeople> <http://www.w3.org/2000/01/rdf-schema#label> "AlbaniaPeople"@en .
<http://dbpedia.org/resource/AsWeMayThink> <http://www.w3.org/2000/01/rdf-schema#label> "AsWeMayThink"@en .
<http://dbpedia.org/resource/AllSaints> <http://www.w3.org/2000/01/rdf-schema#label> "AllSaints"@en .
<http://dbpedia.org/resource/AlbaniaGovernment> <http://www.w3.org/2000/01/rdf-schema#label> "AlbaniaGovernment"@en .
<http://dbpedia.org/resource/AlbaniaEconomy> <http://www.w3.org/2000/01/rdf-schema#label> "AlbaniaEconomy"@en .
<http://dbpedia.org/resource/AfroAsiaticLanguages> <http://www.w3.org/2000/01/rdf-schema#label> "AfroAsiaticLanguages"@en .
<http://dbpedia.org/resource/ArtificalLanguages> <http://www.w3.org/2000/01/rdf-schema#label> "ArtificalLanguages"@en .
<http://dbpedia.org/resource/AbacuS> <http://www.w3.org/2000/01/rdf-schema#label> "AbacuS"@en .
<http://dbpedia.org/resource/AbalonE> <http://www.w3.org/2000/01/rdf-schema#label> "AbalonE"@en .
<http://dbpedia.org/resource/AbbadideS> <http://www.w3.org/2000/01/rdf-schema#label> "AbbadideS"@en .
<http://dbpedia.org/resource/AbbesS> <http://www.w3.org/2000/01/rdf-schema#label> "AbbesS"@en .
<http://dbpedia.org/resource/AbbevilleFrance> <http://www.w3.org/2000/01/rdf-schema#label> "AbbevilleFrance"@en .
<http://dbpedia.org/resource/AbbeY> <http://www.w3.org/2000/01/rdf-schema#label> "AbbeY"@en .
<http://dbpedia.org/resource/AbboT> <http://www.w3.org/2000/01/rdf-schema#label> "AbboT"@en .
<http://dbpedia.org/resource/Abbreviations> <http://www.w3.org/2000/01/rdf-schema#label> "Abbreviations"@en .
<http://dbpedia.org/resource/AtlasShrugged> <http://www.w3.org/2000/01/rdf-schema#label> "AtlasShrugged"@en .
<http://dbpedia.org/resource/ArtificialLanguages> <http://www.w3.org/2000/01/rdf-schema#label> "ArtificialLanguages"@en .
<http://dbpedia.org/resource/AtlasShruggedCharacters> <http://www.w3.org/2000/01/rdf-schema#label> "AtlasShruggedCharacters"@en .
<http://dbpedia.org/resource/AtlasShruggedCompanies> <http://www.w3.org/2000/01/rdf-schema#label> "AtlasShruggedCompanies"@en .
<http://dbpedia.org/resource/AyersMusicPublishingCompany> <http://www.w3.org/2000/01/rdf-schema#label> "AyersMusicPublishingCompany"@en .
<http://dbpedia.org/resource/AfricanAmericanPeople> <http://www.w3.org/2000/01/rdf-schema#label> "AfricanAmericanPeople"@en .
<http://dbpedia.org/resource/AdolfHitler> <http://www.w3.org/2000/01/rdf-schema#label> "AdolfHitler"@en .
<http://dbpedia.org/resource/AbeceDarians> <http://www.w3.org/2000/01/rdf-schema#label> "AbeceDarians"@en .
<http://dbpedia.org/resource/AbeL> <http://www.w3.org/2000/01/rdf-schema#label> "AbeL"@en .
<http://dbpedia.org/resource/AbensbergGermany> <http://www.w3.org/2000/01/rdf-schema#label> "AbensbergGermany"@en .
<http://dbpedia.org/resource/AberdeenSouthDakota> <http://www.w3.org/2000/01/rdf-schema#label> "AberdeenSouthDakota"@en .
<http://dbpedia.org/resource/ArthurKoestler> <http://www.w3.org/2000/01/rdf-schema#label> "ArthurKoestler"@en .
<http://dbpedia.org/resource/AynRand> <http://www.w3.org/2000/01/rdf-schema#label> "AynRand"@en .
<http://dbpedia.org/resource/AlexanderTheGreat> <http://www.w3.org/2000/01/rdf-schema#label> "AlexanderTheGreat"@en .
<http://dbpedia.org/resource/AnchorageAlaska> <http://www.w3.org/2000/01/rdf-schema#label> "AnchorageAlaska"@en .
<http://dbpedia.org/resource/ArgumentForms> <http://www.w3.org/2000/01/rdf-schema#label> "ArgumentForms"@en .
<http://dbpedia.org/resource/ArgumentsForTheExistenceOfGod> <http://www.w3.org/2000/01/rdf-schema#label> "ArgumentsForTheExistenceOfGod"@en .
<http://dbpedia.org/resource/AnarchY> <http://www.w3.org/2000/01/rdf-schema#label> "AnarchY"@en .
<http://dbpedia.org/resource/AsciiArt> <http://www.w3.org/2000/01/rdf-schema#label> "AsciiArt"@en .
<http://dbpedia.org/resource/AcademyAwards> <http://www.w3.org/2000/01/rdf-schema#label> "AcademyAwards"@en .
<http://dbpedia.org/resource/AcademyAwards/BestPicture> <http://www.w3.org/2000/01/rdf-schema#label> "AcademyAwards/BestPicture"@en .
<http://dbpedia.org/resource/AustriaLanguage> <http://www.w3.org/2000/01/rdf-schema#label> "AustriaLanguage"@en .
<http://dbpedia.org/resource/AcademicElitism> <http://www.w3.org/2000/01/rdf-schema#label> "AcademicElitism"@en .
<http://dbpedia.org/resource/AxiomOfChoice> <http://www.w3.org/2000/01/rdf-schema#label> "AxiomOfChoice"@en .
<http://dbpedia.org/resource/AmericanFootball> <http://www.w3.org/2000/01/rdf-schema#label> "AmericanFootball"@en .
<http://dbpedia.org/resource/AmericA> <http://www.w3.org/2000/01/rdf-schema#label> "AmericA"@en .
<http://dbpedia.org/resource/AnnaKournikova> <http://www.w3.org/2000/01/rdf-schema#label> "AnnaKournikova"@en .
<http://dbpedia.org/resource/AndorrA> <http://www.w3.org/2000/01/rdf-schema#label> "AndorrA"@en .
<http://dbpedia.org/resource/AustroAsiaticLanguages> <http://www.w3.org/2000/01/rdf-schema#label> "AustroAsiaticLanguages"@en .
<http://dbpedia.org/resource/ActresseS> <http://www.w3.org/2000/01/rdf-schema#label> "ActresseS"@en .
<http://dbpedia.org/resource/Albedo> <http://www.w3.org/2000/01/rdf-schema#label> "Albedo"@en .
<http://dbpedia.org/resource/A> <http://www.w3.org/2000/01/rdf-schema#label> "A"@en .
<http://dbpedia.org/resource/AnarchoCapitalists> <http://www.w3.org/2000/01/rdf-schema#label> "AnarchoCapitalists"@en .
<http://dbpedia.org/resource/ActressesS> <http://www.w3.org/2000/01/rdf-schema#label> "ActressesS"@en .
<http://dbpedia.org/resource/AnAmericanInParis> <http://www.w3.org/2000/01/rdf-schema#label> "AnAmericanInParis"@en .
<http://dbpedia.org/resource/AutoMorphism> <http://www.w3.org/2000/01/rdf-schema#label> "AutoMorphism"@en .
<http://dbpedia.org/resource/ActionFilm> <http://www.w3.org/2000/01/rdf-schema#label> "ActionFilm"@en .
<http://dbpedia.org/resource/AnarchoCapitalism> <http://www.w3.org/2000/01/rdf-schema#label> "AnarchoCapitalism"@en .
<http://dbpedia.org/resource/AfricA> <http://www.w3.org/2000/01/rdf-schema#label> "AfricA"@en .
<http://dbpedia.org/resource/Achilles> <http://www.w3.org/2000/01/rdf-schema#label> "Achilles"@en .
<http://dbpedia.org/resource/AppliedStatistics> <http://www.w3.org/2000/01/rdf-schema#label> "AppliedStatistics"@en .
<http://dbpedia.org/resource/Anarchism> <http://www.w3.org/2000/01/rdf-schema#label> "Anarchism"@en .
<http://dbpedia.org/resource/Autism> <http://www.w3.org/2000/01/rdf-schema#label> "Autism"@en .
<http://dbpedia.org/resource/An_American_in_Paris> <http://www.w3.org/2000/01/rdf-schema#label> "An American in Paris"@en .
<http://dbpedia.org/resource/Aristotle> <http://www.w3.org/2000/01/rdf-schema#label> "Aristotle"@en .
<http://dbpedia.org/resource/Academy_Award_for_Best_Art_Direction> <http://www.w3.org/2000/01/rdf-schema#label> "Academy Award for Best Art Direction"@en .
<http://dbpedia.org/resource/Action_Film> <http://www.w3.org/2000/01/rdf-schema#label> "Action Film"@en .
<http://dbpedia.org/resource/Alabama> <http://www.w3.org/2000/01/rdf-schema#label> "Alabama"@en .
<http://dbpedia.org/resource/Animalia_%28book%29> <http://www.w3.org/2000/01/rdf-schema#label> "Animalia (book)"@en .
<http://dbpedia.org/resource/Asymmetric_Algorithms> <http://www.w3.org/2000/01/rdf-schema#label> "Asymmetric Algorithms"@en .
<http://dbpedia.org/resource/International_Atomic_Time> <http://www.w3.org/2000/01/rdf-schema#label> "International Atomic Time"@en .
<http://dbpedia.org/resource/Altruism> <http://www.w3.org/2000/01/rdf-schema#label> "Altruism"@en .
<http://dbpedia.org/resource/AutoRacing> <http://www.w3.org/2000/01/rdf-schema#label> "AutoRacing"@en .
<http://dbpedia.org/resource/Actrius> <http://www.w3.org/2000/01/rdf-schema#label> "Actrius"@en .
<http://dbpedia.org/resource/Academy_Award> <http://www.w3.org/2000/01/rdf-schema#label> "Academy Award"@en .
<http://dbpedia.org/resource/Abraham_Lincoln> <http://www.w3.org/2000/01/rdf-schema#label> "Abraham Lincoln"@en .
<http://dbpedia.org/resource/Alain_Connes> <http://www.w3.org/2000/01/rdf-schema#label> "Alain Connes"@en .
<http://dbpedia.org/resource/Algeria/Transnational_Issues> <http://www.w3.org/2000/01/rdf-schema#label> "Algeria/Transnational Issues"@en .
<http://dbpedia.org/resource/Algeria/People> <http://www.w3.org/2000/01/rdf-schema#label> "Algeria/People"@en .
<http://dbpedia.org/resource/List_of_Atlas_Shrugged_characters> <http://www.w3.org/2000/01/rdf-schema#label> "List of Atlas Shrugged characters"@en .
<http://dbpedia.org/resource/Topics_of_note_in_Atlas_Shrugged> <http://www.w3.org/2000/01/rdf-schema#label> "Topics of note in Atlas Shrugged"@en .
<http://dbpedia.org/resource/Allan_Dwan> <http://www.w3.org/2000/01/rdf-schema#label> "Allan Dwan"@en .
<http://dbpedia.org/resource/Agricultural_science> <http://www.w3.org/2000/01/rdf-schema#label> "Agricultural science"@en .
<http://dbpedia.org/resource/Alchemy> <http://www.w3.org/2000/01/rdf-schema#label> "Alchemy"@en .
<http://dbpedia.org/resource/Air_Transport> <http://www.w3.org/2000/01/rdf-schema#label> "Air Transport"@en .
<http://dbpedia.org/resource/Alien> <http://www.w3.org/2000/01/rdf-schema#label> "Alien"@en .
<http://dbpedia.org/resource/Anthropology> <http://www.w3.org/2000/01/rdf-schema#label> "Anthropology"@en .
<http://dbpedia.org/resource/Ameboid_stage> <http://www.w3.org/2000/01/rdf-schema#label> "Ameboid stage"@en .
<http://dbpedia.org/resource/Astronomer> <http://www.w3.org/2000/01/rdf-schema#label> "Astronomer"@en .
<http://dbpedia.org/resource/Ayn_Rand> <http://www.w3.org/2000/01/rdf-schema#label> "Ayn Rand"@en .
<http://dbpedia.org/resource/Ashmore_And_Cartier_Islands> <http://www.w3.org/2000/01/rdf-schema#label> "Ashmore And Cartier Islands"@en .
<http://dbpedia.org/resource/Amoeboid> <http://www.w3.org/2000/01/rdf-schema#label> "Amoeboid"@en .
<http://dbpedia.org/resource/Austin_%28disambiguation%29> <http://www.w3.org/2000/01/rdf-schema#label> "Austin (disambiguation)"@en .
<http://dbpedia.org/resource/Ascii_Art> <http://www.w3.org/2000/01/rdf-schema#label> "Ascii Art"@en .
<http://dbpedia.org/resource/Animation> <http://www.w3.org/2000/01/rdf-schema#label> "Animation"@en .
<http://dbpedia.org/resource/Apollo> <http://www.w3.org/2000/01/rdf-schema#label> "Apollo"@en .
<http://dbpedia.org/resource/Artificial_languages> <http://www.w3.org/2000/01/rdf-schema#label> "Artificial languages"@en .
<http://dbpedia.org/resource/Algeria> <http://www.w3.org/2000/01/rdf-schema#label> "Algeria"@en .
<http://dbpedia.org/resource/Austro-Asiatic_languages> <http://www.w3.org/2000/01/rdf-schema#label> "Austro-Asiatic languages"@en .
<http://dbpedia.org/resource/Andre_Agassi> <http://www.w3.org/2000/01/rdf-schema#label> "Andre Agassi"@en .
<http://dbpedia.org/resource/Afro-asiatic_languages> <http://www.w3.org/2000/01/rdf-schema#label> "Afro-asiatic languages"@en .
<http://dbpedia.org/resource/Andorra/Transnational_issues> <http://www.w3.org/2000/01/rdf-schema#label> "Andorra/Transnational issues"@en .
<http://dbpedia.org/resource/Afroasiatic_languages> <http://www.w3.org/2000/01/rdf-schema#label> "Afroasiatic languages"@en .
<http://dbpedia.org/resource/ASCII> <http://www.w3.org/2000/01/rdf-schema#label> "ASCII"@en .
<http://dbpedia.org/resource/Albert_Gore> <http://www.w3.org/2000/01/rdf-schema#label> "Albert Gore"@en .
<http://dbpedia.org/resource/AnEnquiryConcerningHumanUnderstanding> <http://www.w3.org/2000/01/rdf-schema#label> "AnEnquiryConcerningHumanUnderstanding"@en .
<http://dbpedia.org/resource/Arithmetic_mean> <http://www.w3.org/2000/01/rdf-schema#label> "Arithmetic mean"@en .
<http://dbpedia.org/resource/American_Football_Conference> <http://www.w3.org/2000/01/rdf-schema#label> "American Football Conference"@en .
<http://dbpedia.org/resource/Albert_Arnold_Gore/Criticisms> <http://www.w3.org/2000/01/rdf-schema#label> "Albert Arnold Gore/Criticisms"@en .
<http://dbpedia.org/resource/Animal_Farm> <http://www.w3.org/2000/01/rdf-schema#label> "Animal Farm"@en .
<http://dbpedia.org/resource/Auteur_Theory_Film> <http://www.w3.org/2000/01/rdf-schema#label> "Auteur Theory Film"@en .
<http://dbpedia.org/resource/Amphibian> <http://www.w3.org/2000/01/rdf-schema#label> "Amphibian"@en .
<http://dbpedia.org/resource/Andorra> <http://www.w3.org/2000/01/rdf-schema#label> "Andorra"@en .
<http://dbpedia.org/resource/Abstract_Algebra> <http://www.w3.org/2000/01/rdf-schema#label> "Abstract Algebra"@en .
<http://dbpedia.org/resource/Ada> <http://www.w3.org/2000/01/rdf-schema#label> "Ada"@en .
<http://dbpedia.org/resource/Agriculture> <http://www.w3.org/2000/01/rdf-schema#label> "Agriculture"@en .
<http://dbpedia.org/resource/Alaska> <http://www.w3.org/2000/01/rdf-schema#label> "Alaska"@en .
<http://dbpedia.org/resource/Aberdeen_%28disambiguation%29> <http://www.w3.org/2000/01/rdf-schema#label> "Aberdeen (disambiguation)"@en .
<http://dbpedia.org/resource/ANOVA> <http://www.w3.org/2000/01/rdf-schema#label> "ANOVA"@en .
<http://dbpedia.org/resource/Aldous_Huxley> <http://www.w3.org/2000/01/rdf-schema#label> "Aldous Huxley"@en .
<http://dbpedia.org/resource/Analysis_of_variance> <http://www.w3.org/2000/01/rdf-schema#label> "Analysis of variance"@en .
<http://dbpedia.org/resource/Answer> <http://www.w3.org/2000/01/rdf-schema#label> "Answer"@en .
<http://dbpedia.org/resource/Appellate_court> <http://www.w3.org/2000/01/rdf-schema#label> "Appellate court"@en .
<http://dbpedia.org/resource/Arithmetic_and_logic_unit> <http://www.w3.org/2000/01/rdf-schema#label> "Arithmetic and logic unit"@en .
<http://dbpedia.org/resource/Aircraft_Carrier> <http://www.w3.org/2000/01/rdf-schema#label> "Aircraft Carrier"@en .
<http://dbpedia.org/resource/Appeal> <http://www.w3.org/2000/01/rdf-schema#label> "Appeal"@en .
<http://dbpedia.org/resource/Actress> <http://www.w3.org/2000/01/rdf-schema#label> "Actress"@en .
<http://dbpedia.org/resource/Arraignment> <http://www.w3.org/2000/01/rdf-schema#label> "Arraignment"@en .
<http://dbpedia.org/resource/America_the_Beautiful> <http://www.w3.org/2000/01/rdf-schema#label> "America the Beautiful"@en .
<http://dbpedia.org/resource/Accessible_computing> <http://www.w3.org/2000/01/rdf-schema#label> "Accessible computing"@en .
<http://dbpedia.org/resource/Abacus> <http://www.w3.org/2000/01/rdf-schema#label> "Abacus"@en .
<http://dbpedia.org/resource/Alkane> <http://www.w3.org/2000/01/rdf-schema#label> "Alkane"@en .
<http://dbpedia.org/resource/Assistive_technology> <http://www.w3.org/2000/01/rdf-schema#label> "Assistive technology"@en .
<http://dbpedia.org/resource/Acronym> <http://www.w3.org/2000/01/rdf-schema#label> "Acronym"@en .
<http://dbpedia.org/resource/American_National_Standards_Institute> <http://www.w3.org/2000/01/rdf-schema#label> "American National Standards Institute"@en .
<http://dbpedia.org/resource/Acid> <http://www.w3.org/2000/01/rdf-schema#label> "Acid"@en .
<http://dbpedia.org/resource/Argument_%28disambiguation%29> <http://www.w3.org/2000/01/rdf-schema#label> "Argument (disambiguation)"@en .
<http://dbpedia.org/resource/Asphalt> <http://www.w3.org/2000/01/rdf-schema#label> "Asphalt"@en .
<http://dbpedia.org/resource/Astronaut> <http://www.w3.org/2000/01/rdf-schema#label> "Astronaut"@en .
<http://dbpedia.org/resource/A_Modest_Proposal> <http://www.w3.org/2000/01/rdf-schema#label> "A Modest Proposal"@en .
<http://dbpedia.org/resource/Apollo_8> <http://www.w3.org/2000/01/rdf-schema#label> "Apollo 8"@en .
<http://dbpedia.org/resource/Argument_form> <http://www.w3.org/2000/01/rdf-schema#label> "Argument form"@en .
<http://dbpedia.org/resource/Allotrope> <http://www.w3.org/2000/01/rdf-schema#label> "Allotrope"@en .
<http://dbpedia.org/resource/Alkali_metal> <http://www.w3.org/2000/01/rdf-schema#label> "Alkali metal"@en .
<http://dbpedia.org/resource/Atomic_number> <http://www.w3.org/2000/01/rdf-schema#label> "Atomic number"@en .
<http://dbpedia.org/resource/Alphabet> <http://www.w3.org/2000/01/rdf-schema#label> "Alphabet"@en .
<http://dbpedia.org/resource/Algae> <http://www.w3.org/2000/01/rdf-schema#label> "Algae"@en .
<http://dbpedia.org/resource/Affirming_the_consequent> <http://www.w3.org/2000/01/rdf-schema#label> "Affirming the consequent"@en .
<http://dbpedia.org/resource/Anatomy> <http://www.w3.org/2000/01/rdf-schema#label> "Anatomy"@en .
<http://dbpedia.org/resource/Abel> <http://www.w3.org/2000/01/rdf-schema#label> "Abel"@en .
<http://dbpedia.org/resource/Apollo_11> <http://www.w3.org/2000/01/rdf-schema#label> "Apollo 11"@en .
<http://dbpedia.org/resource/Animal_%28disambiguation%29> <http://www.w3.org/2000/01/rdf-schema#label> "Animal (disambiguation)"@en .
<http://dbpedia.org/resource/Ambiguity> <http://www.w3.org/2000/01/rdf-schema#label> "Ambiguity"@en .
<http://dbpedia.org/resource/Andrei_Tarkovsky> <http://www.w3.org/2000/01/rdf-schema#label> "Andrei Tarkovsky"@en .
<http://dbpedia.org/resource/Adventure> <http://www.w3.org/2000/01/rdf-schema#label> "Adventure"@en .
<http://dbpedia.org/resource/Amaltheia> <http://www.w3.org/2000/01/rdf-schema#label> "Amaltheia"@en .
<http://dbpedia.org/resource/Aardwolf> <http://www.w3.org/2000/01/rdf-schema#label> "Aardwolf"@en .
<http://dbpedia.org/resource/Adobe> <http://www.w3.org/2000/01/rdf-schema#label> "Adobe"@en .
<http://dbpedia.org/resource/Aardvark> <http://www.w3.org/2000/01/rdf-schema#label> "Aardvark"@en .
<http://dbpedia.org/resource/Analysis_of_Variance> <http://www.w3.org/2000/01/rdf-schema#label> "Analysis of Variance"@en .
<http://dbpedia.org/resource/Archaeology/Broch> <http://www.w3.org/2000/01/rdf-schema#label> "Archaeology/Broch"@en .
<http://dbpedia.org/resource/Asia_Minor> <http://www.w3.org/2000/01/rdf-schema#label> "Asia Minor"@en .
<http://dbpedia.org/resource/Aa_River> <http://www.w3.org/2000/01/rdf-schema#label> "Aa River"@en .
<http://dbpedia.org/resource/Asia> <http://www.w3.org/2000/01/rdf-schema#label> "Asia"@en .
<http://dbpedia.org/resource/Articles_of_Confederation> <http://www.w3.org/2000/01/rdf-schema#label> "Articles of Confederation"@en .
<http://dbpedia.org/resource/Atlantic_Ocean> <http://www.w3.org/2000/01/rdf-schema#label> "Atlantic Ocean"@en .
<http://dbpedia.org/resource/Demographics_of_Angola> <http://www.w3.org/2000/01/rdf-schema#label> "Demographics of Angola"@en .
<http://dbpedia.org/resource/Angola> <http://www.w3.org/2000/01/rdf-schema#label> "Angola"@en .
<http://dbpedia.org/resource/Aruba> <http://www.w3.org/2000/01/rdf-schema#label> "Aruba"@en .
<http://dbpedia.org/resource/Politics_of_Angola> <http://www.w3.org/2000/01/rdf-schema#label> "Politics of Angola"@en .
<http://dbpedia.org/resource/Transport_in_Angola> <http://www.w3.org/2000/01/rdf-schema#label> "Transport in Angola"@en .
<http://dbpedia.org/resource/Arthur_Schopenhauer> <http://www.w3.org/2000/01/rdf-schema#label> "Arthur Schopenhauer"@en .
<http://dbpedia.org/resource/Economy_of_Angola> <http://www.w3.org/2000/01/rdf-schema#label> "Economy of Angola"@en .
<http://dbpedia.org/resource/Foreign_relations_of_Angola> <http://www.w3.org/2000/01/rdf-schema#label> "Foreign relations of Angola"@en .
<http://dbpedia.org/resource/Angolan_Armed_Forces> <http://www.w3.org/2000/01/rdf-schema#label> "Angolan Armed Forces"@en .
<http://dbpedia.org/resource/Android_%28robot%29> <http://www.w3.org/2000/01/rdf-schema#label> "Android (robot)"@en .
<http://dbpedia.org/resource/Astronomy/History> <http://www.w3.org/2000/01/rdf-schema#label> "Astronomy/History"@en .
<http://dbpedia.org/resource/List_of_anthropologists> <http://www.w3.org/2000/01/rdf-schema#label> "List of anthropologists"@en .
<http://dbpedia.org/resource/Astronomy_and_Astrophysics/History> <http://www.w3.org/2000/01/rdf-schema#label> "Astronomy and Astrophysics/History"@en .
<http://dbpedia.org/resource/Actinopterygii> <http://www.w3.org/2000/01/rdf-schema#label> "Actinopterygii"@en .
<http://dbpedia.org/resource/Al_Gore/Criticisms> <http://www.w3.org/2000/01/rdf-schema#label> "Al Gore/Criticisms"@en .
<http://dbpedia.org/resource/Albert_Sidney_Johnston> <http://www.w3.org/2000/01/rdf-schema#label> "Albert Sidney Johnston"@en .
<http://dbpedia.org/resource/Arctic_Circle> <http://www.w3.org/2000/01/rdf-schema#label> "Arctic Circle"@en .
<http://dbpedia.org/resource/Albert_Einstein> <http://www.w3.org/2000/01/rdf-schema#label> "Albert Einstein"@en .
<http://dbpedia.org/resource/Allah> <http://www.w3.org/2000/01/rdf-schema#label> "Allah"@en .
<http://dbpedia.org/resource/Algorithms> <http://www.w3.org/2000/01/rdf-schema#label> "Algorithms"@en .
<http://dbpedia.org/resource/Antigua_And_Barbuda> <http://www.w3.org/2000/01/rdf-schema#label> "Antigua And Barbuda"@en .
<http://dbpedia.org/resource/Afghanistan> <http://www.w3.org/2000/01/rdf-schema#label> "Afghanistan"@en .
<http://dbpedia.org/resource/Amateur_astronomy> <http://www.w3.org/2000/01/rdf-schema#label> "Amateur astronomy"@en .
<http://dbpedia.org/resource/Astronomers_and_Astrophysicists> <http://www.w3.org/2000/01/rdf-schema#label> "Astronomers and Astrophysicists"@en .
<http://dbpedia.org/resource/Alberta> <http://www.w3.org/2000/01/rdf-schema#label> "Alberta"@en .
<http://dbpedia.org/resource/Art> <http://www.w3.org/2000/01/rdf-schema#label> "Art"@en .
<http://dbpedia.org/resource/Albania/History> <http://www.w3.org/2000/01/rdf-schema#label> "Albania/History"@en .
<http://dbpedia.org/resource/Albania/Transnational_Issues> <http://www.w3.org/2000/01/rdf-schema#label> "Albania/Transnational Issues"@en .
<http://dbpedia.org/resource/Albania/People> <http://www.w3.org/2000/01/rdf-schema#label> "Albania/People"@en .
<http://dbpedia.org/resource/Albania/Foreign_relations> <http://www.w3.org/2000/01/rdf-schema#label> "Albania/Foreign relations"@en .
<http://dbpedia.org/resource/Agnostida> <http://www.w3.org/2000/01/rdf-schema#label> "Agnostida"@en .
<http://dbpedia.org/resource/Azerbaijan> <http://www.w3.org/2000/01/rdf-schema#label> "Azerbaijan"@en .
<http://dbpedia.org/resource/Aikido> <http://www.w3.org/2000/01/rdf-schema#label> "Aikido"@en .
<http://dbpedia.org/resource/A.E._van_Vogt> <http://www.w3.org/2000/01/rdf-schema#label> "A.E. van Vogt"@en .
<http://dbpedia.org/resource/AOLamer> <http://www.w3.org/2000/01/rdf-schema#label> "AOLamer"@en .
<http://dbpedia.org/resource/Abstract_%28law%29> <http://www.w3.org/2000/01/rdf-schema#label> "Abstract (law)"@en .
<http://dbpedia.org/resource/Albania> <http://www.w3.org/2000/01/rdf-schema#label> "Albania"@en .
<http://dbpedia.org/resource/Ampere> <http://www.w3.org/2000/01/rdf-schema#label> "Ampere"@en .
<http://dbpedia.org/resource/Asymmetric_algorithm> <http://www.w3.org/2000/01/rdf-schema#label> "Asymmetric algorithm"@en .
<http://dbpedia.org/resource/Annual_plant> <http://www.w3.org/2000/01/rdf-schema#label> "Annual plant"@en .
<http://dbpedia.org/resource/Anthophyta> <http://www.w3.org/2000/01/rdf-schema#label> "Anthophyta"@en .
<http://dbpedia.org/resource/Abortion> <http://www.w3.org/2000/01/rdf-schema#label> "Abortion"@en .
<http://dbpedia.org/resource/Mouthwash> <http://www.w3.org/2000/01/rdf-schema#label> "Mouthwash"@en .
<http://dbpedia.org/resource/Atlas_%28disambiguation%29> <http://www.w3.org/2000/01/rdf-schema#label> "Atlas (disambiguation)"@en .
<http://dbpedia.org/resource/Alfred_Korzybski> <http://www.w3.org/2000/01/rdf-schema#label> "Alfred Korzybski"@en .
<http://dbpedia.org/resource/Asteroids_%28video_game%29> <http://www.w3.org/2000/01/rdf-schema#label> "Asteroids (video game)"@en .
<http://dbpedia.org/resource/Algorithm> <http://www.w3.org/2000/01/rdf-schema#label> "Algorithm"@en .
<http://dbpedia.org/resource/American_Revolutionary_War> <http://www.w3.org/2000/01/rdf-schema#label> "American Revolutionary War"@en .
<http://dbpedia.org/resource/Alismatales> <http://www.w3.org/2000/01/rdf-schema#label> "Alismatales"@en .
<http://dbpedia.org/resource/Apiales> <http://www.w3.org/2000/01/rdf-schema#label> "Apiales"@en .
<http://dbpedia.org/resource/Asterales> <http://www.w3.org/2000/01/rdf-schema#label> "Asterales"@en .
<http://dbpedia.org/resource/Allocution> <http://www.w3.org/2000/01/rdf-schema#label> "Allocution"@en .
<http://dbpedia.org/resource/Affidavit> <http://www.w3.org/2000/01/rdf-schema#label> "Affidavit"@en .
<http://dbpedia.org/resource/Aries_%28constellation%29> <http://www.w3.org/2000/01/rdf-schema#label> "Aries (constellation)"@en .
<http://dbpedia.org/resource/Asteroid> <http://www.w3.org/2000/01/rdf-schema#label> "Asteroid"@en .
<http://dbpedia.org/resource/Anime> <http://www.w3.org/2000/01/rdf-schema#label> "Anime"@en .
<http://dbpedia.org/resource/Aquarius_%28constellation%29> <http://www.w3.org/2000/01/rdf-schema#label> "Aquarius (constellation)"@en .
<http://dbpedia.org/resource/Asterism> <http://www.w3.org/2000/01/rdf-schema#label> "Asterism"@en .
<http://dbpedia.org/resource/Asparagales> <http://www.w3.org/2000/01/rdf-schema#label> "Asparagales"@en .
<http://dbpedia.org/resource/AlbaniaCommunications> <http://www.w3.org/2000/01/rdf-schema#label> "AlbaniaCommunications"@en .
<http://dbpedia.org/resource/Alexander_the_Great> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander the Great"@en .
<http://dbpedia.org/resource/Anaconda> <http://www.w3.org/2000/01/rdf-schema#label> "Anaconda"@en .
<http://dbpedia.org/resource/Afghanistan/History> <http://www.w3.org/2000/01/rdf-schema#label> "Afghanistan/History"@en .
<http://dbpedia.org/resource/Afghanistan/Geography> <http://www.w3.org/2000/01/rdf-schema#label> "Afghanistan/Geography"@en .
<http://dbpedia.org/resource/Afghanistan/Government> <http://www.w3.org/2000/01/rdf-schema#label> "Afghanistan/Government"@en .
<http://dbpedia.org/resource/Afghanistan/People> <http://www.w3.org/2000/01/rdf-schema#label> "Afghanistan/People"@en .
<http://dbpedia.org/resource/Afghanistan/Economy> <http://www.w3.org/2000/01/rdf-schema#label> "Afghanistan/Economy"@en .
<http://dbpedia.org/resource/Afghanistan/Communications> <http://www.w3.org/2000/01/rdf-schema#label> "Afghanistan/Communications"@en .
<http://dbpedia.org/resource/Afghanistan/Military> <http://www.w3.org/2000/01/rdf-schema#label> "Afghanistan/Military"@en .
<http://dbpedia.org/resource/Arabic_language> <http://www.w3.org/2000/01/rdf-schema#label> "Arabic language"@en .
<http://dbpedia.org/resource/Afghanistan/Transnational_Issues> <http://www.w3.org/2000/01/rdf-schema#label> "Afghanistan/Transnational Issues"@en .
<http://dbpedia.org/resource/Afghanistan_%281911_Encyclopedia%29> <http://www.w3.org/2000/01/rdf-schema#label> "Afghanistan (1911 Encyclopedia)"@en .
<http://dbpedia.org/resource/Ankara> <http://www.w3.org/2000/01/rdf-schema#label> "Ankara"@en .
<http://dbpedia.org/resource/Austria/Transnational_issues> <http://www.w3.org/2000/01/rdf-schema#label> "Austria/Transnational issues"@en .
<http://dbpedia.org/resource/Austrian_German> <http://www.w3.org/2000/01/rdf-schema#label> "Austrian German"@en .
<http://dbpedia.org/resource/Anglican_Church> <http://www.w3.org/2000/01/rdf-schema#label> "Anglican Church"@en .
<http://dbpedia.org/resource/Axiom_of_choice> <http://www.w3.org/2000/01/rdf-schema#label> "Axiom of choice"@en .
<http://dbpedia.org/resource/Alfred_Hitchcock> <http://www.w3.org/2000/01/rdf-schema#label> "Alfred Hitchcock"@en .
<http://dbpedia.org/resource/Attila> <http://www.w3.org/2000/01/rdf-schema#label> "Attila"@en .
<http://dbpedia.org/resource/Aegean_Sea> <http://www.w3.org/2000/01/rdf-schema#label> "Aegean Sea"@en .
<http://dbpedia.org/resource/Museum_of_Work> <http://www.w3.org/2000/01/rdf-schema#label> "Museum of Work"@en .
<http://dbpedia.org/resource/A_Clockwork_Orange> <http://www.w3.org/2000/01/rdf-schema#label> "A Clockwork Orange"@en .
<http://dbpedia.org/resource/Aircraft> <http://www.w3.org/2000/01/rdf-schema#label> "Aircraft"@en .
<http://dbpedia.org/resource/Altaic_languages> <http://www.w3.org/2000/01/rdf-schema#label> "Altaic languages"@en .
<http://dbpedia.org/resource/Alfred_Nobel> <http://www.w3.org/2000/01/rdf-schema#label> "Alfred Nobel"@en .
<http://dbpedia.org/resource/Anatolia> <http://www.w3.org/2000/01/rdf-schema#label> "Anatolia"@en .
<http://dbpedia.org/resource/Abiotic_factors> <http://www.w3.org/2000/01/rdf-schema#label> "Abiotic factors"@en .
<http://dbpedia.org/resource/Apple_Inc.> <http://www.w3.org/2000/01/rdf-schema#label> "Apple Inc."@en .
<http://dbpedia.org/resource/Aberdeenshire> <http://www.w3.org/2000/01/rdf-schema#label> "Aberdeenshire"@en .
<http://dbpedia.org/resource/AU> <http://www.w3.org/2000/01/rdf-schema#label> "AU"@en .
<http://dbpedia.org/resource/Alexander_Graham_Bell> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander Graham Bell"@en .
<http://dbpedia.org/resource/Aland> <http://www.w3.org/2000/01/rdf-schema#label> "Aland"@en .
<http://dbpedia.org/resource/Aztlan_Underground> <http://www.w3.org/2000/01/rdf-schema#label> "Aztlan Underground"@en .
<http://dbpedia.org/resource/Audi> <http://www.w3.org/2000/01/rdf-schema#label> "Audi"@en .
<http://dbpedia.org/resource/Amsterdam> <http://www.w3.org/2000/01/rdf-schema#label> "Amsterdam"@en .
<http://dbpedia.org/resource/American_Film_Institute> <http://www.w3.org/2000/01/rdf-schema#label> "American Film Institute"@en .
<http://dbpedia.org/resource/American_Civil_War> <http://www.w3.org/2000/01/rdf-schema#label> "American Civil War"@en .
<http://dbpedia.org/resource/Ancient_civilization> <http://www.w3.org/2000/01/rdf-schema#label> "Ancient civilization"@en .
<http://dbpedia.org/resource/Alp_Arslan> <http://www.w3.org/2000/01/rdf-schema#label> "Alp Arslan"@en .
<http://dbpedia.org/resource/Analog_Brothers> <http://www.w3.org/2000/01/rdf-schema#label> "Analog Brothers"@en .
<http://dbpedia.org/resource/Akira_Kurosawa> <http://www.w3.org/2000/01/rdf-schema#label> "Akira Kurosawa"@en .
<http://dbpedia.org/resource/Ancient_Egypt> <http://www.w3.org/2000/01/rdf-schema#label> "Ancient Egypt"@en .
<http://dbpedia.org/resource/Abjad> <http://www.w3.org/2000/01/rdf-schema#label> "Abjad"@en .
<http://dbpedia.org/resource/Motor_neurone_disease> <http://www.w3.org/2000/01/rdf-schema#label> "Motor neurone disease"@en .
<http://dbpedia.org/resource/Andy_Warhol> <http://www.w3.org/2000/01/rdf-schema#label> "Andy Warhol"@en .
<http://dbpedia.org/resource/Allegiance> <http://www.w3.org/2000/01/rdf-schema#label> "Allegiance"@en .
<http://dbpedia.org/resource/Absolute_majority> <http://www.w3.org/2000/01/rdf-schema#label> "Absolute majority"@en .
<http://dbpedia.org/resource/Afrika_Islam> <http://www.w3.org/2000/01/rdf-schema#label> "Afrika Islam"@en .
<http://dbpedia.org/resource/Altenberg> <http://www.w3.org/2000/01/rdf-schema#label> "Altenberg"@en .
<http://dbpedia.org/resource/Abugida> <http://www.w3.org/2000/01/rdf-schema#label> "Abugida"@en .
<http://dbpedia.org/resource/ABBA> <http://www.w3.org/2000/01/rdf-schema#label> "ABBA"@en .
<http://dbpedia.org/resource/Accounting> <http://www.w3.org/2000/01/rdf-schema#label> "Accounting"@en .
<http://dbpedia.org/resource/Alfons_Maria_Jakob> <http://www.w3.org/2000/01/rdf-schema#label> "Alfons Maria Jakob"@en .
<http://dbpedia.org/resource/MessagePad> <http://www.w3.org/2000/01/rdf-schema#label> "MessagePad"@en .
<http://dbpedia.org/resource/Agnosticism> <http://www.w3.org/2000/01/rdf-schema#label> "Agnosticism"@en .
<http://dbpedia.org/resource/A._E._van_Vogt> <http://www.w3.org/2000/01/rdf-schema#label> "A. E. van Vogt"@en .
<http://dbpedia.org/resource/Arsenic> <http://www.w3.org/2000/01/rdf-schema#label> "Arsenic"@en .
<http://dbpedia.org/resource/Anna_Kournikova> <http://www.w3.org/2000/01/rdf-schema#label> "Anna Kournikova"@en .
<http://dbpedia.org/resource/Actinium> <http://www.w3.org/2000/01/rdf-schema#label> "Actinium"@en .
<http://dbpedia.org/resource/Antimony> <http://www.w3.org/2000/01/rdf-schema#label> "Antimony"@en .
<http://dbpedia.org/resource/Argon> <http://www.w3.org/2000/01/rdf-schema#label> "Argon"@en .
<http://dbpedia.org/resource/Arable_land> <http://www.w3.org/2000/01/rdf-schema#label> "Arable land"@en .
<http://dbpedia.org/resource/Astatine> <http://www.w3.org/2000/01/rdf-schema#label> "Astatine"@en .
<http://dbpedia.org/resource/Advanced_Chemistry> <http://www.w3.org/2000/01/rdf-schema#label> "Advanced Chemistry"@en .
<http://dbpedia.org/resource/Awk> <http://www.w3.org/2000/01/rdf-schema#label> "Awk"@en .
<http://dbpedia.org/resource/AgoraNomic> <http://www.w3.org/2000/01/rdf-schema#label> "AgoraNomic"@en .
<http://dbpedia.org/resource/Anglican_Communion> <http://www.w3.org/2000/01/rdf-schema#label> "Anglican Communion"@en .
<http://dbpedia.org/resource/Aluminium> <http://www.w3.org/2000/01/rdf-schema#label> "Aluminium"@en .
<http://dbpedia.org/resource/Arne_Kaijser> <http://www.w3.org/2000/01/rdf-schema#label> "Arne Kaijser"@en .
<http://dbpedia.org/resource/Americium> <http://www.w3.org/2000/01/rdf-schema#label> "Americium"@en .
<http://dbpedia.org/resource/Archipelago> <http://www.w3.org/2000/01/rdf-schema#label> "Archipelago"@en .
<http://dbpedia.org/resource/Author> <http://www.w3.org/2000/01/rdf-schema#label> "Author"@en .
<http://dbpedia.org/resource/Anti-semitism> <http://www.w3.org/2000/01/rdf-schema#label> "Anti-semitism"@en .
<http://dbpedia.org/resource/Anti-semitic> <http://www.w3.org/2000/01/rdf-schema#label> "Anti-semitic"@en .
<http://dbpedia.org/resource/Angst> <http://www.w3.org/2000/01/rdf-schema#label> "Angst"@en .
<http://dbpedia.org/resource/A.A._Milne> <http://www.w3.org/2000/01/rdf-schema#label> "A.A. Milne"@en .
<http://dbpedia.org/resource/Anxiety> <http://www.w3.org/2000/01/rdf-schema#label> "Anxiety"@en .
<http://dbpedia.org/resource/Asociaci%C3%B3n_Alumni> <http://www.w3.org/2000/01/rdf-schema#label> "Asociaci\u00F3n Alumni"@en .
<http://dbpedia.org/resource/Alumna> <http://www.w3.org/2000/01/rdf-schema#label> "Alumna"@en .
<http://dbpedia.org/resource/Andrey_Markov> <http://www.w3.org/2000/01/rdf-schema#label> "Andrey Markov"@en .
<http://dbpedia.org/resource/Alpha> <http://www.w3.org/2000/01/rdf-schema#label> "Alpha"@en .
<http://dbpedia.org/resource/Axiom> <http://www.w3.org/2000/01/rdf-schema#label> "Axiom"@en .
<http://dbpedia.org/resource/A._A._Milne> <http://www.w3.org/2000/01/rdf-schema#label> "A. A. Milne"@en .
<http://dbpedia.org/resource/The_Amazing_Spider-Man> <http://www.w3.org/2000/01/rdf-schema#label> "The Amazing Spider-Man"@en .
<http://dbpedia.org/resource/Automated_Alice/XII> <http://www.w3.org/2000/01/rdf-schema#label> "Automated Alice/XII"@en .
<http://dbpedia.org/resource/Automated_Alice/XI> <http://www.w3.org/2000/01/rdf-schema#label> "Automated Alice/XI"@en .
<http://dbpedia.org/resource/Automated_Alice/X> <http://www.w3.org/2000/01/rdf-schema#label> "Automated Alice/X"@en .
<http://dbpedia.org/resource/Automated_Alice/IX> <http://www.w3.org/2000/01/rdf-schema#label> "Automated Alice/IX"@en .
<http://dbpedia.org/resource/Automated_Alice/VIII> <http://www.w3.org/2000/01/rdf-schema#label> "Automated Alice/VIII"@en .
<http://dbpedia.org/resource/Automated_Alice/VI> <http://www.w3.org/2000/01/rdf-schema#label> "Automated Alice/VI"@en .
<http://dbpedia.org/resource/Automated_Alice/VII> <http://www.w3.org/2000/01/rdf-schema#label> "Automated Alice/VII"@en .
<http://dbpedia.org/resource/Atom> <http://www.w3.org/2000/01/rdf-schema#label> "Atom"@en .
<http://dbpedia.org/resource/Automated_Alice/V> <http://www.w3.org/2000/01/rdf-schema#label> "Automated Alice/V"@en .
<http://dbpedia.org/resource/Alvin_Toffler> <http://www.w3.org/2000/01/rdf-schema#label> "Alvin Toffler"@en .
<http://dbpedia.org/resource/Automated_Alice/IV> <http://www.w3.org/2000/01/rdf-schema#label> "Automated Alice/IV"@en .
<http://dbpedia.org/resource/Automated_Alice/II> <http://www.w3.org/2000/01/rdf-schema#label> "Automated Alice/II"@en .
<http://dbpedia.org/resource/Automated_Alice/I> <http://www.w3.org/2000/01/rdf-schema#label> "Automated Alice/I"@en .
<http://dbpedia.org/resource/Automated_Alice/III> <http://www.w3.org/2000/01/rdf-schema#label> "Automated Alice/III"@en .
<http://dbpedia.org/resource/AM> <http://www.w3.org/2000/01/rdf-schema#label> "AM"@en .
<http://dbpedia.org/resource/Azincourt> <http://www.w3.org/2000/01/rdf-schema#label> "Azincourt"@en .
<http://dbpedia.org/resource/Allioideae> <http://www.w3.org/2000/01/rdf-schema#label> "Allioideae"@en .
<http://dbpedia.org/resource/Apiaceae> <http://www.w3.org/2000/01/rdf-schema#label> "Apiaceae"@en .
<http://dbpedia.org/resource/Antigua_and_Barbuda> <http://www.w3.org/2000/01/rdf-schema#label> "Antigua and Barbuda"@en .
<http://dbpedia.org/resource/Asteraceae> <http://www.w3.org/2000/01/rdf-schema#label> "Asteraceae"@en .
<http://dbpedia.org/resource/Agma> <http://www.w3.org/2000/01/rdf-schema#label> "Agma"@en .
<http://dbpedia.org/resource/Arguments_for_the_existence_of_God> <http://www.w3.org/2000/01/rdf-schema#label> "Arguments for the existence of God"@en .
<http://dbpedia.org/resource/American_shot> <http://www.w3.org/2000/01/rdf-schema#label> "American shot"@en .
<http://dbpedia.org/resource/Albert_Speer> <http://www.w3.org/2000/01/rdf-schema#label> "Albert Speer"@en .
<http://dbpedia.org/resource/Axon> <http://www.w3.org/2000/01/rdf-schema#label> "Axon"@en .
<http://dbpedia.org/resource/AmbientCalculusOnline> <http://www.w3.org/2000/01/rdf-schema#label> "AmbientCalculusOnline"@en .
<http://dbpedia.org/resource/Aramaic_alphabet> <http://www.w3.org/2000/01/rdf-schema#label> "Aramaic alphabet"@en .
<http://dbpedia.org/resource/Acute_disseminated_encephalomyelitis> <http://www.w3.org/2000/01/rdf-schema#label> "Acute disseminated encephalomyelitis"@en .
<http://dbpedia.org/resource/A_priori_and_a_posterior_knowledge> <http://www.w3.org/2000/01/rdf-schema#label> "A priori and a posterior knowledge"@en .
<http://dbpedia.org/resource/AmbientCalculiOnline> <http://www.w3.org/2000/01/rdf-schema#label> "AmbientCalculiOnline"@en .
<http://dbpedia.org/resource/Ataxia> <http://www.w3.org/2000/01/rdf-schema#label> "Ataxia"@en .
<http://dbpedia.org/resource/Abdul_Alhazred> <http://www.w3.org/2000/01/rdf-schema#label> "Abdul Alhazred"@en .
<http://dbpedia.org/resource/A_priori_and_a_posteriori_knowledge> <http://www.w3.org/2000/01/rdf-schema#label> "A priori and a posteriori knowledge"@en .
<http://dbpedia.org/resource/Ada_Lovelace> <http://www.w3.org/2000/01/rdf-schema#label> "Ada Lovelace"@en .
<http://dbpedia.org/resource/Alps> <http://www.w3.org/2000/01/rdf-schema#label> "Alps"@en .
<http://dbpedia.org/resource/August_Derleth> <http://www.w3.org/2000/01/rdf-schema#label> "August Derleth"@en .
<http://dbpedia.org/resource/Applied_ethics> <http://www.w3.org/2000/01/rdf-schema#label> "Applied ethics"@en .
<http://dbpedia.org/resource/The_Plague> <http://www.w3.org/2000/01/rdf-schema#label> "The Plague"@en .
<http://dbpedia.org/resource/Absolute_value> <http://www.w3.org/2000/01/rdf-schema#label> "Absolute value"@en .
<http://dbpedia.org/resource/Analog_signal> <http://www.w3.org/2000/01/rdf-schema#label> "Analog signal"@en .
<http://dbpedia.org/resource/Arecales> <http://www.w3.org/2000/01/rdf-schema#label> "Arecales"@en .
<http://dbpedia.org/resource/Miss_Marple> <http://www.w3.org/2000/01/rdf-schema#label> "Miss Marple"@en .
<http://dbpedia.org/resource/Agatha_Christie> <http://www.w3.org/2000/01/rdf-schema#label> "Agatha Christie"@en .
<http://dbpedia.org/resource/Albert_Camus> <http://www.w3.org/2000/01/rdf-schema#label> "Albert Camus"@en .
<http://dbpedia.org/resource/August> <http://www.w3.org/2000/01/rdf-schema#label> "August"@en .
<http://dbpedia.org/resource/April> <http://www.w3.org/2000/01/rdf-schema#label> "April"@en .
<http://dbpedia.org/resource/Aaron> <http://www.w3.org/2000/01/rdf-schema#label> "Aaron"@en .
<http://dbpedia.org/resource/Hercule_Poirot> <http://www.w3.org/2000/01/rdf-schema#label> "Hercule Poirot"@en .
<http://dbpedia.org/resource/April_6> <http://www.w3.org/2000/01/rdf-schema#label> "April 6"@en .
<http://dbpedia.org/resource/April_12> <http://www.w3.org/2000/01/rdf-schema#label> "April 12"@en .
<http://dbpedia.org/resource/April_30> <http://www.w3.org/2000/01/rdf-schema#label> "April 30"@en .
<http://dbpedia.org/resource/April_15> <http://www.w3.org/2000/01/rdf-schema#label> "April 15"@en .
<http://dbpedia.org/resource/August_27> <http://www.w3.org/2000/01/rdf-schema#label> "August 27"@en .
<http://dbpedia.org/resource/Alcohol> <http://www.w3.org/2000/01/rdf-schema#label> "Alcohol"@en .
<http://dbpedia.org/resource/Algebraically_closed_field> <http://www.w3.org/2000/01/rdf-schema#label> "Algebraically closed field"@en .
<http://dbpedia.org/resource/Achill_Island> <http://www.w3.org/2000/01/rdf-schema#label> "Achill Island"@en .
<http://dbpedia.org/resource/August_22> <http://www.w3.org/2000/01/rdf-schema#label> "August 22"@en .
<http://dbpedia.org/resource/Aspect_ratio> <http://www.w3.org/2000/01/rdf-schema#label> "Aspect ratio"@en .
<http://dbpedia.org/resource/August_6> <http://www.w3.org/2000/01/rdf-schema#label> "August 6"@en .
<http://dbpedia.org/resource/Anatoly_Karpov> <http://www.w3.org/2000/01/rdf-schema#label> "Anatoly Karpov"@en .
<http://dbpedia.org/resource/Anarcho-capitalists> <http://www.w3.org/2000/01/rdf-schema#label> "Anarcho-capitalists"@en .
<http://dbpedia.org/resource/Allen_Ginsberg> <http://www.w3.org/2000/01/rdf-schema#label> "Allen Ginsberg"@en .
<http://dbpedia.org/resource/Auto_racing> <http://www.w3.org/2000/01/rdf-schema#label> "Auto racing"@en .
<http://dbpedia.org/resource/August_9> <http://www.w3.org/2000/01/rdf-schema#label> "August 9"@en .
<http://dbpedia.org/resource/Anarcho-capitalism> <http://www.w3.org/2000/01/rdf-schema#label> "Anarcho-capitalism"@en .
<http://dbpedia.org/resource/Aristophanes> <http://www.w3.org/2000/01/rdf-schema#label> "Aristophanes"@en .
<http://dbpedia.org/resource/Abscess> <http://www.w3.org/2000/01/rdf-schema#label> "Abscess"@en .
<http://dbpedia.org/resource/Aal> <http://www.w3.org/2000/01/rdf-schema#label> "Aal"@en .
<http://dbpedia.org/resource/Austrian_School> <http://www.w3.org/2000/01/rdf-schema#label> "Austrian School"@en .
<http://dbpedia.org/resource/Ancient_Pueblo_Peoples> <http://www.w3.org/2000/01/rdf-schema#label> "Ancient Pueblo Peoples"@en .
<http://dbpedia.org/resource/Aalborg_Municipality> <http://www.w3.org/2000/01/rdf-schema#label> "Aalborg Municipality"@en .
<http://dbpedia.org/resource/Abatement> <http://www.w3.org/2000/01/rdf-schema#label> "Abatement"@en .
<http://dbpedia.org/resource/Northern_cavefish> <http://www.w3.org/2000/01/rdf-schema#label> "Northern cavefish"@en .
<http://dbpedia.org/resource/Amateur> <http://www.w3.org/2000/01/rdf-schema#label> "Amateur"@en .
<http://dbpedia.org/resource/Alexis_Carrel> <http://www.w3.org/2000/01/rdf-schema#label> "Alexis Carrel"@en .
<http://dbpedia.org/resource/Anatole_France> <http://www.w3.org/2000/01/rdf-schema#label> "Anatole France"@en .
<http://dbpedia.org/resource/Aarhus> <http://www.w3.org/2000/01/rdf-schema#label> "Aarhus"@en .
<http://dbpedia.org/resource/Applied_statistics> <http://www.w3.org/2000/01/rdf-schema#label> "Applied statistics"@en .
<http://dbpedia.org/resource/Analysis_of_variance/Random_effects_models> <http://www.w3.org/2000/01/rdf-schema#label> "Analysis of variance/Random effects models"@en .
<http://dbpedia.org/resource/Analysis_of_variance/Degrees_of_freedom> <http://www.w3.org/2000/01/rdf-schema#label> "Analysis of variance/Degrees of freedom"@en .
<http://dbpedia.org/resource/Andr%C3%A9_Gide> <http://www.w3.org/2000/01/rdf-schema#label> "Andr\u00E9 Gide"@en .
<http://dbpedia.org/resource/Albert_Schweitzer> <http://www.w3.org/2000/01/rdf-schema#label> "Albert Schweitzer"@en .
<http://dbpedia.org/resource/Demographics_of_Antigua_and_Barbuda> <http://www.w3.org/2000/01/rdf-schema#label> "Demographics of Antigua and Barbuda"@en .
<http://dbpedia.org/resource/Algorithms_for_calculating_variance> <http://www.w3.org/2000/01/rdf-schema#label> "Algorithms for calculating variance"@en .
<http://dbpedia.org/resource/Telecommunications_in_Antigua_and_Barbuda> <http://www.w3.org/2000/01/rdf-schema#label> "Telecommunications in Antigua and Barbuda"@en .
<http://dbpedia.org/resource/Politics_of_Antigua_and_Barbuda> <http://www.w3.org/2000/01/rdf-schema#label> "Politics of Antigua and Barbuda"@en .
<http://dbpedia.org/resource/Antigua_and_Barbuda/Transnational_issues> <http://www.w3.org/2000/01/rdf-schema#label> "Antigua and Barbuda/Transnational issues"@en .
<http://dbpedia.org/resource/All_Souls%27_Day> <http://www.w3.org/2000/01/rdf-schema#label> "All Souls' Day"@en .
<http://dbpedia.org/resource/Almond> <http://www.w3.org/2000/01/rdf-schema#label> "Almond"@en .
<http://dbpedia.org/resource/Royal_Antigua_and_Barbuda_Defence_Force> <http://www.w3.org/2000/01/rdf-schema#label> "Royal Antigua and Barbuda Defence Force"@en .
<http://dbpedia.org/resource/Azerbaijan/People> <http://www.w3.org/2000/01/rdf-schema#label> "Azerbaijan/People"@en .
<http://dbpedia.org/resource/Economy_of_Azerbaijan> <http://www.w3.org/2000/01/rdf-schema#label> "Economy of Azerbaijan"@en .
<http://dbpedia.org/resource/Geography_of_Azerbaijan> <http://www.w3.org/2000/01/rdf-schema#label> "Geography of Azerbaijan"@en .
<http://dbpedia.org/resource/Azerbaijan/Communications> <http://www.w3.org/2000/01/rdf-schema#label> "Azerbaijan/Communications"@en .
<http://dbpedia.org/resource/Azerbaijan/Foreign_relations> <http://www.w3.org/2000/01/rdf-schema#label> "Azerbaijan/Foreign relations"@en .
<http://dbpedia.org/resource/Azerbaijani_Armed_Forces> <http://www.w3.org/2000/01/rdf-schema#label> "Azerbaijani Armed Forces"@en .
<http://dbpedia.org/resource/Geography_of_Armenia> <http://www.w3.org/2000/01/rdf-schema#label> "Geography of Armenia"@en .
<http://dbpedia.org/resource/Antisemitism> <http://www.w3.org/2000/01/rdf-schema#label> "Antisemitism"@en .
<http://dbpedia.org/resource/Foreign_relations_of_Azerbaijan> <http://www.w3.org/2000/01/rdf-schema#label> "Foreign relations of Azerbaijan"@en .
<http://dbpedia.org/resource/Transport_in_Armenia> <http://www.w3.org/2000/01/rdf-schema#label> "Transport in Armenia"@en .
<http://dbpedia.org/resource/Politics_of_Armenia> <http://www.w3.org/2000/01/rdf-schema#label> "Politics of Armenia"@en .
<http://dbpedia.org/resource/Armed_Forces_of_Armenia> <http://www.w3.org/2000/01/rdf-schema#label> "Armed Forces of Armenia"@en .
<http://dbpedia.org/resource/Argentina/Transnational_issues> <http://www.w3.org/2000/01/rdf-schema#label> "Argentina/Transnational issues"@en .
<http://dbpedia.org/resource/Argentina/Foreign_relations> <http://www.w3.org/2000/01/rdf-schema#label> "Argentina/Foreign relations"@en .
<http://dbpedia.org/resource/Demographics_of_Armenia> <http://www.w3.org/2000/01/rdf-schema#label> "Demographics of Armenia"@en .
<http://dbpedia.org/resource/Geography_of_American_Samoa> <http://www.w3.org/2000/01/rdf-schema#label> "Geography of American Samoa"@en .
<http://dbpedia.org/resource/Politics_of_American_Samoa> <http://www.w3.org/2000/01/rdf-schema#label> "Politics of American Samoa"@en .
<http://dbpedia.org/resource/Demographics_of_American_Samoa> <http://www.w3.org/2000/01/rdf-schema#label> "Demographics of American Samoa"@en .
<http://dbpedia.org/resource/Economy_of_American_Samoa> <http://www.w3.org/2000/01/rdf-schema#label> "Economy of American Samoa"@en .
<http://dbpedia.org/resource/American_Samoa/Military> <http://www.w3.org/2000/01/rdf-schema#label> "American Samoa/Military"@en .
<http://dbpedia.org/resource/Australia/Transnational_issues> <http://www.w3.org/2000/01/rdf-schema#label> "Australia/Transnational issues"@en .
<http://dbpedia.org/resource/Foreign_relations_of_Armenia> <http://www.w3.org/2000/01/rdf-schema#label> "Foreign relations of Armenia"@en .
<http://dbpedia.org/resource/Transportation_in_American_Samoa> <http://www.w3.org/2000/01/rdf-schema#label> "Transportation in American Samoa"@en .
<http://dbpedia.org/resource/Economy_of_Armenia> <http://www.w3.org/2000/01/rdf-schema#label> "Economy of Armenia"@en .
<http://dbpedia.org/resource/August_13> <http://www.w3.org/2000/01/rdf-schema#label> "August 13"@en .
<http://dbpedia.org/resource/Analysis> <http://www.w3.org/2000/01/rdf-schema#label> "Analysis"@en .
<http://dbpedia.org/resource/America%27s_National_Game> <http://www.w3.org/2000/01/rdf-schema#label> "America's National Game"@en .
<http://dbpedia.org/resource/The_Ashes> <http://www.w3.org/2000/01/rdf-schema#label> "The Ashes"@en .
<http://dbpedia.org/resource/Augustin-Jean_Fresnel> <http://www.w3.org/2000/01/rdf-schema#label> "Augustin-Jean Fresnel"@en .
<http://dbpedia.org/resource/Amplitude_modulation> <http://www.w3.org/2000/01/rdf-schema#label> "Amplitude modulation"@en .
<http://dbpedia.org/resource/Abner_Doubleday> <http://www.w3.org/2000/01/rdf-schema#label> "Abner Doubleday"@en .
<http://dbpedia.org/resource/Assembly_line> <http://www.w3.org/2000/01/rdf-schema#label> "Assembly line"@en .
<http://dbpedia.org/resource/Abbot> <http://www.w3.org/2000/01/rdf-schema#label> "Abbot"@en .
<http://dbpedia.org/resource/AK47> <http://www.w3.org/2000/01/rdf-schema#label> "AK47"@en .
<http://dbpedia.org/resource/Ardipithecus> <http://www.w3.org/2000/01/rdf-schema#label> "Ardipithecus"@en .
<http://dbpedia.org/resource/Amhrann_na_bhFiann> <http://www.w3.org/2000/01/rdf-schema#label> "Amhrann na bhFiann"@en .
<http://dbpedia.org/resource/Alan_Garner> <http://www.w3.org/2000/01/rdf-schema#label> "Alan Garner"@en .
<http://dbpedia.org/resource/Atlantic_%28disambiguation%29> <http://www.w3.org/2000/01/rdf-schema#label> "Atlantic (disambiguation)"@en .
<http://dbpedia.org/resource/Algebraic_number> <http://www.w3.org/2000/01/rdf-schema#label> "Algebraic number"@en .
<http://dbpedia.org/resource/Automorphism> <http://www.w3.org/2000/01/rdf-schema#label> "Automorphism"@en .
<http://dbpedia.org/resource/August_2> <http://www.w3.org/2000/01/rdf-schema#label> "August 2"@en .
<http://dbpedia.org/resource/Avicenna> <http://www.w3.org/2000/01/rdf-schema#label> "Avicenna"@en .
<http://dbpedia.org/resource/Adelaide> <http://www.w3.org/2000/01/rdf-schema#label> "Adelaide"@en .
<http://dbpedia.org/resource/Accordion> <http://www.w3.org/2000/01/rdf-schema#label> "Accordion"@en .
<http://dbpedia.org/resource/Afro_Celt_Sound_System> <http://www.w3.org/2000/01/rdf-schema#label> "Afro Celt Sound System"@en .
<http://dbpedia.org/resource/APL> <http://www.w3.org/2000/01/rdf-schema#label> "APL"@en .
<http://dbpedia.org/resource/Ancient_philosophy> <http://www.w3.org/2000/01/rdf-schema#label> "Ancient philosophy"@en .
<http://dbpedia.org/resource/Architect> <http://www.w3.org/2000/01/rdf-schema#label> "Architect"@en .
<http://dbpedia.org/resource/Abbreviation> <http://www.w3.org/2000/01/rdf-schema#label> "Abbreviation"@en .
<http://dbpedia.org/resource/Anaximander> <http://www.w3.org/2000/01/rdf-schema#label> "Anaximander"@en .
<http://dbpedia.org/resource/Antisymmetric_relation> <http://www.w3.org/2000/01/rdf-schema#label> "Antisymmetric relation"@en .
<http://dbpedia.org/resource/Artificial_intelligence> <http://www.w3.org/2000/01/rdf-schema#label> "Artificial intelligence"@en .
<http://dbpedia.org/resource/April_1> <http://www.w3.org/2000/01/rdf-schema#label> "April 1"@en .
<http://dbpedia.org/resource/Admiral_Doenitz> <http://www.w3.org/2000/01/rdf-schema#label> "Admiral Doenitz"@en .
<http://dbpedia.org/resource/Astrometry> <http://www.w3.org/2000/01/rdf-schema#label> "Astrometry"@en .
<http://dbpedia.org/resource/Aphrodite> <http://www.w3.org/2000/01/rdf-schema#label> "Aphrodite"@en .
<http://dbpedia.org/resource/Afterlife> <http://www.w3.org/2000/01/rdf-schema#label> "Afterlife"@en .
<http://dbpedia.org/resource/Athene_%28disambiguation%29> <http://www.w3.org/2000/01/rdf-schema#label> "Athene (disambiguation)"@en .
<http://dbpedia.org/resource/AphexTwin> <http://www.w3.org/2000/01/rdf-schema#label> "AphexTwin"@en .
<http://dbpedia.org/resource/Amber_Diceless_Roleplaying_Game> <http://www.w3.org/2000/01/rdf-schema#label> "Amber Diceless Roleplaying Game"@en .
<http://dbpedia.org/resource/Alloy> <http://www.w3.org/2000/01/rdf-schema#label> "Alloy"@en .
<http://dbpedia.org/resource/Alternative_history> <http://www.w3.org/2000/01/rdf-schema#label> "Alternative history"@en .
<http://dbpedia.org/resource/Articles_of_Faith> <http://www.w3.org/2000/01/rdf-schema#label> "Articles of Faith"@en .
<http://dbpedia.org/resource/Artistic_revolution> <http://www.w3.org/2000/01/rdf-schema#label> "Artistic revolution"@en .
<http://dbpedia.org/resource/Athena> <http://www.w3.org/2000/01/rdf-schema#label> "Athena"@en .
<http://dbpedia.org/resource/Atomic> <http://www.w3.org/2000/01/rdf-schema#label> "Atomic"@en .
<http://dbpedia.org/resource/Allotropes> <http://www.w3.org/2000/01/rdf-schema#label> "Allotropes"@en .
<http://dbpedia.org/resource/Asa> <http://www.w3.org/2000/01/rdf-schema#label> "Asa"@en .
<http://dbpedia.org/resource/Agrarianism> <http://www.w3.org/2000/01/rdf-schema#label> "Agrarianism"@en .
<http://dbpedia.org/resource/Angle_tribe> <http://www.w3.org/2000/01/rdf-schema#label> "Angle tribe"@en .
<http://dbpedia.org/resource/Atomic_physics> <http://www.w3.org/2000/01/rdf-schema#label> "Atomic physics"@en .
<http://dbpedia.org/resource/Angle> <http://www.w3.org/2000/01/rdf-schema#label> "Angle"@en .
<http://dbpedia.org/resource/Acoustics> <http://www.w3.org/2000/01/rdf-schema#label> "Acoustics"@en .
<http://dbpedia.org/resource/Applet> <http://www.w3.org/2000/01/rdf-schema#label> "Applet"@en .
<http://dbpedia.org/resource/Atomic_orbitals> <http://www.w3.org/2000/01/rdf-schema#label> "Atomic orbitals"@en .
<http://dbpedia.org/resource/American_Sign_Language> <http://www.w3.org/2000/01/rdf-schema#label> "American Sign Language"@en .
<http://dbpedia.org/resource/Aleister_Crowley> <http://www.w3.org/2000/01/rdf-schema#label> "Aleister Crowley"@en .
<http://dbpedia.org/resource/Alternate_history> <http://www.w3.org/2000/01/rdf-schema#label> "Alternate history"@en .
<http://dbpedia.org/resource/Atomic_orbital> <http://www.w3.org/2000/01/rdf-schema#label> "Atomic orbital"@en .
<http://dbpedia.org/resource/Area> <http://www.w3.org/2000/01/rdf-schema#label> "Area"@en .
<http://dbpedia.org/resource/Amino_acid> <http://www.w3.org/2000/01/rdf-schema#label> "Amino acid"@en .
<http://dbpedia.org/resource/Astronomical_unit> <http://www.w3.org/2000/01/rdf-schema#label> "Astronomical unit"@en .
<http://dbpedia.org/resource/Actaeon> <http://www.w3.org/2000/01/rdf-schema#label> "Actaeon"@en .
<http://dbpedia.org/resource/Artist> <http://www.w3.org/2000/01/rdf-schema#label> "Artist"@en .
<http://dbpedia.org/resource/Alan_Turing> <http://www.w3.org/2000/01/rdf-schema#label> "Alan Turing"@en .
<http://dbpedia.org/resource/Anguilla/Transnational_issues> <http://www.w3.org/2000/01/rdf-schema#label> "Anguilla/Transnational issues"@en .
<http://dbpedia.org/resource/Anguilla/Military> <http://www.w3.org/2000/01/rdf-schema#label> "Anguilla/Military"@en .
<http://dbpedia.org/resource/Anguilla> <http://www.w3.org/2000/01/rdf-schema#label> "Anguilla"@en .
<http://dbpedia.org/resource/Telecommunications_in_Anguilla> <http://www.w3.org/2000/01/rdf-schema#label> "Telecommunications in Anguilla"@en .
<http://dbpedia.org/resource/Anglicanism> <http://www.w3.org/2000/01/rdf-schema#label> "Anglicanism"@en .
<http://dbpedia.org/resource/Ashmore_and_Cartier_Islands/Geography> <http://www.w3.org/2000/01/rdf-schema#label> "Ashmore and Cartier Islands/Geography"@en .
<http://dbpedia.org/resource/Ashmore_and_Cartier_Islands/Government> <http://www.w3.org/2000/01/rdf-schema#label> "Ashmore and Cartier Islands/Government"@en .
<http://dbpedia.org/resource/Ashmore_and_Cartier_Islands/Transportation> <http://www.w3.org/2000/01/rdf-schema#label> "Ashmore and Cartier Islands/Transportation"@en .
<http://dbpedia.org/resource/Ashmore_and_Cartier_Islands/Economy> <http://www.w3.org/2000/01/rdf-schema#label> "Ashmore and Cartier Islands/Economy"@en .
<http://dbpedia.org/resource/Ashmore_and_Cartier_Islands/Military> <http://www.w3.org/2000/01/rdf-schema#label> "Ashmore and Cartier Islands/Military"@en .
<http://dbpedia.org/resource/Ashmore_and_Cartier_Islands/People> <http://www.w3.org/2000/01/rdf-schema#label> "Ashmore and Cartier Islands/People"@en .
<http://dbpedia.org/resource/Ashmore_and_Cartier_Islands> <http://www.w3.org/2000/01/rdf-schema#label> "Ashmore and Cartier Islands"@en .
<http://dbpedia.org/resource/Atomic_bomb> <http://www.w3.org/2000/01/rdf-schema#label> "Atomic bomb"@en .
<http://dbpedia.org/resource/Acoustic_theory> <http://www.w3.org/2000/01/rdf-schema#label> "Acoustic theory"@en .
<http://dbpedia.org/resource/American_%28word%29> <http://www.w3.org/2000/01/rdf-schema#label> "American (word)"@en .
<http://dbpedia.org/resource/Athens> <http://www.w3.org/2000/01/rdf-schema#label> "Athens"@en .
<http://dbpedia.org/resource/Alexander_Mackenzie> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander Mackenzie"@en .
<http://dbpedia.org/resource/Alpha_ray> <http://www.w3.org/2000/01/rdf-schema#label> "Alpha ray"@en .
<http://dbpedia.org/resource/Alfonso_Arau> <http://www.w3.org/2000/01/rdf-schema#label> "Alfonso Arau"@en .
<http://dbpedia.org/resource/Ada_%28programming_language%29> <http://www.w3.org/2000/01/rdf-schema#label> "Ada (programming language)"@en .
<http://dbpedia.org/resource/Alfonso_Cuar%C3%B3n> <http://www.w3.org/2000/01/rdf-schema#label> "Alfonso Cuar\u00F3n"@en .
<http://dbpedia.org/resource/Astronomical_Units> <http://www.w3.org/2000/01/rdf-schema#label> "Astronomical Units"@en .
<http://dbpedia.org/resource/Arianism> <http://www.w3.org/2000/01/rdf-schema#label> "Arianism"@en .
<http://dbpedia.org/resource/Antoninus_Pius> <http://www.w3.org/2000/01/rdf-schema#label> "Antoninus Pius"@en .
<http://dbpedia.org/resource/Ashoka> <http://www.w3.org/2000/01/rdf-schema#label> "Ashoka"@en .
<http://dbpedia.org/resource/August_3> <http://www.w3.org/2000/01/rdf-schema#label> "August 3"@en .
<http://dbpedia.org/resource/Advanced_Encryption_Standard> <http://www.w3.org/2000/01/rdf-schema#label> "Advanced Encryption Standard"@en .
<http://dbpedia.org/resource/Argot> <http://www.w3.org/2000/01/rdf-schema#label> "Argot"@en .
<http://dbpedia.org/resource/August_1> <http://www.w3.org/2000/01/rdf-schema#label> "August 1"@en .
<http://dbpedia.org/resource/Anisotropy> <http://www.w3.org/2000/01/rdf-schema#label> "Anisotropy"@en .
<http://dbpedia.org/resource/AI> <http://www.w3.org/2000/01/rdf-schema#label> "AI"@en .
<http://dbpedia.org/resource/Extreme_poverty> <http://www.w3.org/2000/01/rdf-schema#label> "Extreme poverty"@en .
<http://dbpedia.org/resource/Alpha_decay> <http://www.w3.org/2000/01/rdf-schema#label> "Alpha decay"@en .
<http://dbpedia.org/resource/Geography_of_Antarctica> <http://www.w3.org/2000/01/rdf-schema#label> "Geography of Antarctica"@en .
<http://dbpedia.org/resource/Economy_of_Antarctica> <http://www.w3.org/2000/01/rdf-schema#label> "Economy of Antarctica"@en .
<http://dbpedia.org/resource/Government_of_Antarctica> <http://www.w3.org/2000/01/rdf-schema#label> "Government of Antarctica"@en .
<http://dbpedia.org/resource/April_26> <http://www.w3.org/2000/01/rdf-schema#label> "April 26"@en .
<http://dbpedia.org/resource/Military_of_Antarctica> <http://www.w3.org/2000/01/rdf-schema#label> "Military of Antarctica"@en .
<http://dbpedia.org/resource/Transport_in_Antarctica> <http://www.w3.org/2000/01/rdf-schema#label> "Transport in Antarctica"@en .
<http://dbpedia.org/resource/Analytical_Engine> <http://www.w3.org/2000/01/rdf-schema#label> "Analytical Engine"@en .
<http://dbpedia.org/resource/Geography_of_Alabama> <http://www.w3.org/2000/01/rdf-schema#label> "Geography of Alabama"@en .
<http://dbpedia.org/resource/Antartic_Treaty> <http://www.w3.org/2000/01/rdf-schema#label> "Antartic Treaty"@en .
<http://dbpedia.org/resource/Antarctic_Treaty_System> <http://www.w3.org/2000/01/rdf-schema#label> "Antarctic Treaty System"@en .
<http://dbpedia.org/resource/Algernon_Swinburne> <http://www.w3.org/2000/01/rdf-schema#label> "Algernon Swinburne"@en .
<http://dbpedia.org/resource/Augustus> <http://www.w3.org/2000/01/rdf-schema#label> "Augustus"@en .
<http://dbpedia.org/resource/ALCS> <http://www.w3.org/2000/01/rdf-schema#label> "ALCS"@en .
<http://dbpedia.org/resource/Apocrypha/Tanakh> <http://www.w3.org/2000/01/rdf-schema#label> "Apocrypha/Tanakh"@en .
<http://dbpedia.org/resource/Apocrypha> <http://www.w3.org/2000/01/rdf-schema#label> "Apocrypha"@en .
<http://dbpedia.org/resource/Abbadides> <http://www.w3.org/2000/01/rdf-schema#label> "Abbadides"@en .
<http://dbpedia.org/resource/Abalone> <http://www.w3.org/2000/01/rdf-schema#label> "Abalone"@en .
<http://dbpedia.org/resource/Alfred_Lawson> <http://www.w3.org/2000/01/rdf-schema#label> "Alfred Lawson"@en .
<http://dbpedia.org/resource/Abbess> <http://www.w3.org/2000/01/rdf-schema#label> "Abbess"@en .
<http://dbpedia.org/resource/Ames,_Iowa> <http://www.w3.org/2000/01/rdf-schema#label> "Ames, Iowa"@en .
<http://dbpedia.org/resource/List_of_Governors_of_Alabama> <http://www.w3.org/2000/01/rdf-schema#label> "List of Governors of Alabama"@en .
<http://dbpedia.org/resource/Human_abdomen> <http://www.w3.org/2000/01/rdf-schema#label> "Human abdomen"@en .
<http://dbpedia.org/resource/Abduction> <http://www.w3.org/2000/01/rdf-schema#label> "Abduction"@en .
<http://dbpedia.org/resource/Abensberg> <http://www.w3.org/2000/01/rdf-schema#label> "Abensberg"@en .
<http://dbpedia.org/resource/The_Alan_Parsons_Project> <http://www.w3.org/2000/01/rdf-schema#label> "The Alan Parsons Project"@en .
<http://dbpedia.org/resource/Abdominal_surgery> <http://www.w3.org/2000/01/rdf-schema#label> "Abdominal surgery"@en .
<http://dbpedia.org/resource/Ada_Byron%27s_notes_on_the_analytical_engine> <http://www.w3.org/2000/01/rdf-schema#label> "Ada Byron's notes on the analytical engine"@en .
<http://dbpedia.org/resource/Augustine> <http://www.w3.org/2000/01/rdf-schema#label> "Augustine"@en .
<http://dbpedia.org/resource/Almost_all> <http://www.w3.org/2000/01/rdf-schema#label> "Almost all"@en .
<http://dbpedia.org/resource/Aromatic_hydrocarbon> <http://www.w3.org/2000/01/rdf-schema#label> "Aromatic hydrocarbon"@en .
<http://dbpedia.org/resource/Arminianism> <http://www.w3.org/2000/01/rdf-schema#label> "Arminianism"@en .
<http://dbpedia.org/resource/Abbey> <http://www.w3.org/2000/01/rdf-schema#label> "Abbey"@en .
<http://dbpedia.org/resource/Casa_Batll%C3%B3> <http://www.w3.org/2000/01/rdf-schema#label> "Casa Batll\u00F3"@en .
<http://dbpedia.org/resource/Antonio_Gaudi/Casa_Milo> <http://www.w3.org/2000/01/rdf-schema#label> "Antonio Gaudi/Casa Milo"@en .
<http://dbpedia.org/resource/Antonio_Gaudi/Sagrada_Familia> <http://www.w3.org/2000/01/rdf-schema#label> "Antonio Gaudi/Sagrada Familia"@en .
<http://dbpedia.org/resource/Park_G%C3%BCell> <http://www.w3.org/2000/01/rdf-schema#label> "Park G\u00FCell"@en .
<http://dbpedia.org/resource/Casa_Mil%C3%A0> <http://www.w3.org/2000/01/rdf-schema#label> "Casa Mil\u00E0"@en .
<http://dbpedia.org/resource/A.D.> <http://www.w3.org/2000/01/rdf-schema#label> "A.D."@en .
<http://dbpedia.org/resource/Annales_School> <http://www.w3.org/2000/01/rdf-schema#label> "Annales School"@en .
<http://dbpedia.org/resource/Antimatter> <http://www.w3.org/2000/01/rdf-schema#label> "Antimatter"@en .
<http://dbpedia.org/resource/Arabian_Prince> <http://www.w3.org/2000/01/rdf-schema#label> "Arabian Prince"@en .
<http://dbpedia.org/resource/Antiparticle> <http://www.w3.org/2000/01/rdf-schema#label> "Antiparticle"@en .
<http://dbpedia.org/resource/Associative_property> <http://www.w3.org/2000/01/rdf-schema#label> "Associative property"@en .
<http://dbpedia.org/resource/April_16> <http://www.w3.org/2000/01/rdf-schema#label> "April 16"@en .
<http://dbpedia.org/resource/August_7> <http://www.w3.org/2000/01/rdf-schema#label> "August 7"@en .
<http://dbpedia.org/resource/Americans_with_Disabilities_Act_of_1990/Findings_and_Purposes> <http://www.w3.org/2000/01/rdf-schema#label> "Americans with Disabilities Act of 1990/Findings and Purposes"@en .
<http://dbpedia.org/resource/Americans_with_Disabilities_Act_of_1990/Definitions> <http://www.w3.org/2000/01/rdf-schema#label> "Americans with Disabilities Act of 1990/Definitions"@en .
<http://dbpedia.org/resource/Americans_with_Disabilities_Act_of_1990/Title_III> <http://www.w3.org/2000/01/rdf-schema#label> "Americans with Disabilities Act of 1990/Title III"@en .
<http://dbpedia.org/resource/August_8> <http://www.w3.org/2000/01/rdf-schema#label> "August 8"@en .
<http://dbpedia.org/resource/A.D> <http://www.w3.org/2000/01/rdf-schema#label> "A.D"@en .
<http://dbpedia.org/resource/Apache_webserver> <http://www.w3.org/2000/01/rdf-schema#label> "Apache webserver"@en .
<http://dbpedia.org/resource/Apache_Software_Foundation> <http://www.w3.org/2000/01/rdf-schema#label> "Apache Software Foundation"@en .
<http://dbpedia.org/resource/Apple_I> <http://www.w3.org/2000/01/rdf-schema#label> "Apple I"@en .
<http://dbpedia.org/resource/Apatosaurus> <http://www.w3.org/2000/01/rdf-schema#label> "Apatosaurus"@en .
<http://dbpedia.org/resource/Atanasoff%E2%80%93Berry_Computer> <http://www.w3.org/2000/01/rdf-schema#label> "Atanasoff\u2013Berry Computer"@en .
<http://dbpedia.org/resource/Allosaurus> <http://www.w3.org/2000/01/rdf-schema#label> "Allosaurus"@en .
<http://dbpedia.org/resource/Americans_with_Disabilities_Act_of_1990> <http://www.w3.org/2000/01/rdf-schema#label> "Americans with Disabilities Act of 1990"@en .
<http://dbpedia.org/resource/Ancylopoda> <http://www.w3.org/2000/01/rdf-schema#label> "Ancylopoda"@en .
<http://dbpedia.org/resource/Anderida> <http://www.w3.org/2000/01/rdf-schema#label> "Anderida"@en .
<http://dbpedia.org/resource/AK-47> <http://www.w3.org/2000/01/rdf-schema#label> "AK-47"@en .
<http://dbpedia.org/resource/Anazarbus> <http://www.w3.org/2000/01/rdf-schema#label> "Anazarbus"@en .
<http://dbpedia.org/resource/Anbar_%28town%29> <http://www.w3.org/2000/01/rdf-schema#label> "Anbar (town)"@en .
<http://dbpedia.org/resource/Anchor> <http://www.w3.org/2000/01/rdf-schema#label> "Anchor"@en .
<http://dbpedia.org/resource/Anagram> <http://www.w3.org/2000/01/rdf-schema#label> "Anagram"@en .
<http://dbpedia.org/resource/Anadyr_River> <http://www.w3.org/2000/01/rdf-schema#label> "Anadyr River"@en .
<http://dbpedia.org/resource/Andr%C3%A9-Marie_Amp%C3%A8re> <http://www.w3.org/2000/01/rdf-schema#label> "Andr\u00E9-Marie Amp\u00E8re"@en .
<http://dbpedia.org/resource/Amethyst> <http://www.w3.org/2000/01/rdf-schema#label> "Amethyst"@en .
<http://dbpedia.org/resource/Andes> <http://www.w3.org/2000/01/rdf-schema#label> "Andes"@en .
<http://dbpedia.org/resource/Assembly_language> <http://www.w3.org/2000/01/rdf-schema#label> "Assembly language"@en .
<http://dbpedia.org/resource/Ambrosia> <http://www.w3.org/2000/01/rdf-schema#label> "Ambrosia"@en .
<http://dbpedia.org/resource/Ambracia> <http://www.w3.org/2000/01/rdf-schema#label> "Ambracia"@en .
<http://dbpedia.org/resource/Amber> <http://www.w3.org/2000/01/rdf-schema#label> "Amber"@en .
<http://dbpedia.org/resource/Ambrose> <http://www.w3.org/2000/01/rdf-schema#label> "Ambrose"@en .
<http://dbpedia.org/resource/Alphorn> <http://www.w3.org/2000/01/rdf-schema#label> "Alphorn"@en .
<http://dbpedia.org/resource/Albertosaurus> <http://www.w3.org/2000/01/rdf-schema#label> "Albertosaurus"@en .
<http://dbpedia.org/resource/Air_Force> <http://www.w3.org/2000/01/rdf-schema#label> "Air Force"@en .
<http://dbpedia.org/resource/Alligatoridae> <http://www.w3.org/2000/01/rdf-schema#label> "Alligatoridae"@en .
<http://dbpedia.org/resource/Alder> <http://www.w3.org/2000/01/rdf-schema#label> "Alder"@en .
<http://dbpedia.org/resource/Ammonia> <http://www.w3.org/2000/01/rdf-schema#label> "Ammonia"@en .
<http://dbpedia.org/resource/Army> <http://www.w3.org/2000/01/rdf-schema#label> "Army"@en .
<http://dbpedia.org/resource/Amos_Bronson_Alcott> <http://www.w3.org/2000/01/rdf-schema#label> "Amos Bronson Alcott"@en .
<http://dbpedia.org/resource/Alabaster> <http://www.w3.org/2000/01/rdf-schema#label> "Alabaster"@en .
<http://dbpedia.org/resource/ASIC_%28disambiguation%29> <http://www.w3.org/2000/01/rdf-schema#label> "ASIC (disambiguation)"@en .
<http://dbpedia.org/resource/Ahab> <http://www.w3.org/2000/01/rdf-schema#label> "Ahab"@en .
<http://dbpedia.org/resource/Amalaric> <http://www.w3.org/2000/01/rdf-schema#label> "Amalaric"@en .
<http://dbpedia.org/resource/Dasyproctidae> <http://www.w3.org/2000/01/rdf-schema#label> "Dasyproctidae"@en .
<http://dbpedia.org/resource/Arachnophobia> <http://www.w3.org/2000/01/rdf-schema#label> "Arachnophobia"@en .
<http://dbpedia.org/resource/Algol> <http://www.w3.org/2000/01/rdf-schema#label> "Algol"@en .
<http://dbpedia.org/resource/ADHD> <http://www.w3.org/2000/01/rdf-schema#label> "ADHD"@en .
<http://dbpedia.org/resource/AV> <http://www.w3.org/2000/01/rdf-schema#label> "AV"@en .
<http://dbpedia.org/resource/Amino_group> <http://www.w3.org/2000/01/rdf-schema#label> "Amino group"@en .
<http://dbpedia.org/resource/Antony_van_Leeuwenhook> <http://www.w3.org/2000/01/rdf-schema#label> "Antony van Leeuwenhook"@en .
<http://dbpedia.org/resource/Anno_Domini> <http://www.w3.org/2000/01/rdf-schema#label> "Anno Domini"@en .
<http://dbpedia.org/resource/Angilbert> <http://www.w3.org/2000/01/rdf-schema#label> "Angilbert"@en .
<http://dbpedia.org/resource/Antony_van_Leeuwenhoek> <http://www.w3.org/2000/01/rdf-schema#label> "Antony van Leeuwenhoek"@en .
<http://dbpedia.org/resource/Amazing_Grace> <http://www.w3.org/2000/01/rdf-schema#label> "Amazing Grace"@en .
<http://dbpedia.org/resource/Adrian_I> <http://www.w3.org/2000/01/rdf-schema#label> "Adrian I"@en .
<http://dbpedia.org/resource/Amine> <http://www.w3.org/2000/01/rdf-schema#label> "Amine"@en .
<http://dbpedia.org/resource/April_29> <http://www.w3.org/2000/01/rdf-schema#label> "April 29"@en .
<http://dbpedia.org/resource/Absolute_zero> <http://www.w3.org/2000/01/rdf-schema#label> "Absolute zero"@en .
<http://dbpedia.org/resource/August_14> <http://www.w3.org/2000/01/rdf-schema#label> "August 14"@en .
<http://dbpedia.org/resource/Adiabatic_process> <http://www.w3.org/2000/01/rdf-schema#label> "Adiabatic process"@en .
<http://dbpedia.org/resource/Amide> <http://www.w3.org/2000/01/rdf-schema#label> "Amide"@en .
<http://dbpedia.org/resource/Animism> <http://www.w3.org/2000/01/rdf-schema#label> "Animism"@en .
<http://dbpedia.org/resource/Adrian_II> <http://www.w3.org/2000/01/rdf-schema#label> "Adrian II"@en .
<http://dbpedia.org/resource/Alcuin> <http://www.w3.org/2000/01/rdf-schema#label> "Alcuin"@en .
<http://dbpedia.org/resource/Adrian_IV> <http://www.w3.org/2000/01/rdf-schema#label> "Adrian IV"@en .
<http://dbpedia.org/resource/Adrian_VI> <http://www.w3.org/2000/01/rdf-schema#label> "Adrian VI"@en .
<http://dbpedia.org/resource/Adrian> <http://www.w3.org/2000/01/rdf-schema#label> "Adrian"@en .
<http://dbpedia.org/resource/Abgar> <http://www.w3.org/2000/01/rdf-schema#label> "Abgar"@en .
<http://dbpedia.org/resource/Abbotsford_House> <http://www.w3.org/2000/01/rdf-schema#label> "Abbotsford House"@en .
<http://dbpedia.org/resource/Antonio_Vivaldi> <http://www.w3.org/2000/01/rdf-schema#label> "Antonio Vivaldi"@en .
<http://dbpedia.org/resource/Aar> <http://www.w3.org/2000/01/rdf-schema#label> "Aar"@en .
<http://dbpedia.org/resource/Abraxas> <http://www.w3.org/2000/01/rdf-schema#label> "Abraxas"@en .
<http://dbpedia.org/resource/Abydos> <http://www.w3.org/2000/01/rdf-schema#label> "Abydos"@en .
<http://dbpedia.org/resource/AOL> <http://www.w3.org/2000/01/rdf-schema#label> "AOL"@en .
<http://dbpedia.org/resource/Abydos_%28Hellespont%29> <http://www.w3.org/2000/01/rdf-schema#label> "Abydos (Hellespont)"@en .
<http://dbpedia.org/resource/Abydos,_Egypt> <http://www.w3.org/2000/01/rdf-schema#label> "Abydos, Egypt"@en .
<http://dbpedia.org/resource/Abraham> <http://www.w3.org/2000/01/rdf-schema#label> "Abraham"@en .
<http://dbpedia.org/resource/Acacia> <http://www.w3.org/2000/01/rdf-schema#label> "Acacia"@en .
<http://dbpedia.org/resource/Absalom> <http://www.w3.org/2000/01/rdf-schema#label> "Absalom"@en .
<http://dbpedia.org/resource/Alan_Kay> <http://www.w3.org/2000/01/rdf-schema#label> "Alan Kay"@en .
<http://dbpedia.org/resource/August_15> <http://www.w3.org/2000/01/rdf-schema#label> "August 15"@en .
<http://dbpedia.org/resource/August_16> <http://www.w3.org/2000/01/rdf-schema#label> "August 16"@en .
<http://dbpedia.org/resource/APL_%28programming_language%29> <http://www.w3.org/2000/01/rdf-schema#label> "APL (programming language)"@en .
<http://dbpedia.org/resource/Alzheimers_disease> <http://www.w3.org/2000/01/rdf-schema#label> "Alzheimers disease"@en .
<http://dbpedia.org/resource/Ascorbic_Acid> <http://www.w3.org/2000/01/rdf-schema#label> "Ascorbic Acid"@en .
<http://dbpedia.org/resource/AWK> <http://www.w3.org/2000/01/rdf-schema#label> "AWK"@en .
<http://dbpedia.org/resource/Asgard> <http://www.w3.org/2000/01/rdf-schema#label> "Asgard"@en .
<http://dbpedia.org/resource/Acapulco> <http://www.w3.org/2000/01/rdf-schema#label> "Acapulco"@en .
<http://dbpedia.org/resource/Australian_Prime_Ministers> <http://www.w3.org/2000/01/rdf-schema#label> "Australian Prime Ministers"@en .
<http://dbpedia.org/resource/%C3%81lfheimr> <http://www.w3.org/2000/01/rdf-schema#label> "\u00C1lfheimr"@en .
<http://dbpedia.org/resource/Ask_and_Embla> <http://www.w3.org/2000/01/rdf-schema#label> "Ask and Embla"@en .
<http://dbpedia.org/resource/ALGOL> <http://www.w3.org/2000/01/rdf-schema#label> "ALGOL"@en .
<http://dbpedia.org/resource/Alabama_River> <http://www.w3.org/2000/01/rdf-schema#label> "Alabama River"@en .
<http://dbpedia.org/resource/Apollo_program> <http://www.w3.org/2000/01/rdf-schema#label> "Apollo program"@en .
<http://dbpedia.org/resource/Assault> <http://www.w3.org/2000/01/rdf-schema#label> "Assault"@en .
<http://dbpedia.org/resource/Alain_de_Lille> <http://www.w3.org/2000/01/rdf-schema#label> "Alain de Lille"@en .
<http://dbpedia.org/resource/Alamanni> <http://www.w3.org/2000/01/rdf-schema#label> "Alamanni"@en .
<http://dbpedia.org/resource/August_17> <http://www.w3.org/2000/01/rdf-schema#label> "August 17"@en .
<http://dbpedia.org/resource/August_12> <http://www.w3.org/2000/01/rdf-schema#label> "August 12"@en .
<http://dbpedia.org/resource/August_18> <http://www.w3.org/2000/01/rdf-schema#label> "August 18"@en .
<http://dbpedia.org/resource/American_Stock_Exchange> <http://www.w3.org/2000/01/rdf-schema#label> "American Stock Exchange"@en .
<http://dbpedia.org/resource/Australian_Labor_Party> <http://www.w3.org/2000/01/rdf-schema#label> "Australian Labor Party"@en .
<http://dbpedia.org/resource/Dodo_%28Alice%27s_Adventures_in_Wonderland%29> <http://www.w3.org/2000/01/rdf-schema#label> "Dodo (Alice's Adventures in Wonderland)"@en .
<http://dbpedia.org/resource/Alfred_Russel_Wallace> <http://www.w3.org/2000/01/rdf-schema#label> "Alfred Russel Wallace"@en .
<http://dbpedia.org/resource/August_21> <http://www.w3.org/2000/01/rdf-schema#label> "August 21"@en .
<http://dbpedia.org/resource/Lory_%28disambiguation%29> <http://www.w3.org/2000/01/rdf-schema#label> "Lory (disambiguation)"@en .
<http://dbpedia.org/resource/August_19> <http://www.w3.org/2000/01/rdf-schema#label> "August 19"@en .
<http://dbpedia.org/resource/Albert> <http://www.w3.org/2000/01/rdf-schema#label> "Albert"@en .
<http://dbpedia.org/resource/Eaglet_%28Alice%27s_Adventures_in_Wonderland%29> <http://www.w3.org/2000/01/rdf-schema#label> "Eaglet (Alice's Adventures in Wonderland)"@en .
<http://dbpedia.org/resource/Albert_III> <http://www.w3.org/2000/01/rdf-schema#label> "Albert III"@en .
<http://dbpedia.org/resource/Albert_II> <http://www.w3.org/2000/01/rdf-schema#label> "Albert II"@en .
<http://dbpedia.org/resource/Albert_I_of_Hapsburg> <http://www.w3.org/2000/01/rdf-schema#label> "Albert I of Hapsburg"@en .
<http://dbpedia.org/resource/Albert_Alcibiades,_Margrave_of_Brandenburg-Kulmbach> <http://www.w3.org/2000/01/rdf-schema#label> "Albert Alcibiades, Margrave of Brandenburg-Kulmbach"@en .
<http://dbpedia.org/resource/Albert_of_Mainz> <http://www.w3.org/2000/01/rdf-schema#label> "Albert of Mainz"@en .
<http://dbpedia.org/resource/Albert_III,_Elector_of_Saxony> <http://www.w3.org/2000/01/rdf-schema#label> "Albert III, Elector of Saxony"@en .
<http://dbpedia.org/resource/Albert_the_Bear> <http://www.w3.org/2000/01/rdf-schema#label> "Albert the Bear"@en .
<http://dbpedia.org/resource/Albert_the_Degenerate> <http://www.w3.org/2000/01/rdf-schema#label> "Albert the Degenerate"@en .
<http://dbpedia.org/resource/Albert_Of_Aix> <http://www.w3.org/2000/01/rdf-schema#label> "Albert Of Aix"@en .
<http://dbpedia.org/resource/Albert_I> <http://www.w3.org/2000/01/rdf-schema#label> "Albert I"@en .
<http://dbpedia.org/resource/Agate> <http://www.w3.org/2000/01/rdf-schema#label> "Agate"@en .
<http://dbpedia.org/resource/August_25> <http://www.w3.org/2000/01/rdf-schema#label> "August 25"@en .
<http://dbpedia.org/resource/Aachen> <http://www.w3.org/2000/01/rdf-schema#label> "Aachen"@en .
<http://dbpedia.org/resource/Abner> <http://www.w3.org/2000/01/rdf-schema#label> "Abner"@en .
<http://dbpedia.org/resource/Ahmed_II> <http://www.w3.org/2000/01/rdf-schema#label> "Ahmed II"@en .
<http://dbpedia.org/resource/Albert,_Duke_of_Prussia> <http://www.w3.org/2000/01/rdf-schema#label> "Albert, Duke of Prussia"@en .
<http://dbpedia.org/resource/Ahmed_I> <http://www.w3.org/2000/01/rdf-schema#label> "Ahmed I"@en .
<http://dbpedia.org/resource/Aix-la-Chapelle> <http://www.w3.org/2000/01/rdf-schema#label> "Aix-la-Chapelle"@en .
<http://dbpedia.org/resource/Aspirin> <http://www.w3.org/2000/01/rdf-schema#label> "Aspirin"@en .
<http://dbpedia.org/resource/Acorn_%28fruit_of_the_oak_tree%29> <http://www.w3.org/2000/01/rdf-schema#label> "Acorn (fruit of the oak tree)"@en .
<http://dbpedia.org/resource/Acropolis> <http://www.w3.org/2000/01/rdf-schema#label> "Acropolis"@en .
<http://dbpedia.org/resource/Adder> <http://www.w3.org/2000/01/rdf-schema#label> "Adder"@en .
<http://dbpedia.org/resource/Adirondacks> <http://www.w3.org/2000/01/rdf-schema#label> "Adirondacks"@en .
<http://dbpedia.org/resource/Aeneas> <http://www.w3.org/2000/01/rdf-schema#label> "Aeneas"@en .
<http://dbpedia.org/resource/Ahmed_III> <http://www.w3.org/2000/01/rdf-schema#label> "Ahmed III"@en .
<http://dbpedia.org/resource/Acupuncture> <http://www.w3.org/2000/01/rdf-schema#label> "Acupuncture"@en .
<http://dbpedia.org/resource/April_13> <http://www.w3.org/2000/01/rdf-schema#label> "April 13"@en .
<http://dbpedia.org/resource/Amaranth> <http://www.w3.org/2000/01/rdf-schema#label> "Amaranth"@en .
<http://dbpedia.org/resource/Agapanthus_africanus> <http://www.w3.org/2000/01/rdf-schema#label> "Agapanthus africanus"@en .
<http://dbpedia.org/resource/Agamemnon> <http://www.w3.org/2000/01/rdf-schema#label> "Agamemnon"@en .
<http://dbpedia.org/resource/Agasias> <http://www.w3.org/2000/01/rdf-schema#label> "Agasias"@en .
<http://dbpedia.org/resource/Ainu_people> <http://www.w3.org/2000/01/rdf-schema#label> "Ainu people"@en .
<http://dbpedia.org/resource/Aga_Khan_III> <http://www.w3.org/2000/01/rdf-schema#label> "Aga Khan III"@en .
<http://dbpedia.org/resource/Agathon> <http://www.w3.org/2000/01/rdf-schema#label> "Agathon"@en .
<http://dbpedia.org/resource/Agis> <http://www.w3.org/2000/01/rdf-schema#label> "Agis"@en .
<http://dbpedia.org/resource/Antonio_Agliardi> <http://www.w3.org/2000/01/rdf-schema#label> "Antonio Agliardi"@en .
<http://dbpedia.org/resource/Aga_Khan_I> <http://www.w3.org/2000/01/rdf-schema#label> "Aga Khan I"@en .
<http://dbpedia.org/resource/Alexander_Emanuel_Agassiz> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander Emanuel Agassiz"@en .
<http://dbpedia.org/resource/Agnes_of_Merania> <http://www.w3.org/2000/01/rdf-schema#label> "Agnes of Merania"@en .
<http://dbpedia.org/resource/Agni> <http://www.w3.org/2000/01/rdf-schema#label> "Agni"@en .
<http://dbpedia.org/resource/American_Chinese_cuisine> <http://www.w3.org/2000/01/rdf-schema#label> "American Chinese cuisine"@en .
<http://dbpedia.org/resource/Agrippina_the_Elder> <http://www.w3.org/2000/01/rdf-schema#label> "Agrippina the Elder"@en .
<http://dbpedia.org/resource/Agesilaus_II> <http://www.w3.org/2000/01/rdf-schema#label> "Agesilaus II"@en .
<http://dbpedia.org/resource/Aidan_of_Dalriada> <http://www.w3.org/2000/01/rdf-schema#label> "Aidan of Dalriada"@en .
<http://dbpedia.org/resource/Agrippina_the_Younger> <http://www.w3.org/2000/01/rdf-schema#label> "Agrippina the Younger"@en .
<http://dbpedia.org/resource/Ahenobarbus> <http://www.w3.org/2000/01/rdf-schema#label> "Ahenobarbus"@en .
<http://dbpedia.org/resource/Aimoin> <http://www.w3.org/2000/01/rdf-schema#label> "Aimoin"@en .
<http://dbpedia.org/resource/Ailanthus> <http://www.w3.org/2000/01/rdf-schema#label> "Ailanthus"@en .
<http://dbpedia.org/resource/Arthur_Aikin> <http://www.w3.org/2000/01/rdf-schema#label> "Arthur Aikin"@en .
<http://dbpedia.org/resource/Ajax_the_Lesser> <http://www.w3.org/2000/01/rdf-schema#label> "Ajax the Lesser"@en .
<http://dbpedia.org/resource/Ahmad_Shah_Durrani> <http://www.w3.org/2000/01/rdf-schema#label> "Ahmad Shah Durrani"@en .
<http://dbpedia.org/resource/Ajax> <http://www.w3.org/2000/01/rdf-schema#label> "Ajax"@en .
<http://dbpedia.org/resource/Ajax_%28mythology%29> <http://www.w3.org/2000/01/rdf-schema#label> "Ajax (mythology)"@en .
<http://dbpedia.org/resource/Alaric_II> <http://www.w3.org/2000/01/rdf-schema#label> "Alaric II"@en .
<http://dbpedia.org/resource/Albategnius> <http://www.w3.org/2000/01/rdf-schema#label> "Albategnius"@en .
<http://dbpedia.org/resource/Akkadian_Empire> <http://www.w3.org/2000/01/rdf-schema#label> "Akkadian Empire"@en .
<http://dbpedia.org/resource/Albertus_Magnus> <http://www.w3.org/2000/01/rdf-schema#label> "Albertus Magnus"@en .
<http://dbpedia.org/resource/Afonso_de_Albuquerque> <http://www.w3.org/2000/01/rdf-schema#label> "Afonso de Albuquerque"@en .
<http://dbpedia.org/resource/Alboin> <http://www.w3.org/2000/01/rdf-schema#label> "Alboin"@en .
<http://dbpedia.org/resource/Alcamenes> <http://www.w3.org/2000/01/rdf-schema#label> "Alcamenes"@en .
<http://dbpedia.org/resource/Alcidamas> <http://www.w3.org/2000/01/rdf-schema#label> "Alcidamas"@en .
<http://dbpedia.org/resource/Alcaeus_of_Mytilene> <http://www.w3.org/2000/01/rdf-schema#label> "Alcaeus of Mytilene"@en .
<http://dbpedia.org/resource/Alcmene> <http://www.w3.org/2000/01/rdf-schema#label> "Alcmene"@en .
<http://dbpedia.org/resource/Aldine_Press> <http://www.w3.org/2000/01/rdf-schema#label> "Aldine Press"@en .
<http://dbpedia.org/resource/Alexander_I_of_Epirus> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander I of Epirus"@en .
<http://dbpedia.org/resource/Alexander_Balas> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander Balas"@en .
<http://dbpedia.org/resource/Alexander_of_Pherae> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander of Pherae"@en .
<http://dbpedia.org/resource/Alaric_I> <http://www.w3.org/2000/01/rdf-schema#label> "Alaric I"@en .
<http://dbpedia.org/resource/Alexander_II_of_Epirus> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander II of Epirus"@en .
<http://dbpedia.org/resource/Ealdred_%28bishop%29> <http://www.w3.org/2000/01/rdf-schema#label> "Ealdred (bishop)"@en .
<http://dbpedia.org/resource/Alexander_I_of_Scotland> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander I of Scotland"@en .
<http://dbpedia.org/resource/Alexander_III_of_Russia> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander III of Russia"@en .
<http://dbpedia.org/resource/Alexander_II_of_Scotland> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander II of Scotland"@en .
<http://dbpedia.org/resource/Alexander_I_of_Serbia> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander I of Serbia"@en .
<http://dbpedia.org/resource/Alexander_Jagiellon> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander Jagiellon"@en .
<http://dbpedia.org/resource/Alexander_of_Greece_%28disambiguation%29> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander of Greece (disambiguation)"@en .
<http://dbpedia.org/resource/Alexander_III_of_Scotland> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander III of Scotland"@en .
<http://dbpedia.org/resource/Alexander_of_Aphrodisias> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander of Aphrodisias"@en .
<http://dbpedia.org/resource/Alexander> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander"@en .
<http://dbpedia.org/resource/Alexander_II_of_Russia> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander II of Russia"@en .
<http://dbpedia.org/resource/Alexander_II> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander II"@en .
<http://dbpedia.org/resource/Alexander_III> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander III"@en .
<http://dbpedia.org/resource/Alexander_I> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander I"@en .
<http://dbpedia.org/resource/Alexander_Aetolus> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander Aetolus"@en .
<http://dbpedia.org/resource/Alexander_IV> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander IV"@en .
<http://dbpedia.org/resource/Alexander_V> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander V"@en .
<http://dbpedia.org/resource/Alexander_VI> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander VI"@en .
<http://dbpedia.org/resource/Alexander_VII> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander VII"@en .
<http://dbpedia.org/resource/Alexander_VIII> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander VIII"@en .
<http://dbpedia.org/resource/Alexandrists> <http://www.w3.org/2000/01/rdf-schema#label> "Alexandrists"@en .
<http://dbpedia.org/resource/Alexis> <http://www.w3.org/2000/01/rdf-schema#label> "Alexis"@en .
<http://dbpedia.org/resource/Alexander_Severus> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander Severus"@en .
<http://dbpedia.org/resource/Alexios_II_Komnenos> <http://www.w3.org/2000/01/rdf-schema#label> "Alexios II Komnenos"@en .
<http://dbpedia.org/resource/Alexander_Jannaeus> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander Jannaeus"@en .
<http://dbpedia.org/resource/Alexei_Petrovich,_Tsarevich_of_Russia> <http://www.w3.org/2000/01/rdf-schema#label> "Alexei Petrovich, Tsarevich of Russia"@en .
<http://dbpedia.org/resource/Alexios_V_Doukas> <http://www.w3.org/2000/01/rdf-schema#label> "Alexios V Doukas"@en .
<http://dbpedia.org/resource/Alexios_I_Komnenos> <http://www.w3.org/2000/01/rdf-schema#label> "Alexios I Komnenos"@en .
<http://dbpedia.org/resource/Alexios_III_Angelos> <http://www.w3.org/2000/01/rdf-schema#label> "Alexios III Angelos"@en .
<http://dbpedia.org/resource/Aleksandr_Isaevich_Solzhenitsyn> <http://www.w3.org/2000/01/rdf-schema#label> "Aleksandr Isaevich Solzhenitsyn"@en .
<http://dbpedia.org/resource/Aleksandr_Solzhenitsyn> <http://www.w3.org/2000/01/rdf-schema#label> "Aleksandr Solzhenitsyn"@en .
<http://dbpedia.org/resource/Andrew_Johnson> <http://www.w3.org/2000/01/rdf-schema#label> "Andrew Johnson"@en .
<http://dbpedia.org/resource/Aberdeen> <http://www.w3.org/2000/01/rdf-schema#label> "Aberdeen"@en .
<http://dbpedia.org/resource/August_23> <http://www.w3.org/2000/01/rdf-schema#label> "August 23"@en .
<http://dbpedia.org/resource/Antipope> <http://www.w3.org/2000/01/rdf-schema#label> "Antipope"@en .
<http://dbpedia.org/resource/Kolmogorov_complexity> <http://www.w3.org/2000/01/rdf-schema#label> "Kolmogorov complexity"@en .
<http://dbpedia.org/resource/Antoine_de_Saint-Exupery> <http://www.w3.org/2000/01/rdf-schema#label> "Antoine de Saint-Exupery"@en .
<http://dbpedia.org/resource/Hymn_to_Proserpine> <http://www.w3.org/2000/01/rdf-schema#label> "Hymn to Proserpine"@en .
<http://dbpedia.org/resource/The_Triumph_of_Time> <http://www.w3.org/2000/01/rdf-schema#label> "The Triumph of Time"@en .
<http://dbpedia.org/resource/August_24> <http://www.w3.org/2000/01/rdf-schema#label> "August 24"@en .
<http://dbpedia.org/resource/Aquaculture> <http://www.w3.org/2000/01/rdf-schema#label> "Aquaculture"@en .
<http://dbpedia.org/resource/Alfred_Ernest_Albert> <http://www.w3.org/2000/01/rdf-schema#label> "Alfred Ernest Albert"@en .
<http://dbpedia.org/resource/Andrew_Jackson> <http://www.w3.org/2000/01/rdf-schema#label> "Andrew Jackson"@en .
<http://dbpedia.org/resource/April_28> <http://www.w3.org/2000/01/rdf-schema#label> "April 28"@en .
<http://dbpedia.org/resource/Alessandro_Algardi> <http://www.w3.org/2000/01/rdf-schema#label> "Alessandro Algardi"@en .
<http://dbpedia.org/resource/Alger_of_Li%C3%A8ge> <http://www.w3.org/2000/01/rdf-schema#label> "Alger of Li\u00E8ge"@en .
<http://dbpedia.org/resource/Alessandro_Allori> <http://www.w3.org/2000/01/rdf-schema#label> "Alessandro Allori"@en .
<http://dbpedia.org/resource/Alfred_the_Great> <http://www.w3.org/2000/01/rdf-schema#label> "Alfred the Great"@en .
<http://dbpedia.org/resource/Aloe> <http://www.w3.org/2000/01/rdf-schema#label> "Aloe"@en .
<http://dbpedia.org/resource/Alured_of_Berkeley> <http://www.w3.org/2000/01/rdf-schema#label> "Alured of Berkeley"@en .
<http://dbpedia.org/resource/Alyattes_II> <http://www.w3.org/2000/01/rdf-schema#label> "Alyattes II"@en .
<http://dbpedia.org/resource/Age_of_consent> <http://www.w3.org/2000/01/rdf-schema#label> "Age of consent"@en .
<http://dbpedia.org/resource/Alypius_of_Antioch> <http://www.w3.org/2000/01/rdf-schema#label> "Alypius of Antioch"@en .
<http://dbpedia.org/resource/Amalasuntha> <http://www.w3.org/2000/01/rdf-schema#label> "Amalasuntha"@en .
<http://dbpedia.org/resource/Amalric_of_Bena> <http://www.w3.org/2000/01/rdf-schema#label> "Amalric of Bena"@en .
<http://dbpedia.org/resource/Almoravid_dynasty> <http://www.w3.org/2000/01/rdf-schema#label> "Almoravid dynasty"@en .
<http://dbpedia.org/resource/Algiers> <http://www.w3.org/2000/01/rdf-schema#label> "Algiers"@en .
<http://dbpedia.org/resource/Alhazen> <http://www.w3.org/2000/01/rdf-schema#label> "Alhazen"@en .
<http://dbpedia.org/resource/Afonso_I_of_Portugal> <http://www.w3.org/2000/01/rdf-schema#label> "Afonso I of Portugal"@en .
<http://dbpedia.org/resource/Afonso_IV_of_Portugal> <http://www.w3.org/2000/01/rdf-schema#label> "Afonso IV of Portugal"@en .
<http://dbpedia.org/resource/Afonso_II_of_Portugal> <http://www.w3.org/2000/01/rdf-schema#label> "Afonso II of Portugal"@en .
<http://dbpedia.org/resource/Alphonso_I_of_Spain> <http://www.w3.org/2000/01/rdf-schema#label> "Alphonso I of Spain"@en .
<http://dbpedia.org/resource/Alfonso_II_of_Asturias> <http://www.w3.org/2000/01/rdf-schema#label> "Alfonso II of Asturias"@en .
<http://dbpedia.org/resource/Analytical_Engine/redirects> <http://www.w3.org/2000/01/rdf-schema#label> "Analytical Engine/redirects"@en .
<http://dbpedia.org/resource/Amara_Sinha> <http://www.w3.org/2000/01/rdf-schema#label> "Amara Sinha"@en .
<http://dbpedia.org/resource/Alphonso_VIII_of_Spain> <http://www.w3.org/2000/01/rdf-schema#label> "Alphonso VIII of Spain"@en .
<http://dbpedia.org/resource/Alfonso_IX_of_Spain> <http://www.w3.org/2000/01/rdf-schema#label> "Alfonso IX of Spain"@en .
<http://dbpedia.org/resource/Afonso_V_of_Portugal> <http://www.w3.org/2000/01/rdf-schema#label> "Afonso V of Portugal"@en .
<http://dbpedia.org/resource/Afonso_III_of_Portugal> <http://www.w3.org/2000/01/rdf-schema#label> "Afonso III of Portugal"@en .
<http://dbpedia.org/resource/Alphonsus_a_Sancta_Maria> <http://www.w3.org/2000/01/rdf-schema#label> "Alphonsus a Sancta Maria"@en .
<http://dbpedia.org/resource/Afonso_VI_of_Portugal> <http://www.w3.org/2000/01/rdf-schema#label> "Afonso VI of Portugal"@en .
<http://dbpedia.org/resource/Alfonso_the_Battler> <http://www.w3.org/2000/01/rdf-schema#label> "Alfonso the Battler"@en .
<http://dbpedia.org/resource/Amasis_I> <http://www.w3.org/2000/01/rdf-schema#label> "Amasis I"@en .
<http://dbpedia.org/resource/Amaryllis> <http://www.w3.org/2000/01/rdf-schema#label> "Amaryllis"@en .
<http://dbpedia.org/resource/Alfonso_III_of_Aragon> <http://www.w3.org/2000/01/rdf-schema#label> "Alfonso III of Aragon"@en .
<http://dbpedia.org/resource/Alfonso_IV_of_Aragon> <http://www.w3.org/2000/01/rdf-schema#label> "Alfonso IV of Aragon"@en .
<http://dbpedia.org/resource/Amasis_II> <http://www.w3.org/2000/01/rdf-schema#label> "Amasis II"@en .
<http://dbpedia.org/resource/Alfonso_XIII_of_Spain> <http://www.w3.org/2000/01/rdf-schema#label> "Alfonso XIII of Spain"@en .
<http://dbpedia.org/resource/Amathus> <http://www.w3.org/2000/01/rdf-schema#label> "Amathus"@en .
<http://dbpedia.org/resource/Alfonso_I> <http://www.w3.org/2000/01/rdf-schema#label> "Alfonso I"@en .
<http://dbpedia.org/resource/Alfonso_V_of_Aragon> <http://www.w3.org/2000/01/rdf-schema#label> "Alfonso V of Aragon"@en .
<http://dbpedia.org/resource/Amati> <http://www.w3.org/2000/01/rdf-schema#label> "Amati"@en .
<http://dbpedia.org/resource/Alfonso_II> <http://www.w3.org/2000/01/rdf-schema#label> "Alfonso II"@en .
<http://dbpedia.org/resource/Alfonso_III> <http://www.w3.org/2000/01/rdf-schema#label> "Alfonso III"@en .
<http://dbpedia.org/resource/Alfonso_IV> <http://www.w3.org/2000/01/rdf-schema#label> "Alfonso IV"@en .
<http://dbpedia.org/resource/Alfonso> <http://www.w3.org/2000/01/rdf-schema#label> "Alfonso"@en .
<http://dbpedia.org/resource/Alfonso_XII_of_Spain> <http://www.w3.org/2000/01/rdf-schema#label> "Alfonso XII of Spain"@en .
<http://dbpedia.org/resource/Ambergris> <http://www.w3.org/2000/01/rdf-schema#label> "Ambergris"@en .
<http://dbpedia.org/resource/Alfonso_VI> <http://www.w3.org/2000/01/rdf-schema#label> "Alfonso VI"@en .
<http://dbpedia.org/resource/Ambiorix> <http://www.w3.org/2000/01/rdf-schema#label> "Ambiorix"@en .
<http://dbpedia.org/resource/Amazons> <http://www.w3.org/2000/01/rdf-schema#label> "Amazons"@en .
<http://dbpedia.org/resource/Alfonso_V> <http://www.w3.org/2000/01/rdf-schema#label> "Alfonso V"@en .
<http://dbpedia.org/resource/Alphonso_VII> <http://www.w3.org/2000/01/rdf-schema#label> "Alphonso VII"@en .
<http://dbpedia.org/resource/Alphonso_VIII> <http://www.w3.org/2000/01/rdf-schema#label> "Alphonso VIII"@en .
<http://dbpedia.org/resource/Alphonso_IX> <http://www.w3.org/2000/01/rdf-schema#label> "Alphonso IX"@en .
<http://dbpedia.org/resource/Alfred_of_Beverley> <http://www.w3.org/2000/01/rdf-schema#label> "Alfred of Beverley"@en .
<http://dbpedia.org/resource/Alphonso_X> <http://www.w3.org/2000/01/rdf-schema#label> "Alphonso X"@en .
<http://dbpedia.org/resource/Alphonso_XI> <http://www.w3.org/2000/01/rdf-schema#label> "Alphonso XI"@en .
<http://dbpedia.org/resource/Alphonso_XII> <http://www.w3.org/2000/01/rdf-schema#label> "Alphonso XII"@en .
<http://dbpedia.org/resource/Alphonso_XIII> <http://www.w3.org/2000/01/rdf-schema#label> "Alphonso XIII"@en .
<http://dbpedia.org/resource/August_Wilhelm_Ambros> <http://www.w3.org/2000/01/rdf-schema#label> "August Wilhelm Ambros"@en .
<http://dbpedia.org/resource/Autpert_Ambrose> <http://www.w3.org/2000/01/rdf-schema#label> "Autpert Ambrose"@en .
<http://dbpedia.org/resource/August_31> <http://www.w3.org/2000/01/rdf-schema#label> "August 31"@en .
<http://dbpedia.org/resource/Ambrose_the_Camaldulian> <http://www.w3.org/2000/01/rdf-schema#label> "Ambrose the Camaldulian"@en .
<http://dbpedia.org/resource/Ambrosians> <http://www.w3.org/2000/01/rdf-schema#label> "Ambrosians"@en .
<http://dbpedia.org/resource/Ambrosiaster> <http://www.w3.org/2000/01/rdf-schema#label> "Ambrosiaster"@en .
<http://dbpedia.org/resource/Abu_Bakr> <http://www.w3.org/2000/01/rdf-schema#label> "Abu Bakr"@en .
<http://dbpedia.org/resource/Ambrosius_Aurelianus> <http://www.w3.org/2000/01/rdf-schema#label> "Ambrosius Aurelianus"@en .
<http://dbpedia.org/resource/Ammonius_Hermiae> <http://www.w3.org/2000/01/rdf-schema#label> "Ammonius Hermiae"@en .
<http://dbpedia.org/resource/April_22> <http://www.w3.org/2000/01/rdf-schema#label> "April 22"@en .
<http://dbpedia.org/resource/Amorites> <http://www.w3.org/2000/01/rdf-schema#label> "Amorites"@en .
<http://dbpedia.org/resource/Ammonius_Saccas> <http://www.w3.org/2000/01/rdf-schema#label> "Ammonius Saccas"@en .
<http://dbpedia.org/resource/Ammon> <http://www.w3.org/2000/01/rdf-schema#label> "Ammon"@en .
<http://dbpedia.org/resource/Book_of_Amos> <http://www.w3.org/2000/01/rdf-schema#label> "Book of Amos"@en .
<http://dbpedia.org/resource/Amphipolis> <http://www.w3.org/2000/01/rdf-schema#label> "Amphipolis"@en .
<http://dbpedia.org/resource/Amyntas_I_of_Macedon> <http://www.w3.org/2000/01/rdf-schema#label> "Amyntas I of Macedon"@en .
<http://dbpedia.org/resource/Anacharsis> <http://www.w3.org/2000/01/rdf-schema#label> "Anacharsis"@en .
<http://dbpedia.org/resource/Anacreon_%28poet%29> <http://www.w3.org/2000/01/rdf-schema#label> "Anacreon (poet)"@en .
<http://dbpedia.org/resource/Amyntas_III_of_Macedon> <http://www.w3.org/2000/01/rdf-schema#label> "Amyntas III of Macedon"@en .
<http://dbpedia.org/resource/Amram> <http://www.w3.org/2000/01/rdf-schema#label> "Amram"@en .
<http://dbpedia.org/resource/Anah> <http://www.w3.org/2000/01/rdf-schema#label> "Anah"@en .
<http://dbpedia.org/resource/Ananda> <http://www.w3.org/2000/01/rdf-schema#label> "Ananda"@en .
<http://dbpedia.org/resource/Anaxarchus> <http://www.w3.org/2000/01/rdf-schema#label> "Anaxarchus"@en .
<http://dbpedia.org/resource/Anastasius_I> <http://www.w3.org/2000/01/rdf-schema#label> "Anastasius I"@en .
<http://dbpedia.org/resource/Anastasius_II> <http://www.w3.org/2000/01/rdf-schema#label> "Anastasius II"@en .
<http://dbpedia.org/resource/Anastasius_III> <http://www.w3.org/2000/01/rdf-schema#label> "Anastasius III"@en .
<http://dbpedia.org/resource/Anastasius_IV> <http://www.w3.org/2000/01/rdf-schema#label> "Anastasius IV"@en .
<http://dbpedia.org/resource/Ancyra_%28genus%29> <http://www.w3.org/2000/01/rdf-schema#label> "Ancyra (genus)"@en .
<http://dbpedia.org/resource/Anaximenes_of_Lampsacus> <http://www.w3.org/2000/01/rdf-schema#label> "Anaximenes of Lampsacus"@en .
<http://dbpedia.org/resource/Anastasius> <http://www.w3.org/2000/01/rdf-schema#label> "Anastasius"@en .
<http://dbpedia.org/resource/Anaxagoras> <http://www.w3.org/2000/01/rdf-schema#label> "Anaxagoras"@en .
<http://dbpedia.org/resource/Anaximenes_of_Miletus> <http://www.w3.org/2000/01/rdf-schema#label> "Anaximenes of Miletus"@en .
<http://dbpedia.org/resource/Alexander_Anderson_%28mathematician%29> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander Anderson (mathematician)"@en .
<http://dbpedia.org/resource/Andocides> <http://www.w3.org/2000/01/rdf-schema#label> "Andocides"@en .
<http://dbpedia.org/resource/Ancus_Marcius> <http://www.w3.org/2000/01/rdf-schema#label> "Ancus Marcius"@en .
<http://dbpedia.org/resource/Andrea_Andreani> <http://www.w3.org/2000/01/rdf-schema#label> "Andrea Andreani"@en .
<http://dbpedia.org/resource/An_Enquiry_Concerning_Human_Understanding> <http://www.w3.org/2000/01/rdf-schema#label> "An Enquiry Concerning Human Understanding"@en .
<http://dbpedia.org/resource/Andaman_Islands> <http://www.w3.org/2000/01/rdf-schema#label> "Andaman Islands"@en .
<http://dbpedia.org/resource/Andr%C3%A9_de_Longjumeau> <http://www.w3.org/2000/01/rdf-schema#label> "Andr\u00E9 de Longjumeau"@en .
<http://dbpedia.org/resource/Amazon_River> <http://www.w3.org/2000/01/rdf-schema#label> "Amazon River"@en .
<http://dbpedia.org/resource/Andronikos_II_Palaiologos> <http://www.w3.org/2000/01/rdf-schema#label> "Andronikos II Palaiologos"@en .
<http://dbpedia.org/resource/Andronikos_III_Palaiologos> <http://www.w3.org/2000/01/rdf-schema#label> "Andronikos III Palaiologos"@en .
<http://dbpedia.org/resource/Andronicus_of_Cyrrhus> <http://www.w3.org/2000/01/rdf-schema#label> "Andronicus of Cyrrhus"@en .
<http://dbpedia.org/resource/Andronicus_of_Rhodes> <http://www.w3.org/2000/01/rdf-schema#label> "Andronicus of Rhodes"@en .
<http://dbpedia.org/resource/Andriscus> <http://www.w3.org/2000/01/rdf-schema#label> "Andriscus"@en .
<http://dbpedia.org/resource/Asteroid_Belt> <http://www.w3.org/2000/01/rdf-schema#label> "Asteroid Belt"@en .
<http://dbpedia.org/resource/Andronikos_I_Komnenos> <http://www.w3.org/2000/01/rdf-schema#label> "Andronikos I Komnenos"@en .
<http://dbpedia.org/resource/ALICE> <http://www.w3.org/2000/01/rdf-schema#label> "ALICE"@en .
<http://dbpedia.org/resource/An_Enquiry_Concerning_Human_Understanding/Text> <http://www.w3.org/2000/01/rdf-schema#label> "An Enquiry Concerning Human Understanding/Text"@en .
<http://dbpedia.org/resource/Andronicus> <http://www.w3.org/2000/01/rdf-schema#label> "Andronicus"@en .
<http://dbpedia.org/resource/Apollo_Program> <http://www.w3.org/2000/01/rdf-schema#label> "Apollo Program"@en .
<http://dbpedia.org/resource/Arthritus> <http://www.w3.org/2000/01/rdf-schema#label> "Arthritus"@en .
<http://dbpedia.org/resource/Andrew_II_of_Hungary> <http://www.w3.org/2000/01/rdf-schema#label> "Andrew II of Hungary"@en .
<http://dbpedia.org/resource/Ammianus_Marcellinus> <http://www.w3.org/2000/01/rdf-schema#label> "Ammianus Marcellinus"@en .
<http://dbpedia.org/resource/Applied_discrete_math> <http://www.w3.org/2000/01/rdf-schema#label> "Applied discrete math"@en .
<http://dbpedia.org/resource/Arthritis> <http://www.w3.org/2000/01/rdf-schema#label> "Arthritis"@en .
<http://dbpedia.org/resource/Apollo_13> <http://www.w3.org/2000/01/rdf-schema#label> "Apollo 13"@en .
<http://dbpedia.org/resource/Apollo_7> <http://www.w3.org/2000/01/rdf-schema#label> "Apollo 7"@en .
<http://dbpedia.org/resource/Alfred> <http://www.w3.org/2000/01/rdf-schema#label> "Alfred"@en .
<http://dbpedia.org/resource/Acetylene> <http://www.w3.org/2000/01/rdf-schema#label> "Acetylene"@en .
<http://dbpedia.org/resource/April_2> <http://www.w3.org/2000/01/rdf-schema#label> "April 2"@en .
<http://dbpedia.org/resource/August_28> <http://www.w3.org/2000/01/rdf-schema#label> "August 28"@en .
<http://dbpedia.org/resource/Apollo_9> <http://www.w3.org/2000/01/rdf-schema#label> "Apollo 9"@en .
<http://dbpedia.org/resource/Athenian_democracy> <http://www.w3.org/2000/01/rdf-schema#label> "Athenian democracy"@en .
<http://dbpedia.org/resource/Arabic_numerals> <http://www.w3.org/2000/01/rdf-schema#label> "Arabic numerals"@en .
<http://dbpedia.org/resource/ABM> <http://www.w3.org/2000/01/rdf-schema#label> "ABM"@en .
<http://dbpedia.org/resource/Apuleius> <http://www.w3.org/2000/01/rdf-schema#label> "Apuleius"@en .
<http://dbpedia.org/resource/Alexander_Selkirk> <http://www.w3.org/2000/01/rdf-schema#label> "Alexander Selkirk"@en .
<http://dbpedia.org/resource/Anti-ballistic_missile> <http://www.w3.org/2000/01/rdf-schema#label> "Anti-ballistic missile"@en .
<http://dbpedia.org/resource/Acre> <http://www.w3.org/2000/01/rdf-schema#label> "Acre"@en .
<http://dbpedia.org/resource/August_29> <http://www.w3.org/2000/01/rdf-schema#label> "August 29"@en .
<http://dbpedia.org/resource/August_30> <http://www.w3.org/2000/01/rdf-schema#label> "August 30"@en .
<http://dbpedia.org/resource/%C3%86gir> <http://www.w3.org/2000/01/rdf-schema#label> "\u00C6gir"@en .
<http://dbpedia.org/resource/April_9> <http://www.w3.org/2000/01/rdf-schema#label> "April 9"@en .
<http://dbpedia.org/resource/ATP> <http://www.w3.org/2000/01/rdf-schema#label> "ATP"@en .
<http://dbpedia.org/resource/ASA> <http://www.w3.org/2000/01/rdf-schema#label> "ASA"@en .
<http://dbpedia.org/resource/Aquinas> <http://www.w3.org/2000/01/rdf-schema#label> "Aquinas"@en .
<http://dbpedia.org/resource/Adenosine_triphosphate> <http://www.w3.org/2000/01/rdf-schema#label> "Adenosine triphosphate"@en .
<http://dbpedia.org/resource/Amide_hydrolysis> <http://www.w3.org/2000/01/rdf-schema#label> "Amide hydrolysis"@en .
<http://dbpedia.org/resource/Actium> <http://www.w3.org/2000/01/rdf-schema#label> "Actium"@en .
<http://dbpedia.org/resource/Antibacterial> <http://www.w3.org/2000/01/rdf-schema#label> "Antibacterial"@en .
<http://dbpedia.org/resource/Antoine_Laurent_Lavoisier> <http://www.w3.org/2000/01/rdf-schema#label> "Antoine Laurent Lavoisier"@en .
<http://dbpedia.org/resource/Amway> <http://www.w3.org/2000/01/rdf-schema#label> "Amway"@en .
<http://dbpedia.org/resource/A_roll> <http://www.w3.org/2000/01/rdf-schema#label> "A roll"@en .
<http://dbpedia.org/resource/Adolph_Wilhelm_Hermann_Kolbe> <http://www.w3.org/2000/01/rdf-schema#label> "Adolph Wilhelm Hermann Kolbe"@en .
<http://dbpedia.org/resource/Arnold_Schwarzenegger> <http://www.w3.org/2000/01/rdf-schema#label> "Arnold Schwarzenegger"@en .
<http://dbpedia.org/resource/April_18> <http://www.w3.org/2000/01/rdf-schema#label> "April 18"@en .
<http://dbpedia.org/resource/April_23> <http://www.w3.org/2000/01/rdf-schema#label> "April 23"@en .
<http://dbpedia.org/resource/Air_Pollution> <http://www.w3.org/2000/01/rdf-schema#label> "Air Pollution"@en .
<http://dbpedia.org/resource/Antarctic-Environmental_Protocol> <http://www.w3.org/2000/01/rdf-schema#label> "Antarctic-Environmental Protocol"@en .
<http://dbpedia.org/resource/Allomorph> <http://www.w3.org/2000/01/rdf-schema#label> "Allomorph"@en .
<http://dbpedia.org/resource/American_bias> <http://www.w3.org/2000/01/rdf-schema#label> "American bias"@en .
<http://dbpedia.org/resource/Antoine_Lavoisier> <http://www.w3.org/2000/01/rdf-schema#label> "Antoine Lavoisier"@en .
<http://dbpedia.org/resource/Amitabh_Bachchan> <http://www.w3.org/2000/01/rdf-schema#label> "Amitabh Bachchan"@en .
<http://dbpedia.org/resource/Affix> <http://www.w3.org/2000/01/rdf-schema#label> "Affix"@en .
<http://dbpedia.org/resource/Allophone> <http://www.w3.org/2000/01/rdf-schema#label> "Allophone"@en .
<http://dbpedia.org/resource/Amazon_river> <http://www.w3.org/2000/01/rdf-schema#label> "Amazon river"@en .
<http://dbpedia.org/resource/Adam_Smith> <http://www.w3.org/2000/01/rdf-schema#label> "Adam Smith"@en .
<http://dbpedia.org/resource/Agathocles_of_Syracuse> <http://www.w3.org/2000/01/rdf-schema#label> "Agathocles of Syracuse"@en .
<http://dbpedia.org/resource/Allegory> <http://www.w3.org/2000/01/rdf-schema#label> "Allegory"@en .
<http://dbpedia.org/resource/Allotropy> <http://www.w3.org/2000/01/rdf-schema#label> "Allotropy"@en .
<http://dbpedia.org/resource/Alternative_medicine> <http://www.w3.org/2000/01/rdf-schema#label> "Alternative medicine"@en .
<http://dbpedia.org/resource/Archimedes> <http://www.w3.org/2000/01/rdf-schema#label> "Archimedes"@en .
<http://dbpedia.org/resource/Economy_of_Alberta> <http://www.w3.org/2000/01/rdf-schema#label> "Economy of Alberta"@en .
<http://dbpedia.org/resource/Ancient_Greeks> <http://www.w3.org/2000/01/rdf-schema#label> "Ancient Greeks"@en .
<http://dbpedia.org/resource/Natural_history_of_Africa> <http://www.w3.org/2000/01/rdf-schema#label> "Natural history of Africa"@en .
<http://dbpedia.org/resource/Antiprism> <http://www.w3.org/2000/01/rdf-schema#label> "Antiprism"@en .
<http://dbpedia.org/resource/Africa/History> <http://www.w3.org/2000/01/rdf-schema#label> "Africa/History"@en .
<http://dbpedia.org/resource/Africa/North_Africa> <http://www.w3.org/2000/01/rdf-schema#label> "Africa/North Africa"@en .
<http://dbpedia.org/resource/Augustin-Louis_Cauchy> <http://www.w3.org/2000/01/rdf-schema#label> "Augustin-Louis Cauchy"@en .
<http://dbpedia.org/resource/Aromatic_compound> <http://www.w3.org/2000/01/rdf-schema#label> "Aromatic compound"@en .
<http://dbpedia.org/resource/Archimedean_solid> <http://www.w3.org/2000/01/rdf-schema#label> "Archimedean solid"@en .
<http://dbpedia.org/resource/Approval_voting> <http://www.w3.org/2000/01/rdf-schema#label> "Approval voting"@en .
<http://dbpedia.org/resource/Arizona_State_University> <http://www.w3.org/2000/01/rdf-schema#label> "Arizona State University"@en .
<http://dbpedia.org/resource/April_14> <http://www.w3.org/2000/01/rdf-schema#label> "April 14"@en .
<http://dbpedia.org/resource/Astoria,_Oregon> <http://www.w3.org/2000/01/rdf-schema#label> "Astoria, Oregon"@en .
<http://dbpedia.org/resource/Amalric> <http://www.w3.org/2000/01/rdf-schema#label> "Amalric"@en .
<http://dbpedia.org/resource/Geography_of_Africa> <http://www.w3.org/2000/01/rdf-schema#label> "Geography of Africa"@en .
<http://dbpedia.org/resource/Alarums_and_Excursions> <http://www.w3.org/2000/01/rdf-schema#label> "Alarums and Excursions"@en .
<http://dbpedia.org/resource/Amalric_I_of_Jerusalem> <http://www.w3.org/2000/01/rdf-schema#label> "Amalric I of Jerusalem"@en .
<http://dbpedia.org/resource/Amalric_II_of_Jerusalem> <http://www.w3.org/2000/01/rdf-schema#label> "Amalric II of Jerusalem"@en .
<http://dbpedia.org/resource/Alfred_Jarry> <http://www.w3.org/2000/01/rdf-schema#label> "Alfred Jarry"@en .
<http://dbpedia.org/resource/Anthemius_of_Tralles> <http://www.w3.org/2000/01/rdf-schema#label> "Anthemius of Tralles"@en .
<http://dbpedia.org/resource/Albigenses> <http://www.w3.org/2000/01/rdf-schema#label> "Albigenses"@en .
<http://dbpedia.org/resource/Adhemar_of_Le_Puy> <http://www.w3.org/2000/01/rdf-schema#label> "Adhemar of Le Puy"@en .
<http://dbpedia.org/resource/Adhemar_de_Chabannes> <http://www.w3.org/2000/01/rdf-schema#label> "Adhemar de Chabannes"@en .
<http://dbpedia.org/resource/Ambroise> <http://www.w3.org/2000/01/rdf-schema#label> "Ambroise"@en .
<http://dbpedia.org/resource/Alfonso_Jordan> <http://www.w3.org/2000/01/rdf-schema#label> "Alfonso Jordan"@en .
<http://dbpedia.org/resource/Absalon> <http://www.w3.org/2000/01/rdf-schema#label> "Absalon"@en .
<http://dbpedia.org/resource/Alfonso,_Count_of_Poitiers> <http://www.w3.org/2000/01/rdf-schema#label> "Alfonso, Count of Poitiers"@en .
<http://dbpedia.org/resource/Autoerotic_asphyxiation> <http://www.w3.org/2000/01/rdf-schema#label> "Autoerotic asphyxiation"@en .
<http://dbpedia.org/resource/Ban_on_assault_rifles> <http://www.w3.org/2000/01/rdf-schema#label> "Ban on assault rifles"@en .
<http://dbpedia.org/resource/Alexius> <http://www.w3.org/2000/01/rdf-schema#label> "Alexius"@en .
<http://dbpedia.org/resource/ASCII_art> <http://www.w3.org/2000/01/rdf-schema#label> "ASCII art"@en .
<http://dbpedia.org/resource/Africa_Alphabet> <http://www.w3.org/2000/01/rdf-schema#label> "Africa Alphabet"@en .
<http://dbpedia.org/resource/American_English> <http://www.w3.org/2000/01/rdf-schema#label> "American English"@en .
<http://dbpedia.org/resource/Acquire> <http://www.w3.org/2000/01/rdf-schema#label> "Acquire"@en .
<http://dbpedia.org/resource/Art_Deco> <http://www.w3.org/2000/01/rdf-schema#label> "Art Deco"@en .
<http://dbpedia.org/resource/American_Airlines_flight_77> <http://www.w3.org/2000/01/rdf-schema#label> "American Airlines flight 77"@en .
<http://dbpedia.org/resource/American_Airlines_flight_11> <http://www.w3.org/2000/01/rdf-schema#label> "American Airlines flight 11"@en .
<http://dbpedia.org/resource/Australian_English> <http://www.w3.org/2000/01/rdf-schema#label> "Australian English"@en .
<http://dbpedia.org/resource/Astronomical_aberration> <http://www.w3.org/2000/01/rdf-schema#label> "Astronomical aberration"@en .
<http://dbpedia.org/resource/Abzyme> <http://www.w3.org/2000/01/rdf-schema#label> "Abzyme"@en .
<http://dbpedia.org/resource/Ambush> <http://www.w3.org/2000/01/rdf-schema#label> "Ambush"@en .
<http://dbpedia.org/resource/Adaptive_radiation> <http://www.w3.org/2000/01/rdf-schema#label> "Adaptive radiation"@en .
<http://dbpedia.org/resource/Agarose_gel_electrophoresis> <http://www.w3.org/2000/01/rdf-schema#label> "Agarose gel electrophoresis"@en .
<http://dbpedia.org/resource/Allele> <http://www.w3.org/2000/01/rdf-schema#label> "Allele"@en .
<http://dbpedia.org/resource/Annealing> <http://www.w3.org/2000/01/rdf-schema#label> "Annealing"@en .
<http://dbpedia.org/resource/Albert_Spalding> <http://www.w3.org/2000/01/rdf-schema#label> "Albert Spalding"@en .
<http://dbpedia.org/resource/Ampicillin> <http://www.w3.org/2000/01/rdf-schema#label> "Ampicillin"@en .
<http://dbpedia.org/resource/Antigen> <http://www.w3.org/2000/01/rdf-schema#label> "Antigen"@en .
<http://dbpedia.org/resource/Antwerp_%28disambiguation%29> <http://www.w3.org/2000/01/rdf-schema#label> "Antwerp (disambiguation)"@en .
<http://dbpedia.org/resource/Antibiotic_resistance> <http://www.w3.org/2000/01/rdf-schema#label> "Antibiotic resistance"@en .
<http://dbpedia.org/resource/Autosome> <http://www.w3.org/2000/01/rdf-schema#label> "Autosome"@en .
<http://dbpedia.org/resource/American_Airlines_Flight_77> <http://www.w3.org/2000/01/rdf-schema#label> "American Airlines Flight 77"@en .
<http://dbpedia.org/resource/Aquila> <http://www.w3.org/2000/01/rdf-schema#label> "Aquila"@en .