This repository has been archived by the owner on Jan 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GioMovies.xtm
12655 lines (12655 loc) · 317 KB
/
GioMovies.xtm
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
<?xml version="1.0" encoding="UTF-8"?>
<topicMap>
<topic id="id_10-coisas-que-eu-odeio-em-voce">
<instanceOf>
<topicRef href="#Filme"/>
</instanceOf>
<baseName>
<baseNameString>10 Coisas que eu Odeio em Voce</baseNameString>
</baseName>
<occurrence>
<scope>
<topicRef href="#ingles"/>
</scope>
<resourceData>10 Things I Hate About You</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#distribuicao"/>
</scope>
<resourceData>Buena Vista Pictures</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#sinopse"/>
</scope>
<resourceData>A situação está tensa na cada dos Stratford. Bianca (Larisa Oleynik) não vê a hora de arranjar um namorado, mas seu pai (Larry Miller) não permite que ela saia com garotos. Após muita insistência, o pai toma uma resolução: Bianca pode namorar, desde que sua irmã, Katharina (Julia Stiles), namore também. Só que Katharina é uma verdadeira megera, que não tem amigos na escola nem em lugar algum. Para resolver a questão, Cameron (Joseph Gordon-Levitt), apaixonado por Bianca, resolve custear Patrick Verona (Heath Ledger) na tentativa de fazer com que Katharina se apaixone por ele.</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#elencoApoio"/>
</scope>
<resourceData>Joseph Gordon-Levitt</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#elencoApoio"/>
</scope>
<resourceData>Larisa Oleynik</resourceData>
</occurrence>
<occurrence>
<instanceOf>
<topicRef href="#site"/>
</instanceOf>
<resourceRef href="http://www.10thingsihateaboutyou.com"/>
</occurrence>
</topic>
<topic id="id_100">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>100</baseNameString>
</baseName>
</topic>
<topic id="id_100-garotas">
<instanceOf>
<topicRef href="#Filme"/>
</instanceOf>
<baseName>
<baseNameString>100 Garotas</baseNameString>
</baseName>
<occurrence>
<scope>
<topicRef href="#ingles"/>
</scope>
<resourceData>100 Girls</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#distribuicao"/>
</scope>
<resourceData>Dream Entertainment, Inc. / Michael/Finney Productions</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#sinopse"/>
</scope>
<resourceData>Calouro de faculdade (Jonathan Tucker) encontra a garota de seus sonhos durante um blecaute dentro do elevador. Ele não vê seu rosto, mas se apaixona instantaneamente por ela. Pela manhã, ela desaparece e ele inicia uma busca, que se exstende ao longo do semestre.</resourceData>
</occurrence>
<occurrence>
<instanceOf>
<topicRef href="#site"/>
</instanceOf>
<resourceRef href="http://www.100girls.net"/>
</occurrence>
</topic>
<topic id="id_101">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>101</baseNameString>
</baseName>
</topic>
<topic id="id_102">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>102</baseNameString>
</baseName>
</topic>
<topic id="id_103">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>103</baseNameString>
</baseName>
</topic>
<topic id="id_104">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>104</baseNameString>
</baseName>
</topic>
<topic id="id_105">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>105</baseNameString>
</baseName>
</topic>
<topic id="id_106">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>106</baseNameString>
</baseName>
</topic>
<topic id="id_107">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>107</baseNameString>
</baseName>
</topic>
<topic id="id_109">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>109</baseNameString>
</baseName>
</topic>
<topic id="id_110">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>110</baseNameString>
</baseName>
</topic>
<topic id="id_111">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>111</baseNameString>
</baseName>
</topic>
<topic id="id_112">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>112</baseNameString>
</baseName>
</topic>
<topic id="id_113">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>113</baseNameString>
</baseName>
</topic>
<topic id="id_114">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>114</baseNameString>
</baseName>
</topic>
<topic id="id_115">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>115</baseNameString>
</baseName>
</topic>
<topic id="id_116">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>116</baseNameString>
</baseName>
</topic>
<topic id="id_117">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>117</baseNameString>
</baseName>
</topic>
<topic id="id_118">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>118</baseNameString>
</baseName>
</topic>
<topic id="id_119">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>119</baseNameString>
</baseName>
</topic>
<topic id="id_120">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>120</baseNameString>
</baseName>
</topic>
<topic id="id_121">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>121</baseNameString>
</baseName>
</topic>
<topic id="id_123">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>123</baseNameString>
</baseName>
</topic>
<topic id="id_124">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>124</baseNameString>
</baseName>
</topic>
<topic id="id_126">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>126</baseNameString>
</baseName>
</topic>
<topic id="id_128">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>128</baseNameString>
</baseName>
</topic>
<topic id="id_129">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>129</baseNameString>
</baseName>
</topic>
<topic id="id_130">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>130</baseNameString>
</baseName>
</topic>
<topic id="id_131">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>131</baseNameString>
</baseName>
</topic>
<topic id="id_134">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>134</baseNameString>
</baseName>
</topic>
<topic id="id_135">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>135</baseNameString>
</baseName>
</topic>
<topic id="id_136">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>136</baseNameString>
</baseName>
</topic>
<topic id="id_138">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>138</baseNameString>
</baseName>
</topic>
<topic id="id_140">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>140</baseNameString>
</baseName>
</topic>
<topic id="id_142">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>142</baseNameString>
</baseName>
</topic>
<topic id="id_143">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>143</baseNameString>
</baseName>
</topic>
<topic id="id_144">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>144</baseNameString>
</baseName>
</topic>
<topic id="id_145">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>145</baseNameString>
</baseName>
</topic>
<topic id="id_146">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>146</baseNameString>
</baseName>
</topic>
<topic id="id_151">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>151</baseNameString>
</baseName>
</topic>
<topic id="id_155">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>155</baseNameString>
</baseName>
</topic>
<topic id="id_160">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>160</baseNameString>
</baseName>
</topic>
<topic id="id_164">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>164</baseNameString>
</baseName>
</topic>
<topic id="id_177">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>177</baseNameString>
</baseName>
</topic>
<topic id="id_179">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>179</baseNameString>
</baseName>
</topic>
<topic id="id_186">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>186</baseNameString>
</baseName>
</topic>
<topic id="id_194">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>194</baseNameString>
</baseName>
</topic>
<topic id="id_195">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>195</baseNameString>
</baseName>
</topic>
<topic id="id_1977">
<instanceOf>
<topicRef href="#Ano"/>
</instanceOf>
<baseName>
<baseNameString>1977</baseNameString>
</baseName>
</topic>
<topic id="id_1979">
<instanceOf>
<topicRef href="#Ano"/>
</instanceOf>
<baseName>
<baseNameString>1979</baseNameString>
</baseName>
</topic>
<topic id="id_1980">
<instanceOf>
<topicRef href="#Ano"/>
</instanceOf>
<baseName>
<baseNameString>1980</baseNameString>
</baseName>
</topic>
<topic id="id_1982">
<instanceOf>
<topicRef href="#Ano"/>
</instanceOf>
<baseName>
<baseNameString>1982</baseNameString>
</baseName>
</topic>
<topic id="id_1984">
<instanceOf>
<topicRef href="#Ano"/>
</instanceOf>
<baseName>
<baseNameString>1984</baseNameString>
</baseName>
</topic>
<topic id="id_1986">
<instanceOf>
<topicRef href="#Ano"/>
</instanceOf>
<baseName>
<baseNameString>1986</baseNameString>
</baseName>
</topic>
<topic id="id_1990">
<instanceOf>
<topicRef href="#Ano"/>
</instanceOf>
<baseName>
<baseNameString>1990</baseNameString>
</baseName>
</topic>
<topic id="id_1992">
<instanceOf>
<topicRef href="#Ano"/>
</instanceOf>
<baseName>
<baseNameString>1992</baseNameString>
</baseName>
</topic>
<topic id="id_1993">
<instanceOf>
<topicRef href="#Ano"/>
</instanceOf>
<baseName>
<baseNameString>1993</baseNameString>
</baseName>
</topic>
<topic id="id_1994">
<instanceOf>
<topicRef href="#Ano"/>
</instanceOf>
<baseName>
<baseNameString>1994</baseNameString>
</baseName>
</topic>
<topic id="id_1995">
<instanceOf>
<topicRef href="#Ano"/>
</instanceOf>
<baseName>
<baseNameString>1995</baseNameString>
</baseName>
</topic>
<topic id="id_1997">
<instanceOf>
<topicRef href="#Ano"/>
</instanceOf>
<baseName>
<baseNameString>1997</baseNameString>
</baseName>
</topic>
<topic id="id_1998">
<instanceOf>
<topicRef href="#Ano"/>
</instanceOf>
<baseName>
<baseNameString>1998</baseNameString>
</baseName>
</topic>
<topic id="id_1999">
<instanceOf>
<topicRef href="#Ano"/>
</instanceOf>
<baseName>
<baseNameString>1999</baseNameString>
</baseName>
</topic>
<topic id="id_2000">
<instanceOf>
<topicRef href="#Ano"/>
</instanceOf>
<baseName>
<baseNameString>2000</baseNameString>
</baseName>
</topic>
<topic id="id_2001">
<instanceOf>
<topicRef href="#Ano"/>
</instanceOf>
<baseName>
<baseNameString>2001</baseNameString>
</baseName>
</topic>
<topic id="id_2002">
<instanceOf>
<topicRef href="#Ano"/>
</instanceOf>
<baseName>
<baseNameString>2002</baseNameString>
</baseName>
</topic>
<topic id="id_2003">
<instanceOf>
<topicRef href="#Ano"/>
</instanceOf>
<baseName>
<baseNameString>2003</baseNameString>
</baseName>
</topic>
<topic id="id_28-dias">
<instanceOf>
<topicRef href="#Filme"/>
</instanceOf>
<baseName>
<baseNameString>28 Dias</baseNameString>
</baseName>
<occurrence>
<scope>
<topicRef href="#ingles"/>
</scope>
<resourceData>28 Days</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#distribuicao"/>
</scope>
<resourceData>Columbia Pictures</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#sinopse"/>
</scope>
<resourceData>Gwen Cummings (Sandra Bullock) é uma escritora que leva sua vida de forma selvagem. Saltando de festa em festa, as coisas começam a mudar quando ela, bêbada, rouba a limusine no meio do casamento de sua irmã e bate com o carro numa casa. Encaminhada para um período de 28 dias numa clínica de reabilitação para dependentes de álcool, Gwen tem que aprender a vida num lugar onde as regras são rígidas e têm que ser cumpridas.</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#elencoApoio"/>
</scope>
<resourceData>Viggo Mortensen</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#elencoApoio"/>
</scope>
<resourceData>Dominic West</resourceData>
</occurrence>
<occurrence>
<instanceOf>
<topicRef href="#site"/>
</instanceOf>
<resourceRef href="http://www.soapcity.com/28days"/>
</occurrence>
</topic>
<topic id="id_40-dias-e-40-noites">
<instanceOf>
<topicRef href="#Filme"/>
</instanceOf>
<baseName>
<baseNameString>40 Dias e 40 Noites</baseNameString>
</baseName>
<occurrence>
<scope>
<topicRef href="#ingles"/>
</scope>
<resourceData>40 Days and 40 Nights</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#distribuicao"/>
</scope>
<resourceData>Universal Pictures / Miramax Films</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#sinopse"/>
</scope>
<resourceData>Após seu último relacionamento amoroso terminar em um verdadeiro desastre, Matt Sullivan (Josh Hartnett) decide fazer uma prova consigo mesmo: durante 40 dias e 40 noites ele não terá nenhum contato físico com mulher alguma. Inicialmente Matt resiste às tentações, até que surge em sua vida Erica (Shannyn Sossamon), a garota de seus sonhos que pode pôr por terra a prova de resistência criada por ele.</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#elencoApoio"/>
</scope>
<resourceData>Maggie Gyllenhaal</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#elencoApoio"/>
</scope>
<resourceData>Emmanuelle Vaugier</resourceData>
</occurrence>
<occurrence>
<instanceOf>
<topicRef href="#site"/>
</instanceOf>
<resourceRef href="http://www.miramax.com/40daysand40nights"/>
</occurrence>
</topic>
<topic id="id_8-mile---rua-das-ilusoes">
<instanceOf>
<topicRef href="#Filme"/>
</instanceOf>
<baseName>
<baseNameString>8 Mile - Rua das Ilusões</baseNameString>
</baseName>
<occurrence>
<scope>
<topicRef href="#ingles"/>
</scope>
<resourceData>8 Mile</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#distribuicao"/>
</scope>
<resourceData>Universal Pictures / UIP</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#sinopse"/>
</scope>
<resourceData>Em Detroit vive Jimmy (Emimem), um jovem em plena crise de identidade e que procura um sentido para sua vida. Até que, para extravasar sua raiva e angústia, ele decide se envolver no mundo do hip hop.</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#elencoApoio"/>
</scope>
<resourceData>Eminem</resourceData>
</occurrence>
<occurrence>
<instanceOf>
<topicRef href="#site"/>
</instanceOf>
<resourceRef href="http://www.8-mile.com"/>
</occurrence>
</topic>
<topic id="id_8-milimetros">
<instanceOf>
<topicRef href="#Filme"/>
</instanceOf>
<baseName>
<baseNameString>8 Milímetros</baseNameString>
</baseName>
<occurrence>
<scope>
<topicRef href="#ingles"/>
</scope>
<resourceData>8 mm</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#distribuicao"/>
</scope>
<resourceData>Columbia Pictures / Sony Pictures Entertainment</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#sinopse"/>
</scope>
<resourceData>Tom Welles (Nicolas Cage), um detetive particular, é contratado por uma rica viúva, cujo marido faleceu recentemente. Ela deseja saber se um rolo de filme encontrado no cofre do finado é um autêntico snuff, no qual uma jovem é morta e tudo aparenta ser bem real. Se tratando de uma encenação tudo bem, mas se a película for um verdadeiro snuff, a viúva quer saber o nome da vítima, pois deseja de alguma forma tentar redimir em parte o crime que seu marido encomendou. A investigação leva Welles até a mãe da jovem e daí ele vai para Hollywood, onde conhece um produtor de filmes pornográficos. A obsessão de Tom em resolver o caso o afasta da sua família e, quando ele tem o caso praticamente resolvido, acaba se vendo em uma situação muito perigosa, que pode lhe custar a vida.</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#elencoApoio"/>
</scope>
<resourceData>Anthony Heald</resourceData>
</occurrence>
<occurrence>
<instanceOf>
<topicRef href="#site"/>
</instanceOf>
<resourceRef href="http://www.spe.sony.com/movies/8mm/index.html"/>
</occurrence>
</topic>
<topic id="id_80">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>80</baseNameString>
</baseName>
</topic>
<topic id="id_90">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>90</baseNameString>
</baseName>
</topic>
<topic id="id_93">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>93</baseNameString>
</baseName>
</topic>
<topic id="id_94">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>94</baseNameString>
</baseName>
</topic>
<topic id="id_95">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>95</baseNameString>
</baseName>
</topic>
<topic id="id_99">
<instanceOf>
<topicRef href="#Duracao"/>
</instanceOf>
<baseName>
<baseNameString>99</baseNameString>
</baseName>
</topic>
<topic id="À-espera-de-um-milagre">
<instanceOf>
<topicRef href="#Filme"/>
</instanceOf>
<baseName>
<baseNameString>À Espera de um Milagre</baseNameString>
</baseName>
<occurrence>
<scope>
<topicRef href="#ingles"/>
</scope>
<resourceData>The Green Mile</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#distribuicao"/>
</scope>
<resourceData>Warner</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#sinopse"/>
</scope>
<resourceData>Ambientado em 1935, no corredor da morte de uma prisão sulista, À espera de um milagre é a história entre o chefe de guarda da prisão (Tom Hanks) com um de seus prisioneiros (Michael Clarke Duncan). Aos poucos, desenvolve-se entre eles uma relação incomum, baseada na descoberta de que o prisioneiro possui um dom mágico que é, ao mesmo tempo, misterioso e milagroso.</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#elencoApoio"/>
</scope>
<resourceData>James Cromwell </resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#elencoApoio"/>
</scope>
<resourceData>Michael Duncan</resourceData>
</occurrence>
<occurrence>
<instanceOf>
<topicRef href="#site"/>
</instanceOf>
<resourceRef href="http://www.thegreenmile.com "/>
</occurrence>
</topic>
<topic id="a-fuga-das-galinhas">
<instanceOf>
<topicRef href="#Filme"/>
</instanceOf>
<baseName>
<baseNameString>A Fuga das Galinhas</baseNameString>
</baseName>
<occurrence>
<scope>
<topicRef href="#ingles"/>
</scope>
<resourceData>Chicken Run</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#distribuicao"/>
</scope>
<resourceData>DreamWorks Distribution L.L.C. / UIP</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#sinopse"/>
</scope>
<resourceData>Na década de 50, numa fazenda em Yorkshire, a galinha Ginger busca incessantemente um meio de conseguir escapar do fim trágico que seus donos reservaram para ela e seus semelhantes. Após várias tentativas frustradas, surge na granja o galo Rocky, com uma ambiciosa promessa: ensinar como voar às galinhas. Mas o tempo de Ginger e Rocky é curto: os Tweedy, donos da fazenda, compraram uma máquina que faz tortas de galinha, que em breve entrará em operação e irá dizimar toda a população do local.</resourceData>
</occurrence>
<occurrence>
<instanceOf>
<topicRef href="#site"/>
</instanceOf>
<resourceRef href="http://www.chickenrun.co.uk"/>
</occurrence>
</topic>
<topic id="a-lista-de-schindler">
<instanceOf>
<topicRef href="#Filme"/>
</instanceOf>
<baseName>
<baseNameString>A Lista de Schindler</baseNameString>
</baseName>
<occurrence>
<scope>
<topicRef href="#ingles"/>
</scope>
<resourceData>The Schindler's List</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#distribuicao"/>
</scope>
<resourceData>Universal Pictures / UIP</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#sinopse"/>
</scope>
<resourceData>A inusitada história de Oskar Schindler (Liam Neeson), um sujeito oportunista, sedutor, "armador", simpático, comerciante no mercado negro, mas, acima de tudo, um homem que se relacionava muito bem com o regime nazista, tanto que era membro do próprio Partido Nazista (o que não o impediu de ser preso algumas vezes, mas sempre o libertavam rapidamente, em razão dos seus contatos). No entanto, apesar dos seus defeitos, ele amava o ser humano e assim fez o impossível, a ponto de perder a sua fortuna mas conseguir salvar mais de mil judeus dos campos de concentração.</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#elencoApoio"/>
</scope>
<resourceData>Ben Kingsley</resourceData>
</occurrence>
</topic>
<topic id="a-mafia-volta-ao-diva">
<instanceOf>
<topicRef href="#Filme"/>
</instanceOf>
<baseName>
<baseNameString>A Máfia Volta ao Divã</baseNameString>
</baseName>
<occurrence>
<scope>
<topicRef href="#ingles"/>
</scope>
<resourceData>Anayse That</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#distribuicao"/>
</scope>
<resourceData>Warner Bros.</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#sinopse"/>
</scope>
<resourceData>Paul Vitti (Robert De Niro) está preso, mas logo será solto e precisará dos conselhos do psiquiatra Ben Sobel (Billy Crystal) para se readaptar à vida fora da cadeia. Ao reencontrar Sobel, Vitti logo percebe que ele está com problemas para lidar com sua nova família, após se casar com Laura (Lisa Kudrow). É quando o mafioso decide usar sua experiência de anos para ajudar o amigo analista.</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#elencoApoio"/>
</scope>
<resourceData>Joe Viterelli</resourceData>
</occurrence>
<occurrence>
<instanceOf>
<topicRef href="#site"/>
</instanceOf>
<resourceRef href="http://analyzethatmovie.warnerbros.com"/>
</occurrence>
</topic>
<topic id="a-profecia">
<instanceOf>
<topicRef href="#Filme"/>
</instanceOf>
<baseName>
<baseNameString>A Profecia</baseNameString>
</baseName>
<occurrence>
<scope>
<topicRef href="#ingles"/>
</scope>
<resourceData>The Omen</resourceData>
</occurrence>
</topic>
<topic id="a.i.-inteligencia-artificial">
<instanceOf>
<topicRef href="#Filme"/>
</instanceOf>
<baseName>
<baseNameString>A.I. Inteligência Artificial</baseNameString>
</baseName>
<occurrence>
<scope>
<topicRef href="#ingles"/>
</scope>
<resourceData>A.I. Artificial Inteligence</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#distribuicao"/>
</scope>
<resourceData>DreamWorks Distribution L.L.C. / Warner Bros</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#sinopse"/>
</scope>
<resourceData>Na metade do século XXI, o efeito estufa derreteu uma grande parte das colatas polares da Terra, fazendo com que boa parte das cidades litorâneas do planeta fiquem parcialmente submersas. Para controlar este desastre ambiental a humanidade conta com o auxílio de uma nova forma de computador independente, com inteligência artificial, conhecido como A.I. É neste contexto que vive o garoto David Swinton (Haley Joel Osment), que irá passar por uma jornada emocional inesquecível.</resourceData>
</occurrence>
<occurrence>
<scope>
<topicRef href="#elencoApoio"/>
</scope>
<resourceData>Jude Law</resourceData>