-
Notifications
You must be signed in to change notification settings - Fork 52
/
YAGO15K_SameAsLink.txt
11199 lines (11199 loc) · 820 KB
/
YAGO15K_SameAsLink.txt
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
/m/0m0nq <SameAs> <http://yago-knowledge.org/resource/Mickey_Rooney> .
/m/0ddd0gc <SameAs> <http://yago-knowledge.org/resource/Downton_Abbey> .
/m/0g28b1 <SameAs> <http://yago-knowledge.org/resource/Victor_Miller_(writer)> .
/m/04g73n <SameAs> <http://yago-knowledge.org/resource/Chicken_Little_(2005_film)> .
/m/010r6f <SameAs> <http://yago-knowledge.org/resource/Bellevue,_Washington> .
/m/01l63 <SameAs> <http://yago-knowledge.org/resource/Belfast> .
/m/0gdhhy <SameAs> <http://yago-knowledge.org/resource/Mark_Damon> .
/m/02tqkf <SameAs> <http://yago-knowledge.org/resource/Patrick_Warburton> .
/m/03kwtb <SameAs> <http://yago-knowledge.org/resource/David_A._Stewart> .
/m/02grjf <SameAs> <http://yago-knowledge.org/resource/Calvin_College> .
/m/01bl7g <SameAs> <http://yago-knowledge.org/resource/Shanghai_Knights> .
/m/01z452 <SameAs> <http://yago-knowledge.org/resource/Being_John_Malkovich> .
/m/09nzn6 <SameAs> <http://yago-knowledge.org/resource/Enosis_Neon_Paralimni_FC> .
/m/0kvgnq <SameAs> <http://yago-knowledge.org/resource/The_Unbearable_Lightness_of_Being_(film)> .
/m/0mdqp <SameAs> <http://yago-knowledge.org/resource/Ben_Stiller> .
/m/02d44q <SameAs> <http://yago-knowledge.org/resource/In_America_(film)> .
/m/07c98 <SameAs> <http://yago-knowledge.org/resource/Tamil_Nadu> .
/m/018db8 <SameAs> <http://yago-knowledge.org/resource/Joaquin_Phoenix> .
/m/032yps <SameAs> <http://yago-knowledge.org/resource/Milwaukee_Admirals> .
/m/0rw2x <SameAs> <http://yago-knowledge.org/resource/Albany,_Georgia> .
/m/04ggbrk <SameAs> <http://yago-knowledge.org/resource/MeTV> .
/m/011xg5 <SameAs> <http://yago-knowledge.org/resource/A.I._Artificial_Intelligence> .
/m/075wq <SameAs> <http://yago-knowledge.org/resource/Saint_Patrick> .
/m/015dcj <SameAs> <http://yago-knowledge.org/resource/Rock_Hudson> .
/m/04t061 <SameAs> <http://yago-knowledge.org/resource/Philips_Records> .
/m/0vkl2 <SameAs> <http://yago-knowledge.org/resource/SOAS,_University_of_London> .
/m/02y7t7 <SameAs> <http://yago-knowledge.org/resource/Sinclair_Broadcast_Group> .
/m/04wtx1 <SameAs> <http://yago-knowledge.org/resource/Megan_McTavish> .
/m/013l6l <SameAs> <http://yago-knowledge.org/resource/Sioux_Falls,_South_Dakota> .
/m/0qzhw <SameAs> <http://yago-knowledge.org/resource/Eureka,_California> .
/m/04v3q <SameAs> <http://yago-knowledge.org/resource/Malta> .
/m/0309jm <SameAs> <http://yago-knowledge.org/resource/Dave_Foley> .
/m/0r5lz <SameAs> <http://yago-knowledge.org/resource/San_Luis_Obispo,_California> .
/m/05m0h <SameAs> <http://yago-knowledge.org/resource/Oliver_Cromwell> .
/m/02j9z <SameAs> <http://yago-knowledge.org/resource/Europe> .
/m/02tgz4 <SameAs> <http://yago-knowledge.org/resource/Mr._Deeds> .
/m/0660b9b <SameAs> <http://yago-knowledge.org/resource/The_Men_Who_Stare_at_Goats_(film)> .
/m/013m43 <SameAs> <http://yago-knowledge.org/resource/Garland,_Texas> .
/m/0_9l_ <SameAs> <http://yago-knowledge.org/resource/Howards_End_(film)> .
/m/0llcx <SameAs> <http://yago-knowledge.org/resource/Witness_(1985_film)> .
/m/07c9s <SameAs> <http://yago-knowledge.org/resource/Tamil_language> .
/m/02773nt <SameAs> <http://yago-knowledge.org/resource/Robert_Carlock> .
/m/059j1m <SameAs> <http://yago-knowledge.org/resource/David_Koechner> .
/m/06rq1k <SameAs> <http://yago-knowledge.org/resource/Happy_Madison_Productions> .
/m/0ydpd <SameAs> <http://yago-knowledge.org/resource/Asheville,_North_Carolina> .
/m/0ft18 <SameAs> <http://yago-knowledge.org/resource/Casablanca_(film)> .
/m/0ty_b <SameAs> <http://yago-knowledge.org/resource/Beverly,_Massachusetts> .
/m/02lgj6 <SameAs> <http://yago-knowledge.org/resource/Dan_Grimaldi> .
/m/03hzt <SameAs> <http://yago-knowledge.org/resource/The_Holocaust> .
/m/018p4y <SameAs> <http://yago-knowledge.org/resource/Pierce_Brosnan> .
/m/02_nsc <SameAs> <http://yago-knowledge.org/resource/Days_of_Thunder> .
/m/01g0p5 <SameAs> <http://yago-knowledge.org/resource/Royal_Academy_of_Music> .
/m/07db6x <SameAs> <http://yago-knowledge.org/resource/Nunnally_Johnson> .
/m/0306ds <SameAs> <http://yago-knowledge.org/resource/Lisa_Gay_Hamilton> .
/m/02rtlp5 <SameAs> <http://yago-knowledge.org/resource/Eastern_North_Carolina> .
/m/0dplh <SameAs> <http://yago-knowledge.org/resource/University_College_London> .
/m/0m_v0 <SameAs> <http://yago-knowledge.org/resource/T_Bone_Burnett> .
/m/098s2w <SameAs> <http://yago-knowledge.org/resource/Girl,_Interrupted_(film)> .
/m/0187x8 <SameAs> <http://yago-knowledge.org/resource/Muse_(band)> .
/m/06zn1c <SameAs> <http://yago-knowledge.org/resource/The_Pirate_Movie> .
/m/04fjzv <SameAs> <http://yago-knowledge.org/resource/The_Shining_(film)> .
/m/018mlg <SameAs> <http://yago-knowledge.org/resource/Holy_Cross_Cemetery,_Culver_City> .
/m/01s7z0 <SameAs> <http://yago-knowledge.org/resource/Vince_McMahon> .
/m/02qdymm <SameAs> <http://yago-knowledge.org/resource/Melville_Shavelson> .
/m/01gwck <SameAs> <http://yago-knowledge.org/resource/Portland_State_University> .
/m/06_6j3 <SameAs> <http://yago-knowledge.org/resource/Vic_Mignogna> .
/m/07k2p6 <SameAs> <http://yago-knowledge.org/resource/Holland_Taylor> .
/m/0t_07 <SameAs> <http://yago-knowledge.org/resource/Concord,_Massachusetts> .
/m/0ynfz <SameAs> <http://yago-knowledge.org/resource/Fargo,_North_Dakota> .
/m/08_vwq <SameAs> <http://yago-knowledge.org/resource/Tony_Award_for_Best_Actor_in_a_Musical> .
/m/04fv0k <SameAs> <http://yago-knowledge.org/resource/Marriott_International> .
/m/01zhs3 <SameAs> <http://yago-knowledge.org/resource/Ipswich_Town_F.C.> .
/m/0gr51 <SameAs> <http://yago-knowledge.org/resource/Academy_Award_for_Best_Original_Screenplay> .
/m/0p1l2 <SameAs> <http://yago-knowledge.org/resource/John_F._Kennedy_International_Airport> .
/m/02x_h0 <SameAs> <http://yago-knowledge.org/resource/Jermaine_Dupri> .
/m/01wx756 <SameAs> <http://yago-knowledge.org/resource/Waddy_Wachtel> .
/m/0jnkr <SameAs> <http://yago-knowledge.org/resource/Tampa_Bay_Lightning> .
/m/055z7 <SameAs> <http://yago-knowledge.org/resource/Mattel> .
/m/0nv2x <SameAs> <http://yago-knowledge.org/resource/Peoria_County,_Illinois> .
/m/01p4vl <SameAs> <http://yago-knowledge.org/resource/Ashton_Kutcher> .
/m/084qpk <SameAs> <http://yago-knowledge.org/resource/Grindhouse_(film)> .
/m/097zcz <SameAs> <http://yago-knowledge.org/resource/A_Streetcar_Named_Desire_(1951_film)> .
/m/019tfm <SameAs> <http://yago-knowledge.org/resource/Northwestern_State_University> .
/m/02ryyk <SameAs> <http://yago-knowledge.org/resource/Republic_of_Ireland_national_football_team> .
/m/0fthdk <SameAs> <http://yago-knowledge.org/resource/Dakota_Fanning> .
/m/05jm7 <SameAs> <http://yago-knowledge.org/resource/Neil_Gaiman> .
/m/07w3r <SameAs> <http://yago-knowledge.org/resource/University_of_Tulsa> .
/m/0bwx3 <SameAs> <http://yago-knowledge.org/resource/Henry_David_Thoreau> .
/m/05d7rk <SameAs> <http://yago-knowledge.org/resource/Saeed_Jaffrey> .
/m/09r94m <SameAs> <http://yago-knowledge.org/resource/United_93_(film)> .
/m/0cxbth <SameAs> <http://yago-knowledge.org/resource/Valenciennes_FC> .
/m/02dpl9 <SameAs> <http://yago-knowledge.org/resource/The_City_of_Lost_Children> .
/m/01s7zw <SameAs> <http://yago-knowledge.org/resource/Bill_Paxton> .
/m/01zzy3 <SameAs> <http://yago-knowledge.org/resource/University_of_Jena> .
/m/03mqj_ <SameAs> <http://yago-knowledge.org/resource/FC_Rubin_Kazan> .
/m/0vqcq <SameAs> <http://yago-knowledge.org/resource/Port_Huron,_Michigan> .
/m/0b_yz <SameAs> <http://yago-knowledge.org/resource/Reading,_Berkshire> .
/m/0qpjt <SameAs> <http://yago-knowledge.org/resource/Chandler,_Arizona> .
/m/01hhvg <SameAs> <http://yago-knowledge.org/resource/University_of_California,_Riverside> .
/m/0137hn <SameAs> <http://yago-knowledge.org/resource/Robin_Gibb> .
/m/03d8njj <SameAs> <http://yago-knowledge.org/resource/Satish_Kaushik> .
/m/02l0xc <SameAs> <http://yago-knowledge.org/resource/Don_Ameche> .
/m/0bxxzb <SameAs> <http://yago-knowledge.org/resource/I_Spy_(film)> .
/m/0cwy47 <SameAs> <http://yago-knowledge.org/resource/Cleopatra_(1963_film)> .
/m/0bvzp <SameAs> <http://yago-knowledge.org/resource/Leonard_Bernstein> .
/m/034qt_ <SameAs> <http://yago-knowledge.org/resource/Stephen_Goosson> .
/m/017c87 <SameAs> <http://yago-knowledge.org/resource/Darren_Aronofsky> .
/m/048xh <SameAs> <http://yago-knowledge.org/resource/Kraftwerk> .
/m/01rlzn <SameAs> <http://yago-knowledge.org/resource/Leicester_City_F.C.> .
/m/013nky <SameAs> <http://yago-knowledge.org/resource/King's_College,_Cambridge> .
/m/01j7pt <SameAs> <http://yago-knowledge.org/resource/Comedy_Central> .
/m/0bd2n4 <SameAs> <http://yago-knowledge.org/resource/Dan_Stevens> .
/m/02ndy4 <SameAs> <http://yago-knowledge.org/resource/A_League_of_Their_Own> .
/m/01qdjm <SameAs> <http://yago-knowledge.org/resource/Wayne_Shorter> .
/m/0162c8 <SameAs> <http://yago-knowledge.org/resource/Brett_Ratner> .
/m/06wxw <SameAs> <http://yago-knowledge.org/resource/St._Louis> .
/m/083pr <SameAs> <http://yago-knowledge.org/resource/William_Howard_Taft> .
/m/0fg04 <SameAs> <http://yago-knowledge.org/resource/Sleepy_Hollow_(film)> .
/m/0sv6n <SameAs> <http://yago-knowledge.org/resource/Burlington,_Iowa> .
/m/02b153 <SameAs> <http://yago-knowledge.org/resource/Darlington_F.C.> .
/m/013m4v <SameAs> <http://yago-knowledge.org/resource/Plano,_Texas> .
/m/05r_x5 <SameAs> <http://yago-knowledge.org/resource/Karlsruher_SC> .
/m/054lpb6 <SameAs> <http://yago-knowledge.org/resource/Relativity_Media> .
/m/02t_zq <SameAs> <http://yago-knowledge.org/resource/Louis_Gossett_Jr.> .
/m/03yf4d <SameAs> <http://yago-knowledge.org/resource/Butch_Hartman> .
/m/02g40r <SameAs> <http://yago-knowledge.org/resource/Atticus_Ross> .
/m/02pp_q_ <SameAs> <http://yago-knowledge.org/resource/Jerry_Belson> .
/m/0jgj7 <SameAs> <http://yago-knowledge.org/resource/Brevard_County,_Florida> .
/m/0fvzg <SameAs> <http://yago-knowledge.org/resource/Oklahoma_City> .
/m/0210f1 <SameAs> <http://yago-knowledge.org/resource/Connie_Willis> .
/m/0bvz6 <SameAs> <http://yago-knowledge.org/resource/East_India_Company> .
/m/0272_vz <SameAs> <http://yago-knowledge.org/resource/Mamma_Mia!_(film)> .
/m/0fc1_ <SameAs> <http://yago-knowledge.org/resource/Madison_County,_New_York> .
/m/01rlz4 <SameAs> <http://yago-knowledge.org/resource/Bolton_Wanderers_F.C.> .
/m/0cm5m <SameAs> <http://yago-knowledge.org/resource/Heidelberg> .
/m/083p7 <SameAs> <http://yago-knowledge.org/resource/William_McKinley> .
/m/01z9z1 <SameAs> <http://yago-knowledge.org/resource/Whanganui> .
/m/01rmjw <SameAs> <http://yago-knowledge.org/resource/Lambeth> .
/m/056878 <SameAs> <http://yago-knowledge.org/resource/47th_Annual_Grammy_Awards> .
/m/01w724 <SameAs> <http://yago-knowledge.org/resource/Billy_Preston> .
/m/026fd <SameAs> <http://yago-knowledge.org/resource/David_Cronenberg> .
/m/04qr6d <SameAs> <http://yago-knowledge.org/resource/Vishal_Bhardwaj> .
/m/0828jw <SameAs> <http://yago-knowledge.org/resource/Lost_(TV_series)> .
/m/06gg5c <SameAs> <http://yago-knowledge.org/resource/Laxmikant–Pyarelal> .
/m/0hkqn <SameAs> <http://yago-knowledge.org/resource/Lockheed_Martin> .
/m/03f7nt <SameAs> <http://yago-knowledge.org/resource/Collateral_(film)> .
/m/02qhlm <SameAs> <http://yago-knowledge.org/resource/Portsmouth_F.C.> .
/m/0465_ <SameAs> <http://yago-knowledge.org/resource/John_Keats> .
/m/026ps1 <SameAs> <http://yago-knowledge.org/resource/Diana_Krall> .
/m/02y_lrp <SameAs> <http://yago-knowledge.org/resource/The_Love_Guru> .
/m/07f0tw <SameAs> <http://yago-knowledge.org/resource/Waheeda_Rehman> .
/m/0114m0 <SameAs> <http://yago-knowledge.org/resource/La_Crosse,_Wisconsin> .
/m/02nwxc <SameAs> <http://yago-knowledge.org/resource/Lili_Taylor> .
/m/0m93 <SameAs> <http://yago-knowledge.org/resource/Avicenna> .
/m/0f2rq <SameAs> <http://yago-knowledge.org/resource/Dallas> .
/m/07sb1 <SameAs> <http://yago-knowledge.org/resource/Tartu> .
/m/04mx8h4 <SameAs> <http://yago-knowledge.org/resource/The_Penguins_of_Madagascar> .
/m/02vzpb <SameAs> <http://yago-knowledge.org/resource/13_Going_on_30> .
/m/04vrxh <SameAs> <http://yago-knowledge.org/resource/Chad_Hugo> .
/m/078lk <SameAs> <http://yago-knowledge.org/resource/Sardinia> .
/m/086xm <SameAs> <http://yago-knowledge.org/resource/Williams_College> .
/m/09306z <SameAs> <http://yago-knowledge.org/resource/58th_Academy_Awards> .
/m/0d608 <SameAs> <http://yago-knowledge.org/resource/Dan_Aykroyd> .
/m/08vxk5 <SameAs> <http://yago-knowledge.org/resource/Jyothika> .
/m/07xpm <SameAs> <http://yago-knowledge.org/resource/University_of_Canterbury> .
/m/0vh3 <SameAs> <http://yago-knowledge.org/resource/Australian_Capital_Territory> .
/m/0n2q0 <SameAs> <http://yago-knowledge.org/resource/Cuyahoga_County,_Ohio> .
/m/0dr5y <SameAs> <http://yago-knowledge.org/resource/John_Carpenter> .
/m/07s3vqk <SameAs> <http://yago-knowledge.org/resource/Ray_Charles> .
/m/0l2rj <SameAs> <http://yago-knowledge.org/resource/San_Diego_County,_California> .
/m/04s9n <SameAs> <http://yago-knowledge.org/resource/Muhammad_in_Islam> .
/m/0n5c9 <SameAs> <http://yago-knowledge.org/resource/Morris_County,_New_Jersey> .
/m/06p0s1 <SameAs> <http://yago-knowledge.org/resource/Douglas_Slocombe> .
/m/070yzk <SameAs> <http://yago-knowledge.org/resource/Justin_Theroux> .
/m/05zlld0 <SameAs> <http://yago-knowledge.org/resource/Transformers_(film)> .
/m/05m7zg <SameAs> <http://yago-knowledge.org/resource/David_Tennant> .
/m/0hkq4 <SameAs> <http://yago-knowledge.org/resource/County_Kilkenny> .
/m/04sntd <SameAs> <http://yago-knowledge.org/resource/The_Jackal_(1997_film)> .
/m/0h584v <SameAs> <http://yago-knowledge.org/resource/Elizabeth_Sarnoff> .
/m/03pzf <SameAs> <http://yago-knowledge.org/resource/Hamilton,_Ontario> .
/m/0ljl8 <SameAs> <http://yago-knowledge.org/resource/American_Kennel_Club> .
/m/0g9fm <SameAs> <http://yago-knowledge.org/resource/Chatham,_Kent> .
/m/0gppg <SameAs> <http://yago-knowledge.org/resource/Anne_McCaffrey> .
/m/0f2r6 <SameAs> <http://yago-knowledge.org/resource/Salt_Lake_City> .
/m/0vhm <SameAs> <http://yago-knowledge.org/resource/Animaniacs> .
/m/0d9jr <SameAs> <http://yago-knowledge.org/resource/Seattle> .
/m/04dqdk <SameAs> <http://yago-knowledge.org/resource/Jean-Jacques_Goldman> .
/m/066l3y <SameAs> <http://yago-knowledge.org/resource/Monica_Rial> .
/m/01c58j <SameAs> <http://yago-knowledge.org/resource/Bob_Clampett> .
/m/01kkx2 <SameAs> <http://yago-knowledge.org/resource/Carroll_O'Connor> .
/m/0jt90f5 <SameAs> <http://yago-knowledge.org/resource/Stephen_King> .
/m/09vzz <SameAs> <http://yago-knowledge.org/resource/University_of_Glasgow> .
/m/04cf09 <SameAs> <http://yago-knowledge.org/resource/Chris_Noth> .
/m/0cms7f <SameAs> <http://yago-knowledge.org/resource/Oscar_Nunez> .
/m/01_gv <SameAs> <http://yago-knowledge.org/resource/A.C._ChievoVerona> .
/m/08s0m7 <SameAs> <http://yago-knowledge.org/resource/Sneha_(actress)> .
/m/03f22dp <SameAs> <http://yago-knowledge.org/resource/Ashok_Kumar> .
/m/03jjzf <SameAs> <http://yago-knowledge.org/resource/Jennifer_Tilly> .
/m/0vfs8 <SameAs> <http://yago-knowledge.org/resource/Muskegon,_Michigan> .
/m/0lbl6 <SameAs> <http://yago-knowledge.org/resource/Hubei> .
/m/03hl6lc <SameAs> <http://yago-knowledge.org/resource/Writers_Guild_of_America_Award_for_Best_Original_Screenplay> .
/m/0d234 <SameAs> <http://yago-knowledge.org/resource/Corvallis,_Oregon> .
/m/06rny <SameAs> <http://yago-knowledge.org/resource/San_Francisco_49ers> .
/m/03wh8kl <SameAs> <http://yago-knowledge.org/resource/Peter_Casey_(screenwriter)> .
/m/01c0h6 <SameAs> <http://yago-knowledge.org/resource/Jharkhand> .
/m/0p9qb <SameAs> <http://yago-knowledge.org/resource/Rex_Harrison> .
/m/03f6fl0 <SameAs> <http://yago-knowledge.org/resource/Ben_Folds> .
/m/03s6l2 <SameAs> <http://yago-knowledge.org/resource/Confessions_of_a_Dangerous_Mind> .
/m/02lk95 <SameAs> <http://yago-knowledge.org/resource/Tim_McGraw> .
/m/079vf <SameAs> <http://yago-knowledge.org/resource/Stan_Lee> .
/m/016kjs <SameAs> <http://yago-knowledge.org/resource/Lil_Wayne> .
/m/0fsv2 <SameAs> <http://yago-knowledge.org/resource/Flagstaff,_Arizona> .
/m/016wvy <SameAs> <http://yago-knowledge.org/resource/John_Cale> .
/m/01fl3 <SameAs> <http://yago-knowledge.org/resource/The_Beach_Boys> .
/m/03j367r <SameAs> <http://yago-knowledge.org/resource/Anil_Kapoor> .
/m/057__d <SameAs> <http://yago-knowledge.org/resource/The_Legend_of_Bagger_Vance> .
/m/0kvsb <SameAs> <http://yago-knowledge.org/resource/Mira_Nair> .
/m/01j2xj <SameAs> <http://yago-knowledge.org/resource/Sam_Mendes> .
/m/033g4d <SameAs> <http://yago-knowledge.org/resource/Lethal_Weapon_4> .
/m/02stbw <SameAs> <http://yago-knowledge.org/resource/Best_in_Show_(film)> .
/m/0bnzd <SameAs> <http://yago-knowledge.org/resource/In_the_Bedroom> .
/m/01hpf6 <SameAs> <http://yago-knowledge.org/resource/SNK> .
/m/0223bl <SameAs> <http://yago-knowledge.org/resource/Steve_Parish_(businessman)> .
/m/0htww <SameAs> <http://yago-knowledge.org/resource/The_Caine_Mutiny_(film)> .
/m/0f1pyf <SameAs> <http://yago-knowledge.org/resource/Keith_Andrews_(footballer)> .
/m/02_06s <SameAs> <http://yago-knowledge.org/resource/You_Can_Count_On_Me> .
/m/027ht3n <SameAs> <http://yago-knowledge.org/resource/Michelle_Dockery> .
/m/03h40_7 <SameAs> <http://yago-knowledge.org/resource/Jonathan_Glickman> .
/m/02s838 <SameAs> <http://yago-knowledge.org/resource/Dorchester,_Boston> .
/m/0gqrb <SameAs> <http://yago-knowledge.org/resource/Yul_Brynner> .
/m/0136jw <SameAs> <http://yago-knowledge.org/resource/Danbury,_Connecticut> .
/m/0lhql <SameAs> <http://yago-knowledge.org/resource/St._Petersburg,_Florida> .
/m/0164nb <SameAs> <http://yago-knowledge.org/resource/David_Hasselhoff> .
/m/01zkxv <SameAs> <http://yago-knowledge.org/resource/Charles_Stross> .
/m/0mb5x <SameAs> <http://yago-knowledge.org/resource/Harold_Pinter> .
/m/04kqk <SameAs> <http://yago-knowledge.org/resource/LucasArts> .
/m/07lly <SameAs> <http://yago-knowledge.org/resource/Truro> .
/m/02js9p <SameAs> <http://yago-knowledge.org/resource/Mary_McDonnell> .
/m/0rgxp <SameAs> <http://yago-knowledge.org/resource/Wilmington,_Delaware> .
/m/04yc76 <SameAs> <http://yago-knowledge.org/resource/Wedding_Crashers> .
/m/011zd3 <SameAs> <http://yago-knowledge.org/resource/Lucy_Liu> .
/m/0lsw9 <SameAs> <http://yago-knowledge.org/resource/John_Zorn> .
/m/01k0xy <SameAs> <http://yago-knowledge.org/resource/American_Wedding> .
/m/016kkx <SameAs> <http://yago-knowledge.org/resource/James_Garner> .
/m/0gkz15s <SameAs> <http://yago-knowledge.org/resource/The_Hunger_Games_(film)> .
/m/05drr9 <SameAs> <http://yago-knowledge.org/resource/Seth_Meyers> .
/m/02h98sm <SameAs> <http://yago-knowledge.org/resource/Kenosha,_Wisconsin> .
/m/040_9 <SameAs> <http://yago-knowledge.org/resource/Joseph_Conrad> .
/m/0v0s <SameAs> <http://yago-knowledge.org/resource/Australian_English> .
/m/06lc85 <SameAs> <http://yago-knowledge.org/resource/Anorthosis_Famagusta_FC> .
/m/0c_j5d <SameAs> <http://yago-knowledge.org/resource/Marvel_Entertainment> .
/m/01zfrt <SameAs> <http://yago-knowledge.org/resource/Bolton> .
/m/04dyqk <SameAs> <http://yago-knowledge.org/resource/Bob_Clark> .
/m/01nrz4 <SameAs> <http://yago-knowledge.org/resource/James_Hetfield> .
/m/02qnbs <SameAs> <http://yago-knowledge.org/resource/Gerry_Conway> .
/m/03xnq9_ <SameAs> <http://yago-knowledge.org/resource/Emily_Osment> .
/m/08z39v <SameAs> <http://yago-knowledge.org/resource/David_Watkin_(cinematographer)> .
/m/011lvx <SameAs> <http://yago-knowledge.org/resource/Laurie_Anderson> .
/m/01gjd0 <SameAs> <http://yago-knowledge.org/resource/First_Indochina_War> .
/m/07tlg <SameAs> <http://yago-knowledge.org/resource/Peterhouse,_Cambridge> .
/m/01m7f5r <SameAs> <http://yago-knowledge.org/resource/Edward_Shearmur> .
/m/0dznvw <SameAs> <http://yago-knowledge.org/resource/23rd_Academy_Awards> .
/m/01_2n <SameAs> <http://yago-knowledge.org/resource/Coronation_Street> .
/m/01wg3q <SameAs> <http://yago-knowledge.org/resource/Allan_Holdsworth> .
/m/06jnv <SameAs> <http://yago-knowledge.org/resource/Rhodesia> .
/m/0chgzm <SameAs> <http://yago-knowledge.org/resource/Melbourne> .
/m/0mww2 <SameAs> <http://yago-knowledge.org/resource/Centre_County,_Pennsylvania> .
/m/03xkps <SameAs> <http://yago-knowledge.org/resource/Beau_Bridges> .
/m/02yj7w <SameAs> <http://yago-knowledge.org/resource/Peter_Krause> .
/m/040_t <SameAs> <http://yago-knowledge.org/resource/John_Updike> .
/m/0p07l <SameAs> <http://yago-knowledge.org/resource/El_Paso_County,_Colorado> .
/m/01900g <SameAs> <http://yago-knowledge.org/resource/Chris_Tucker> .
/m/0f3m1 <SameAs> <http://yago-knowledge.org/resource/The_Empire_Strikes_Back> .
/m/06nsb9 <SameAs> <http://yago-knowledge.org/resource/John_Fiedler> .
/m/0f1_p <SameAs> <http://yago-knowledge.org/resource/Gujarat> .
/m/07tj4c <SameAs> <http://yago-knowledge.org/resource/Emma_(1996_theatrical_film)> .
/m/0241wg <SameAs> <http://yago-knowledge.org/resource/Kajol> .
/m/06kkgw <SameAs> <http://yago-knowledge.org/resource/James_Wong_Howe> .
/m/017rbx <SameAs> <http://yago-knowledge.org/resource/Royal_College_of_Music> .
/m/01_k1z <SameAs> <http://yago-knowledge.org/resource/George_A._Romero> .
/m/01nzz8 <SameAs> <http://yago-knowledge.org/resource/John_Ritter> .
/m/034rd <SameAs> <http://yago-knowledge.org/resource/George_Washington> .
/m/02wycg2 <SameAs> <http://yago-knowledge.org/resource/Danny_McBride> .
/m/0579tg2 <SameAs> <http://yago-knowledge.org/resource/Paul_S._Fox> .
/m/025b5y <SameAs> <http://yago-knowledge.org/resource/Katherine_Heigl> .
/m/025rcc <SameAs> <http://yago-knowledge.org/resource/University_of_Portland> .
/m/01wmjkb <SameAs> <http://yago-knowledge.org/resource/Steven_Tyler> .
/m/080nwsb <SameAs> <http://yago-knowledge.org/resource/Footloose_(2011_film)> .
/m/03dhbp <SameAs> <http://yago-knowledge.org/resource/Transformers> .
/m/0jrg <SameAs> <http://yago-knowledge.org/resource/Alexander_the_Great> .
/m/0hknf <SameAs> <http://yago-knowledge.org/resource/Genoa> .
/m/0msck <SameAs> <http://yago-knowledge.org/resource/Cameron_County,_Texas> .
/m/0ytph <SameAs> <http://yago-knowledge.org/resource/Springfield,_Ohio> .
/m/0721cy <SameAs> <http://yago-knowledge.org/resource/Sam_Simon> .
/m/05bmq <SameAs> <http://yago-knowledge.org/resource/Namibia> .
/m/01x4py <SameAs> <http://yago-knowledge.org/resource/New_Zealand_National_Party> .
/m/01gc7h <SameAs> <http://yago-knowledge.org/resource/Jason_Priestley> .
/m/051q5 <SameAs> <http://yago-knowledge.org/resource/Minnesota_Vikings> .
/m/04sskp <SameAs> <http://yago-knowledge.org/resource/Merlin_(miniseries)> .
/m/09w6br <SameAs> <http://yago-knowledge.org/resource/The_Polar_Express_(film)> .
/m/02897w <SameAs> <http://yago-knowledge.org/resource/Willamette_University> .
/m/02hct1 <SameAs> <http://yago-knowledge.org/resource/Arrested_Development_(TV_series)> .
/m/02lfl4 <SameAs> <http://yago-knowledge.org/resource/Tony_Sirico> .
/m/0b76d_m <SameAs> <http://yago-knowledge.org/resource/Anonymous_(film)> .
/m/0g476 <SameAs> <http://yago-knowledge.org/resource/Liza_Minnelli> .
/m/0fl2s <SameAs> <http://yago-knowledge.org/resource/Kochi> .
/m/02d02 <SameAs> <http://yago-knowledge.org/resource/Detroit_Tigers> .
/m/0jzw <SameAs> <http://yago-knowledge.org/resource/Apocalypse_Now> .
/m/05g76 <SameAs> <http://yago-knowledge.org/resource/New_York_Mets> .
/m/04qp06 <SameAs> <http://yago-knowledge.org/resource/Rakesh_Roshan> .
/m/02w59b <SameAs> <http://yago-knowledge.org/resource/C.D._Guadalajara> .
/m/04d2yp <SameAs> <http://yago-knowledge.org/resource/Henry_Gibson> .
/m/024swd <SameAs> <http://yago-knowledge.org/resource/Mark_Goodson> .
/m/01l1b90 <SameAs> <http://yago-knowledge.org/resource/Tyrese_Gibson> .
/m/0njcw <SameAs> <http://yago-knowledge.org/resource/Marquette_County,_Michigan> .
/m/07l1c <SameAs> <http://yago-knowledge.org/resource/The_New_York_Times_Company> .
/m/0c8qq <SameAs> <http://yago-knowledge.org/resource/Anne_of_the_Thousand_Days> .
/m/02183k <SameAs> <http://yago-knowledge.org/resource/University_of_Georgia> .
/m/0n920 <SameAs> <http://yago-knowledge.org/resource/Camberwell> .
/m/03f4k <SameAs> <http://yago-knowledge.org/resource/George_Gershwin> .
/m/07phbc <SameAs> <http://yago-knowledge.org/resource/The_Pink_Panther_(2006_film)> .
/m/058kh7 <SameAs> <http://yago-knowledge.org/resource/She's_Having_a_Baby> .
/m/09qc1 <SameAs> <http://yago-knowledge.org/resource/Michelangelo_Antonioni> .
/m/01znbj <SameAs> <http://yago-knowledge.org/resource/Nettwerk> .
/m/0fk98 <SameAs> <http://yago-knowledge.org/resource/Thiruvananthapuram> .
/m/0chgsm <SameAs> <http://yago-knowledge.org/resource/Windsor_Castle> .
/m/021pqy <SameAs> <http://yago-knowledge.org/resource/Lagaan> .
/m/01d6g <SameAs> <http://yago-knowledge.org/resource/Baltimore_Orioles> .
/m/03rwng <SameAs> <http://yago-knowledge.org/resource/Jean_Smart> .
/m/01jzyf <SameAs> <http://yago-knowledge.org/resource/The_Man_Who_Wasn't_There_(2001_film)> .
/m/02_p8v <SameAs> <http://yago-knowledge.org/resource/Michael_Gough> .
/m/09889g <SameAs> <http://yago-knowledge.org/resource/Michael_Jackson> .
/m/09v6tz <SameAs> <http://yago-knowledge.org/resource/Eric_Roth> .
/m/0ddbjy4 <SameAs> <http://yago-knowledge.org/resource/Dredd> .
/m/02qflgv <SameAs> <http://yago-knowledge.org/resource/Joanne_Froggatt> .
/m/02nt75 <SameAs> <http://yago-knowledge.org/resource/C.F._Monterrey> .
/m/01f_3w <SameAs> <http://yago-knowledge.org/resource/Jive_Records> .
/m/04bnx <SameAs> <http://yago-knowledge.org/resource/Kaohsiung> .
/m/01vskn <SameAs> <http://yago-knowledge.org/resource/Daegu> .
/m/035qy <SameAs> <http://yago-knowledge.org/resource/Greece> .
/m/05mkhs <SameAs> <http://yago-knowledge.org/resource/Emile_Hirsch> .
/m/0hsn_ <SameAs> <http://yago-knowledge.org/resource/Jessica_Lange> .
/m/01jzyx <SameAs> <http://yago-knowledge.org/resource/St._John's_University_(New_York_City)> .
/m/01pg1d <SameAs> <http://yago-knowledge.org/resource/Illeana_Douglas> .
/m/05xd8x <SameAs> <http://yago-knowledge.org/resource/Subhash_Ghai> .
/m/01_8n9 <SameAs> <http://yago-knowledge.org/resource/Walsall_F.C.> .
/m/018y81 <SameAs> <http://yago-knowledge.org/resource/Roger_Taylor_(Queen_drummer)> .
/m/01q9mk <SameAs> <http://yago-knowledge.org/resource/Heisman_Trophy> .
/m/0bbgly <SameAs> <http://yago-knowledge.org/resource/Mutiny_on_the_Bounty_(1935_film)> .
/m/03ccq3s <SameAs> <http://yago-knowledge.org/resource/Primetime_Emmy_Award_for_Outstanding_Writing_for_a_Comedy_Series> .
/m/065jlv <SameAs> <http://yago-knowledge.org/resource/Geraldine_Somerville> .
/m/0cc5tgk <SameAs> <http://yago-knowledge.org/resource/Sebastian_Krys> .
/m/02rc4d <SameAs> <http://yago-knowledge.org/resource/Goku> .
/m/03ds3 <SameAs> <http://yago-knowledge.org/resource/Gary_Busey> .
/m/05css_ <SameAs> <http://yago-knowledge.org/resource/Saboteur_(film)> .
/m/0bmh4 <SameAs> <http://yago-knowledge.org/resource/Elizabeth_Taylor> .
/m/0sl2w <SameAs> <http://yago-knowledge.org/resource/Muncie,_Indiana> .
/m/0fg_hg <SameAs> <http://yago-knowledge.org/resource/Dalip_Tahil> .
/m/03_nq <SameAs> <http://yago-knowledge.org/resource/John_Quincy_Adams> .
/m/01bb1c <SameAs> <http://yago-knowledge.org/resource/John_W._Campbell_Memorial_Award_for_Best_Science_Fiction_Novel> .
/m/02r9p0c <SameAs> <http://yago-knowledge.org/resource/Appleseed_Ex_Machina> .
/m/03xl77 <SameAs> <http://yago-knowledge.org/resource/Travis_Barker> .
/m/027jw0c <SameAs> <http://yago-knowledge.org/resource/Constantin_Film> .
/m/012s5j <SameAs> <http://yago-knowledge.org/resource/Raquel_Welch> .
/m/0n1tx <SameAs> <http://yago-knowledge.org/resource/Summit_County,_Ohio> .
/m/020yvh <SameAs> <http://yago-knowledge.org/resource/Groton_School> .
/m/03_3d <SameAs> <http://yago-knowledge.org/resource/Japan> .
/m/09z1lg <SameAs> <http://yago-knowledge.org/resource/Calle_13_(band)> .
/m/0bmhn <SameAs> <http://yago-knowledge.org/resource/On_the_Waterfront> .
/m/0jc6p <SameAs> <http://yago-knowledge.org/resource/Cache_County,_Utah> .
/m/050r1z <SameAs> <http://yago-knowledge.org/resource/The_Last_of_the_Mohicans_(1992_film)> .
/m/01s73z <SameAs> <http://yago-knowledge.org/resource/Comcast> .
/m/0jksm <SameAs> <http://yago-knowledge.org/resource/Tsinghua_University> .
/m/0qt85 <SameAs> <http://yago-knowledge.org/resource/Hot_Springs,_Arkansas> .
/m/046488 <SameAs> <http://yago-knowledge.org/resource/Hotel_Rwanda> .
/m/0g9yrw <SameAs> <http://yago-knowledge.org/resource/Howard_the_Duck_(film)> .
/m/0641g8 <SameAs> <http://yago-knowledge.org/resource/Milt_Franklyn> .
/m/02ctyy <SameAs> <http://yago-knowledge.org/resource/Karisma_Kapoor> .
/m/05s34b <SameAs> <http://yago-knowledge.org/resource/Cumulus_Media_Networks> .
/m/03cglm <SameAs> <http://yago-knowledge.org/resource/Ted_Levine> .
/m/01f69m <SameAs> <http://yago-knowledge.org/resource/Ragtime_(film)> .
/m/01c6yz <SameAs> <http://yago-knowledge.org/resource/Lower_Normandy> .
/m/04mp75 <SameAs> <http://yago-knowledge.org/resource/SC_Bastia> .
/m/07gkgp <SameAs> <http://yago-knowledge.org/resource/Michael_Dobson_(actor)> .
/m/013nv_ <SameAs> <http://yago-knowledge.org/resource/Appleton,_Wisconsin> .
/m/07ym6ss <SameAs> <http://yago-knowledge.org/resource/John_Melfi> .
/m/07cdz <SameAs> <http://yago-knowledge.org/resource/The_Graduate> .
/m/04vh83 <SameAs> <http://yago-knowledge.org/resource/Richard_III_(1955_film)> .
/m/02wmy <SameAs> <http://yago-knowledge.org/resource/Falkland_Islands> .
/m/0l38g <SameAs> <http://yago-knowledge.org/resource/Tuolumne_County,_California> .
/m/01t4p0 <SameAs> <http://yago-knowledge.org/resource/Southport> .
/m/0p4v_ <SameAs> <http://yago-knowledge.org/resource/Tom_Jones_(1963_film)> .
/m/0l38x <SameAs> <http://yago-knowledge.org/resource/Ventura_County,_California> .
/m/04y0yc <SameAs> <http://yago-knowledge.org/resource/Urmila_Matondkar> .
/m/012cj0 <SameAs> <http://yago-knowledge.org/resource/Steve_McQueen> .
/m/01gglm <SameAs> <http://yago-knowledge.org/resource/Any_Given_Sunday> .
/m/01xpxv <SameAs> <http://yago-knowledge.org/resource/Pat_Morita> .
/m/04kwbt <SameAs> <http://yago-knowledge.org/resource/Griffin_Dunne> .
/m/01mmslz <SameAs> <http://yago-knowledge.org/resource/Debbie_Reynolds> .
/m/01sy5c <SameAs> <http://yago-knowledge.org/resource/Lon_Chaney> .
/m/0dc95 <SameAs> <http://yago-knowledge.org/resource/Oakland,_California> .
/m/04353 <SameAs> <http://yago-knowledge.org/resource/Jonathan_Demme> .
/m/08815 <SameAs> <http://yago-knowledge.org/resource/Yale_University> .
/m/07mgr <SameAs> <http://yago-knowledge.org/resource/Turin> .
/m/0194_r <SameAs> <http://yago-knowledge.org/resource/Institute_for_Advanced_Study> .
/m/0nqv1 <SameAs> <http://yago-knowledge.org/resource/Greenwich> .
/m/025tn92 <SameAs> <http://yago-knowledge.org/resource/2008_NBA_draft> .
/m/025x1t <SameAs> <http://yago-knowledge.org/resource/Freakazoid!> .
/m/0jgwf <SameAs> <http://yago-knowledge.org/resource/David_Lean> .
/m/08ns5s <SameAs> <http://yago-knowledge.org/resource/Long_snapper> .
/m/02z6gky <SameAs> <http://yago-knowledge.org/resource/2008_Sundance_Film_Festival> .
/m/0r1jr <SameAs> <http://yago-knowledge.org/resource/San_Rafael,_California> .
/m/01nrgq <SameAs> <http://yago-knowledge.org/resource/Tim_Conway> .
/m/02vk52z <SameAs> <http://yago-knowledge.org/resource/World_Bank> .
/m/0123gq <SameAs> <http://yago-knowledge.org/resource/Harbin> .
/m/0cvkv5 <SameAs> <http://yago-knowledge.org/resource/Volver> .
/m/0456zg <SameAs> <http://yago-knowledge.org/resource/Alfie_(2004_film)> .
/m/02zhkz <SameAs> <http://yago-knowledge.org/resource/Lance_Henriksen> .
/m/04b_jc <SameAs> <http://yago-knowledge.org/resource/The_Station_Agent> .
/m/01gy7r <SameAs> <http://yago-knowledge.org/resource/Bill_Pullman> .
/m/0gmd3k7 <SameAs> <http://yago-knowledge.org/resource/Savages_(2012_film)> .
/m/0rhp6 <SameAs> <http://yago-knowledge.org/resource/Melbourne,_Florida> .
/m/06s26c <SameAs> <http://yago-knowledge.org/resource/Jon_Peters> .
/m/05v10 <SameAs> <http://yago-knowledge.org/resource/Paraguay> .
/m/0l380 <SameAs> <http://yago-knowledge.org/resource/Tulare_County,_California> .
/m/0cn68 <SameAs> <http://yago-knowledge.org/resource/Japanese_Americans> .
/m/01q8fxx <SameAs> <http://yago-knowledge.org/resource/Isabelle_Adjani> .
/m/044rvb <SameAs> <http://yago-knowledge.org/resource/J._K._Simmons> .
/m/04wlz2 <SameAs> <http://yago-knowledge.org/resource/Hampton_University> .
/m/01sxly <SameAs> <http://yago-knowledge.org/resource/A_Fish_Called_Wanda> .
/m/0gcpc <SameAs> <http://yago-knowledge.org/resource/It's_a_Wonderful_Life> .
/m/01vrz41 <SameAs> <http://yago-knowledge.org/resource/Elton_John> .
/m/0k39j <SameAs> <http://yago-knowledge.org/resource/Casper,_Wyoming> .
/m/06ybb1 <SameAs> <http://yago-knowledge.org/resource/Rhinestone_(film)> .
/m/044mjy <SameAs> <http://yago-knowledge.org/resource/Josh_Holloway> .
/m/0c1ps1 <SameAs> <http://yago-knowledge.org/resource/Joseph_R._Gannascoli> .
/m/05l4yg <SameAs> <http://yago-knowledge.org/resource/Mary_McCormack> .
/m/0bzjvm <SameAs> <http://yago-knowledge.org/resource/48th_Academy_Awards> .
/m/0206v5 <SameAs> <http://yago-knowledge.org/resource/South_Shields> .
/m/0blgl <SameAs> <http://yago-knowledge.org/resource/Charles_M._Schulz> .
/m/013gz <SameAs> <http://yago-knowledge.org/resource/Alexandria,_Louisiana> .
/m/05ypj5 <SameAs> <http://yago-knowledge.org/resource/The_Glenn_Miller_Story> .
/m/02w5q6 <SameAs> <http://yago-knowledge.org/resource/Mario_Lopez> .
/m/01dbhb <SameAs> <http://yago-knowledge.org/resource/Geraldine_Page> .
/m/02swsm <SameAs> <http://yago-knowledge.org/resource/Hollywood_Records> .
/m/092t4b <SameAs> <http://yago-knowledge.org/resource/8th_Screen_Actors_Guild_Awards> .
/m/02lf70 <SameAs> <http://yago-knowledge.org/resource/Lorraine_Bracco> .
/m/07jmnh <SameAs> <http://yago-knowledge.org/resource/Kulbhushan_Kharbanda> .
/m/0cm19f <SameAs> <http://yago-knowledge.org/resource/Madan_Puri> .
/m/0k3nk <SameAs> <http://yago-knowledge.org/resource/Cascade_Range> .
/m/0237jb <SameAs> <http://yago-knowledge.org/resource/Brian_Helgeland> .
/m/03h2c3 <SameAs> <http://yago-knowledge.org/resource/Star_Plus> .
/m/0309lm <SameAs> <http://yago-knowledge.org/resource/Stephen_Root> .
/m/075q_ <SameAs> <http://yago-knowledge.org/resource/S.S._Lazio> .
/m/03mv0b <SameAs> <http://yago-knowledge.org/resource/Stan_Laurel> .
/m/05hdf <SameAs> <http://yago-knowledge.org/resource/Nastassja_Kinski> .
/m/0blg2 <SameAs> <http://yago-knowledge.org/resource/1948_Summer_Olympics> .
/m/0d06vc <SameAs> <http://yago-knowledge.org/resource/Iraq_War> .
/m/033f8n <SameAs> <http://yago-knowledge.org/resource/The_Dukes_of_Hazzard_(film)> .
/m/01xzb6 <SameAs> <http://yago-knowledge.org/resource/Don_Henley> .
/m/0b_7k <SameAs> <http://yago-knowledge.org/resource/Peter_Bogdanovich> .
/m/09tqkv2 <SameAs> <http://yago-knowledge.org/resource/The_Kids_Are_All_Right_(film)> .
/m/02ngbs <SameAs> <http://yago-knowledge.org/resource/Texas_Southern_University> .
/m/04g_wd <SameAs> <http://yago-knowledge.org/resource/James_Wong_(lyricist)> .
/m/06qgvf <SameAs> <http://yago-knowledge.org/resource/Carla_Gugino> .
/m/013g3 <SameAs> <http://yago-knowledge.org/resource/Alexandria> .
/m/09hd6f <SameAs> <http://yago-knowledge.org/resource/Javier_Grillo-Marxuach> .
/m/01w9k25 <SameAs> <http://yago-knowledge.org/resource/Just_Blaze> .
/m/08nhfc1 <SameAs> <http://yago-knowledge.org/resource/Crazy_Heart> .
/m/01f1q8 <SameAs> <http://yago-knowledge.org/resource/Chandigarh> .
/m/04t53l <SameAs> <http://yago-knowledge.org/resource/Cooking_Vinyl> .
/m/0127s7 <SameAs> <http://yago-knowledge.org/resource/Christina_Aguilera> .
/m/05q96q6 <SameAs> <http://yago-knowledge.org/resource/Robin_Hood_(2010_film)> .
/m/02lx0 <SameAs> <http://yago-knowledge.org/resource/East_Timor> .
/m/034h1h <SameAs> <http://yago-knowledge.org/resource/Association_of_American_Universities> .
/m/04gdr <SameAs> <http://yago-knowledge.org/resource/Louvre> .
/m/01xcqc <SameAs> <http://yago-knowledge.org/resource/Burgess_Meredith> .
/m/0jvt9 <SameAs> <http://yago-knowledge.org/resource/How_the_West_Was_Won_(film)> .
/m/026n3rs <SameAs> <http://yago-knowledge.org/resource/Craig_Carlson> .
/m/053y4h <SameAs> <http://yago-knowledge.org/resource/Mary_Kay_Place> .
/m/0453t <SameAs> <http://yago-knowledge.org/resource/Joseph_Campbell> .
/m/0hc8h <SameAs> <http://yago-knowledge.org/resource/Gloucester> .
/m/06x68 <SameAs> <http://yago-knowledge.org/resource/St._Louis_Cardinals> .
/m/03cws8h <SameAs> <http://yago-knowledge.org/resource/Jeffrey_Richman> .
/m/04v89z <SameAs> <http://yago-knowledge.org/resource/The_Longest_Day_(film)> .
/m/01fxck <SameAs> <http://yago-knowledge.org/resource/Vincent_Gallo> .
/m/0cbgl <SameAs> <http://yago-knowledge.org/resource/David_Foster_Wallace> .
/m/0253b6 <SameAs> <http://yago-knowledge.org/resource/Tia_Carrere> .
/m/031c3v <SameAs> <http://yago-knowledge.org/resource/John_Broome_(writer)> .
/m/026s90 <SameAs> <http://yago-knowledge.org/resource/PolyGram> .
/m/0r0m6 <SameAs> <http://yago-knowledge.org/resource/Malibu,_California> .
/m/08sfxj <SameAs> <http://yago-knowledge.org/resource/Amazing_Grace_(2006_film)> .
/m/06f32 <SameAs> <http://yago-knowledge.org/resource/Taiwan> .
/m/01mvjl0 <SameAs> <http://yago-knowledge.org/resource/Walter_Becker> .
/m/0jvtp <SameAs> <http://yago-knowledge.org/resource/James_Mason> .
/m/0mkv3 <SameAs> <http://yago-knowledge.org/resource/La_Crosse_County,_Wisconsin> .
/m/05lx3 <SameAs> <http://yago-knowledge.org/resource/Ohio_River> .
/m/0fydw <SameAs> <http://yago-knowledge.org/resource/Antwerp> .
/m/0dzc16 <SameAs> <http://yago-knowledge.org/resource/Emilio_Estefan> .
/m/0kst7v <SameAs> <http://yago-knowledge.org/resource/Ashish_Vidyarthi> .
/m/06x6s <SameAs> <http://yago-knowledge.org/resource/St._Louis_Blues> .
/m/0fn8jc <SameAs> <http://yago-knowledge.org/resource/Cory_Monteith> .
/m/03qjlz <SameAs> <http://yago-knowledge.org/resource/Julius_J._Epstein> .
/m/01vsps <SameAs> <http://yago-knowledge.org/resource/John_Houseman> .
/m/0k29f <SameAs> <http://yago-knowledge.org/resource/John_Byrne_(comics)> .
/m/02t901 <SameAs> <http://yago-knowledge.org/resource/Robert_Englund> .
/m/056vv <SameAs> <http://yago-knowledge.org/resource/Montenegro> .
/m/0qx1w <SameAs> <http://yago-knowledge.org/resource/Fort_Smith,_Arkansas> .
/m/0fb7c <SameAs> <http://yago-knowledge.org/resource/Leslie_Nielsen> .
/m/02czd5 <SameAs> <http://yago-knowledge.org/resource/Mad_About_You> .
/m/017znw <SameAs> <http://yago-knowledge.org/resource/Hibernian_F.C.> .
/m/0275kr <SameAs> <http://yago-knowledge.org/resource/Good_Morning_America> .
/m/0hw29 <SameAs> <http://yago-knowledge.org/resource/Viet_Cong> .
/m/0dkv90 <SameAs> <http://yago-knowledge.org/resource/Red_Cliff_(film)> .
/m/0jg77 <SameAs> <http://yago-knowledge.org/resource/Nine_Inch_Nails> .
/m/0btj0 <SameAs> <http://yago-knowledge.org/resource/Buster_Keaton> .
/m/05ry0p <SameAs> <http://yago-knowledge.org/resource/Samantha_Mathis> .
/m/01hr11 <SameAs> <http://yago-knowledge.org/resource/MIT_Sloan_School_of_Management> .
/m/0mcf4 <SameAs> <http://yago-knowledge.org/resource/Blue_Note_Records> .
/m/0147jt <SameAs> <http://yago-knowledge.org/resource/Michael_W._Smith> .
/m/01rlxt <SameAs> <http://yago-knowledge.org/resource/Rick_Berman> .
/m/04bjff <SameAs> <http://yago-knowledge.org/resource/Aalesunds_FK> .
/m/02clgg <SameAs> <http://yago-knowledge.org/resource/Wayne_Knight> .
/m/05k6d <SameAs> <http://yago-knowledge.org/resource/Newport_News_Shipbuilding> .
/m/040z9 <SameAs> <http://yago-knowledge.org/resource/Jack_Lemmon> .
/m/0b455l <SameAs> <http://yago-knowledge.org/resource/Gary_Ross> .
/m/018417 <SameAs> <http://yago-knowledge.org/resource/Helen_Hayes> .
/m/04fhn_ <SameAs> <http://yago-knowledge.org/resource/James_Rebhorn> .
/m/0137n0 <SameAs> <http://yago-knowledge.org/resource/Willie_Nelson> .
/m/09p2r9 <SameAs> <http://yago-knowledge.org/resource/62nd_Golden_Globe_Awards> .
/m/01ly5m <SameAs> <http://yago-knowledge.org/resource/Buenos_Aires> .
/m/016dp0 <SameAs> <http://yago-knowledge.org/resource/John_Osborne> .
/m/0prjs <SameAs> <http://yago-knowledge.org/resource/Kenneth_Branagh> .
/m/0cv0r <SameAs> <http://yago-knowledge.org/resource/Baltimore_County,_Maryland> .
/m/0cs134 <SameAs> <http://yago-knowledge.org/resource/Ugly_Betty> .
/m/0d075m <SameAs> <http://yago-knowledge.org/resource/Democratic_Party_(United_States)> .
/m/0sqc8 <SameAs> <http://yago-knowledge.org/resource/Lafayette,_Indiana> .
/m/0n00 <SameAs> <http://yago-knowledge.org/resource/Alan_Turing> .
/m/01bpc9 <SameAs> <http://yago-knowledge.org/resource/Steve_Earle> .
/m/0c4f4 <SameAs> <http://yago-knowledge.org/resource/Helen_Hunt> .
/m/020l9r <SameAs> <http://yago-knowledge.org/resource/Johnny_Knoxville> .
/m/0lvng <SameAs> <http://yago-knowledge.org/resource/Leiden_University> .
/m/01x73 <SameAs> <http://yago-knowledge.org/resource/Connecticut> .
/m/0841v <SameAs> <http://yago-knowledge.org/resource/Walmart> .
/m/03fbb6 <SameAs> <http://yago-knowledge.org/resource/Giovanni_Ribisi> .
/m/0286vp <SameAs> <http://yago-knowledge.org/resource/I_Shot_Andy_Warhol> .
/m/01q_22 <SameAs> <http://yago-knowledge.org/resource/Srinagar> .
/m/0frnff <SameAs> <http://yago-knowledge.org/resource/Ferris_Webster> .
/m/05gm16l <SameAs> <http://yago-knowledge.org/resource/University_of_Saskatchewan> .
/m/0mnzd <SameAs> <http://yago-knowledge.org/resource/Fairfax,_Virginia> .
/m/01200d <SameAs> <http://yago-knowledge.org/resource/Wallace_Beery> .
/m/03cx282 <SameAs> <http://yago-knowledge.org/resource/Philippe_Rousselot> .
/m/02knnd <SameAs> <http://yago-knowledge.org/resource/Alan_Ladd> .
/m/0_jws <SameAs> <http://yago-knowledge.org/resource/Cranston,_Rhode_Island> .
/m/01k47c <SameAs> <http://yago-knowledge.org/resource/Jon_Lord> .
/m/01j5x6 <SameAs> <http://yago-knowledge.org/resource/Jonny_Lee_Miller> .
/m/01vg13 <SameAs> <http://yago-knowledge.org/resource/Brooklyn_College> .
/m/01p7x7 <SameAs> <http://yago-knowledge.org/resource/Cooper_Union> .
/m/031x2 <SameAs> <http://yago-knowledge.org/resource/Falklands_War> .
/m/01rr31 <SameAs> <http://yago-knowledge.org/resource/De_La_Salle_University> .
/m/03q64h <SameAs> <http://yago-knowledge.org/resource/Akira_Kamiya> .
/m/0fpn8 <SameAs> <http://yago-knowledge.org/resource/Ulster_County,_New_York> .
/m/0425c5 <SameAs> <http://yago-knowledge.org/resource/FC_Seoul> .
/m/04gtq43 <SameAs> <http://yago-knowledge.org/resource/Wilma_Galvante> .
/m/01kx_81 <SameAs> <http://yago-knowledge.org/resource/Mick_Jagger> .
/m/01gkmx <SameAs> <http://yago-knowledge.org/resource/John_Cusack> .
/m/012gq6 <SameAs> <http://yago-knowledge.org/resource/Bob_Newhart> .
/m/0619_ <SameAs> <http://yago-knowledge.org/resource/Portsmouth> .
/m/02kxx1 <SameAs> <http://yago-knowledge.org/resource/University_of_Calcutta> .
/m/02n1p5 <SameAs> <http://yago-knowledge.org/resource/Hema_Malini> .
/m/0xt3t <SameAs> <http://yago-knowledge.org/resource/Summit,_New_Jersey> .
/m/0mnz0 <SameAs> <http://yago-knowledge.org/resource/Fairfax_County,_Virginia> .
/m/01hvv0 <SameAs> <http://yago-knowledge.org/resource/The_Fairly_OddParents> .
/m/0xckc <SameAs> <http://yago-knowledge.org/resource/Livonia,_Michigan> .
/m/02xs6_ <SameAs> <http://yago-knowledge.org/resource/Hannibal_(film)> .
/m/0c0tzp <SameAs> <http://yago-knowledge.org/resource/George_James_Hopkins> .
/m/044f7 <SameAs> <http://yago-knowledge.org/resource/Jim_Henson> .
/m/0fr0t <SameAs> <http://yago-knowledge.org/resource/Tucson,_Arizona> .
/m/013pp3 <SameAs> <http://yago-knowledge.org/resource/Philip_Roth> .
/m/030nwm <SameAs> <http://yago-knowledge.org/resource/Heriot-Watt_University> .
/m/05b7q <SameAs> <http://yago-knowledge.org/resource/North_Korea> .
/m/08_438 <SameAs> <http://yago-knowledge.org/resource/Ian_McNeice> .
/m/0qplq <SameAs> <http://yago-knowledge.org/resource/Glendale,_Arizona> .
/m/04p0c <SameAs> <http://yago-knowledge.org/resource/Lower_Saxony> .
/m/012xdf <SameAs> <http://yago-knowledge.org/resource/Shaquille_O'Neal> .
/m/0y1rf <SameAs> <http://yago-knowledge.org/resource/Rochester,_New_York> .
/m/0vjr <SameAs> <http://yago-knowledge.org/resource/Ally_McBeal> .
/m/0dr31 <SameAs> <http://yago-knowledge.org/resource/Darmstadt> .
/m/04107 <SameAs> <http://yago-knowledge.org/resource/John_Steinbeck> .
/m/02bzh0 <SameAs> <http://yago-knowledge.org/resource/Camberwell_College_of_Arts> .
/m/029spt <SameAs> <http://yago-knowledge.org/resource/South_Somerset> .
/m/01pllx <SameAs> <http://yago-knowledge.org/resource/Charlie_Sheen> .
/m/0ncq_ <SameAs> <http://yago-knowledge.org/resource/Wandsworth> .
/m/0ctwqs <SameAs> <http://yago-knowledge.org/resource/Brisbane_Roar_FC> .
/m/0lb5x <SameAs> <http://yago-knowledge.org/resource/Aude> .
/m/04vmp <SameAs> <http://yago-knowledge.org/resource/Mumbai> .
/m/027x7z5 <SameAs> <http://yago-knowledge.org/resource/Queen_of_the_Damned> .
/m/04n7gc6 <SameAs> <http://yago-knowledge.org/resource/Mary,_mother_of_Jesus> .
/m/018h8j <SameAs> <http://yago-knowledge.org/resource/Oldham> .
/m/0517bc <SameAs> <http://yago-knowledge.org/resource/Emma_Roberts> .
/m/016khd <SameAs> <http://yago-knowledge.org/resource/William_Hurt> .
/m/07kb7vh <SameAs> <http://yago-knowledge.org/resource/Zookeeper_(film)> .
/m/022fj_ <SameAs> <http://yago-knowledge.org/resource/Florida_International_University> .
/m/02gnmp <SameAs> <http://yago-knowledge.org/resource/California_State_University,_Los_Angeles> .
/m/0133jj <SameAs> <http://yago-knowledge.org/resource/Tyrol_(state)> .
/m/039_ym <SameAs> <http://yago-knowledge.org/resource/Israel_national_football_team> .
/m/0m_31 <SameAs> <http://yago-knowledge.org/resource/Doc_Watson> .
/m/017v_ <SameAs> <http://yago-knowledge.org/resource/Bavaria> .
/m/05hyzx <SameAs> <http://yago-knowledge.org/resource/Gil_Vicente_F.C.> .
/m/01dnnt <SameAs> <http://yago-knowledge.org/resource/Royal_Military_Academy_Sandhurst> .
/m/049n2l <SameAs> <http://yago-knowledge.org/resource/Calcio_Catania> .
/m/0blbxk <SameAs> <http://yago-knowledge.org/resource/Taraji_P._Henson> .
/m/05gqf <SameAs> <http://yago-knowledge.org/resource/Nagasaki> .
/m/07hn5 <SameAs> <http://yago-knowledge.org/resource/Tour_de_France> .
/m/0gffmn8 <SameAs> <http://yago-knowledge.org/resource/The_Expendables_2> .
/m/0htqt <SameAs> <http://yago-knowledge.org/resource/Bilbao> .
/m/019xz9 <SameAs> <http://yago-knowledge.org/resource/Ulm> .
/m/0jclr <SameAs> <http://yago-knowledge.org/resource/Washington_County,_Utah> .
/m/01w5jwb <SameAs> <http://yago-knowledge.org/resource/CeeLo_Green> .
/m/0bw6y <SameAs> <http://yago-knowledge.org/resource/Barbara_Stanwyck> .
/m/05gqy <SameAs> <http://yago-knowledge.org/resource/Nanjing> .
/m/070fnm <SameAs> <http://yago-knowledge.org/resource/Gaslight_(1944_film)> .
/m/0n4yq <SameAs> <http://yago-knowledge.org/resource/Santa_Fe_County,_New_Mexico> .
/m/02663p2 <SameAs> <http://yago-knowledge.org/resource/California_Golden_Bears_football> .
/m/06wzvr <SameAs> <http://yago-knowledge.org/resource/Can't_Stop_the_Music> .
/m/02y9wq <SameAs> <http://yago-knowledge.org/resource/Dunedin> .
/m/01n7q <SameAs> <http://yago-knowledge.org/resource/California> .
/m/0p0mx <SameAs> <http://yago-knowledge.org/resource/Picardy> .
/m/029d_ <SameAs> <http://yago-knowledge.org/resource/Drexel_University> .
/m/02l101 <SameAs> <http://yago-knowledge.org/resource/Ralph_Bellamy> .
/m/04hxyv <SameAs> <http://yago-knowledge.org/resource/Charlie_Adler> .
/m/0kz2w <SameAs> <http://yago-knowledge.org/resource/Brandeis_University> .
/m/02hgz <SameAs> <http://yago-knowledge.org/resource/Derry> .
/m/01q4qv <SameAs> <http://yago-knowledge.org/resource/Costa-Gavras> .
/m/0cymp <SameAs> <http://yago-knowledge.org/resource/Westchester_County,_New_York> .
/m/02778tk <SameAs> <http://yago-knowledge.org/resource/Matt_Hubbard> .
/m/03zz8b <SameAs> <http://yago-knowledge.org/resource/Amanda_Seyfried> .
/m/0b1k24 <SameAs> <http://yago-knowledge.org/resource/Napalm_Records> .
/m/09hnb <SameAs> <http://yago-knowledge.org/resource/Herbie_Hancock> .
/m/0dyztm <SameAs> <http://yago-knowledge.org/resource/Aleksa_Palladino> .
/m/0df4y <SameAs> <http://yago-knowledge.org/resource/Tianjin> .
/m/0drnwh <SameAs> <http://yago-knowledge.org/resource/Memoirs_of_a_Geisha_(film)> .
/m/046chh <SameAs> <http://yago-knowledge.org/resource/Jon_Polito> .
/m/03902 <SameAs> <http://yago-knowledge.org/resource/Geneva> .
/m/01d5vk <SameAs> <http://yago-knowledge.org/resource/Dick_Powell> .
/m/01ycbq <SameAs> <http://yago-knowledge.org/resource/Christopher_Plummer> .
/m/034np8 <SameAs> <http://yago-knowledge.org/resource/Jason_Lee_(actor)> .
/m/03r1pr <SameAs> <http://yago-knowledge.org/resource/Stan_Winston> .
/m/01_k71 <SameAs> <http://yago-knowledge.org/resource/Harold_Arlen> .
/m/01gpy4 <SameAs> <http://yago-knowledge.org/resource/Carinthia> .
/m/0gyy0 <SameAs> <http://yago-knowledge.org/resource/Walter_Matthau> .
/m/0cqcgj <SameAs> <http://yago-knowledge.org/resource/Prithviraj_Sukumaran> .
/m/01t_wfl <SameAs> <http://yago-knowledge.org/resource/Peter_Cook> .
/m/0phx4 <SameAs> <http://yago-knowledge.org/resource/Damon_Albarn> .
/m/09gkdln <SameAs> <http://yago-knowledge.org/resource/14th_Satellite_Awards> .
/m/01pq4w <SameAs> <http://yago-knowledge.org/resource/Vanderbilt_University> .
/m/05vw7 <SameAs> <http://yago-knowledge.org/resource/Plymouth> .
/m/011lpr <SameAs> <http://yago-knowledge.org/resource/Jack_Webb> .
/m/071xj <SameAs> <http://yago-knowledge.org/resource/Satyajit_Ray> .
/m/07zlqp <SameAs> <http://yago-knowledge.org/resource/TV5_(Philippines)> .
/m/09qftb <SameAs> <http://yago-knowledge.org/resource/55th_Golden_Globe_Awards> .
/m/06y8v <SameAs> <http://yago-knowledge.org/resource/Walter_Scott> .
/m/01pl9g <SameAs> <http://yago-knowledge.org/resource/Rita_Hayworth> .
/m/01_k7f <SameAs> <http://yago-knowledge.org/resource/University_of_Northern_Colorado> .
/m/0133sq <SameAs> <http://yago-knowledge.org/resource/Nick_Park> .
/m/0fv4v <SameAs> <http://yago-knowledge.org/resource/Ivory_Coast> .
/m/04mn81 <SameAs> <http://yago-knowledge.org/resource/Pharrell_Williams> .
/m/0m9_5 <SameAs> <http://yago-knowledge.org/resource/East_Carolina_University> .
/m/04g9gd <SameAs> <http://yago-knowledge.org/resource/Domino_(2005_film)> .
/m/01v0fn1 <SameAs> <http://yago-knowledge.org/resource/Keith_Forsey> .
/m/02784z <SameAs> <http://yago-knowledge.org/resource/Herbert_Lom> .
/m/015wnl <SameAs> <http://yago-knowledge.org/resource/John_Hurt> .
/m/03qnc6q <SameAs> <http://yago-knowledge.org/resource/Voyage_of_Time> .
/m/01my_c <SameAs> <http://yago-knowledge.org/resource/Simon_Fuller> .
/m/03t4nx <SameAs> <http://yago-knowledge.org/resource/Princeton_Theological_Seminary> .
/m/06kl78 <SameAs> <http://yago-knowledge.org/resource/Crash_(1996_film)> .
/m/05pq9 <SameAs> <http://yago-knowledge.org/resource/Oscar_Hammerstein_II> .
/m/0dn_w <SameAs> <http://yago-knowledge.org/resource/Amtrak> .
/m/0f502 <SameAs> <http://yago-knowledge.org/resource/John_Travolta> .
/m/0bmch_x <SameAs> <http://yago-knowledge.org/resource/Unknown_(2011_film)> .
/m/03y1mlp <SameAs> <http://yago-knowledge.org/resource/Lindy_Hemming> .
/m/0glbqt <SameAs> <http://yago-knowledge.org/resource/Doctor_Zhivago_(film)> .
/m/0dqyc <SameAs> <http://yago-knowledge.org/resource/Zeeland> .
/m/0150n <SameAs> <http://yago-knowledge.org/resource/Bonn> .
/m/05mt6w <SameAs> <http://yago-knowledge.org/resource/Harold_Faltermeyer> .
/m/05g9h <SameAs> <http://yago-knowledge.org/resource/Nazi_Party> .
/m/0fvzz <SameAs> <http://yago-knowledge.org/resource/Harrisburg,_Pennsylvania> .
/m/04511f <SameAs> <http://yago-knowledge.org/resource/Brannon_Braga> .
/m/01jv_6 <SameAs> <http://yago-knowledge.org/resource/BC_Lions> .
/m/095kp <SameAs> <http://yago-knowledge.org/resource/Columbia_Business_School> .
/m/01_q7h <SameAs> <http://yago-knowledge.org/resource/Kanpur> .
/m/0421ng <SameAs> <http://yago-knowledge.org/resource/Bullets_over_Broadway> .
/m/011yxg <SameAs> <http://yago-knowledge.org/resource/Moulin_Rouge!> .
/m/03tck1 <SameAs> <http://yago-knowledge.org/resource/Villarreal_CF> .
/m/0dll_t2 <SameAs> <http://yago-knowledge.org/resource/This_Means_War_(film)> .
/m/0cdbq <SameAs> <http://yago-knowledge.org/resource/Russian_Empire> .
/m/0frpd5 <SameAs> <http://yago-knowledge.org/resource/Marthand_K._Venkatesh> .
/m/01n1pp <SameAs> <http://yago-knowledge.org/resource/University_of_Bologna> .
/m/016ztl <SameAs> <http://yago-knowledge.org/resource/Porco_Rosso> .
/m/0c75w <SameAs> <http://yago-knowledge.org/resource/Espoo> .
/m/013w7j <SameAs> <http://yago-knowledge.org/resource/Sean_Combs> .
/m/0bymv <SameAs> <http://yago-knowledge.org/resource/John_McCain> .
/m/0df_c <SameAs> <http://yago-knowledge.org/resource/Grenoble> .
/m/027km64 <SameAs> <http://yago-knowledge.org/resource/Susan_Blu> .
/m/04qy5 <SameAs> <http://yago-knowledge.org/resource/Legion_of_Merit> .
/m/027_sn <SameAs> <http://yago-knowledge.org/resource/Billy_Dee_Williams> .
/m/03fwln <SameAs> <http://yago-knowledge.org/resource/Priyanka_Chopra> .
/m/01bdxz <SameAs> <http://yago-knowledge.org/resource/Torquay_United_F.C.> .
/m/01x4r3 <SameAs> <http://yago-knowledge.org/resource/Lewis_Black> .
/m/0d060g <SameAs> <http://yago-knowledge.org/resource/Canada> .
/m/02vxq9m <SameAs> <http://yago-knowledge.org/resource/Skyfall> .
/m/07024 <SameAs> <http://yago-knowledge.org/resource/Saving_Private_Ryan> .
/m/02p4pt3 <SameAs> <http://yago-knowledge.org/resource/House_of_Plantagenet> .
/m/01y8kf <SameAs> <http://yago-knowledge.org/resource/Royal_Canadian_Air_Force> .
/m/03gr14 <SameAs> <http://yago-knowledge.org/resource/Cruz_Azul> .
/m/01w5gp <SameAs> <http://yago-knowledge.org/resource/Adult_Swim> .
/m/0278x6s <SameAs> <http://yago-knowledge.org/resource/Brian_Geraghty> .
/m/012g92 <SameAs> <http://yago-knowledge.org/resource/Isabelle_Huppert> .
/m/015rmq <SameAs> <http://yago-knowledge.org/resource/Georg_Solti> .
/m/0kbf1 <SameAs> <http://yago-knowledge.org/resource/The_Song_of_Bernadette_(film)> .
/m/015npr <SameAs> <http://yago-knowledge.org/resource/Aamir_Khan> .
/m/047hpm <SameAs> <http://yago-knowledge.org/resource/Rachel_Bilson> .
/m/02mjk5 <SameAs> <http://yago-knowledge.org/resource/New_York_Shipbuilding_Corporation> .
/m/01hqk <SameAs> <http://yago-knowledge.org/resource/Batman_&_Robin_(film)> .
/m/07ww5 <SameAs> <http://yago-knowledge.org/resource/United_States_Virgin_Islands> .
/m/01520h <SameAs> <http://yago-knowledge.org/resource/Richard_Dreyfuss> .
/m/07wgm <SameAs> <http://yago-knowledge.org/resource/Federalist_Party> .
/m/0m28g <SameAs> <http://yago-knowledge.org/resource/Mohave_County,_Arizona> .
/m/03lh3v <SameAs> <http://yago-knowledge.org/resource/Ray_Allen> .
/m/0mxhc <SameAs> <http://yago-knowledge.org/resource/Clackamas_County,_Oregon> .
/m/0ccck7 <SameAs> <http://yago-knowledge.org/resource/To_Kill_a_Mockingbird_(film)> .
/m/0n1v8 <SameAs> <http://yago-knowledge.org/resource/Stark_County,_Ohio> .
/m/019z7q <SameAs> <http://yago-knowledge.org/resource/Norman_Mailer> .
/m/017v71 <SameAs> <http://yago-knowledge.org/resource/Wellesley_College> .
/m/03_lf <SameAs> <http://yago-knowledge.org/resource/Joseph_Stalin> .
/m/0g1w5 <SameAs> <http://yago-knowledge.org/resource/Lower_Hutt> .
/m/0fpmrm3 <SameAs> <http://yago-knowledge.org/resource/Take_Shelter> .
/m/03dq9 <SameAs> <http://yago-knowledge.org/resource/Graham_Chapman> .
/m/0k_6t <SameAs> <http://yago-knowledge.org/resource/Ilford> .
/m/019lxm <SameAs> <http://yago-knowledge.org/resource/Santos_FC> .
/m/02fgdx <SameAs> <http://yago-knowledge.org/resource/Southern_Methodist_University> .
/m/03pcgf <SameAs> <http://yago-knowledge.org/resource/Livingston,_New_Jersey> .
/m/06mz5 <SameAs> <http://yago-knowledge.org/resource/South_Dakota> .
/m/07_fl <SameAs> <http://yago-knowledge.org/resource/Venice,_Los_Angeles> .
/m/0jwmp <SameAs> <http://yago-knowledge.org/resource/Brazil_(1985_film)> .
/m/06jwys <SameAs> <http://yago-knowledge.org/resource/SpVgg_Unterhaching> .
/m/0420td <SameAs> <http://yago-knowledge.org/resource/Suwon_Samsung_Bluewings> .
/m/015np0 <SameAs> <http://yago-knowledge.org/resource/Ralph_Richardson> .
/m/0m2gk <SameAs> <http://yago-knowledge.org/resource/Hartford_County,_Connecticut> .
/m/01vt9p3 <SameAs> <http://yago-knowledge.org/resource/Dionne_Warwick> .
/m/03v6t <SameAs> <http://yago-knowledge.org/resource/Iowa_State_University> .
/m/0m2gz <SameAs> <http://yago-knowledge.org/resource/Litchfield_County,_Connecticut> .
/m/03cz4j <SameAs> <http://yago-knowledge.org/resource/Shin-ichiro_Miki> .
/m/0p01x <SameAs> <http://yago-knowledge.org/resource/Larimer_County,_Colorado> .
/m/0gg5kmg <SameAs> <http://yago-knowledge.org/resource/Killing_Them_Softly> .
/m/0mx3k <SameAs> <http://yago-knowledge.org/resource/Multnomah_County,_Oregon> .
/m/0558_1 <SameAs> <http://yago-knowledge.org/resource/Abilene_Christian_University> .
/m/01hq1 <SameAs> <http://yago-knowledge.org/resource/Batman_Returns> .
/m/0265v21 <SameAs> <http://yago-knowledge.org/resource/Patrick_Mulcahey> .
/m/01tc9r <SameAs> <http://yago-knowledge.org/resource/Howard_Shore> .
/m/03_wm6 <SameAs> <http://yago-knowledge.org/resource/Brotherhood_of_the_Wolf> .
/m/06mzp <SameAs> <http://yago-knowledge.org/resource/Switzerland> .
/m/03_9r <SameAs> <http://yago-knowledge.org/resource/Japanese_language> .
/m/01nkcn <SameAs> <http://yago-knowledge.org/resource/Utah_State_University> .
/m/038c0q <SameAs> <http://yago-knowledge.org/resource/2003_NBA_draft> .
/m/0ntxg <SameAs> <http://yago-knowledge.org/resource/St._Clair_County,_Illinois> .
/m/01cbt3 <SameAs> <http://yago-knowledge.org/resource/John_Barry_(composer)> .
/m/01j2_7 <SameAs> <http://yago-knowledge.org/resource/Neuilly-sur-Seine> .
/m/0g7k2g <SameAs> <http://yago-knowledge.org/resource/Lorenzo_Ferrero> .
/m/0nqph <SameAs> <http://yago-knowledge.org/resource/Arlington,_Texas> .
/m/03915c <SameAs> <http://yago-knowledge.org/resource/Hamilton_Tiger-Cats> .
/m/071g6 <SameAs> <http://yago-knowledge.org/resource/Szczecin> .
/m/04hzj <SameAs> <http://yago-knowledge.org/resource/Liberia> .
/m/04wddl <SameAs> <http://yago-knowledge.org/resource/Sabrina_(1954_film)> .
/m/0d34_ <SameAs> <http://yago-knowledge.org/resource/Regensburg> .
/m/054y8 <SameAs> <http://yago-knowledge.org/resource/Mainz> .
/m/01vsgrn <SameAs> <http://yago-knowledge.org/resource/Eminem> .
/m/02rff2 <SameAs> <http://yago-knowledge.org/resource/Georgetown_Law> .
/m/026wlxw <SameAs> <http://yago-knowledge.org/resource/Get_Smart_(film)> .
/m/016srn <SameAs> <http://yago-knowledge.org/resource/Randy_Travis> .
/m/01wk7ql <SameAs> <http://yago-knowledge.org/resource/Joss_Stone> .
/m/0khth <SameAs> <http://yago-knowledge.org/resource/Wilco> .
/m/03fnjv <SameAs> <http://yago-knowledge.org/resource/Roda_JC_Kerkrade> .
/m/04w4s <SameAs> <http://yago-knowledge.org/resource/Moldova> .
/m/02bm1v <SameAs> <http://yago-knowledge.org/resource/THQ> .
/m/0lgm5 <SameAs> <http://yago-knowledge.org/resource/Thelonious_Monk> .
/m/01q940 <SameAs> <http://yago-knowledge.org/resource/Bertelsmann_Music_Group> .
/m/01vt5c_ <SameAs> <http://yago-knowledge.org/resource/M.I.A._(rapper)> .
/m/0q8jl <SameAs> <http://yago-knowledge.org/resource/Florence,_Alabama> .
/m/03d1y3 <SameAs> <http://yago-knowledge.org/resource/Richard_Brooks> .
/m/05ch98 <SameAs> <http://yago-knowledge.org/resource/The_Jacket> .
/m/0459z <SameAs> <http://yago-knowledge.org/resource/Johannes_Brahms> .
/m/03cprft <SameAs> <http://yago-knowledge.org/resource/Satyen_Kappu> .
/m/05ldnp <SameAs> <http://yago-knowledge.org/resource/Paul_Haggis> .
/m/016ckq <SameAs> <http://yago-knowledge.org/resource/Motown> .
/m/04112r <SameAs> <http://yago-knowledge.org/resource/Chivas_USA> .
/m/07y8l9 <SameAs> <http://yago-knowledge.org/resource/John_Michael_Higgins> .
/m/064n1pz <SameAs> <http://yago-knowledge.org/resource/The_Girl_with_the_Dragon_Tattoo_(2009_film)> .
/m/02xs0q <SameAs> <http://yago-knowledge.org/resource/David_Javerbaum> .
/m/0ckh4k <SameAs> <http://yago-knowledge.org/resource/Neighbours> .
/m/02yr3z <SameAs> <http://yago-knowledge.org/resource/La_Salle_University> .
/m/01x7jb <SameAs> <http://yago-knowledge.org/resource/Imperial_Records> .
/m/033hqf <SameAs> <http://yago-knowledge.org/resource/George_Raft> .
/m/08b0cj <SameAs> <http://yago-knowledge.org/resource/Mohamed_Kallon> .
/m/02rfft <SameAs> <http://yago-knowledge.org/resource/Epic_Games> .
/m/0ky6d <SameAs> <http://yago-knowledge.org/resource/Pan_American_World_Airways> .
/m/0ggjt <SameAs> <http://yago-knowledge.org/resource/Earl_Scruggs> .
/m/02ndbd <SameAs> <http://yago-knowledge.org/resource/Garry_Marshall> .
/m/0gmtm <SameAs> <http://yago-knowledge.org/resource/Claudette_Colbert> .
/m/0rvty <SameAs> <http://yago-knowledge.org/resource/Decatur,_Georgia> .
/m/0948xk <SameAs> <http://yago-knowledge.org/resource/Tony_Blair> .
/m/0hr3g <SameAs> <http://yago-knowledge.org/resource/Richard_Strauss> .
/m/0mm_4 <SameAs> <http://yago-knowledge.org/resource/Williamsburg,_Virginia> .
/m/0260p2 <SameAs> <http://yago-knowledge.org/resource/Atlus> .
/m/04rkkv <SameAs> <http://yago-knowledge.org/resource/National_Institute_of_Dramatic_Art> .
/m/015p37 <SameAs> <http://yago-knowledge.org/resource/Janeane_Garofalo> .
/m/027hm_ <SameAs> <http://yago-knowledge.org/resource/Charlie_Daniels> .
/m/04vlh5 <SameAs> <http://yago-knowledge.org/resource/David_Silverman_(animator)> .
/m/0jfqp <SameAs> <http://yago-knowledge.org/resource/Chapel_Hill,_North_Carolina> .
/m/02rsz0 <SameAs> <http://yago-knowledge.org/resource/Warren_Ellis> .
/m/05ns4g <SameAs> <http://yago-knowledge.org/resource/Club_Olimpia> .
/m/01pgzn_ <SameAs> <http://yago-knowledge.org/resource/Lindsay_Lohan> .
/m/0n9dn <SameAs> <http://yago-knowledge.org/resource/London_Borough_of_Camden> .
/m/013yq <SameAs> <http://yago-knowledge.org/resource/Atlanta> .
/m/01dbns <SameAs> <http://yago-knowledge.org/resource/University_of_Adelaide> .
/m/0l6ny <SameAs> <http://yago-knowledge.org/resource/1984_Summer_Olympics> .
/m/0k3ll <SameAs> <http://yago-knowledge.org/resource/Worcester_County,_Massachusetts> .
/m/0rrhp <SameAs> <http://yago-knowledge.org/resource/Lakeland,_Florida> .
/m/091yn0 <SameAs> <http://yago-knowledge.org/resource/Jorma_Taccone> .
/m/0k4fz <SameAs> <http://yago-knowledge.org/resource/Sunset_Boulevard_(film)> .
/m/043q6n_ <SameAs> <http://yago-knowledge.org/resource/Neal_H._Moritz> .
/m/0c6g29 <SameAs> <http://yago-knowledge.org/resource/Dorothy_Jeakins> .
/m/0kc6x <SameAs> <http://yago-knowledge.org/resource/ESPN> .
/m/0djvzd <SameAs> <http://yago-knowledge.org/resource/Delroy_Facey> .
/m/016xk5 <SameAs> <http://yago-knowledge.org/resource/Simon_Callow> .
/m/0b_5d <SameAs> <http://yago-knowledge.org/resource/The_Apartment> .
/m/0d61px <SameAs> <http://yago-knowledge.org/resource/The_Man_in_the_Iron_Mask_(1998_film)> .
/m/0n25q <SameAs> <http://yago-knowledge.org/resource/Jefferson_County,_Ohio> .
/m/02bjrlw <SameAs> <http://yago-knowledge.org/resource/Italian_language> .
/m/0ds5_72 <SameAs> <http://yago-knowledge.org/resource/The_Muppets_(film)> .
/m/09n5b9 <SameAs> <http://yago-knowledge.org/resource/Secretary_of_state_(U.S._state_government)> .
/m/0259r0 <SameAs> <http://yago-knowledge.org/resource/Jason_Mraz> .
/m/01fj9_ <SameAs> <http://yago-knowledge.org/resource/County_Wexford> .
/m/04rs03 <SameAs> <http://yago-knowledge.org/resource/Mahesh_Bhatt> .
/m/020hh3 <SameAs> <http://yago-knowledge.org/resource/Lars_Ulrich> .
/m/045bs6 <SameAs> <http://yago-knowledge.org/resource/Donal_Logue> .
/m/0r62v <SameAs> <http://yago-knowledge.org/resource/Santa_Barbara,_California> .
/m/01z26v <SameAs> <http://yago-knowledge.org/resource/Harlow> .
/m/018dnt <SameAs> <http://yago-knowledge.org/resource/Colm_Meaney> .
/m/0k3l5 <SameAs> <http://yago-knowledge.org/resource/Suffolk_County,_Massachusetts> .
/m/01t9qj_ <SameAs> <http://yago-knowledge.org/resource/Red_Skelton> .
/m/073749 <SameAs> <http://yago-knowledge.org/resource/Jennifer_Coolidge> .
/m/013pk3 <SameAs> <http://yago-knowledge.org/resource/Hugh_Laurie> .
/m/0k4f3 <SameAs> <http://yago-knowledge.org/resource/Some_Like_It_Hot> .
/m/080lkt7 <SameAs> <http://yago-knowledge.org/resource/Howl_(2010_film)> .
/m/0dng4 <SameAs> <http://yago-knowledge.org/resource/Daffy_Duck> .
/m/01dtq1 <SameAs> <http://yago-knowledge.org/resource/Quito> .
/m/0171cm <SameAs> <http://yago-knowledge.org/resource/Tom_Wilkinson> .
/m/01c6qp <SameAs> <http://yago-knowledge.org/resource/41st_Annual_Grammy_Awards> .
/m/04l8xw <SameAs> <http://yago-knowledge.org/resource/Academy_of_Television_Arts_&_Sciences> .
/m/022411 <SameAs> <http://yago-knowledge.org/resource/Marcia_Gay_Harden> .
/m/016ndm <SameAs> <http://yago-knowledge.org/resource/University_of_Western_Ontario> .
/m/0kvbl6 <SameAs> <http://yago-knowledge.org/resource/The_Postman_(film)> .
/m/0bq0p9 <SameAs> <http://yago-knowledge.org/resource/British_Raj> .
/m/09rwjly <SameAs> <http://yago-knowledge.org/resource/60th_Berlin_International_Film_Festival> .
/m/01vwyqp <SameAs> <http://yago-knowledge.org/resource/Tina_Turner> .
/m/02fwfb <SameAs> <http://yago-knowledge.org/resource/The_Adventures_of_Priscilla,_Queen_of_the_Desert> .
/m/07c2yr <SameAs> <http://yago-knowledge.org/resource/Olympiakos_Nicosia> .
/m/05f_3 <SameAs> <http://yago-knowledge.org/resource/Norwegian_language> .
/m/02wk7b <SameAs> <http://yago-knowledge.org/resource/Secrets_&_Lies_(film)> .
/m/09mfvx <SameAs> <http://yago-knowledge.org/resource/ThinkFilm> .
/m/01mh8zn <SameAs> <http://yago-knowledge.org/resource/Marc_Shaiman> .
/m/0zygc <SameAs> <http://yago-knowledge.org/resource/Chester,_Pennsylvania> .
/m/019rvp <SameAs> <http://yago-knowledge.org/resource/Maidstone> .
/m/03gyl <SameAs> <http://yago-knowledge.org/resource/Haiti> .
/m/0czkbt <SameAs> <http://yago-knowledge.org/resource/Lily_Allen> .
/m/0t_48 <SameAs> <http://yago-knowledge.org/resource/Malden,_Massachusetts> .
/m/09g8vhw <SameAs> <http://yago-knowledge.org/resource/Little_Fockers> .
/m/03h_fk5 <SameAs> <http://yago-knowledge.org/resource/Johnny_Cash> .
/m/02m97n <SameAs> <http://yago-knowledge.org/resource/Vickers-Armstrongs> .
/m/045w_4 <SameAs> <http://yago-knowledge.org/resource/Gillian_Spencer> .
/m/02w9895 <SameAs> <http://yago-knowledge.org/resource/Siobhan_Finneran> .
/m/0c_mvb <SameAs> <http://yago-knowledge.org/resource/Jules_Bass> .
/m/0htlr <SameAs> <http://yago-knowledge.org/resource/Isabella_Rossellini> .
/m/0bs5k8r <SameAs> <http://yago-knowledge.org/resource/Mao's_Last_Dancer_(film)> .
/m/01gvyp <SameAs> <http://yago-knowledge.org/resource/Louise_Fletcher> .
/m/09bg4l <SameAs> <http://yago-knowledge.org/resource/Harry_S._Truman> .
/m/0nv6n <SameAs> <http://yago-knowledge.org/resource/McHenry_County,_Illinois> .
/m/01ngz1 <SameAs> <http://yago-knowledge.org/resource/University_of_South_Dakota> .
/m/0dgfx <SameAs> <http://yago-knowledge.org/resource/Braunschweig> .
/m/0ks67 <SameAs> <http://yago-knowledge.org/resource/Rutgers_University> .
/m/0gqkd <SameAs> <http://yago-knowledge.org/resource/Fukuoka> .
/m/0z4_0 <SameAs> <http://yago-knowledge.org/resource/Norman,_Oklahoma> .
/m/07x4c <SameAs> <http://yago-knowledge.org/resource/United_States_Military_Academy> .
/m/01pr_j6 <SameAs> <http://yago-knowledge.org/resource/Himesh_Reshammiya> .
/m/014y6 <SameAs> <http://yago-knowledge.org/resource/Anthony_Head> .
/m/02mx98 <SameAs> <http://yago-knowledge.org/resource/Bill_Berry> .
/m/01p4r3 <SameAs> <http://yago-knowledge.org/resource/Lloyd_Bridges> .
/m/07jqh <SameAs> <http://yago-knowledge.org/resource/Taliban> .
/m/0164qt <SameAs> <http://yago-knowledge.org/resource/The_World_Is_Not_Enough> .
/m/0fs29 <SameAs> <http://yago-knowledge.org/resource/Port_of_Spain> .
/m/02mhfy <SameAs> <http://yago-knowledge.org/resource/Teri_Garr> .
/m/0fb1q <SameAs> <http://yago-knowledge.org/resource/Whoopi_Goldberg> .
/m/0mmzt <SameAs> <http://yago-knowledge.org/resource/Winchester,_Virginia> .
/m/06q5t7 <SameAs> <http://yago-knowledge.org/resource/Jason_Segel> .
/m/0r4wn <SameAs> <http://yago-knowledge.org/resource/Carlsbad,_California> .
/m/03fyrh <SameAs> <http://yago-knowledge.org/resource/Greco-Roman_wrestling> .
/m/0pksh <SameAs> <http://yago-knowledge.org/resource/Tsui_Hark> .
/m/02g1jh <SameAs> <http://yago-knowledge.org/resource/David_Arnold> .
/m/021f30 <SameAs> <http://yago-knowledge.org/resource/Tokyo_Yakult_Swallows> .
/m/09tlh <SameAs> <http://yago-knowledge.org/resource/Nottingham> .
/m/0fw4v <SameAs> <http://yago-knowledge.org/resource/San_Juan,_Puerto_Rico> .
/m/071_8 <SameAs> <http://yago-knowledge.org/resource/Simon_Fraser_University> .
/m/0dttf <SameAs> <http://yago-knowledge.org/resource/Addis_Ababa> .
/m/013vdl <SameAs> <http://yago-knowledge.org/resource/Mae_Whitman> .
/m/025504 <SameAs> <http://yago-knowledge.org/resource/Endemol> .
/m/01f6ss <SameAs> <http://yago-knowledge.org/resource/University_of_Aberdeen> .
/m/083tk <SameAs> <http://yago-knowledge.org/resource/Welsh_language> .
/m/02v_r7d <SameAs> <http://yago-knowledge.org/resource/Luther_(2003_film)> .
/m/0346h <SameAs> <http://yago-knowledge.org/resource/Guatemala_City> .
/m/0fb18 <SameAs> <http://yago-knowledge.org/resource/Adirondack_Mountains> .
/m/09x8ms <SameAs> <http://yago-knowledge.org/resource/Adrian_(costume_designer)> .
/m/0q5hw <SameAs> <http://yago-knowledge.org/resource/Jerry_Seinfeld> .
/m/0371rb <SameAs> <http://yago-knowledge.org/resource/VfB_Stuttgart> .
/m/0cv2m <SameAs> <http://yago-knowledge.org/resource/Chhattisgarh> .
/m/04ld32 <SameAs> <http://yago-knowledge.org/resource/University_of_Minnesota_Law_School> .
/m/05fjf <SameAs> <http://yago-knowledge.org/resource/New_Jersey> .
/m/02xv8m <SameAs> <http://yago-knowledge.org/resource/Oliver_Platt> .
/m/0g5ff <SameAs> <http://yago-knowledge.org/resource/Jack_Vance> .
/m/0124qd <SameAs> <http://yago-knowledge.org/resource/Inner_Hebrides> .
/m/057ph <SameAs> <http://yago-knowledge.org/resource/Mickey_Mouse> .
/m/0454s1 <SameAs> <http://yago-knowledge.org/resource/Richard_Thorpe> .
/m/09b93 <SameAs> <http://yago-knowledge.org/resource/Ravenna> .
/m/02bn75 <SameAs> <http://yago-knowledge.org/resource/Alex_North> .
/m/043vc <SameAs> <http://yago-knowledge.org/resource/Jacksonville_Jaguars> .
/m/088_9g <SameAs> <http://yago-knowledge.org/resource/Frosinone_Calcio> .
/m/0cjsxp <SameAs> <http://yago-knowledge.org/resource/Michael_Shannon> .
/m/0prh7 <SameAs> <http://yago-knowledge.org/resource/Hamlet_(1996_film)> .
/m/04wlh <SameAs> <http://yago-knowledge.org/resource/Mozambique> .
/m/016tw3 <SameAs> <http://yago-knowledge.org/resource/Universal_Pictures> .
/m/04gycf <SameAs> <http://yago-knowledge.org/resource/Joey_Fatone> .
/m/01wwvt2 <SameAs> <http://yago-knowledge.org/resource/Flea_(musician)> .
/m/02rrh1w <SameAs> <http://yago-knowledge.org/resource/Vantage_Point_(film)> .
/m/03f5vvx <SameAs> <http://yago-knowledge.org/resource/Margaret_Thatcher> .
/m/01p6xx <SameAs> <http://yago-knowledge.org/resource/Joel_Schumacher> .
/m/0ngg <SameAs> <http://yago-knowledge.org/resource/Augustus> .
/m/01279v <SameAs> <http://yago-knowledge.org/resource/County_Tipperary> .
/m/09lhln <SameAs> <http://yago-knowledge.org/resource/Kevin_Betsy> .
/m/0h8d <SameAs> <http://yago-knowledge.org/resource/American_Samoa> .
/m/0pcc0 <SameAs> <http://yago-knowledge.org/resource/Sergei_Rachmaninoff> .
/m/0n2m7 <SameAs> <http://yago-knowledge.org/resource/Franklin_County,_Ohio> .
/m/03bggl <SameAs> <http://yago-knowledge.org/resource/Van_Heflin> .
/m/01zlx <SameAs> <http://yago-knowledge.org/resource/Chiapas> .
/m/0f0p0 <SameAs> <http://yago-knowledge.org/resource/Ray_Milland> .
/m/03n52j <SameAs> <http://yago-knowledge.org/resource/Ed_Begley_Jr.> .
/m/0qpn9 <SameAs> <http://yago-knowledge.org/resource/Mesa,_Arizona> .
/m/031kyy <SameAs> <http://yago-knowledge.org/resource/Tenjho_Tenge> .
/m/03115z <SameAs> <http://yago-knowledge.org/resource/Mandarin_Chinese> .
/m/058kqy <SameAs> <http://yago-knowledge.org/resource/Eli_Roth> .
/m/0154d7 <SameAs> <http://yago-knowledge.org/resource/Mark_Hamill> .
/m/04w1j9 <SameAs> <http://yago-knowledge.org/resource/Edward_R._Pressman> .
/m/03xpf_7 <SameAs> <http://yago-knowledge.org/resource/Al_Jean> .
/m/01hd99 <SameAs> <http://yago-knowledge.org/resource/Armenian_Apostolic_Church> .
/m/03j3pg9 <SameAs> <http://yago-knowledge.org/resource/Fabolous> .
/m/05j12n <SameAs> <http://yago-knowledge.org/resource/Suresh_Gopi> .
/m/0fztbq <SameAs> <http://yago-knowledge.org/resource/On_Her_Majesty's_Secret_Service_(film)> .
/m/0bk25 <SameAs> <http://yago-knowledge.org/resource/Macedonia_(ancient_kingdom)> .
/m/04hk0w <SameAs> <http://yago-knowledge.org/resource/Constantine_(film)> .
/m/04fgkf_ <SameAs> <http://yago-knowledge.org/resource/Daytime_Emmy_Award_for_Outstanding_Talk_Show_Host> .
/m/01bvw5 <SameAs> <http://yago-knowledge.org/resource/Seoul_National_University> .
/m/0mvxt <SameAs> <http://yago-knowledge.org/resource/Greenville_County,_South_Carolina> .
/m/024030 <SameAs> <http://yago-knowledge.org/resource/Padma_Vibhushan> .
/m/013f9v <SameAs> <http://yago-knowledge.org/resource/St._Cloud,_Minnesota> .
/m/02b19f <SameAs> <http://yago-knowledge.org/resource/York_City_F.C.> .
/m/0n5gb <SameAs> <http://yago-knowledge.org/resource/Gloucester_County,_New_Jersey> .
/m/01l9vr <SameAs> <http://yago-knowledge.org/resource/Charlestown,_Boston> .
/m/01r32 <SameAs> <http://yago-knowledge.org/resource/Calgary> .
/m/0dfrq <SameAs> <http://yago-knowledge.org/resource/Seamus_Heaney> .
/m/02qm_f <SameAs> <http://yago-knowledge.org/resource/The_Incredibles> .
/m/03qkgyl <SameAs> <http://yago-knowledge.org/resource/Shobha_Kapoor> .
/m/04snp2 <SameAs> <http://yago-knowledge.org/resource/Jeph_Loeb> .
/m/01yd8v <SameAs> <http://yago-knowledge.org/resource/Bridget_Fonda> .
/m/0q_xk <SameAs> <http://yago-knowledge.org/resource/Arcadia,_California> .
/m/04s1zr <SameAs> <http://yago-knowledge.org/resource/The_Gift_(2000_film)> .
/m/0fplv <SameAs> <http://yago-knowledge.org/resource/Sullivan_County,_New_York> .
/m/017t44 <SameAs> <http://yago-knowledge.org/resource/Kansai_region> .
/m/0n5gq <SameAs> <http://yago-knowledge.org/resource/Essex_County,_New_Jersey> .
/m/016gr2 <SameAs> <http://yago-knowledge.org/resource/Derek_Jacobi> .
/m/0c1jh <SameAs> <http://yago-knowledge.org/resource/Ezra_Pound> .
/m/0m75g <SameAs> <http://yago-knowledge.org/resource/Sheffield> .
/m/04gcyg <SameAs> <http://yago-knowledge.org/resource/2010_(film)> .
/m/050gkf <SameAs> <http://yago-knowledge.org/resource/Cinderella_Man> .
/m/03qd_ <SameAs> <http://yago-knowledge.org/resource/Harry_Shearer> .
/m/033g54 <SameAs> <http://yago-knowledge.org/resource/Armenia_national_football_team> .
/m/09m6kg <SameAs> <http://yago-knowledge.org/resource/A_Beautiful_Mind_(film)> .
/m/0dfjb8 <SameAs> <http://yago-knowledge.org/resource/Nassar> .
/m/0l2mg <SameAs> <http://yago-knowledge.org/resource/Nevada_County,_California> .
/m/06rjp <SameAs> <http://yago-knowledge.org/resource/Stockholm_University> .
/m/0mp36 <SameAs> <http://yago-knowledge.org/resource/Chesapeake,_Virginia> .
/m/05bpg3 <SameAs> <http://yago-knowledge.org/resource/Jeremy_Piven> .